:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F7EDD4;
  --deep: #1A1108;
  --forest: #2C4A2E;
  --forest-mid: #3D6B40;
  --forest-light: #5A8C5E;
  --cream: #FAF6EE;
  --warm-white: #FFFDF7;
  --text: #2A1F0E;
  --text-muted: #6B5C44;
  --copper: #A0522D;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; }

/* ─── STICKY BOOKING BAR ─── */
.sticky-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--deep);
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 13px;
  color: var(--gold-pale);
  border-bottom: 1px solid var(--gold);
}
.sticky-bar strong { color: var(--gold-light); }
.sticky-bar .sticky-btn {
  background: var(--gold);
  color: var(--deep);
  padding: 7px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 12.5px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  letter-spacing: 0.3px;
}
.sticky-bar .sticky-btn:hover { background: var(--gold-light); }

/* ─── WHATSAPP FLOAT (DESKTOP CUT FIX) ─── */
.wa-float {
  position: fixed;
  bottom: 76px;
  right: 82px;            /* ✅ increase from 28px -> 52px */
  z-index: 9999;
  background: #25D366;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  animation: pulse-wa 2.5s infinite;
  transform: translateZ(0);
}

.wa-float svg { width: 30px; height: 30px; fill: white; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.75); }
}

/* mobile */
@media (max-width: 900px){
  .wa-float{
    right: 18px;
    bottom: 72px;
  }
}

/* ─── HEADER (LOGO + BOOK NOW) ─── */
.topbar{
  position: sticky;
  top: 0px; /* sticky bar ke niche */
  z-index: 900;
  background: rgba(250,246,238,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.3);
}

.topbar-inner{
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo{
  height: 40px;       /* desktop size */
  width: auto;
  display: block;
  object-fit: contain;
}

/* CTA Button */
.topbar-cta{
  background: var(--forest);
  color: var(--cream);
  padding: 10px 22px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.2px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.topbar-cta:hover{
  background: var(--forest-mid);
  transform: translateY(-1px);
}

/* Mobile */
@media (max-width: 900px){
  .topbar-inner{
    padding: 0 16px;
    height: 60px;
  }
  .brand-logo{
    height: 34px;   /* mobile size */
  }
  .topbar-cta{
    padding: 9px 16px;
    font-size: 13px;
  }
}

/* ─── HERO ─── */
.hero {
  min-height: 92vh;
  background:
    linear-gradient(160deg, rgba(26,17,8,0.72) 0%, rgba(44,74,46,0.55) 100%),
    url('assets/1.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 100px 80px 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  pointer-events: none;
  background: linear-gradient(to top, var(--cream), transparent);
}
.hero-content { max-width: 700px; animation: fadeUp 1s ease both; position: relative;
z-index: 2; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero-tag {
  display: inline-block;
  background: rgba(201,168,76,0.25);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(40px, 5.5vw, 68px);
  color: var(--warm-white);
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: 10px;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }

.hero-h2{
  font-size: clamp(22px,3vw,34px);
  font-weight: 400;
  color: rgba(255,253,247,0.75);
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,253,247,0.82);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
  font-weight: 300;
}
.hero-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 28px;
  margin-bottom: 38px;
}
.hero-bullet {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: rgba(255,253,247,0.85);
  line-height: 1.5;
}
.hero-bullet .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--deep);
  padding: 15px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--warm-white);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14.5px;
  text-decoration: none;
  display: inline-block;
  border: 1.5px solid rgba(255,253,247,0.5);
  transition: all 0.25s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

.hero-locations {
  position: absolute;
  bottom: 140px;
  right: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: fadeUp 1s 0.3s ease both;
}
.hero-loc-item {
  background: rgba(255,253,247,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,253,247,0.2);
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--warm-white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-loc-item .icon { font-size: 15px; }

/* ─── SECTIONS COMMON ─── */
section { position: relative; }
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 40px;
}
.section-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--forest-mid);
  display: block;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--deep);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--forest); }
.section-desc {
  font-size: 16.5px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 620px;
}
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--forest-light));
  border-radius: 3px;
  margin: 18px 0 32px;
}

/* ─── TRUST BAR ─── */
.trust-bar { background: var(--forest); padding: 22px 40px; }
.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(250,246,238,0.88);
  font-size: 13.5px;
  font-weight: 400;
  white-space: nowrap;
}
.trust-item .check {
  width: 22px;
  height: 22px;
  background: rgba(201,168,76,0.25);
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 11px;
  flex-shrink: 0;
}

/* ─── ABOUT (FULL CSS FOR THIS SECTION) ─── */
.about-section { background: var(--warm-white); }

.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap{ position: relative; }

.about-img-box{
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 60%, var(--gold) 100%);
  border-radius: 8px 80px 8px 8px;
  overflow: hidden;
  position: relative;
}

/* ✅ Actual image */
.about-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Badge */
.about-badge{
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.about-badge .num{
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--deep);
  line-height: 1;
}

.about-badge .label{
  font-size: 12px;
  color: var(--deep);
  font-weight: 500;
}

/* Quote */
.about-quote{
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  background: var(--gold-pale);
  border-radius: 0 8px 8px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  color: var(--forest);
  margin: 28px 0;
}

/* Points */
.about-points{
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.about-point{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text);
}

.about-point .aicon{
  width: 28px;
  height: 28px;
  background: rgba(44,74,46,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Responsive */
@media (max-width: 900px){
  .about-grid{ grid-template-columns: 1fr; gap: 36px; }
  .about-img-box{ border-radius: 14px; }
  .about-badge{ right: 12px; bottom: 12px; }
}

/* ─── PROBLEM ─── */
.problem-section { background: var(--deep); color: var(--cream); }
.problem-section .section-title { color: var(--warm-white); }
.problem-section .section-tag { color: var(--gold); }
.problem-title em{ color: var(--gold-light); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
  align-items: start;
}
.problem-block h3 {
  font-size: 22px;
  color: var(--gold-light);
  margin-bottom: 20px;
  font-weight: 600;
}
.problem-list { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(250,246,238,0.82);
  line-height: 1.6;
}
.problem-list li .dash {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
}
.problem-callout {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 12px;
  padding: 28px 32px;
  margin-top: 44px;
}
.problem-callout p { font-size: 16px; color: var(--gold-pale); line-height: 1.75; }
.problem-callout strong { color: var(--gold-light); }

/* ─── CONDITIONS ─── */
.conditions-section { background: var(--cream); }
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.condition-card {
  background: var(--warm-white);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.condition-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--forest), var(--gold));
  transform: scaleX(0);
  transition: transform 0.25s;
  transform-origin: left;
}
.condition-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(44,74,46,0.12); }
.condition-card:hover::before { transform: scaleX(1); }
.cond-icon { font-size: 28px; margin-bottom: 14px; }
.cond-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 8px;
}
.cond-desc { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }
.conditions-note {
  margin-top: 28px;
  background: rgba(160,82,45,0.08);
  border: 1px solid rgba(160,82,45,0.25);
  border-radius: 10px;
  padding: 16px 22px;
  font-size: 13.5px;
  color: var(--copper);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ─── PROCESS ─── */
.process-section { background: var(--forest); }
.process-section .section-title { color: var(--warm-white); }
.process-section .section-tag { color: var(--gold-light); }
.process-section .divider { background: linear-gradient(to right, var(--gold-light), rgba(255,255,255,0.3)); }
.process-section .section-desc { color: rgba(250,246,238,0.75); max-width: 560px; }
.process-title em{ color: var(--gold-light); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: rgba(201,168,76,0.35);
  z-index: 0;
}
.step-card { position: relative; z-index: 1; text-align: center; }
.step-num {
  width: 76px;
  height: 76px;
  background: var(--deep);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--gold-light);
}
.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 10px;
}
.step-desc { font-size: 13.5px; color: rgba(250,246,238,0.7); line-height: 1.65; }

/* ─── WHY CHOOSE ─── */
.why-section { background: var(--warm-white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(44,74,46,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.why-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 4px;
}
.why-text p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.why-visual {
  background: linear-gradient(135deg, var(--forest) 0%, var(--deep) 100%);
  border-radius: 20px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.why-stat { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; }
.why-stat:last-child { border-bottom: none; padding-bottom: 0; }
.why-stat .wnum {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.why-stat .wlabel { font-size: 14px; color: rgba(250,246,238,0.75); margin-top: 4px; }

/* ─── STATS ─── */
.stats-section {
  background: var(--gold-pale);
  border-top: 1px solid rgba(201,168,76,0.35);
  border-bottom: 1px solid rgba(201,168,76,0.35);
}
.stats-inner{ padding: 0 !important; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 60px 30px;
  border-right: 1px solid rgba(201,168,76,0.35);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 58px;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  display: block;
}
.stat-unit { font-size: 30px; }
.stat-label { font-size: 14px; color: var(--text-muted); margin-top: 8px; line-height: 1.5; }

/* ─── MEDIA ─── */
.media-section { background: var(--cream); }

.media-center { text-align: center; }
.media-center-tag { display: block; text-align: center; }
.media-center-title { text-align: center; }
.media-divider { margin: 18px auto 0; }

.media-logos {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 28px 0;
}

.media-logo-card {
  min-width: 190px;
  background: var(--warm-white);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 16px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(44,74,46,0.05);
}

.media-logo-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 14px 34px rgba(44,74,46,0.12);
}

.media-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(44,74,46,0.12), rgba(201,168,76,0.18));
  border: 1px solid rgba(201,168,76,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 18px rgba(44,74,46,0.08);
}

.media-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.4px;
  opacity: 0.9;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.media-logo-card:hover .media-logo {
  color: var(--forest);
  opacity: 1;
}

.media-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 10px;
}

/* animations */
.media-icon--pulse {
  animation: mediaPulse 2.4s infinite ease-in-out;
}

.media-icon--float {
  animation: mediaFloat 3.2s infinite ease-in-out;
}

@keyframes mediaPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 6px 18px rgba(44,74,46,0.08);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 10px 24px rgba(201,168,76,0.18);
  }
}

@keyframes mediaFloat {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(44,74,46,0.08);
  }
  50% {
    transform: translateY(-6px);
    box-shadow: 0 10px 24px rgba(201,168,76,0.16);
  }
}

/* mobile */
@media (max-width: 900px) {
  .media-logos {
    gap: 16px;
  }

  .media-logo-card {
    width: calc(50% - 8px);
    min-width: unset;
    padding: 18px 14px;
  }

  .media-icon {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }

  .media-logo {
    font-size: 17px;
  }
}

@media (max-width: 560px) {
  .media-logo-card {
    width: 100%;
  }
}
/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--deep); }
.testimonials-section .section-title { color: var(--warm-white); }
.testimonials-section .section-tag { color: var(--gold); }
.testimonials-tag{ display:block; text-align:center; }
.testimonials-title{ text-align:center; }
.testimonials-title em{ color: var(--gold-light); }
.testimonials-divider{ margin: 18px auto 0; }
.testimonials-top{ margin-top: 50px !important; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}
.testi-card {
  background: rgba(255,253,247,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  transition: all 0.25s;
}
.testi-card:hover {
  background: rgba(255,253,247,0.08);
  border-color: rgba(201,168,76,0.45);
  transform: translateY(-4px);
}
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  color: rgba(201,168,76,0.25);
  line-height: 0.6;
  margin-bottom: 16px;
  display: block;
}
.testi-text {
  font-size: 15px;
  color: rgba(250,246,238,0.82);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest-mid), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; color: var(--gold-light); font-size: 14px; }
.testi-role { font-size: 12.5px; color: rgba(250,246,238,0.5); }
.testi-stars { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }

/* ─── LOCATIONS ─── */
.locations-inner{ background: var(--cream); }
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 44px;
}
.location-card { border: 1px solid rgba(201,168,76,0.35); border-radius: 16px; overflow: hidden; }
.loc-header { background: var(--forest); padding: 24px 28px; display: flex; align-items: center; gap: 14px; }
.loc-icon {
  width: 44px;
  height: 44px;
  background: rgba(201,168,76,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.loc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--warm-white);
}
.loc-type { font-size: 12px; color: var(--gold-light); }
.loc-body { padding: 24px 28px; }
.loc-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.55;
}
.loc-detail .licon { color: var(--forest-mid); flex-shrink: 0; font-size: 16px; margin-top: 1px; }
.loc-cta {
  display: inline-block;
  margin-top: 16px;
  background: var(--gold-pale);
  color: var(--forest);
  padding: 10px 22px;
  border-radius: 40px;
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(201,168,76,0.4);
  transition: all 0.2s;
}
.loc-cta:hover { background: var(--gold); }

/* ─── FAQ ─── */
.faq-section { background: var(--cream); }
.faq-tag{ display:block; text-align:center; }
.faq-title{ text-align:center; }
.faq-divider{ margin: 18px auto; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 44px;
}
.faq-item {
  background: var(--warm-white);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 24px 26px;
  cursor: pointer;
  transition: all 0.25s;
}
.faq-item:hover { border-color: rgba(44,74,46,0.4); box-shadow: 0 4px 18px rgba(44,74,46,0.08); }

.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--deep);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq-plus{
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
}

.faq-a { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Accordion (JS uses this) */
.faq-item .faq-a{ display:none; }
.faq-item.is-open .faq-a{ display:block; }
.faq-item.is-open .faq-plus{ transform: rotate(45deg); }
.faq-plus{ transition: transform .2s ease; }

/* ─── CTA ─── */
.cta-section {
  background: linear-gradient(135deg, var(--forest) 0%, var(--deep) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 450px; height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, transparent 70%);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44,74,46,0.4) 0%, transparent 70%);
}
.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner .section-tag { justify-content: center; display: block; color: var(--gold-light); }
.cta-inner .section-title { color: var(--warm-white); text-align: center; }
.cta-inner .section-title em { color: var(--gold-light); }
.cta-inner p {
  font-size: 17px;
  color: rgba(250,246,238,0.78);
  line-height: 1.75;
  margin: 20px auto 40px;
  max-width: 580px;
}
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-primary{ font-size:16px; padding: 17px 36px; }
.cta-outline{ border-color: rgba(201,168,76,0.5); color: var(--gold-light); }

.cta-urgency {
  font-size: 13px;
  color: rgba(250,246,238,0.55);
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cta-urgency::before {
  content: '●';
  color: #4CAF50;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* ─── FOOTER ─── */
footer {
  background: var(--deep);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 50px 40px 30px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--warm-white);
  margin-bottom: 14px;
}
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 13.5px; color: rgba(250,246,238,0.55); line-height: 1.7; max-width: 280px; }
.footer-col h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 13.5px;
  color: rgba(250,246,238,0.55);
  text-decoration: none;
  margin-bottom: 10px;
  line-height: 1.55;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cream); }

.footer-book{
  color: var(--gold-light);
  font-weight: 600;
  margin-top: 8px;
  display:inline-block;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 12.5px;
  color: rgba(250,246,238,0.35);
}
.footer-bottom a {
  color: rgba(250,246,238,0.4);
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.2s;
}
.footer-bottom a:hover { color: var(--cream); }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero { padding: 100px 28px 80px; }
  .hero-bullets { grid-template-columns: 1fr; }
  .hero-locations { display: none; }
  .about-grid, .why-grid, .problem-grid, .locations-grid { grid-template-columns: 1fr; gap: 36px; }
  .conditions-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .trust-inner { gap: 20px; }
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .section-inner { padding: 70px 24px; }
}


/* ─── STICKY FOOTER ─── */
.sticky-footer{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(18, 12, 6, 0.94);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201,168,76,0.28);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.18);
}

.sticky-footer__inner{
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.sticky-footer__timerWrap{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.sticky-footer__label{
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,253,247,0.76);
  white-space: nowrap;
}

.sticky-footer__timer{
  min-width: 88px;
  text-align: center;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(201,168,76,0.14);
  border: 1px solid rgba(201,168,76,0.34);
  color: var(--gold-light);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  font-variant-numeric: tabular-nums;
  box-shadow: inset 0 0 18px rgba(201,168,76,0.08);
}

.sticky-footer__btn{
  flex-shrink: 0;
  background: var(--gold);
  color: var(--deep);
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(201,168,76,0.25);
}

.sticky-footer__btn:hover{
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* page content footer ke niche na chhup jaye */
body{
  padding-bottom: 92px;
}

/* mobile */
@media (max-width: 768px){
  .sticky-footer__inner{
    padding: 10px 14px;
    gap: 12px;
  }

  .sticky-footer__label{
    font-size: 11.5px;
  }

  .sticky-footer__timer{
    min-width: 74px;
    font-size: 18px;
    padding: 9px 10px;
  }

  .sticky-footer__btn{
    padding: 12px 18px;
    font-size: 13px;
  }

  body{
    padding-bottom: 88px;
  }
}

@media (max-width: 520px){
  .sticky-footer__label{
    display: none;
  }

  .sticky-footer__timerWrap{
    gap: 0;
  }

  .sticky-footer__timer{
    min-width: 78px;
  }
}