/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:        #0A1628;
  --navy-mid:    #1B3A6B;
  --navy-light:  #243B55;
  --gold:        #C8973A;
  --gold-light:  #F5E6C8;
  --gold-pale:   #FDF6E8;
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --warm-cream:  #FDF8EF;
  --slate:       #4A5568;
  --body:        #374151;
  --muted:       #6B7280;
  --border:      #E2E8F0;
  --border-mid:  #CBD5E0;
  --green:       #1A5C3A;
  --green-light: #EAF4EE;
  --whatsapp:    #25D366;

  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', Arial, sans-serif;

  --radius:    8px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--body);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none !important; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  color: var(--navy);
  line-height: 1.3;
}
h1 { font-size: 50px;font-weight: 500;}
h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: .75rem; }
h3 { font-size: 1.15rem; margin-bottom: .4rem; }
h4 { font-size: 1rem; margin-bottom: .3rem; }
p  { color: var(--body); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--gold);
  font-family: var(--font-sans);
  margin-bottom: .4rem;
}
.h2-line {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border: none;
  margin: .4rem 0 1.5rem;
}
.leade {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.75;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section        { padding: 4rem 0; }
.section-alt    { background: var(--off-white); padding: 4rem 0; }
.section-navy   { background: var(--navy); padding: 4rem 0; }
.section-cream  { background: var(--warm-cream); padding: 4rem 0; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}
.two-col-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.25rem; }


/* ── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  padding: .5rem 2rem;
  font-size: .78rem;
  background: var(--navy-mid);
}
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb span { color: var(--gold); }
.breadcrumb-light { background: var(--off-white); border-bottom: 1px solid var(--border); }
.breadcrumb-light a { color: var(--muted); }
.breadcrumb-light span { color: var(--navy); font-weight: 600; }

/* ── TRUST STRIP ────────────────────────────────────────── */
.trust-strip {
  padding: .85rem 2rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-strip-dark { background: #0D1F38; border-top: 1px solid rgba(200,151,58,.2); }
.trust-strip-light { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-item { font-size: .78rem; display: flex; align-items: center; gap: .4rem; }
.trust-strip-dark  .trust-item { color: rgba(255,255,255,.7); }
.trust-strip-light .trust-item { color: var(--muted); }
.trust-item::before { content: "✓"; color: var(--gold); font-weight: bold; }

/* ── HERO VARIANTS ──────────────────────────────────────── */

/* IPD Hero — dark, urgent */
.hero-dark {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero-dark::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%; height: 100%;
  background: linear-gradient(135deg, rgba(200,151,58,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-dark .hero-inner { padding: 4rem 2rem 3rem; }
.hero-dark h1 { color: var(--white); }
.hero-dark .hero-lead { color: rgba(255,255,255,.75); }

/* OPD Hero — light, accessible */
.hero-light {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}
.hero-light .hero-inner { padding: 3.5rem 2rem; }
.hero-light h1 { color: var(--navy); }
.hero-light .hero-lead { color: var(--slate); }

/* Day Care Hero — warm cream */
.hero-warm {
  background: var(--warm-cream);
  border-bottom: 1px solid var(--gold-light);
}
.hero-warm .hero-inner { padding: 3.5rem 2rem; }
.hero-warm h1 { color: var(--navy); }
.hero-warm .hero-lead { color: var(--slate); }

/* Online Hero — minimal white */
.hero-minimal {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.hero-minimal .hero-inner { padding: 3.5rem 2rem; }
.hero-minimal h1 { color: var(--navy); }
.hero-minimal .hero-lead { color: var(--slate); }

.hero-inner {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: var(--radius-xl);
  margin-bottom: 1rem;
}
.hero-badge-dark {
  background: rgba(200,151,58,.18);
  border: 1px solid rgba(200,151,58,.4);
  color: var(--gold);
}
.hero-badge-light {
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  color: var(--gold);
}
.hero-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-ctas { display: flex; gap: .85rem; flex-wrap: wrap; }
.hero-contact {
  margin-top: 1.5rem;
  font-size: .82rem;
}
.hero-dark .hero-contact { color: rgba(255,255,255,.5); }
.hero-dark .hero-contact strong { color: rgba(255,255,255,.85); }
.hero-light .hero-contact,
.hero-warm .hero-contact,
.hero-minimal .hero-contact { color: var(--muted); }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: .75rem 1.75rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .92rem;
  cursor: pointer;
  transition: all .2s;
  border: none;
  font-family: var(--font-sans);
  line-height: 1;
}
.btn:hover { text-decoration: none; }

.btn-gold        { background: var(--gold)!important; color: var(--navy)!important; }
.btn-gold:hover  { background: #b8862e; color: var(--navy); }

.btn-navy        { background: var(--navy) !important; color: var(--white)!important; }
.btn-navy:hover  { background: var(--navy-mid); color: var(--white); }

.btn-outline-white { border: 2px solid rgba(255,255,255,.45)!important; color: rgba(255,255,255,.9)!important; background: transparent!important; }
.btn-outline-white:hover { border-color: white; color: white; }

.btn-outline-navy { border: 2px solid var(--navy) !important; color: var(--navy); background: transparent; }
.btn-outline-navy:hover { background: var(--navy); color: white; }

.btn-wa { background: var(--whatsapp); color: white; }
.btn-wa:hover { opacity: .9; color: white; }

.btn-sm { padding: .5rem 1.1rem; font-size: .85rem; }
.btn-block { display: block; width: 100%; text-align: center; }

/* ── CARDS ──────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color .2s;
}
.card:hover { border-color: var(--gold); }

.card-navy {
  background: var(--navy);
  color: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.card-gold {
  background: var(--gold-pale);
  border: 1px solid var(--gold-light);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}


/* ── CALLOUTS ───────────────────────────────────────────── */
.callout {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}
.callout p { margin: 0; font-size: .92rem; color: var(--navy); }

.callout-green {
  background: var(--green-light);
  border-left-color: var(--green);
}
.callout-green p { color: var(--green); }

.callout-navy {
  background: rgba(10,22,40,.06);
  border-left-color: var(--navy);
}
.callout-navy p { color: var(--navy); }

/* ── TABLES ─────────────────────────────────────────────── */
.tbl-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.tbl th {
  background: var(--navy);
  color: white;
  padding: .7rem 1rem;
  text-align: left;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .82rem;
}
.tbl td {
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}
.tbl tr:nth-child(even) td { background: var(--off-white); }
.tbl tr:hover td { background: var(--gold-pale); }
.tbl .highlight { color: var(--gold); font-weight: 700; }
.tbl .navy-text { color: var(--navy); font-weight: 600; }

/* ── FAQ ACCORDION ──────────────────────────────────────── */
.faq-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 1.25rem;
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-sans);
}
.faq-q:hover { background: var(--off-white); }
.faq-q .chevron { color: var(--gold); transition: transform .3s; font-size: 1rem; }
.faq-q.open .chevron { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: .15rem 1.25rem 1.1rem;
  font-size: .9rem;
  color: var(--body);
  line-height: 1.7;
}
.faq-a.open { display: block; }

/* ── STEP TIMELINE ──────────────────────────────────────── */
.steps-list { counter-reset: steps; }
.step-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.step-item::before {
  counter-increment: steps;
  content: counter(steps);
  min-width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: bold;
  flex-shrink: 0;
}
.step-body h3 { color: var(--navy); font-size: 1rem; margin-bottom: .35rem; }
.step-body p { font-size: .9rem; color: var(--body); margin: 0; }

/* ── JOURNEY PHASES ─────────────────────────────────────── */
.journey { margin-top: 1.5rem; }
.journey-phase {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.journey-phase:not(:last-child) .phase-num::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--border);
}
.phase-num {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.phase-tag {
  font-size: .72rem;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .08em;
  margin-bottom: .25rem;
}
.phase-body h3 { color: var(--navy); margin-bottom: .4rem; }
.phase-body p { font-size: .9rem; color: var(--body); margin: 0; }

/* ── ROADMAP TIMELINE ───────────────────────────────────── */
.roadmap { position: relative; margin-top: 1.5rem; padding-left: 2rem; }
.roadmap::before {
  content: '';
  position: absolute;
  left: .6rem; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.rm-item { position: relative; margin-bottom: 1.75rem; }
.rm-dot {
  position: absolute;
  left: -1.9rem;
  top: .35rem;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid white;
  outline: 2px solid var(--gold);
}
.rm-time { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); font-weight: 600; margin-bottom: .2rem; }
.rm-title { font-weight: 600; color: var(--navy); font-size: .95rem; margin-bottom: .25rem; }
.rm-desc { font-size: .85rem; color: var(--muted); }

/* ── STAT BLOCKS ────────────────────────────────────────── */
.stat-row { display: flex; gap: 2.5rem; flex-wrap: wrap; margin-top: 1.5rem; }
.stat-block { text-align: center; }
.stat-num { font-family: var(--font-serif); font-size: 2.5rem; color: var(--gold); font-weight: bold; line-height: 1; }
.stat-label { font-size: .78rem; color: var(--muted); margin-top: .25rem; }
.stat-large { font-size: 3.5rem; }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonial {
  background: var(--off-white);
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 1.5rem 1.75rem;
  margin-bottom: 0;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: -.5rem;
  left: 1.25rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: .25;
  line-height: 1;
}
.testimonial-text {
  font-size: .95rem;
  color: var(--navy);
  font-style: italic;
  margin-bottom: .6rem;
  padding-left: .5rem;
}
.testimonial-attr {
  font-size: .8rem;
  color: var(--muted);
  font-weight: 600;
}

/* Desktop + Tablet: 3-column grid */
.testimonial-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: .5rem;
}

/* Swipe hint — hidden by default */
.swipe-hint {
  display: none;
  font-size: .75rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .05em;
  padding-bottom: .2rem;
}

/* Dots — hidden by default */
.testimonial-dots {
  display: none;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
}
.testimonial-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  display: inline-block;
  transition: background .3s;
}
.testimonial-dots span.active {
  background: var(--gold);
}


/* ── LOCATION CARDS ─────────────────────────────────────── */
.loc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.1rem; margin-top: 1.25rem; }
.loc-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 12px; transition: all .2s; }
.loc-card:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.loc-city { font-family: var(--font-serif); font-size: 16px; color: var(--navy); margin-bottom: .25rem; }
.loc-badge { display: inline-block; font-size: .72rem; font-weight: 600; padding: .2rem .65rem; border-radius: 20px; margin-bottom: .5rem; }
.loc-badge-beds { background: var(--gold-pale); color: var(--gold); }
.loc-badge-hrs  { background: var(--green-light); color: var(--green); }
.loc-addr { font-size: .82rem; color: var(--muted); margin-bottom: .5rem; }
.loc-spec { font-size: .82rem; color: var(--navy); font-style: italic; }
.loc-link { display: block; margin-top: .85rem; font-size: .82rem; color: var(--gold); font-weight: 600; }
.loc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.loc-badge-directions {
  background: #e8f4f0;      
  color: #2a7a5a;           
  text-decoration: none;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
}

.loc-badge-directions:hover {
  background: #c8e8d8;
}
/* ── CONDITION CHIPS ────────────────────────────────────── */
.conditions-grid { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1rem; }
.cond-chip {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: .35rem .9rem;
  font-size: .82rem;
  color: var(--navy);
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.cond-chip:hover { background: var(--gold-pale); border-color: var(--gold); }

/* ── CARE COMPARISON ────────────────────────────────────── */
.care-compare {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1.5rem;
}
.care-col { background: white; padding: 1.25rem; }
.care-col.highlighted { background: var(--gold-pale); outline: 2px solid var(--gold); }
.care-col-head { font-family: var(--font-serif); font-size: 1rem; color: var(--navy); margin-bottom: .2rem; font-weight: bold; }
.care-badge { display: inline-block; font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; padding: .2rem .6rem; border-radius: 20px; margin-bottom: 1rem; }
.badge-featured { background: var(--gold); color: var(--navy); }
.badge-muted { background: var(--off-white); color: var(--muted); }
.care-row { font-size: .82rem; margin-bottom: .65rem; padding-bottom: .65rem; border-bottom: 1px solid var(--border); }
.care-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.care-row-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); font-weight: 600; margin-bottom: .12rem; }
.care-row-val { color: var(--navy); font-weight: 500; }

/* ── SCHEDULE TABLE ─────────────────────────────────────── */
.schedule-tbl { width: 100%; border-collapse: collapse; font-size: .88rem; }
.schedule-tbl th { background: var(--navy); color: white; padding: .65rem 1rem; text-align: left; font-family: var(--font-sans); font-weight: 600; }
.schedule-tbl td { padding: .6rem 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.schedule-tbl tr:nth-child(even) td { background: var(--off-white); }
.time-col { color: var(--gold); font-weight: 600; font-size: .82rem; white-space: nowrap; }
.type-badge { display: inline-block; padding: .2rem .6rem; border-radius: 20px; font-size: .72rem; font-weight: 600; }
.badge-clinical  { background: #EEF2FF; color: #4338CA; }
.badge-therapy   { background: var(--green-light); color: var(--green); }
.badge-wellness  { background: var(--gold-pale); color: #854F0B; }
.badge-social    { background: #FFF3E0; color: #E65100; }
.badge-family    { background: #FCE4EC; color: #880E4F; }

/* ── FREQUENCY TABLE ────────────────────────────────────── */
.freq-tbl { width: 100%; border-collapse: collapse; font-size: .82rem; }
.freq-tbl th { background: var(--navy); color: white; padding: .65rem .9rem; text-align: left; font-family: var(--font-sans); font-size: .78rem; font-weight: 600; }
.freq-tbl th:first-child { background: var(--navy-mid); }
.freq-tbl td { padding: .65rem .9rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.freq-tbl tr:nth-child(even) td { background: var(--off-white); }
.freq-tbl td:first-child { font-weight: 600; color: var(--navy); }

/* ── BOOKING WIDGET ─────────────────────────────────────── */
.booking-widget {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}
.bw-title { font-family: var(--font-sans); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 1rem; font-weight: 600; }
.bw-field { margin-bottom: .9rem; }
.bw-field label { display: block; font-size: .8rem; font-weight: 600; color: var(--navy); margin-bottom: .35rem; }
.bw-field select,
.bw-field input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .6rem .85rem;
  font-size: .88rem;
  color: var(--body);
  font-family: var(--font-sans);
  background: white;
}
.bw-field select:focus,
.bw-field input:focus { outline: none; border-color: var(--gold); }
.bw-row { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; }
.bw-btn {
  width: 100%;
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: .8rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  font-family: var(--font-sans);
  margin-top: .25rem;
}
.bw-btn:hover { background: #b8862e; }
.bw-note { font-size: .73rem; color: var(--muted); text-align: center; margin-top: .5rem; }

/* ── ADMISSION CARD (IPD) ───────────────────────────────── */
.admission-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,151,58,.3);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}
.admission-card h4 { color: var(--gold); font-family: var(--font-sans); font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.25rem; }
.adm-line { display: flex; align-items: center; gap: .75rem; margin-bottom: .9rem; }
.adm-icon { width: 36px; height: 36px; background: rgba(200,151,58,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.adm-text { font-size: .85rem; color: rgba(255,255,255,.8); }
.adm-text strong { color: white; display: block; font-size: .9rem; }

/* ── SIDEBAR ────────────────────────────────────────────── */
.sidebar { position: sticky; top: 80px; }
.sb-box { background: var(--navy); color: white; border-radius: var(--radius-lg); padding: 1.25rem; margin-bottom: 1rem; }
.sb-box h4 { color: var(--gold); font-family: var(--font-sans); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .75rem; }
.sb-num { font-family: var(--font-serif); font-size: 1.3rem; color: white; margin-bottom: .2rem; }
.sb-sub { font-size: .75rem; color: rgba(255,255,255,.5); margin-bottom: .85rem; }
.sb-btn { display: block; text-align: center; padding: .6rem; border-radius: 6px; font-weight: 600; font-size: .85rem;}
.sb-gold { background: var(--gold); color: var(--navy); }
.sb-wa   { background: var(--whatsapp); color: white; }
.sb-accred { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; }
.sb-accred h4 { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: .75rem; font-family: var(--font-sans); }
.accred-badge { background: var(--navy); color: var(--gold); padding: .3rem .75rem; border-radius: 6px; font-size: .75rem; font-weight: 600; display: inline-block; margin: .2rem .2rem 0 0; }

/* ── TEAM CARDS ─────────────────────────────────────────── */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem; margin-top: 1.5rem; }
.team-card { border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.25rem; text-align: center; transition: border-color .2s; }
.team-card:hover { border-color: var(--gold); }
.team-icon { width: 52px; height: 52px; background: var(--navy-mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto .75rem; color: var(--gold); font-family: var(--font-serif); font-size: 1.3rem; font-weight: bold; }
.team-card h4 { font-size: .9rem; color: var(--navy); margin-bottom: .25rem; }
.team-card p { font-size: .8rem; color: var(--muted); margin: 0; }
.team-freq { font-size: .72rem; color: var(--gold); font-weight: 600; margin-top: .5rem; }

/* ── PRIVACY CARDS (Online) ─────────────────────────────── */
.privacy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1px; background: rgba(255,255,255,.1); border-radius: var(--radius-lg); overflow: hidden; margin-top: 1.5rem; }
.privacy-card { background: rgba(255,255,255,.07); padding: 1.5rem; text-align: center; }
.privacy-icon { font-size: 1.75rem; margin-bottom: .75rem; }
.privacy-title { color: var(--gold); font-family: var(--font-sans); font-weight: 700; font-size: .9rem; margin-bottom: .5rem; }
.privacy-desc { font-size: .82rem; color: rgba(255,255,255,.7); line-height: 1.55; margin: 0; }

/* ── CITY GRID (Online) ─────────────────────────────────── */
.city-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: .5rem; margin-top: 1.25rem; }
.city-chip { background: var(--off-white); border: 1px solid var(--border); border-radius: 6px; padding: .45rem .85rem; font-size: .82rem; color: var(--navy); display: flex; align-items: center; gap: .4rem; }
.city-chip::before { content: "●"; color: var(--gold); font-size: .6rem; }

/* ── EMI BAR ────────────────────────────────────────────── */
.emi-bar {
  background: var(--navy-mid);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.emi-bar p { color: rgba(255,255,255,.9); font-size: .88rem; margin: 0; flex: 1; }
.emi-bar strong { color: var(--gold); }
.emi-bar a { background: var(--gold); color: var(--navy); padding: .5rem 1.1rem; border-radius: 6px; font-weight: 700; font-size: .82rem; white-space: nowrap; }

/* ── FOOTER ─────────────────────────────────────────────── */
.emi-footer { background: rgba(200,151,58,.12); border: 1px solid rgba(200,151,58,.25); border-radius: var(--radius); padding: 1rem 1.5rem; margin: 20px auto 1.5rem; max-width: 1100px; text-align: center; }
.emi-footer p { color: #333; font-size: .88rem; margin: 0; }

/* ── MOBILE BOTTOM BAR ──────────────────────────────────── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  z-index: 200;
  padding: .7rem 1rem;
  gap: .6rem;
}
.mobile-bar a { flex: 1; text-align: center; padding: .55rem; border-radius: 6px; font-weight: 600; font-size: .8rem; }

/* ── HORIZONTAL TIMELINE ─────────────────────────────────── */
.timeline-h { display: block; position: relative; margin-bottom: 1rem; }
.timeline-mobile { display: none; }

.timeline-h-line {
      position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: #c3c3c3;
    z-index: 0;
}

.timeline-h-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.timeline-h-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-h-dot {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid white;
  outline: 2px solid var(--gold);
  margin-bottom: .85rem;
  flex-shrink: 0;
}

.timeline-h-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .85rem;
  text-align: center;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.timeline-h-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.timeline-h-card .rm-time {
  font-size: .68rem;
  margin-bottom: .3rem;
}
.timeline-h-card .rm-title {
  font-size: .82rem;
  margin-bottom: .4rem;
}
.timeline-h-card .rm-desc {
  font-size: .75rem;
}

/* ── DOCTOR CARDS ROW ───────────────────────────────────── */
.doctor-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.doctor-dots {
  display: none;
  justify-content: center;
  gap: .5rem;
  margin-top: 1rem;
}
.doctor-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  display: inline-block;
  transition: background .3s;
}
.doctor-dots span.active { background: var(--gold); }

@media (max-width: 480px) {
  .doctor-cards-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: .75rem;
    scrollbar-width: none;
  }
  .doctor-cards-row::-webkit-scrollbar { display: none; }
  .doctor-cards-row .card {
    min-width: calc(100vw - 2.5rem);
    scroll-snap-align: start;
    flex-shrink: 0;
    box-sizing: border-box;
  }
  .doctor-dots { display: flex; }
}

/* Mobile: hide horizontal, show vertical */
@media (max-width: 768px) {
  .timeline-h  { display: none; }
  .timeline-mobile { display: block; }
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .care-compare { grid-template-columns: 1fr; }
  .sidebar { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-bar { display: flex; }
  .container { padding: 0 1.25rem; }
  .section, .section-alt, .section-navy, .section-cream { padding: 2.5rem 0; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
  .two-col-equal { grid-template-columns: 1fr; }
  .booking-widget { display: none; }
  .admission-card { display: none; }
  .freq-tbl th:nth-child(3), .freq-tbl td:nth-child(3),
  .freq-tbl th:nth-child(4), .freq-tbl td:nth-child(4) { display: none; }
  .schedule-tbl th:nth-child(3), .schedule-tbl td:nth-child(3),
  .schedule-tbl th:nth-child(4), .schedule-tbl td:nth-child(4) { display: none; }
  .desktop-only { display: none; }
  
}
@media (max-width: 480px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .city-grid { grid-template-columns: 1fr 1fr; }
  .care-compare .care-col:not(.highlighted) { display: none; }
  .testimonial-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: .75rem;
    scrollbar-width: none;
  }
  .testimonial-carousel::-webkit-scrollbar { display: none; }
  .testimonial-carousel .testimonial {
    min-width: 100vw;
    scroll-snap-align: center;
    flex-shrink: 0;
    margin: 0;
    box-sizing: border-box;
  }

  /* Scroll indicator dots */
  .testimonial-dots {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 1rem;
  }
  .testimonial-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    display: inline-block;
    transition: background .3s;
  }
  .testimonial-dots span.active {
    background: var(--gold);
  }
  .swipe-hint { display: inline-block; }

  .testimonial-dots { display: flex; }

  .testimonial-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    margin-top: .75rem;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: .75rem;
    scrollbar-width: none;
  }
  .testimonial-carousel::-webkit-scrollbar { display: none; }

  .testimonial-carousel .testimonial {
    min-width: calc(100vw - 2.5rem);
    scroll-snap-align: start;
    flex-shrink: 0;
    box-sizing: border-box;
  }

  .doctor-cards-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    margin-left: -1.25rem;
    margin-right: -1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    padding-bottom: .75rem;
    scrollbar-width: none;
  }
  .doctor-cards-row::-webkit-scrollbar { display: none; }
  .doctor-cards-row .card {
    min-width: calc(100vw - 2.5rem);
    max-width: calc(100vw - 2.5rem);
    scroll-snap-align: start;
    flex-shrink: 0;
    box-sizing: border-box;
  }
  .doctor-dots { display: flex; }
}

/* ── PRINT ──────────────────────────────────────────────── */
@media print {
  .nav, .mobile-bar, .sidebar, .booking-widget { display: none; }
  body { font-size: 12px; }
  .section, .section-alt { padding: 1.5rem 0; }
}