/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:        #112342;
  --navy-mid:    #1B3A6B;
  --navy-light:  #243B55;
  --gold:        #1c7af6;
  --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; }
ul li::marker {
    color: var(--gold);
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4{

  color:#000 !important;
  line-height: 1.3;
}
body li{
    color:#000;
}

.section-label {
  display: none;
  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);
  color:#fff;
  border: none;
  margin: .4rem 0 1.5rem;
}
.leade {
  font-size: 1.05rem;
  color: var(--slate);
  line-height: 1.75;
}
.hero {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2744 0%, #2d4a7a 50%, #3d6b8a 100%);
}
.hero-three {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2744 0%, #2d4a7a 50%, #3d6b8a 100%);
}
.hero-two {
    position: relative;
    min-height:455px ;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2744 0%, #2d4a7a 50%, #3d6b8a 100%);
}
.d-flex-btn {
    display: flex;
    gap: 10px;
}
.hero-pointer {
    position: relative;
    padding-left: 22px;
    font-size:14px;
}
.hero-pointer::before {
    content: "";
    position: absolute;
    left: 5px !important;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0f7bc2;
}
/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section        { margin: 3rem 0; }
.section-alt    { background: var(--off-white);}
.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: 1.2rem;
  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; }


.treatment-phases{
    background:#f3f3f3;
    padding:1.5rem;
}

.phase-item{
    padding:0 0 1.5rem;
    margin-bottom:1.5rem;
    border-bottom:1px solid #cfcfcf;
}

.phase-item:last-child{
    border-bottom:none;
    margin-bottom:0;
    padding-bottom:0;
}

.phase-item h3{
    margin:0 0 .75rem;
    font-size:24px;
    line-height:1.2;
    color:#1f2940;
    font-weight:500;
}
.schedule-tbl-wrap {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.schedule-tbl {
  width: 100%;
  min-width: 600px; /* forces horizontal scroll on small screens instead of crushing columns */
  border-collapse: collapse;
  font-family: 'Inter', Arial, sans-serif;
}

.schedule-tbl thead tr {
  background-color: #14142b;
}

.schedule-tbl th {
  color: #ffffff;
  font-weight: 700;
  text-align: left;
  padding: 14px 18px;
  font-size: 15px;
  white-space: nowrap;
}

.schedule-tbl td {
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.5;
  color: #333333;
  vertical-align: top;
  border-bottom: 1px solid #e8e8e8;
}

.schedule-tbl tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 640px) {
    h2 { font-size: 27px !important; margin-bottom: .75rem; }
  .schedule-tbl {
    min-width: 550px;
  }
  .schedule-tbl th,
  .schedule-tbl td {
    padding: 10px 14px;
    font-size: 16px;
  }
}
.phase-number{
    color: #fff;
    font-weight: 500;
        color: #0f7bc2;
}
.treatment-item {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid #e7e7e7;
}

.phase-duration{
    color:#000;
    font-weight:500;
}
table tr td:first-child {
    font-weight: bold;
}

.schedule-tbl-wrap {
  border: 1px solid #e0e0e0;
  border-radius: 10px;
overflow-x: auto;
}

.schedule-tbl {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Inter', Arial, sans-serif;
}

.schedule-tbl thead tr {
  background-color: #14142b;
}

.schedule-tbl th {
  color: #ffffff;
  font-weight: 700;
  text-align: left;
  padding: 14px 18px;
  font-size: 16px;
}

.schedule-tbl td {
  padding: 14px 18px;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
  vertical-align: top;
  border-bottom: 1px solid #e8e8e8;
}

.schedule-tbl tbody tr:last-child td {
  border-bottom: none;
}
/* ── 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; }

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.symptom-card {
    border: 1px solid #dfdfdf;
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.symptom-card span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #c6f2ff;
    color: #112342;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.card-body h3{font-size: 24px;}

blockquote {
    margin: 20px 0;
    padding: 20px;
    border-left: 4px solid rgb(28, 122, 246);
    background: #f5f8fc;
    font-size: 16px;
    line-height: 1.7;
    color: #000;
}
/* ── HERO VARIANTS ──────────────────────────────────────── */

/* IPD Hero — dark, urgent */

.hero-dark .hero-inner { padding: 4rem 2rem 3rem; }
.hero-dark h1 { color: var(--white); }
.hero-dark .hero-lead { color: #fff;font-size: 16px;}

/* 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: #000; }
.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;
  padding: 14px 20px;
  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-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: #1123420d;
  border-left: 4px solid var(--gold);
  padding: 1rem 1.25rem;
}
.callout p { margin: 0; color: #000; }

.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: 16px;
  text-align: center;
}
.tbl td {
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  text-align: center;
  color:#000!important;
}
.tbl tr:nth-child(even) td { background: var(--off-white); }
.tbl tr:hover td { background:#f3f4f5; }
.tbl .highlight { color: var(--gold);}
.tbl .navy-text { color: #000; font-weight: bold;    font-size: 16px; }
td{font-size:16px;}

/* ── 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:24px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;}
.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: 16px;
  color: #000;
  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); }



/* FIXED REALISTIC TYPOGRAPHY */
.urgent-box{
  background:#03285c;
  border-radius:32px;
  padding:30px 24px;
  color:#fff;
  width:100%;
}

.urgent-head{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:16px;
}

.urgent-head span{
  color:#ffbf2f;
  font-size:28px;
  line-height:1;
  margin-top:2px;
}

.urgent-head h4{
  margin:0;
  color:#fff;
  font-size:18px;
  line-height:1.3;
  font-weight:700;
  letter-spacing:-0.2px;
}

.urgent-box p{
  font-size:14px;
  line-height:1.7;
  color:rgba(255,255,255,.78);
  margin:0 0 22px;
}

.urgent-btn{
  width:100%;
  height:38px;
  background:#cf2727;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#fff;
  font-size:15px;
  font-weight:500;
  white-space:nowrap;
  transition:.2s ease;
}

.urgent-btn:hover{
  background:#bb1f1f;
  color:#fff;
}

.urgent-phone{
  text-align:center;
  margin-top:18px;
  color:rgba(255,255,255,.72);
  font-size:13px;
  font-weight:600;
  line-height:1.5;
}
/* ── 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);
  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: 16px;
  color: #000;
  font-style: italic;
  margin-bottom: .6rem;
  padding-left: .5rem;
}
.testimonial-attr {
  font-size: 15px;
  color: #000;
  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: center; font-family: var(--font-sans); font-weight: 600;  }
.schedule-tbl td { padding: .6rem 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; text-align:center;}
.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: 15px; font-weight: 600;text-align: center; }
.freq-tbl td { padding: .65rem .9rem; border-bottom: 1px solid var(--border); vertical-align: top;text-align: center; }
.freq-tbl tr:nth-child(even) td { background: var(--off-white); }
.freq-tbl td:first-child { font-weight: bold; color: #000; }

/* ── 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-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 0.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; }
    h2 { font-size: 27px !important; margin-bottom: .75rem; }
}


/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .care-compare { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .phase-item h3 {
    font-size: 21px;}
    .treatment-item h3 {
    font-size: 21px;
}.faq-q {
    font-size: 21px;}
    .card-body h3 {
    font-size: 21px;
}
  .nav-links { display: none; }
  .mobile-bar { display: flex; }
  .container { padding: 0 1.25rem; }
  .section,  .section-navy, .section-cream {margin: 2.5rem 0;}
  .section-alt{padding:1rem;}
  h1 { font-size: 32px !important; }
  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; }
  .desktop-only { display: none; }
    div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  
}
@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; }

  /* 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 {
    flex-shrink: 0;
    box-sizing: border-box;
    width:100vw;
  }
  .emi-bar p {
    margin: 0 0 10px 0;}
  .emi-bar {
    display: block;}

  .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; }
}

@media (max-width: 640px) {
    .testimonial::before {
    top: -0.2rem;}
  .schedule-tbl-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .hero {
    min-height: 490px;}

  .schedule-tbl {
    min-width: 600px;
  }
        .d-flex-btn {
        display: grid !important;
    }
    .hero-two {
    min-height: 545px;}
    
    .hero-three {
    height: 520px;
}
    
    .hero-dark .hero-lead {
    font-size: 17px;
}
.hero-dark .hero-inner {
    padding: 3rem 1rem 3rem;
}
.urgent-btn {font-size:13px;}
}
@media (max-width: 767px) {
    .symptoms-grid {
        grid-template-columns: 1fr;
    }
}