/* ============================================================
   MS SKIN & HAIR CLINIC — DESIGN SYSTEM
   ============================================================
   HOW TO EDIT:
   - All colors: change CSS variables in :root below
   - All fonts: change --font-* variables
   - Spacing/sizing: change --space-* variables
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Brand Colors */
  --gold:       #B8965A;
  --gold-light: #D4B483;
  --gold-pale:  #F7F2EA;
  --white:      #FFFFFF;
  --off-white:  #FAFAF8;
  --charcoal:   #1C1C1C;
  --dark:       #2A2A2A;
  --mid:        #5A5A5A;
  --muted:      #8A8A8A;
  --border:     #E8E3DA;
  --surface:    #F4F0E8;

  /* Semantic */
  --hair-accent:  #7C5CBF;
  --skin-accent:  #C06B8A;
  --laser-accent: #4A90D9;
  --body-accent:  #4A9E7A;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  /* Sizing */
  --max-width: 1200px;
  --nav-h:     72px;
  --radius:    4px;
  --radius-lg: 12px;

  /* Spacing scale */
  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2rem;
  --s5: 3rem;
  --s6: 4rem;
  --s7: 6rem;
  --s8: 8rem;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--charcoal); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { font-size: 15px; color: var(--mid); line-height: 1.75; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── LAYOUT ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--s4); }
.section { padding: var(--s7) 0; }
.section-sm { padding: var(--s5) 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s4); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3); }

/* ── GOLD DIVIDER ── */
.divider {
  display: flex; align-items: center; gap: var(--s2); margin-bottom: var(--s3);
}
.divider::before, .divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.divider.left::before { display: none; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-body); font-size: 13px; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; border-radius: var(--radius);
  transition: all 0.2s;
}
.btn-primary {
  background: var(--gold); color: var(--white);
}
.btn-primary:hover { background: #9E7D48; }
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-white {
  background: var(--white); color: var(--charcoal);
}
.btn-white:hover { background: var(--gold-pale); }
.btn-lg { padding: 16px 36px; font-size: 14px; }
.btn-sm { padding: 9px 20px; font-size: 12px; }

/* ── FLOATING CTA BUTTONS ── */
.float-cta {
  position: fixed; right: 20px; bottom: 20px; z-index: 999;
  display: flex; flex-direction: column; gap: 10px;
}
.float-btn {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s;
}
.float-btn:hover { transform: scale(1.1); }
.float-wa  { background: #25D366; }
.float-tel { background: var(--gold); }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  transition: top 0.2s ease;
  transition: box-shadow 0.2s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: var(--max-width); margin: 0 auto; padding: 0 var(--s4);
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 44px; width: auto; }
.nav-logo span { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--charcoal); }
.nav-links { display: flex; align-items: center; gap: var(--s1); }
.nav-item { position: relative; }
.nav-link {
  padding: 8px 14px; font-size: 13.5px; font-weight: 500; color: var(--dark);
  background: none; border: none;
  border-radius: var(--radius); transition: color 0.15s, background 0.15s;
  display: flex; align-items: center; gap: 4px;
}
.nav-link:hover { color: var(--gold); background: var(--gold-pale); }
.nav-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 4px); left: 0;
  min-width: 220px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.2s; z-index: 100;
  padding: var(--s1);
}
.nav-item:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block; padding: 9px 14px; font-size: 13.5px; color: var(--mid);
  border-radius: var(--radius); transition: all 0.15s;
}
.dropdown a:hover { color: var(--gold); background: var(--gold-pale); }
.dropdown-section { padding: var(--s1) 0; }
.dropdown-section:not(:last-child) { border-bottom: 1px solid var(--border); }
.dropdown-label {
  padding: 6px 14px; font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
/* Mega dropdown */
.mega-dropdown {
  position: absolute; top: calc(100% + 4px); left: -200px;
  width: 700px; background: var(--white);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.2s; z-index: 100;
  padding: var(--s3);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3);
}
.nav-item:hover .mega-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-col h5 {
  font-family: var(--font-body); font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold);
  margin-bottom: var(--s1); padding-bottom: var(--s1);
  border-bottom: 1px solid var(--border);
}
.mega-col a {
  display: block; padding: 5px 0; font-size: 13px; color: var(--mid);
  transition: color 0.15s;
}
.mega-col a:hover { color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: var(--s2); margin-left: var(--s2); }
.nav-tel { font-size: 13px; font-weight: 500; color: var(--charcoal); }
.nav-tel span { color: var(--muted); font-size: 11px; display: block; }

/* Mobile toggle */
.nav-toggle { display: none; background: none; border: none; padding: 12px; }
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--charcoal);
  margin: 5px 0; transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh; padding-top: var(--nav-h);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: #0D0A05;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg > div {
  position: absolute; inset: 0;
}
/* IMAGE PLACEHOLDER — replace with: <img src="images/hero.jpg" alt=""> */
.hero-bg img, .hero-bg video {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,8,6,0.72) 0%,
    rgba(10,8,6,0.52) 50%,
    rgba(10,8,6,0.35) 100%
  );
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-content .eyebrow { margin-bottom: var(--s2); color: var(--gold-light) !important; }
.hero-content h1 { margin-bottom: var(--s3); color: #fff; }
.hero-content h1 em { color: var(--gold); font-style: italic; }
.hero-content p { font-size: 17px; margin-bottom: var(--s4); max-width: 540px; color: rgba(255,255,255,0.82); }
.hero-actions { display: flex; gap: var(--s2); flex-wrap: wrap; }
.hero-stats {
  margin-top: var(--s5); display: flex; gap: var(--s4); flex-wrap: wrap;
  padding-top: var(--s4); border-top: 1px solid rgba(255,255,255,0.18);
}
.hero-stat-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 500; color: #fff; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* ── MARQUEE TICKER ── */
.ticker { background: var(--gold); padding: 12px 0; overflow: hidden; }
.ticker-track { display: flex; gap: var(--s5); white-space: nowrap; animation: ticker 30s linear infinite; }
.ticker-item { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); }
.ticker-dot { color: rgba(255,255,255,0.5); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: var(--s5); }
.section-header .eyebrow { margin-bottom: var(--s2); }
.section-header h2 { margin-bottom: var(--s2); }
.section-header p { max-width: 520px; margin: 0 auto; }
.section-header.left { text-align: left; }
.section-header.left p { margin: 0; }

/* ── SERVICE CARDS ── */
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.09); transform: translateY(-4px); }
.service-card-img {
  /* IMAGE PLACEHOLDER: replace with <img src="images/treatment-name.jpg" alt=""> */
  background: var(--surface); height: 220px; overflow: hidden;
}
.service-card-img img, .service-card-img video {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s;
}
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body { padding: var(--s3); }
.service-card-tag {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.05em;
  background: var(--gold-pale); color: var(--gold); margin-bottom: var(--s1);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.service-card p { font-size: 13.5px; margin-bottom: var(--s2); }
.service-card-link { font-size: 13px; font-weight: 500; color: var(--gold); display: inline-flex; align-items: center; gap: 4px; }
.service-card-link:hover { gap: 8px; }

/* ── TREATMENT PAGE LAYOUT ── */
.treatment-hero {
  padding-top: var(--nav-h); min-height: 62vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: #0D0B09;
}
.treatment-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.treatment-hero-bg > div {
  position: absolute; inset: 0;
}
.treatment-hero-bg > img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
/* ─────────────────────────────────────────────────────────────────────
   HOW TO ADD YOUR OWN IMAGE:
   Replace the <div class="treatment-hero-placeholder"> inside .treatment-hero-bg
   with: <img src="../../images/YOUR-IMAGE.jpg" alt="Treatment name">
   Recommended size: 1600×900px minimum, JPG at 80% quality
   ───────────────────────────────────────────────────────────────────── */
.treatment-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  display: block;
}
.treatment-hero-placeholder {
  width: 100%; height: 100%; min-height: 62vh;
  background:
    linear-gradient(135deg, #1a1208 0%, #2d1f0e 35%, #1a1810 65%, #0f1218 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.treatment-hero-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 50%, rgba(184,150,90,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(100,80,40,0.12) 0%, transparent 60%);
}
.treatment-hero-placeholder-label {
  position: relative; z-index: 1;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(184,150,90,0.5);
  border: 1px dashed rgba(184,150,90,0.25); padding: 10px 20px;
  border-radius: 6px;
}
.treatment-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(8,6,4,0.78) 0%,
    rgba(8,6,4,0.58) 55%,
    rgba(8,6,4,0.35) 100%
  );
}
.treatment-hero-content {
  position: relative; z-index: 2; max-width: 600px;
}
.treatment-hero-content .eyebrow { margin-bottom: var(--s2); color: var(--gold) !important; }
.treatment-hero-content h1 { margin-bottom: var(--s2); color: #fff; }
.treatment-hero-content p { font-size: 16px; margin-bottom: var(--s3); color: rgba(255,255,255,0.80); }

/* Treatment info grid */
.treatment-meta {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px; margin-bottom: var(--s4);
}
.treatment-meta-item {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--s2) var(--s2);
}
.treatment-meta-label { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.treatment-meta-value { font-size: 17px; font-weight: 600; color: var(--charcoal); }
.treatment-meta-sub { font-size: 11px; color: var(--muted); }

/* ── ABOUT SECTION ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6); align-items: center; }
.about-img {
  border-radius: var(--radius-lg); overflow: hidden;
  /* IMAGE PLACEHOLDER: <img src="images/dr-megha.jpg" alt="Dr. Megha Sharma"> */
  background: var(--surface); height: 520px;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-credentials { display: flex; flex-wrap: wrap; gap: var(--s1); margin: var(--s3) 0; }
.credential-badge {
  padding: 5px 12px; border: 1px solid var(--border); border-radius: 999px;
  font-size: 12px; color: var(--mid);
}

/* ── DOCTOR CARD ── */
.doctor-card {
  text-align: center; padding: var(--s4);
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
}
.doctor-card-img {
  width: 140px; height: 140px; border-radius: 50%; margin: 0 auto var(--s2);
  overflow: hidden; border: 3px solid var(--gold-pale);
  /* IMAGE PLACEHOLDER: <img src="images/doctor.jpg" alt="Doctor Name"> */
  background: var(--surface);
}
.doctor-card-img img { width: 100%; height: 100%; object-fit: cover; }
.doctor-card h4 { margin-bottom: 4px; }
.doctor-card .qualification { font-size: 12px; color: var(--muted); }
.doctor-card .speciality { font-size: 13px; color: var(--gold); font-weight: 500; margin-top: 4px; }

/* ── BEFORE/AFTER GALLERY ── */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--s3); }
.gallery-item {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  /* IMAGE PLACEHOLDER: <img src="images/before-after.jpg" alt=""> */
  background: var(--surface); aspect-ratio: 1/1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item video { width: 100%; height: 100%; object-fit: cover; }
.gallery-tag {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.6); color: var(--white);
  font-size: 11px; padding: 4px 10px; border-radius: 999px;
}

/* ── VIDEO TESTIMONIALS ── */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--s2); }
.video-card {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  aspect-ratio: 9/16; background: var(--charcoal);
  /* VIDEO PLACEHOLDER: <video src="videos/testimonial.mp4" playsinline muted loop poster="images/thumb.jpg"></video> */
}
.video-card video { width: 100%; height: 100%; object-fit: cover; }
.video-play-btn {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.2);
}
.video-play-btn svg { width: 48px; height: 48px; color: white; }

/* ── TESTIMONIAL CARDS ── */
.testimonial-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--s3);
}
.testimonial-stars { color: var(--gold); font-size: 14px; margin-bottom: var(--s1); }
.testimonial-text { font-size: 14px; font-style: italic; margin-bottom: var(--s2); color: var(--mid); }
.testimonial-author { font-size: 13px; font-weight: 600; color: var(--charcoal); }
.testimonial-location { font-size: 12px; color: var(--muted); }

/* ── FAQ ── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--s2) 0; cursor: pointer; background: none; border: none;
  text-align: left; width: 100%; font-family: inherit; gap: var(--s2);
}
.faq-q-text { font-size: 15px; font-weight: 500; color: var(--charcoal); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold); transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: 14px; color: var(--mid); line-height: 1.75; padding-bottom: var(--s2); display: none; }
.faq-item.open .faq-a { display: block; }

/* ── BOOKING FORM ── */
.booking-section {
  background: var(--charcoal); color: var(--white); padding: var(--s7) 0;
}
.booking-section h2 { color: var(--white); }
.booking-section .eyebrow { color: var(--gold-light); }
.booking-section p { color: rgba(255,255,255,0.65); }
.booking-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); margin-top: var(--s4);
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-label { font-size: 12px; font-weight: 500; letter-spacing: 0.05em; color: rgba(255,255,255,0.7); }
.form-input, .form-select, .form-textarea {
  padding: 12px 16px; font-family: inherit; font-size: 14px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); color: var(--white);
  transition: border-color 0.2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-select option { background: var(--charcoal); }
.form-textarea { resize: vertical; min-height: 100px; }

/* ── LOCATIONS ── */
.location-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: var(--s3); display: flex; gap: var(--s2); align-items: flex-start;
}
.location-icon { width: 44px; height: 44px; border-radius: var(--radius); background: var(--gold-pale); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); font-size: 20px; }
.location-card h4 { font-size: 1rem; margin-bottom: 4px; }
.location-card p { font-size: 13px; }
.location-card a { font-size: 13px; color: var(--gold); font-weight: 500; }

/* ── STATS BAR ── */
.stats-bar { background: var(--gold-pale); padding: var(--s5) 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s4); text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 500; color: var(--charcoal); }
.stat-label { font-size: 13px; color: var(--mid); margin-top: 2px; }

/* ── BLOG CARDS ── */
.blog-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.blog-card-img {
  height: 200px; overflow: hidden;
  /* IMAGE PLACEHOLDER: <img src="images/blog.jpg" alt=""> */
  background: var(--surface);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: var(--s3); }
.blog-card-meta { font-size: 12px; color: var(--muted); margin-bottom: 8px; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.blog-card p { font-size: 13px; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: var(--s2) 0; }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); }
.breadcrumb-inner a { color: var(--muted); }
.breadcrumb-inner a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--border); }

/* ── FOOTER ── */
.footer { background: #141414; color: rgba(255,255,255,0.7); padding: var(--s7) 0 var(--s4); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--s5); margin-bottom: var(--s5); }
.footer-brand img { height: 40px; margin-bottom: var(--s2); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.5); max-width: 280px; }
.footer-social { display: flex; gap: var(--s1); margin-top: var(--s3); }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
  color: rgba(255,255,255,0.6); transition: all 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--s2); }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.55); padding: 4px 0; transition: color 0.15s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: var(--s3); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--s2); }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom a { font-size: 12px; color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--gold); }

/* ── INTERNAL TRAINING PAGE (Hidden from public) ── */
.training-page body { background: #F8F6F3; }

/* ── UTILITY ── */
.text-gold  { color: var(--gold); }
.text-center { text-align: center; }
.bg-surface { background: var(--surface); }
.bg-off-white { background: var(--off-white); }
.bg-dark { background: var(--charcoal); }
.mt-1 { margin-top: var(--s1); } .mt-2 { margin-top: var(--s2); } .mt-3 { margin-top: var(--s3); }
.mb-2 { margin-bottom: var(--s2); } .mb-3 { margin-bottom: var(--s3); } .mb-4 { margin-bottom: var(--s4); }
.gap-sm { gap: var(--s2); }
.hidden { display: none; }

/* ── ANNOUNCEMENT BAR ── */
.announce-bar { background: var(--charcoal); color: var(--white); padding: 9px 0; text-align: center; }
.announce-bar p { font-size: 12.5px; color: rgba(255,255,255,0.85); margin: 0; }
.announce-bar a { color: var(--gold); font-weight: 500; }
.announce-bar + .nav { top: 38px; }
.announce-bar + .nav.past-announce { top: 0; }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 850;
  background: var(--white); overflow-y: auto; padding: var(--s4);
  padding-top: calc(var(--nav-h) + var(--s4));
}
.mobile-menu.open { display: block; }
.mobile-menu-section { border-bottom: 1px solid var(--border); padding: var(--s2) 0; }
.mobile-menu-title { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: var(--s1); }
.mobile-menu a { display: block; padding: 12px 0; font-size: 14px; color: var(--mid); }
.mobile-menu a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { height: 320px; }
  .treatment-hero { min-height: 52vh; }
  .treatment-hero-content { max-width: 100%; }
  .treatment-hero-placeholder { min-height: 52vh; }
  .booking-form { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: var(--s3); }
  .mega-dropdown { display: none; }
  .container { padding: 0 var(--s2); }
  h1 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: var(--s3); }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ── HOW-LIST (treatment steps) ── */
.how-list { list-style: none; padding: 0; margin: 0; }
.how-list li { display: flex; gap: 14px; align-items: flex-start; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px; line-height: 1.65; color: var(--mid); }
.how-list li:last-child { border-bottom: none; }
.how-num { min-width: 28px; height: 28px; border-radius: 50%; background: var(--gold-pale); color: var(--gold); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; border: 1px solid var(--gold); }

/* ── DOCTOR STRIP (inline bar) ── */
.doctor-strip { background: var(--gold-pale); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1.25rem 0; }

/* ── BLOG page placeholder ── */
.blog-placeholder { text-align: center; padding: 4rem 2rem; color: var(--muted); }

/* ── LANDING PAGES (weight-loss-delhi, anti-ageing-delhi, etc.) ── */
.lp-anchor-bar { background: var(--off-white); border-bottom: 1px solid var(--border); padding: 14px 0; position: relative; z-index: 5; }
.lp-anchor-inner { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.lp-anchor-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-right: 4px; }
.lp-anchor-inner a { padding: 6px 14px; border: 1px solid var(--border); border-radius: 999px; font-size: 12.5px; color: var(--mid); background: var(--white); transition: all 0.15s; }
.lp-anchor-inner a:hover { border-color: var(--gold); color: var(--gold); }
.lp-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s6); align-items: center; padding: var(--s6) 0; border-bottom: 1px solid var(--border); scroll-margin-top: calc(var(--nav-h) + 60px); }
.lp-row:last-child { border-bottom: none; }
.lp-row.reverse .lp-img { order: 2; }
.lp-img { border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); aspect-ratio: 4/3; }
.lp-img img { width: 100%; height: 100%; object-fit: cover; }
.lp-chips { display: flex; gap: 8px; flex-wrap: wrap; margin: var(--s2) 0; }
.lp-chip { font-size: 11.5px; padding: 4px 12px; border-radius: 999px; background: var(--gold-pale); color: var(--gold); font-weight: 500; }
.lp-benefits { margin: var(--s2) 0 var(--s3); }
.lp-benefits li { display: flex; gap: 10px; align-items: flex-start; padding: 5px 0; font-size: 14px; color: var(--mid); line-height: 1.6; }
.lp-benefits li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.lp-actions { display: flex; gap: var(--s2); flex-wrap: wrap; }
@media (max-width: 768px) {
  .lp-row { grid-template-columns: 1fr; gap: var(--s3); padding: var(--s5) 0; }
  .lp-row.reverse .lp-img { order: 0; }
  .lp-img { aspect-ratio: 16/10; }
}
