/* =========================================================
   SHREE NIDHI AYURVEDA — CORE STYLESHEET
   Design tokens: deep forest green, sage, turmeric gold, clay,
   warm ivory. Display accents in Cinzel, body in Poppins,
   Hindi copy in Noto Sans Devanagari. Signature motif: a
   line-art leaf-vein that unfurls in the hero and recurs as a
   section divider; a three-part "Tridosha wheel" replaces the
   generic numbered feature grid.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

:root{
  /* ---- color ---- */
  --forest:      #16321F;
  --forest-dark: #0E2216;
  --sage:        #4B7857;
  --sage-light:  #EAF1E6;
  --gold:        #C69436;
  --gold-light:  #E8C877;
  --clay:        #A65332;
  --ivory:       #FBF7EE;
  --ivory-deep:  #F3EBDA;
  --ink:         #23291F;
  --ink-soft:    #5B6459;
  --white:       #FFFFFF;
  --line:        rgba(22,50,31,0.12);

  /* ---- type ---- */
  --f-display: 'Cinzel', serif;
  --f-body:    'Poppins', sans-serif;
  --f-hindi:   'Noto Sans Devanagari', sans-serif;

  /* ---- scale ---- */
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-sm: 0 4px 18px rgba(22,50,31,0.08);
  --shadow-md: 0 14px 40px rgba(22,50,31,0.14);
  --shadow-gold: 0 10px 30px rgba(198,148,54,0.28);
  --container: 1180px;
  --header-h: 88px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--f-body);
  color:var(--ink);
  background:var(--ivory);
  line-height:1.7;
  font-weight:400;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
.hi{ font-family:var(--f-hindi); }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }
h1,h2,h3,h4{ margin:0 0 .5em; font-weight:600; line-height:1.25; color:var(--forest-dark); }
p{ margin:0 0 1em; color:var(--ink-soft); }
.container{ width:100%; max-width:var(--container); margin:0 auto; padding:0 24px; }
section{ position:relative; }

/* ---- eyebrow / display headings ---- */
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--f-display);
  font-size:13px; letter-spacing:.22em; text-transform:uppercase;
  color:var(--clay); font-weight:600; margin-bottom:14px;
}
.eyebrow::before{
  content:''; width:26px; height:1px; background:var(--gold);
}
.eyebrow .hi{ font-family:var(--f-hindi); letter-spacing:0; font-size:14px; color:var(--sage); }

.section-title{
  font-family:var(--f-display);
  font-size:clamp(28px,4vw,44px);
  color:var(--forest-dark);
  margin-bottom:10px;
}
.section-title .accent{ color:var(--gold); }
.section-sub{
  font-family:var(--f-hindi);
  color:var(--sage);
  font-size:17px;
  margin-bottom:20px;
}
.section-head{ max-width:720px; margin:0 auto 56px; text-align:center; }
.section-head.left{ margin:0 0 44px; text-align:left; }

/* ---- leaf-vein divider (signature motif) ---- */
.leaf-divider{ display:flex; align-items:center; justify-content:center; margin:0 auto 40px; width:220px; }
.leaf-divider svg{ width:100%; height:auto; }
.leaf-divider path{ stroke:var(--gold); }

/* ---- buttons ---- */
.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:15px 30px; border-radius:100px;
  font-size:14.5px; font-weight:600; letter-spacing:.03em;
  border:1px solid transparent; transition:.35s ease;
  white-space:nowrap;
}
.btn svg{ width:17px; height:17px; flex-shrink:0; }
.btn-primary{ background:var(--forest); color:var(--white); box-shadow:var(--shadow-sm); }
.btn-primary:hover{ background:var(--forest-dark); transform:translateY(-2px); box-shadow:var(--shadow-md); }
.btn-gold{ background:var(--gold); color:var(--forest-dark); box-shadow:var(--shadow-gold); }
.btn-gold:hover{ background:var(--gold-light); transform:translateY(-2px); }
.btn-outline{ background:transparent; border-color:rgba(255,255,255,.55); color:var(--white); }
.btn-outline:hover{ background:rgba(255,255,255,.12); border-color:#fff; }
.btn-outline-dark{ background:transparent; border-color:var(--forest); color:var(--forest); }
.btn-outline-dark:hover{ background:var(--forest); color:var(--white); }
.btn-block{ width:100%; justify-content:center; }
.btn-sm{ padding:10px 20px; font-size:13px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position:fixed; top:0; left:0; width:100%; z-index:1000;
  padding:20px 0; transition:.4s ease;
}
.site-header.solid{
  background:rgba(251,247,238,0.96); backdrop-filter:blur(10px);
  box-shadow:0 4px 26px rgba(22,50,31,0.08);
  padding:12px 0;
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.brand{ display:flex; align-items:center; gap:12px; }
.brand img{
  height:50px;
  width:auto;
  display:block;
  transition:all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-header.solid .brand img{
  height:42px;
  filter:invert(1);
}

.main-nav{ display:flex; align-items:center; gap:2px; }
.main-nav a{
  padding:10px 16px; font-size:14.5px; font-weight:500;
  color:rgba(255,255,255,.92); border-radius:100px; transition:.25s;
  position:relative;
}
.site-header.solid .main-nav a{ color:var(--ink); }
.main-nav a:hover, .main-nav a.active{ background:rgba(255,255,255,.14); }
.site-header.solid .main-nav a:hover, .site-header.solid .main-nav a.active{ background:var(--sage-light); color:var(--forest); }

.header-cta{ display:flex; align-items:center; gap:12px; }
.icon-btn{
  width:44px; height:44px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.14); color:#fff; transition:.3s; flex-shrink:0;
}
.site-header.solid .icon-btn{ background:var(--sage-light); color:var(--forest); }
.icon-btn:hover{ background:var(--gold); color:var(--forest-dark); }
.icon-btn svg{ width:19px; height:19px; }

.nav-toggle{ display:none; width:44px; height:44px; border-radius:50%; border:0; background:rgba(255,255,255,.14); align-items:center; justify-content:center; }
.site-header.solid .nav-toggle{ background:var(--sage-light); }
.nav-toggle span{ display:block; width:20px; height:2px; background:#fff; position:relative; transition:.3s; }
.site-header.solid .nav-toggle span{ background:var(--forest); }
.nav-toggle span::before,.nav-toggle span::after{ content:''; position:absolute; left:0; width:20px; height:2px; background:inherit; transition:.3s; }
.nav-toggle span::before{ top:-6px; } .nav-toggle span::after{ top:6px; }
.nav-toggle.open span{ background:transparent; }
.nav-toggle.open span::before{ transform:rotate(45deg); top:0; }
.nav-toggle.open span::after{ transform:rotate(-45deg); top:0; }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative; min-height:100vh; display:flex; align-items:center;
  background:radial-gradient(circle at 82% 18%, #234a30 0%, var(--forest) 46%, var(--forest-dark) 100%);
  overflow:hidden; padding-top:var(--header-h);
}
.hero::after{
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(circle at 10% 90%, rgba(198,148,54,0.16), transparent 45%),
    radial-gradient(circle at 90% 100%, rgba(75,120,87,0.35), transparent 55%);
  pointer-events:none;
}
.hero-inner{ position:relative; z-index:2; display:grid; grid-template-columns:1.1fr .9fr; gap:60px; align-items:center; width:100%; }
.hero-eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  font-family:var(--f-hindi); color:var(--gold-light); font-size:15px;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18);
  padding:8px 18px; border-radius:100px; margin-bottom:26px;
}
.hero-eyebrow .dot{ width:7px; height:7px; border-radius:50%; background:var(--gold); }
.hero h1{
  font-family:var(--f-display); color:#fff; font-weight:600;
  font-size:clamp(38px,5.4vw,64px); line-height:1.12; margin-bottom:20px;
}
.hero h1 span{ color:var(--gold-light); }
.hero .hindi-line{ font-family:var(--f-hindi); color:rgba(255,255,255,.82); font-size:clamp(18px,2vw,22px); margin-bottom:22px; }
.hero p.lede{ color:rgba(255,255,255,.72); font-size:16.5px; max-width:520px; margin-bottom:34px; }
.hero-ctas{ display:flex; flex-wrap:wrap; gap:16px; margin-bottom:44px; }
.hero-stats{ display:flex; gap:38px; flex-wrap:wrap; }
.hero-stat b{ display:block; font-family:var(--f-display); font-size:30px; color:var(--gold-light); }
.hero-stat span{ font-size:13px; color:rgba(255,255,255,.65); letter-spacing:.03em; }

.hero-visual{ position:relative; display:flex; justify-content:center; }
.hero-photo-wrapper{
  position:relative; width:100%; max-width:400px; aspect-ratio:3/4;
}
.hero-photo-frame{
  position:absolute; inset:0;
  border-radius:var(--radius-lg); overflow:hidden; border:1px solid rgba(255,255,255,.18);
  box-shadow:var(--shadow-md);
  background:linear-gradient(160deg,#2c5138,var(--forest-dark));
}
.hero-photo-frame .ph-fallback{
  position:absolute; inset:0; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px;
  color:rgba(255,255,255,.55); text-align:center; padding:20px;
}
.hero-photo-frame .ph-fallback svg{ width:56px; height:56px; opacity:.7; }
.hero-photo-frame .ph-fallback small{ font-size:12px; letter-spacing:.04em; }
.hero-badge{
  position:absolute; bottom:-22px; left:-22px; background:var(--gold); color:var(--forest-dark);
  border-radius:var(--radius-md); padding:14px 20px; box-shadow:var(--shadow-gold);
  width: max-content; max-width:290px; text-align:center;
}
.hero-badge b{ display:block; font-family:var(--f-display); font-size:16px; margin-bottom:4px; }
.hero-badge span{ display:block; font-size:12.5px; opacity:.85; }
.leaf-float{ position:absolute; opacity:.55; pointer-events:none; }

.hero-badge b{
    display:block;
    font-family:var(--f-display);
    font-size:16px;
    margin-bottom:4px;
}

.hero-badge span{
    display:block;
    font-size:12.5px;
    opacity:.85;
}

.leaf-float{
    position:absolute;
    opacity:.55;
    pointer-events:none;
}

/* Mobile + Tablet me hide */
@media (max-width: 991px){
    .hero-badge{
        display:none !important;
    }
}

.scroll-cue{ position:absolute; bottom:28px; left:50%; transform:translateX(-50%); display:flex; flex-direction:column; align-items:center; gap:8px; color:rgba(255,255,255,.55); font-size:11px; letter-spacing:.15em; z-index:2; }
.scroll-cue .stick{ width:1px; height:34px; background:linear-gradient(var(--gold),transparent); }

/* =========================================================
   SECTIONS (shared)
   ========================================================= */
.section{ padding:110px 0; }
.section.tight{ padding:80px 0; }
.section-sage{ background:var(--sage-light); }
.section-forest{ background:var(--forest); color:#fff; }
.section-forest .section-title{ color:#fff; }
.section-forest p{ color:rgba(255,255,255,.7); }

/* stat strip */
.stat-strip{ background:var(--forest-dark); padding:46px 0; }
.stat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; text-align:center; }
.stat-item b{ display:block; font-family:var(--f-display); font-size:clamp(26px,3vw,38px); color:var(--gold-light); }
.stat-item span{ color:rgba(255,255,255,.6); font-size:13px; letter-spacing:.03em; }

/* generic card */
.card{
  background:#fff; border-radius:var(--radius-md); padding:34px 28px;
  box-shadow:var(--shadow-sm); border:1px solid var(--line); transition:.35s ease;
}
.card:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); border-color:transparent; }
.card-icon{
  width:56px; height:56px; border-radius:16px; background:var(--sage-light); color:var(--forest);
  display:flex; align-items:center; justify-content:center; margin-bottom:18px; transition:.3s;
}
.card:hover .card-icon{ background:var(--gold); color:var(--forest-dark); }
.card-icon svg{ width:26px; height:26px; }
.card h3{ font-size:18.5px; margin-bottom:8px; }
.card .hi{ display:block; font-size:13.5px; color:var(--sage); margin-bottom:10px; font-weight:500; }
.card p{ font-size:14.5px; margin-bottom:14px; }
.card-link{ font-size:13.5px; font-weight:600; color:var(--clay); display:inline-flex; align-items:center; gap:6px; }
.card-link svg{ width:14px; height:14px; transition:.25s; }
.card-link:hover svg{ transform:translateX(4px); }

.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:34px; }
.grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
.grid-6{ display:grid; grid-template-columns:repeat(6,1fr); gap:22px; }

/* tridosha wheel (signature About element) */
.tridosha{ display:flex; justify-content:center; align-items:center; gap:0; flex-wrap:wrap; position:relative; }
.dosha{
  width:200px; text-align:center; padding:34px 22px; position:relative;
}
.dosha .ring{
  width:104px; height:104px; border-radius:50%; margin:0 auto 18px; display:flex; align-items:center; justify-content:center;
  border:2px solid var(--gold); position:relative; background:var(--white); box-shadow:var(--shadow-sm);
}
.dosha .ring svg{ width:44px; height:44px; color:var(--forest); }
.dosha h4{ font-family:var(--f-display); font-size:17px; letter-spacing:.04em; }
.dosha .hi{ font-family:var(--f-hindi); color:var(--sage); font-size:14px; display:block; margin-bottom:8px; }
.dosha p{ font-size:13.5px; }
.dosha-connector{ width:60px; height:1px; background:repeating-linear-gradient(90deg,var(--gold) 0 6px,transparent 6px 12px); margin-top:-90px; }

/* image placeholders (no real photography available) */
.ph{
  position:relative; border-radius:var(--radius-md); overflow:hidden; background:linear-gradient(150deg,var(--sage-light),#dfe9d9);
  display:flex; align-items:center; justify-content:center; color:var(--sage); text-align:center;
}
.ph .ph-inner{ display:flex; flex-direction:column; align-items:center; gap:8px; padding:20px; }
.ph svg{ width:34px; height:34px; opacity:.6; }
.ph small{ font-size:11px; letter-spacing:.05em; color:var(--ink-soft); opacity:.7; }

/* timeline (Doctor page) */
.timeline{ position:relative; max-width:760px; margin:0 auto; }
.timeline::before{ content:''; position:absolute; left:20px; top:6px; bottom:6px; width:2px; background:var(--line); }
.t-item{ position:relative; padding-left:64px; margin-bottom:44px; }
.t-item:last-child{ margin-bottom:0; }
.t-dot{ position:absolute; left:8px; top:2px; width:26px; height:26px; border-radius:50%; background:var(--gold); border:4px solid var(--ivory); box-shadow:0 0 0 2px var(--gold); }
.t-item h4{ font-size:16.5px; margin-bottom:4px; }
.t-year{ font-family:var(--f-display); color:var(--clay); font-size:13px; letter-spacing:.05em; }

/* accordion (FAQ) */
.accordion-item{ border-bottom:1px solid var(--line); }
.accordion-item:first-child{ border-top:1px solid var(--line); }
.acc-head{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap:20px;
  background:none; border:0; padding:24px 4px; text-align:left; font-size:16px; font-weight:500; color:var(--forest-dark);
}
.acc-head .hi{ display:block; font-family:var(--f-hindi); font-size:13.5px; color:var(--sage); font-weight:400; margin-top:4px; }
.acc-icon{ width:30px; height:30px; border-radius:50%; background:var(--sage-light); display:flex; align-items:center; justify-content:center; flex-shrink:0; transition:.3s; }
.acc-icon svg{ width:14px; height:14px; color:var(--forest); transition:.3s; }
.accordion-item.open .acc-icon{ background:var(--gold); }
.accordion-item.open .acc-icon svg{ transform:rotate(45deg); }
.acc-body{ max-height:0; overflow:hidden; transition:max-height .4s ease; }
.acc-body-inner{ padding:0 4px 24px; font-size:14.5px; color:var(--ink-soft); max-width:640px; }

/* testimonials */
.testi-track{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}
.testi-slide{
  width:100%;
  padding:0;
}
.testi-card{
  background:#fff;
  border-radius:var(--radius-lg);
  padding:44px;
  box-shadow:var(--shadow-sm);
  text-align:center;
  height:100%;
  max-width:100%;
  margin:0;
}
.stars{ display:flex; justify-content:center; gap:4px; margin-bottom:18px; color:var(--gold); }
.stars svg{ width:16px; height:16px; }
.testi-quote{ font-size:17px; color:var(--ink); font-style:italic; margin-bottom:22px; }
.testi-name{ font-weight:600; color:var(--forest-dark); }
.testi-treat{ font-size:13px; color:var(--sage); }
.testi-controls{ display:none; }

/* gallery */
.gallery-filters{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom:40px; }
.g-filter{ padding:10px 22px; border-radius:100px; border:1px solid var(--line); background:#fff; font-size:13.5px; font-weight:500; transition:.25s; }
.g-filter.active,.g-filter:hover{ background:var(--forest); color:#fff; border-color:var(--forest); }
.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.g-item{ aspect-ratio:1/1; cursor:pointer; }
.g-item .ph{ height:100%; width:100%; }
.g-item{ transition:.3s; }
.g-item.hide{ display:none; }
.lightbox{ position:fixed; inset:0; background:rgba(14,34,22,.94); z-index:2000; display:none; align-items:center; justify-content:center; padding:40px; }
.lightbox.open{ display:flex; }
.lightbox-box{ max-width:600px; width:100%; }
.lightbox-close{ position:absolute; top:26px; right:30px; width:44px; height:44px; border-radius:50%; background:rgba(255,255,255,.1); color:#fff; display:flex; align-items:center; justify-content:center; }

/* forms */
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.field{ margin-bottom:20px; }
.field.full{ grid-column:1/-1; }
.field label{ display:block; font-size:13px; font-weight:600; color:var(--forest-dark); margin-bottom:8px; letter-spacing:.02em; }
.field input,.field select,.field textarea{
  width:100%; padding:14px 16px; border:1px solid var(--line); border-radius:var(--radius-sm);
  background:#fff; font-family:inherit; font-size:14.5px; color:var(--ink); transition:.25s;
}
.field input:focus,.field select:focus,.field textarea:focus{ outline:none; border-color:var(--gold); box-shadow:0 0 0 4px rgba(198,148,54,0.15); }
.field textarea{ resize:vertical; min-height:120px; }
.field-error{ font-size:12px; color:var(--clay); margin-top:6px; display:none; }
.field.invalid input,.field.invalid select,.field.invalid textarea{ border-color:var(--clay); }
.field.invalid .field-error{ display:block; }
.form-note{ display:flex; align-items:center; gap:10px; font-size:13px; color:var(--sage); background:var(--sage-light); padding:14px 18px; border-radius:var(--radius-sm); margin-top:6px; }
.form-success{ display:none; text-align:center; padding:60px 20px; }
.form-success.show{ display:block; }
.form-success svg{ width:60px; height:60px; color:var(--sage); margin-bottom:16px; }

/* contact info cards */
.info-row{ display:flex; gap:16px; align-items:flex-start; padding:20px 0; border-bottom:1px solid var(--line); }
.info-row:last-child{ border-bottom:0; }
.info-icon{ width:46px; height:46px; border-radius:50%; background:var(--sage-light); color:var(--forest); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.info-icon svg{ width:20px; height:20px; }
.info-row h4{ font-size:15px; margin-bottom:4px; }
.info-row p{ font-size:14px; margin:0; }

/* CTA banner */
.cta-banner{
  background:linear-gradient(120deg,var(--forest-dark),var(--forest));
  border-radius:var(--radius-lg); padding:70px 60px; text-align:center; position:relative; overflow:hidden;
}
.cta-banner h2{ color:#fff; font-family:var(--f-display); font-size:clamp(26px,3.4vw,38px); }
.cta-banner p{ color:rgba(255,255,255,.7); max-width:520px; margin:0 auto 30px; }
.cta-banner .btn-row{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background:var(--forest-dark); color:rgba(255,255,255,.7); padding-top:90px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:60px; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-brand .brand-name{ color:#fff; }
.footer-brand p{ color:rgba(255,255,255,.55); font-size:14px; margin:18px 0 22px; max-width:280px; }
.social-row{ display:flex; gap:10px; }
.social-row a{ width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; transition:.3s; }
.social-row a:hover{ background:var(--gold); color:var(--forest-dark); }
.social-row svg{ width:16px; height:16px; }
.footer-col h5{ color:#fff; font-family:var(--f-display); font-size:15px; letter-spacing:.04em; margin-bottom:20px; }
.footer-col li{ margin-bottom:12px; }
.footer-col a{ font-size:14px; color:rgba(255,255,255,.6); transition:.25s; }
.footer-col a:hover{ color:var(--gold-light); padding-left:4px; }
.footer-hours div{ display:flex; justify-content:space-between; font-size:13.5px; padding:6px 0; border-bottom:1px dashed rgba(255,255,255,.1); }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding:26px 0; font-size:13px; color:rgba(255,255,255,.45); flex-wrap:wrap; gap:10px; }
.footer-bottom a{ color:rgba(255,255,255,.6); }

/* floating buttons */
.floating-actions{ position:fixed; right:22px; bottom:24px; z-index:900; display:flex; flex-direction:column; gap:12px; align-items:center; }
.fab{ width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-md); transition:.3s; }
.fab svg{ width:24px; height:24px; }
.fab-wa{ background:#25D366; color:#fff; }
.fab-call{ background:var(--gold); color:var(--forest-dark); }
.fab:hover{ transform:translateY(-4px) scale(1.05); }
.back-top{ width:42px; height:42px; border-radius:50%; background:var(--forest); color:#fff; display:flex; align-items:center; justify-content:center; opacity:0; pointer-events:none; transition:.3s; }
.back-top.show{ opacity:1; pointer-events:auto; }
.back-top svg{ width:18px; height:18px; }

.scroll-progress{ position:fixed; top:0; left:0; height:3px; background:linear-gradient(90deg,var(--gold),var(--sage)); z-index:1100; width:0%; }

/* breadcrumb / page hero for inner pages */
.page-hero{
  position:relative; padding:calc(var(--header-h) + 90px) 0 90px; text-align:center;
  background:radial-gradient(circle at 85% 0%, #234a30, var(--forest) 55%, var(--forest-dark));
  color:#fff; overflow:hidden;
}
.page-hero .eyebrow{ color:var(--gold-light); justify-content:center; }
.page-hero .eyebrow::before{ background:var(--gold-light); }
.page-hero h1{ color:#fff; font-family:var(--f-display); font-size:clamp(32px,4.6vw,50px); }
.page-hero .hindi-line{ font-family:var(--f-hindi); color:rgba(255,255,255,.75); font-size:18px; }
.breadcrumb{ display:flex; justify-content:center; gap:8px; margin-top:20px; font-size:13px; color:rgba(255,255,255,.55); }
.breadcrumb a{ color:rgba(255,255,255,.8); }

/* modal (appointment quick form) */
.modal-overlay{ position:fixed; inset:0; background:rgba(14,28,18,.6); backdrop-filter:blur(3px); z-index:1500; display:none; align-items:center; justify-content:center; padding:20px; }
.modal-overlay.open{ display:flex; }
.modal-box{ background:#fff; border-radius:var(--radius-lg); max-width:520px; width:100%; padding:44px; position:relative; max-height:90vh; overflow-y:auto; }
.modal-close{ position:absolute; top:20px; right:20px; width:38px; height:38px; border-radius:50%; background:var(--sage-light); display:flex; align-items:center; justify-content:center; }

/* map placeholder */
.map-ph{ height:340px; border-radius:var(--radius-md); }

/* misc utility */
.mt-0{ margin-top:0; } .mb-0{ margin-bottom:0; }
.text-center{ text-align:center; }
.tag{ display:inline-block; padding:5px 14px; border-radius:100px; background:var(--sage-light); color:var(--forest); font-size:12px; font-weight:600; letter-spacing:.03em; }
.badge-off{ display:inline-flex; align-items:center; gap:8px; background:rgba(198,148,54,.12); color:var(--clay); padding:8px 16px; border-radius:100px; font-size:12.5px; font-weight:600; }

/* ---- mobile nav drawer ---- */
@media (max-width:1024px){
  .main-nav.mobile-open{
    display:flex; flex-direction:column; position:fixed; top:var(--header-h); left:0; right:0;
    background:var(--ivory); padding:14px 24px 30px; box-shadow:0 20px 30px rgba(22,50,31,.12);
    max-height:calc(100vh - var(--header-h)); overflow-y:auto;
  }
  .main-nav.mobile-open a{ color:var(--ink); width:100%; padding:14px 10px; border-bottom:1px solid var(--line); border-radius:0; }
  /.header-cta .btn-gold span{ display:none; }/
}
/* ---- mobile ---- */

@media (max-width:991px){
  .testi-track{grid-template-columns:repeat(2,1fr);}
}

@media (max-width:640px){
  .section{ padding:70px 0; }
  .section.tight{ padding:54px 0; }
  .page-hero{ padding:calc(var(--header-h) + 60px) 0 60px; }
  .grid-3,.grid-4{ grid-template-columns:1fr; }
  .testi-track{grid-template-columns:1fr;}
  .grid-6{ grid-template-columns:repeat(2,1fr); }
  .gallery-grid{ grid-template-columns:repeat(2,1fr); }
  .stat-grid{ grid-template-columns:1fr 1fr; }
  .footer-grid{ grid-template-columns:1fr; gap:34px; }
  .cta-banner{ padding:44px 22px; }
  .testi-card{ padding:30px 22px; }
  .hero-badge{ left:50%; transform:translateX(-50%); bottom:-18px; }
  .header-cta .btn-outline{ display:none; }
  .dosha{ width:100%; max-width:260px; }
  .floating-actions{ right:14px; bottom:16px; }
  .fab{ width:50px; height:50px; }
  .modal-box{ padding:30px 22px; }
  .icon-btn {display: none;}
}
@media (max-width:400px){
  .brand-name{ font-size:16px; }
  .hero h1{ font-size:30px; }
}

