:root {
  --primary: #8A5A3B;
  --primary-dark: #5E3E2A;
  --accent: #C9A45A;
  --accent-bright: #E8C87E;
  --teal: #2D6D6E;
  --bg-light: #FAF5EE;
  --bg-dark: #231A14;
  --surface: #FFFCF7;
  --surface-dark: rgba(35,26,20,.82);
  --text-main: #3B2E24;
  --text-light: #F1E7D9;
  --text-muted: #8A7A68;
  --border-light: #EBD9B8;
  --border-accent: rgba(201,164,90,.45);
  --shadow-card: 0 8px 24px rgba(110,76,45,.08);
  --shadow-hover: 0 16px 36px rgba(110,76,45,.16);
  --radius-card: 14px;
  --radius-btn: 999px;
  --font-sans: "PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
  --section-pad: clamp(56px, 7vw, 100px);
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:var(--font-sans);
  background:var(--bg-light);
  color:var(--text-main);
  line-height:1.75;
  overflow-x:hidden;
}
img{max-width:100%;height:auto}
a{text-decoration:none;color:var(--text-main);transition:all .25s ease}
a:hover{color:var(--primary)}
.section-pad{padding:var(--section-pad) 0}
.container-xxl{max-width:1320px;padding-left:24px;padding-right:24px}
h1,h2,h3,h4,h5,h6{font-weight:700;line-height:1.25;color:var(--text-main)}
.eyebrow{
  display:inline-block;
  font-size:14px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--accent);
  font-weight:600;
  margin-bottom:12px;
}
.section-head{margin-bottom:48px}
.section-head h2{font-size:clamp(26px,3vw,34px);margin-bottom:12px}
.section-head p{color:var(--text-muted);font-size:17px;max-width:720px}

/* buttons */
.btn{
  border-radius:var(--radius-btn);
  padding:12px 28px;
  font-weight:600;
  border:none;
  transition:all .25s ease;
}
.btn:focus-visible,.btn-ghost:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:2px;
}
.btn-gold{
  background:linear-gradient(135deg,#D9B36C,#B78A4A);
  color:#3A2410;
  box-shadow:0 4px 16px rgba(183,138,74,.3);
}
.btn-gold:hover{
  color:#3A2410;
  filter:brightness(1.05);
  box-shadow:0 8px 24px rgba(183,138,74,.45);
  transform:translateY(-2px);
}
.btn-gold:active{
  transform:translateY(1px) scale(.98);
  box-shadow:0 2px 8px rgba(183,138,74,.25);
}
.btn-ghost{
  background:transparent;
  border:1.5px solid var(--accent);
  color:var(--accent);
}
.btn-ghost:hover{
  background:rgba(201,164,90,.1);
  color:var(--accent-bright);
  box-shadow:0 4px 14px rgba(201,164,90,.2);
}
.btn-ghost:active{transform:scale(.98)}
.btn-teal{
  background:var(--teal);
  color:#fff;
}
.btn-teal:hover{filter:brightness(1.1);color:#fff;transform:translateY(-2px)}
.btn-lg{padding:16px 38px;font-size:17px}

/* Navbar */
.navbar{
  padding:14px 0;
  background:linear-gradient(135deg,rgba(60,38,24,.92),rgba(35,22,16,.95));
  transition:all .35s ease;
  border-bottom:1px solid transparent;
}
.navbar.scrolled{
  background:rgba(30,19,13,.98);
  border-bottom:1px solid var(--border-accent);
  box-shadow:0 6px 24px rgba(20,10,5,.4);
  padding:8px 0;
}
.brand-icon{
  width:42px;height:42px;
  display:inline-flex;align-items:center;justify-content:center;
  border:1.5px solid var(--accent);
  border-radius:50%;
  color:var(--accent-bright);
  margin-right:10px;
  flex-shrink:0;
}
.brand-text{
  font-size:20px;font-weight:700;color:var(--text-light);
  line-height:1.2;display:block;
}
.brand-sub{
  font-size:11px;color:var(--accent);letter-spacing:.12em;
  display:block;line-height:1.2;
}
.navbar .nav-link{
  color:rgba(241,231,217,.85);
  font-size:16px;
  font-weight:500;
  margin:0 12px;
  padding:8px 2px;
  position:relative;
}
.navbar .nav-link::after{
  content:'';
  position:absolute;
  left:0;bottom:0;
  width:100%;height:2px;
  background:linear-gradient(90deg,var(--accent),var(--accent-bright));
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .3s ease;
}
.navbar .nav-link:hover{color:var(--accent-bright)}
.navbar .nav-link:hover::after{transform:scaleX(1)}
.navbar .nav-link.active{color:var(--accent-bright)}
.navbar .nav-link.active::after{
  content:'';
  position:absolute;
  left:0;bottom:0;
  width:100%;height:3px;
  background:linear-gradient(90deg,var(--accent),var(--accent-bright));
  transform:scaleX(1);
  border-radius:3px;
}
.navbar .btn-cta{
  background:linear-gradient(135deg,#D9B36C,#B78A4A);
  color:#3A2410;
  border-radius:999px;
  padding:9px 26px;
  font-weight:600;
  font-size:15px;
  margin-left:18px;
  box-shadow:0 3px 12px rgba(183,138,74,.3);
  transition:all .25s ease;
}
.navbar .btn-cta:hover{
  filter:brightness(1.06);
  box-shadow:0 6px 20px rgba(183,138,74,.45);
  transform:translateY(-2px);
}
.navbar-toggler{
  border:1.5px solid var(--accent);
  background:transparent;
  padding:6px 10px;
}
.navbar-toggler:focus{box-shadow:0 0 0 3px rgba(201,164,90,.3)}
.navbar-toggler i{color:var(--accent);font-size:22px}
@media (max-width:991px){
  .navbar .navbar-collapse{
    background:rgba(30,19,13,.98);
    padding:20px 16px;
    border-radius:0 0 16px 16px;
    margin-top:12px;
    border-top:1px solid var(--border-accent);
  }
  .navbar .nav-link{margin:8px 0;padding:10px 4px}
  .navbar .btn-cta{margin-left:0;margin-top:12px;display:inline-block}
}

/* Hero */
.hero{
  position:relative;
  min-height:88vh;
  display:flex;
  align-items:center;
  padding:120px 0 80px;
  background-image:linear-gradient(120deg,rgba(35,22,16,.92) 0%,rgba(60,38,24,.72) 45%,rgba(35,22,16,.5) 100%),url('/assets/images/backpic/back-1.jpg');
  background-size:cover;
  background-position:center;
  background-attachment:fixed;
}
.hero-inner{
  max-width:900px;
  margin:0 auto;
  text-align:center;
  color:var(--text-light);
}
.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(201,164,90,.4);
  border-radius:999px;
  padding:8px 22px;
  font-size:14px;
  color:var(--text-light);
  backdrop-filter:blur(6px);
  margin-bottom:28px;
}
.hero-badge .dot{
  width:8px;height:8px;border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 10px var(--accent);
}
.hero h1{
  color:var(--text-light);
  font-size:clamp(30px,4.5vw,52px);
  font-weight:800;
  line-height:1.25;
  margin-bottom:18px;
  letter-spacing:.02em;
}
.hero h1 .accent-text{
  background:linear-gradient(135deg,var(--accent-bright),var(--accent));
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}
.hero-sub{
  font-size:clamp(16px,1.8vw,19px);
  color:rgba(241,231,217,.85);
  max-width:650px;
  margin:0 auto 36px;
  line-height:1.7;
}
.hero-search{
  max-width:640px;
  margin:0 auto 20px;
  display:flex;
  background:rgba(255,255,255,.1);
  border:1.5px solid rgba(201,164,90,.35);
  border-radius:999px;
  padding:6px;
  backdrop-filter:blur(10px);
}
.hero-search input{
  flex:1;
  background:transparent;
  border:none;
  padding:12px 22px;
  font-size:16px;
  color:var(--text-light);
  outline:none;
}
.hero-search input::placeholder{color:rgba(241,231,217,.7)}
.hero-search button{
  background:linear-gradient(135deg,#D9B36C,#B78A4A);
  color:#3A2410;
  border:none;
  border-radius:999px;
  padding:12px 28px;
  font-weight:600;
  cursor:pointer;
  transition:all .25s ease;
  white-space:nowrap;
}
.hero-search button:hover{filter:brightness(1.08);box-shadow:0 4px 16px rgba(183,138,74,.4)}
.hero-tags{
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  margin-top:16px;
  font-size:14px;
}
.hero-tags .tag-label{color:rgba(241,231,217,.7)}
.hero-tags a{
  color:var(--text-light);
  background:rgba(255,255,255,.08);
  border:1px solid rgba(201,164,90,.25);
  border-radius:999px;
  padding:5px 16px;
  font-size:13px;
  transition:all .25s ease;
}
.hero-tags a:hover{
  background:rgba(201,164,90,.2);
  color:var(--accent-bright);
  border-color:var(--accent);
}
.hero-stats{
  position:absolute;
  bottom:0;
  left:0;right:0;
  background:rgba(25,15,10,.72);
  border-top:1px solid rgba(201,164,90,.25);
  backdrop-filter:blur(8px);
  padding:22px 0;
}
.hero-stats .stat-item{text-align:center;padding:8px 0}
.hero-stats .stat-num{
  font-size:clamp(26px,3vw,36px);
  font-weight:800;
  color:var(--accent-bright);
  font-family:Georgia,serif;
  line-height:1.1;
}
.hero-stats .stat-label{
  font-size:13px;
  color:rgba(241,231,217,.75);
  margin-top:4px;
}
@media (max-width:767px){
  .hero{min-height:auto;padding:110px 0 120px}
  .hero-stats{position:relative;background:rgba(25,15,10,.85)}
}

/* Pain section */
.pain-section{background:var(--bg-light)}
.pain-card{
  background:var(--surface);
  border:1px solid var(--border-light);
  border-radius:var(--radius-card);
  padding:32px 28px;
  height:100%;
  transition:all .3s ease;
  box-shadow:var(--shadow-card);
  position:relative;
}
.pain-card:hover{
  transform:translateY(-4px);
  border-color:var(--accent);
  box-shadow:var(--shadow-hover);
}
.pain-card .card-num{
  font-family:Georgia,serif;
  font-size:24px;
  color:var(--accent);
  position:absolute;
  top:22px;right:24px;
  font-weight:700;
  opacity:.6;
}
.pain-card .card-icon{
  width:52px;height:52px;
  display:inline-flex;align-items:center;justify-content:center;
  border-radius:12px;
  background:rgba(201,164,90,.12);
  color:var(--primary);
  margin-bottom:18px;
  font-size:24px;
}
.pain-card h3{
  font-size:18px;
  font-weight:700;
  margin-bottom:10px;
}
.pain-card p{
  font-size:15px;
  color:var(--text-muted);
  line-height:1.7;
  margin-bottom:0;
}

/* Solution / Service modules */
.solution-section{background:linear-gradient(180deg,var(--bg-light) 0%,#F3EADB 100%)}
.service-module{
  background:var(--surface);
  border-radius:18px;
  border:1px solid var(--border-light);
  border-left:4px solid;
  border-image:linear-gradient(180deg,var(--accent-bright),var(--accent)) 1;
  box-shadow:var(--shadow-card);
  overflow:hidden;
  margin-bottom:48px;
  transition:all .3s ease;
}
.service-module:hover{
  box-shadow:var(--shadow-hover);
  transform:translateY(-3px);
}
.service-module:last-child{margin-bottom:0}
.service-module .img-wrap{
  position:relative;
  height:100%;
  min-height:300px;
  overflow:hidden;
}
.service-module .img-wrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .8s ease;
}
.service-module:hover .img-wrap img{transform:scale(1.04)}
.service-module .img-tag{
  position:absolute;
  bottom:16px;left:16px;
  background:rgba(25,15,10,.8);
  color:var(--text-light);
  font-size:13px;
  padding:6px 16px;
  border-radius:999px;
  border:1px solid rgba(201,164,90,.4);
  backdrop-filter:blur(4px);
}
.service-module .module-body{
  padding:36px 40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.service-module .module-badge{
  display:inline-block;
  background:rgba(45,109,110,.1);
  color:var(--teal);
  font-size:13px;
  font-weight:600;
  border-radius:999px;
  padding:5px 14px;
  margin-bottom:16px;
  letter-spacing:.05em;
}
.service-module h3{
  font-size:clamp(20px,2.2vw,24px);
  margin-bottom:12px;
}
.service-module .module-desc{
  color:var(--text-muted);
  font-size:15px;
  line-height:1.75;
  margin-bottom:20px;
}
.service-module .feature-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 16px;
  margin-bottom:24px;
}
.service-module .feature-grid .feature-item{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:var(--text-main);
}
.service-module .feature-grid .feature-item i{
  color:var(--accent);
  font-size:16px;
  flex-shrink:0;
}
@media (max-width:991px){
  .service-module .img-wrap{min-height:240px}
  .service-module .module-body{padding:28px 24px}
}

/* Results */
.results-section{
  background:linear-gradient(145deg,#241912,#1a100b);
  color:var(--text-light);
}
.results-section .section-head h2{color:var(--text-light)}
.results-section .section-head p{color:rgba(241,231,217,.7)}
.section-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-bottom:12px;
}
.section-divider .line{
  width:50px;height:1px;
  background:linear-gradient(90deg,transparent,var(--accent));
}
.section-divider .diamond{
  width:10px;height:10px;
  background:var(--accent);
  transform:rotate(45deg);
  border-radius:2px;
}
.results-stats .result-num{
  font-family:Georgia,serif;
  font-size:clamp(36px,4vw,48px);
  font-weight:800;
  color:var(--accent-bright);
  line-height:1.1;
  margin-bottom:4px;
}
.results-stats .result-label{
  font-size:14px;
  color:rgba(241,231,217,.7);
}
.progress-item{margin-bottom:22px}
.progress-item .progress-head{
  display:flex;
  justify-content:space-between;
  font-size:14px;
  color:var(--text-light);
  margin-bottom:8px;
}
.progress-bar{
  background:linear-gradient(90deg,var(--accent),var(--accent-bright));
  border-radius:999px;
  box-shadow:0 0 12px rgba(201,164,90,.3);
}
.guarantee-badges{
  margin-top:40px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
}
.guarantee-badges .guarantee-badge{
  border:1px solid rgba(201,164,90,.4);
  color:var(--accent-bright);
  border-radius:999px;
  padding:8px 20px;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(201,164,90,.06);
  transition:all .25s ease;
}
.guarantee-badges .guarantee-badge:hover{
  background:var(--accent);
  color:#3A2410;
  border-color:var(--accent);
}

/* Testimonials */
.testimonials-section{background:var(--bg-light)}
.testimonial-card{
  background:var(--surface);
  border:1px solid var(--border-light);
  border-radius:16px;
  padding:32px 28px;
  height:100%;
  position:relative;
  transition:all .3s ease;
  box-shadow:var(--shadow-card);
}
.testimonial-card:hover{
  border-color:var(--accent);
  box-shadow:var(--shadow-hover);
  transform:translateY(-4px);
}
.testimonial-card .quote-mark{
  position:absolute;
  top:16px;right:24px;
  font-family:Georgia,serif;
  font-size:64px;
  color:var(--border-light);
  line-height:1;
  pointer-events:none;
}
.testimonial-card .stars{
  color:var(--accent);
  font-size:16px;
  letter-spacing:2px;
  margin-bottom:16px;
}
.testimonial-card .testimonial-text{
  font-size:15px;
  line-height:1.8;
  color:var(--text-main);
  margin-bottom:20px;
}
.testimonial-card .testimonial-footer{
  display:flex;
  align-items:center;
  gap:12px;
}
.testimonial-card .avatar{
  width:44px;height:44px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-weight:700;
  font-size:16px;
  color:#fff;
  flex-shrink:0;
}
.testimonial-card .t-name{
  font-size:14px;
  font-weight:600;
  color:var(--text-main);
}
.testimonial-card .t-meta{
  font-size:12px;
  color:var(--text-muted);
}

/* Entry matrix */
.entry-section{background:#F3EADB}
.entry-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
}
.entry-item{
  background:var(--surface);
  border:1px solid var(--border-light);
  border-radius:14px;
  padding:28px 20px;
  text-align:center;
  transition:all .3s ease;
  display:block;
}
.entry-item:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
  border-color:var(--accent);
}
.entry-item i{
  font-size:32px;
  color:var(--primary);
  display:block;
  margin-bottom:12px;
}
.entry-item span{
  font-size:15px;
  font-weight:600;
  color:var(--text-main);
}
.entry-item small{
  display:block;
  color:var(--text-muted);
  font-size:12px;
  margin-top:6px;
}

/* News */
.news-section{background:var(--surface)}
.news-list-item{
  display:flex;
  gap:16px;
  padding:16px 0;
  border-bottom:1px solid var(--border-light);
  align-items:flex-start;
}
.news-list-item:last-child{border-bottom:none}
.news-list-item .news-date{
  flex-shrink:0;
  min-width:58px;
  text-align:center;
  background:var(--bg-light);
  border-radius:10px;
  padding:8px 4px;
  border:1px solid var(--border-light);
}
.news-list-item .news-date .d{font-size:20px;font-weight:700;color:var(--primary);line-height:1}
.news-list-item .news-date .m{font-size:11px;color:var(--text-muted)}
.news-list-item .news-title{
  font-size:16px;
  font-weight:600;
  color:var(--text-main);
  line-height:1.5;
  display:block;
  transition:color .2s;
}
.news-list-item .news-title:hover{color:var(--primary)}
.news-list-item p{
  font-size:13px;
  color:var(--text-muted);
  margin:6px 0 0;
  line-height:1.6;
}
.news-sidebar .news-tag{
  display:inline-block;
  background:var(--bg-light);
  border:1px solid var(--border-light);
  border-radius:999px;
  padding:6px 16px;
  font-size:13px;
  color:var(--text-main);
  margin:4px;
  transition:all .25s;
}
.news-sidebar .news-tag:hover{
  background:var(--accent);
  color:#3A2410;
  border-color:var(--accent);
}

/* Book CTA */
.book-section{
  background:linear-gradient(145deg,#1f1510,#120b08);
  color:var(--text-light);
  position:relative;
  overflow:hidden;
}
.book-section::before{
  content:'';
  position:absolute;
  width:360px;height:360px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(201,164,90,.08),transparent 70%);
  top:-100px;right:-100px;
  pointer-events:none;
}
.book-section .section-head h2{color:var(--text-light)}
.book-section .section-head p{color:rgba(241,231,217,.7)}
.book-reasons{
  list-style:none;
  padding:0;
  margin:0 0 24px;
}
.book-reasons li{
  display:flex;
  align-items:center;
  gap:12px;
  padding:8px 0;
  font-size:15px;
  color:rgba(241,231,217,.9);
}
.book-reasons li i{
  color:var(--accent);
  font-size:18px;
}
.book-form-card{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(201,164,90,.3);
  border-radius:18px;
  padding:36px;
  backdrop-filter:blur(10px);
}
.book-form-card .form-label{
  color:var(--text-light);
  font-size:14px;
  font-weight:500;
}
.book-form-card .form-control,.book-form-card .form-select{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(201,164,90,.25);
  color:var(--text-light);
  border-radius:10px;
  height:48px;
  padding:12px 16px;
  transition:all .25s;
}
.book-form-card .form-control::placeholder{color:#A48C70}
.book-form-card .form-control:focus,.book-form-card .form-select:focus{
  background:rgba(255,255,255,.12);
  border-color:var(--accent);
  box-shadow:0 0 0 4px rgba(201,164,90,.25);
  color:var(--text-light);
  outline:none;
}
.book-form-card .form-select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A45A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
  background-size:16px;
  -webkit-appearance:none;
  appearance:none;
}
.book-form-card textarea.form-control{height:auto;min-height:90px;resize:vertical}
.book-form-card option{background:#1f1510;color:var(--text-light)}
.form-badge{
  display:inline-block;
  border:1px solid var(--accent);
  color:var(--accent-bright);
  border-radius:999px;
  padding:6px 16px;
  font-size:13px;
  margin-bottom:20px;
  background:rgba(201,164,90,.08);
}
.btn-telephone{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:linear-gradient(135deg,#D9B36C,#B78A4A);
  color:#3A2410;
  border-radius:999px;
  padding:16px 36px;
  font-size:17px;
  font-weight:700;
  transition:all .25s;
  box-shadow:0 4px 20px rgba(183,138,74,.3);
}
.btn-telephone:hover{filter:brightness(1.08);box-shadow:0 8px 28px rgba(183,138,74,.5);transform:translateY(-2px);color:#3A2410}
.service-hours{
  margin-top:16px;
  font-size:14px;
  color:rgba(241,231,217,.7);
}
.share-buttons{
  display:flex;
  gap:12px;
  margin-top:24px;
}
.share-btn{
  width:44px;height:44px;
  border-radius:50%;
  border:1px solid rgba(201,164,90,.4);
  background:rgba(255,255,255,.05);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--accent);
  font-size:18px;
  transition:all .25s;
}
.share-btn:hover{
  background:var(--accent);
  color:#3A2410;
  border-color:var(--accent);
  transform:translateY(-3px);
}

/* FAQ */
.faq-section{background:var(--bg-light)}
.accordion-item{
  background:var(--surface);
  border:1px solid var(--border-light) !important;
  border-radius:12px !important;
  margin-bottom:14px;
  overflow:hidden;
}
.accordion-button{
  background:transparent;
  color:var(--text-main);
  font-size:16px;
  font-weight:600;
  padding:20px 24px;
  box-shadow:none !important;
  border:none;
  position:relative;
}
.accordion-button:not(.collapsed){
  background:linear-gradient(135deg,rgba(201,164,90,.1),rgba(201,164,90,.04));
  color:var(--primary-dark);
  box-shadow:none;
}
.accordion-button::after{
  content:'+';
  background:none;
  font-size:24px;
  font-weight:300;
  color:var(--accent);
  width:24px;
  height:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .3s ease;
  font-family:var(--font-sans);
}
.accordion-button:not(.collapsed)::after{
  content:'−';
  transform:rotate(0deg);
  color:var(--accent);
}
.accordion-body{
  padding:8px 24px 24px;
  color:var(--text-muted);
  font-size:15px;
  line-height:1.8;
}
.accordion-button:focus{
  outline:2px solid var(--accent);
  outline-offset:2px;
  box-shadow:none;
}

/* Footer */
.footer{
  background:#1F1812;
  color:rgba(241,231,217,.7);
  padding:70px 0 0;
  border-top:1px solid var(--border-accent);
}
.footer .footer-logo{
  font-size:22px;
  font-weight:700;
  color:var(--text-light);
  margin-bottom:12px;
}
.footer .footer-logo span{
  display:block;
  font-size:12px;
  color:var(--accent);
  font-weight:400;
  letter-spacing:.1em;
  margin-top:4px;
}
.footer p{font-size:14px;line-height:1.7;color:rgba(241,231,217,.65)}
.footer h5{
  color:var(--text-light);
  font-size:17px;
  font-weight:600;
  margin-bottom:20px;
}
.footer-links a{
  display:block;
  color:rgba(241,231,217,.65);
  font-size:14px;
  padding:5px 0;
  transition:all .2s;
}
.footer-links a:hover{color:var(--accent-bright);padding-left:4px}
.footer-contact li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  color:rgba(241,231,217,.65);
  padding:5px 0;
}
.footer-contact li i{color:var(--accent);margin-top:3px}
.qr-placeholder{
  width:130px;height:130px;
  border:2px dashed rgba(201,164,90,.4);
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  color:rgba(241,231,217,.5);
  font-size:12px;
  margin-bottom:10px;
}
.qr-placeholder i{font-size:32px;margin-bottom:6px;color:var(--accent)}
.footer-bottom{
  border-top:1px solid rgba(201,164,90,.15);
  padding:20px 0;
  margin-top:50px;
  text-align:center;
  font-size:13px;
  color:rgba(241,231,217,.45);
}
.footer-bottom a{color:rgba(241,231,217,.6)}
.footer-bottom a:hover{color:var(--accent)}

/* Float CTA */
.float-cta{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:1000;
  background:linear-gradient(135deg,#D9B36C,#B78A4A);
  color:#3A2410;
  border-radius:999px;
  padding:14px 28px;
  font-weight:700;
  font-size:15px;
  box-shadow:0 6px 24px rgba(183,138,74,.5);
  transition:all .25s;
  display:flex;
  align-items:center;
  gap:8px;
}
.float-cta:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 30px rgba(183,138,74,.6);
  color:#3A2410;
}
@media (max-width:576px){
  .float-cta{right:16px;bottom:16px;padding:12px 20px;font-size:14px}
}

@media (max-width:767px){
  .service-module .module-body{padding:24px 20px}
  .service-module .feature-grid{grid-template-columns:1fr}
  .book-form-card{padding:24px 18px}
  .entry-grid{grid-template-columns:repeat(2,1fr)}
}
