/* ═══════════════════════════════════════════════════════
   SASCO HOSPITAL — style.css
   ═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --blue:    #0A4D8C;
  --blue2:   #1E6FCC;
  --blue3:   #E8F2FF;
  --green:   #27AE60;
  --green2:  #E8F8EF;
  --red:     #E63946;
  --bg:      #FFFFFF;
  --bg2:     #F8FAFB;
  --border:  #E2E8F0;
  --text:    #1A2332;
  --text2:   #64748B;
  --text3:   #94A3B8;
  --grad:    linear-gradient(135deg, #0A4D8C 0%, #1E6FCC 60%, #2F80ED 100%);
  --grad2:   linear-gradient(135deg, #27AE60, #1a8a4a);
  --shadow:  0 2px 20px rgba(10,77,140,.08);
  --shadow2: 0 8px 40px rgba(10,77,140,.14);
  --r:       12px;
  --rl:      20px;
  --rx:      32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Plus Jakarta Sans', sans-serif; color: var(--text); background: var(--bg); overflow-x: hidden; line-height: 1.6; }
h1,h2,h3,h4,h5 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: 'Plus Jakarta Sans', sans-serif; }
input, textarea, select { font-family: 'Plus Jakarta Sans', sans-serif; }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0; background: var(--blue); z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .6s ease, visibility .6s ease;
}
#loader.hide { opacity: 0; visibility: hidden; pointer-events: none; }
.ld-logo { width: 180px; margin-bottom: 28px; animation: ldPulse 1.4s ease-in-out infinite; }
.ld-track { width: 220px; height: 3px; background: rgba(255,255,255,.18); border-radius: 99px; overflow: hidden; }
.ld-bar { height: 100%; background: #fff; border-radius: 99px; animation: ldSlide 2s cubic-bezier(.4,0,.2,1) forwards; }
@keyframes ldSlide { 0%{width:0} 100%{width:100%} }
@keyframes ldPulse { 0%,100%{opacity:1} 50%{opacity:.55} }

/* ── NAVIGATION ── */
.nav {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border); transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(10,77,140,.10); }
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; height: 72px; gap: 8px;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 44px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-links a {
  padding: 8px 13px; border-radius: 8px; font-size: .875rem; font-weight: 500;
  color: var(--text2); transition: .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: var(--blue3); }
.nav-cta { display: flex; gap: 10px; margin-left: 16px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 22px; border-radius: 10px; font-size: .9rem;
  font-weight: 600; transition: all .2s; white-space: nowrap; cursor: pointer;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 4px 16px rgba(30,111,204,.30); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(30,111,204,.40); }
.btn-outline { border: 2px solid var(--blue); color: var(--blue); background: transparent; }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-green { background: var(--grad2); color: #fff; box-shadow: 0 4px 16px rgba(39,174,96,.25); }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(39,174,96,.35); }
.btn-white { background: #fff; color: var(--blue); font-weight: 700; }
.btn-white:hover { background: var(--blue3); }
.btn-ghost { border: 2px solid rgba(255,255,255,.6); color: #fff; background: rgba(255,255,255,.08); }
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-sm { padding: 8px 16px; font-size: .82rem; border-radius: 8px; }

/* ── HAMBURGER + MOBILE MENU ── */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; margin-left: auto; margin-right: 0; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: .3s; }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 899; overflow-y: auto; padding: 16px 20px 100px;
  flex-direction: column; gap: 4px; border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 16px; border-radius: 10px; font-weight: 500; font-size: 1rem;
  color: var(--text); border-bottom: 1px solid var(--border); display: block;
}
.mobile-menu a:hover { background: var(--bg2); color: var(--blue); }
.mm-ctas { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.mm-ctas .btn { width: 100%; justify-content: center; padding: 14px; }

/* ── PAGE HERO BANNER ── */
.page-hero {
  background: var(--grad); padding: 80px 24px 64px; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Ccircle cx='30' cy='10' r='2'/%3E%3Ccircle cx='50' cy='10' r='2'/%3E%3Ccircle cx='10' cy='30' r='2'/%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3Ccircle cx='50' cy='30' r='2'/%3E%3Ccircle cx='10' cy='50' r='2'/%3E%3Ccircle cx='30' cy='50' r='2'/%3E%3Ccircle cx='50' cy='50' r='2'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-bottom: 16px; font-size: .82rem; color: rgba(255,255,255,.65); }
.breadcrumb span { color: rgba(255,255,255,.95); font-weight: 600; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.85); font-size: 1.05rem; line-height: 1.7; }

/* ── SECTIONS ── */
.section { padding: 88px 0; }
.section-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block; background: var(--blue3); color: var(--blue2);
  padding: 4px 14px; border-radius: 99px; font-size: .76rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; margin-bottom: 12px;
}
.section-title { font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--text); margin-bottom: 12px; }
.section-title span { color: var(--blue); }
.section-sub { color: var(--text2); font-size: 1rem; line-height: 1.75; max-width: 560px; }
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.bg-alt { background: var(--bg2); }

/* ── STAT CARDS ── */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.stat-card {
  background: #fff; border-radius: var(--r); padding: 32px 20px; text-align: center;
  border: 1px solid var(--border); transition: .3s; position: relative; overflow: hidden;
}
.stat-card::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:var(--grad); }
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow2); }
.stat-icon { font-size: 2rem; margin-bottom: 12px; }
.stat-num { font-family:'Cormorant Garamond',serif; font-size: 2.8rem; font-weight: 700; color: var(--blue); line-height: 1; }
.stat-label { color: var(--text2); font-size: .88rem; margin-top: 6px; font-weight: 500; }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.service-card {
  background: #fff; border-radius: var(--r); padding: 28px; border: 1px solid var(--border);
  transition: .3s; position: relative; overflow: hidden;
}
.service-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background: var(--grad); transform: scaleX(0); transition: .35s; transform-origin: left;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow2); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; background: var(--blue3); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  margin-bottom: 16px; transition: .3s;
}
.service-card:hover .service-icon { background: var(--blue); transform: scale(1.05); }
.service-card h3 { font-size: 1.1rem; font-family: 'Plus Jakarta Sans',sans-serif; font-weight: 700; margin-bottom: 8px; }
.service-card p { color: var(--text2); font-size: .9rem; line-height: 1.65; }

/* ── ABOUT GRID ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-imgs { position: relative; }
.about-img-main {
  border-radius: var(--rx); width: 100%; aspect-ratio: 3/4; object-fit: cover;
  object-position: top; box-shadow: 0 24px 72px rgba(10,77,140,.18);
}
.about-img-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: #fff; border-radius: var(--rl); padding: 18px 22px;
  box-shadow: 0 12px 40px rgba(10,77,140,.14); border: 1px solid var(--border);
  animation: floatBadge 4s ease-in-out infinite;
}
@keyframes floatBadge { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.about-img-badge .num { font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-weight:700; color:var(--blue); }
.about-img-badge .lbl { font-size:.75rem; color:var(--text2); margin-top:2px; }
.check-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 16px; }
.check-icon {
  width: 24px; height: 24px; background: var(--green2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--green); font-size: .75rem; margin-top: 2px;
}
.check-item strong { display: block; font-weight: 700; margin-bottom: 2px; font-size: .95rem; }
.check-item span { color: var(--text2); font-size: .85rem; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testimonial-card {
  background: #fff; border-radius: var(--r); padding: 28px; border: 1px solid var(--border); transition: .3s;
}
.testimonial-card:hover { box-shadow: var(--shadow2); transform: translateY(-4px); }
.stars { color: #F59E0B; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p { font-size: .92rem; line-height: 1.75; color: var(--text2); font-style: italic; margin-bottom: 18px; }
.author { display: flex; align-items: center; gap: 12px; }
.author-av {
  width: 44px; height: 44px; border-radius: 50%; background: var(--grad);
  display: flex; align-items: center; justify-content: center; color: #fff;
  font-weight: 700; font-size: .95rem; flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: .92rem; }
.author-role { font-size: .78rem; color: var(--text2); margin-top: 2px; }

/* ── EMERGENCY BANNER ── */
.emergency-section {
  background: var(--grad); padding: 72px 0; text-align: center;
  position: relative; overflow: hidden;
}
.emergency-section::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.06), transparent 60%);
}
.emergency-section h2 { font-size: clamp(1.8rem,4vw,2.8rem); color: #fff; margin-bottom: 12px; position:relative; }
.emergency-section p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 32px; position:relative; }
.emergency-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position:relative; }

/* ── TIMELINE ── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before { content:''; position:absolute; left:0; top:0; bottom:0; width:2px; background:var(--border); }
.timeline-item { position: relative; padding: 0 0 36px 28px; }
.timeline-item::before {
  content:''; position:absolute; left:-8px; top:5px;
  width:18px; height:18px; background:var(--blue2); border-radius:50%;
  border:3px solid #fff; box-shadow:0 0 0 3px var(--blue3);
}
.timeline-year { font-size:.76rem; font-weight:700; color:var(--blue2); letter-spacing:.06em; text-transform:uppercase; margin-bottom:4px; }
.timeline-item h4 { font-size:1.05rem; font-family:'Plus Jakarta Sans',sans-serif; font-weight:700; margin-bottom:5px; }
.timeline-item p { font-size:.9rem; color:var(--text2); line-height:1.65; }

/* ── VALUE CARDS ── */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 44px; }
.value-card {
  background: #fff; border-radius: var(--r); padding: 28px; border: 1px solid var(--border);
  text-align: center; transition: .3s;
}
.value-card:hover { box-shadow: var(--shadow2); transform: translateY(-4px); }
.value-icon { font-size: 2.2rem; margin-bottom: 12px; }
.value-card h4 { font-size: 1.05rem; font-family:'Plus Jakarta Sans',sans-serif; font-weight: 700; margin-bottom: 6px; }
.value-card p { font-size: .88rem; color: var(--text2); line-height: 1.65; }

/* ── HMO SECTION ── */
.hmo-why { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-bottom: 52px; }
.hmo-box {
  background: #fff; border-radius: var(--r); padding: 28px; border: 1px solid var(--border);
  text-align: center; transition: .3s;
}
.hmo-box:hover { box-shadow: var(--shadow2); transform: translateY(-4px); }
.hmo-box .ico { font-size: 2.4rem; margin-bottom: 12px; }
.hmo-box h3 { font-size: 1.05rem; font-family:'Plus Jakarta Sans',sans-serif; font-weight: 700; margin-bottom: 8px; }
.hmo-box p { font-size: .88rem; color: var(--text2); line-height: 1.65; }
.hmo-providers { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.hmo-card {
  background: #fff; border-radius: var(--r); padding: 18px 14px; border: 2px solid var(--border);
  text-align: center; transition: .3s;
}
.hmo-card:hover { border-color: var(--blue2); background: var(--blue3); transform: translateY(-3px); }
.hmo-initial {
  width: 48px; height: 48px; background: var(--grad); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1.05rem; margin: 0 auto 10px;
}
.hmo-card p { font-size: .82rem; font-weight: 600; color: var(--text); line-height: 1.4; }
.hmo-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }
.hmo-step { text-align: center; position: relative; }
.hmo-step:not(:last-child)::after {
  content:'→'; position:absolute; right:-10px; top:18px; color:var(--border); font-size:1.4rem;
}
.step-num {
  width: 46px; height: 46px; background: var(--blue); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; margin: 0 auto 12px; font-size: 1.1rem;
}
.hmo-step h4 { font-size: .92rem; font-family:'Plus Jakarta Sans',sans-serif; font-weight: 700; margin-bottom: 5px; }
.hmo-step p { font-size: .82rem; color: var(--text2); }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); margin-bottom: 12px; overflow: hidden; background: #fff; transition: .2s; }
.faq-item.open { border-color: var(--blue2); box-shadow: 0 4px 20px rgba(30,111,204,.08); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; cursor: pointer; gap: 16px; }
.faq-q:hover { background: var(--bg2); }
.faq-q span { font-weight: 600; font-size: .95rem; color: var(--text); }
.faq-arrow {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg2); display: flex; align-items: center; justify-content: center;
  font-size: .72rem; transition: .3s; color: var(--blue2);
}
.faq-item.open .faq-arrow { background: var(--blue2); color: #fff; transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--text2); font-size: .92rem; line-height: 1.8; border-top: 1px solid var(--border); }

/* ── CONTACT & BOOKING ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
.contact-info-card { background: var(--grad); border-radius: var(--rl); padding: 36px; color: #fff; }
.contact-info-card h3 { font-size: 1.5rem; margin-bottom: 8px; }
.contact-info-card > p { opacity: .85; font-size: .92rem; margin-bottom: 28px; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-icon {
  width: 42px; height: 42px; background: rgba(255,255,255,.15); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
  backdrop-filter: blur(4px);
}
.contact-label { font-size: .72rem; opacity: .7; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 2px; }
.contact-value { font-size: .92rem; font-weight: 500; }
.contact-value a { color: #fff; }
.map-link-box { background: rgba(255,255,255,.12); border-radius: var(--r); padding: 16px; margin-top: 18px; text-align: center; }
.map-link-box a { color: #fff; text-decoration: underline; font-size: .88rem; }
.booking-card { background: #fff; border-radius: var(--rl); padding: 36px; border: 1px solid var(--border); box-shadow: var(--shadow2); }
.booking-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.booking-card > p { color: var(--text2); font-size: .9rem; margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .84rem; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form-group label span { color: var(--text2); font-weight: 400; }
.form-control {
  width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: 10px;
  font-size: .92rem; color: var(--text); transition: .2s; background: #fff;
}
.form-control:focus { outline: none; border-color: var(--blue2); box-shadow: 0 0 0 3px var(--blue3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-btn {
  width: 100%; padding: 14px; border-radius: 10px; font-size: 1rem; font-weight: 700;
  background: var(--grad); color: #fff; box-shadow: 0 4px 18px rgba(30,111,204,.28);
  transition: .2s; display: flex; align-items: center; justify-content: center; gap: 8px;
  border: none; cursor: pointer;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(30,111,204,.38); }
.submit-btn:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.form-note { text-align: center; font-size: .82rem; color: var(--text2); margin-top: 12px; }
.form-note strong { color: var(--green); }
.success-msg { display: none; background: var(--green2); border: 2px solid var(--green); border-radius: 10px; padding: 18px; text-align: center; color: var(--green); font-weight: 700; margin-top: 14px; font-size: .95rem; }

/* ── FOOTER ── */
footer { background: #0B1F3A; color: rgba(255,255,255,.7); padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 48px; }
.footer-brand img { height: 42px; margin-bottom: 16px; filter: brightness(10); }
.footer-brand p { font-size: .88rem; line-height: 1.75; margin-bottom: 20px; }
.open-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(39,174,96,.15); border: 1px solid rgba(39,174,96,.3);
  color: #4ade80; padding: 5px 14px; border-radius: 99px; font-size: .78rem; font-weight: 600;
}
.open-badge .dot { width: 7px; height: 7px; background: #4ade80; border-radius: 50%; animation: blink 1.5s infinite; flex-shrink:0; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.2} }
.footer-col h4 { color: #fff; font-family:'Plus Jakarta Sans',sans-serif; font-weight: 700; margin-bottom: 16px; font-size: .95rem; }
.footer-col a { display: block; font-size: .87rem; margin-bottom: 11px; color: rgba(255,255,255,.65); transition: .2s; }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom p { font-size: .82rem; }

/* ── FLOATING BUTTONS ── */
.float-btns { position: fixed; bottom: 28px; right: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 800; }
.float-btn {
  width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 6px 24px rgba(0,0,0,.2); transition: .25s; color: #fff;
}
.float-btn:hover { transform: scale(1.1); }
.float-wa { background: #25D366; }
.float-call { background: var(--blue); }
.float-btn svg { flex-shrink: 0; }

/* ── CHATBOT ── */
.chat-trigger { position: fixed; bottom: 28px; left: 24px; z-index: 800; }
.chat-fab {
  width: 58px; height: 58px; border-radius: 50%; background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 28px rgba(30,111,204,.38); cursor: pointer; border: none; transition: .25s;
  position: relative;
}
.chat-fab:hover { transform: scale(1.08); }
.chat-badge {
  position: absolute; top: -3px; right: -3px; width: 20px; height: 20px;
  background: var(--red); border-radius: 50%; border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; color: #fff; font-weight: 700;
}
.chat-window {
  position: fixed; bottom: 100px; left: 24px; width: 370px; height: 560px;
  background: #fff; border-radius: var(--rl); box-shadow: 0 24px 80px rgba(0,0,0,.18);
  z-index: 800; display: none; flex-direction: column; overflow: hidden; border: 1px solid var(--border);
}
.chat-window.open { display: flex; animation: chatUp .3s cubic-bezier(.34,1.56,.64,1); }
@keyframes chatUp { from{opacity:0;transform:translateY(20px)scale(.95)} to{opacity:1;transform:translateY(0)scale(1)} }
.chat-header { background: var(--grad); padding: 16px 20px; display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.chat-avatar { width: 38px; height: 38px; background: rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.chat-header-info h4 { font-size: .92rem; color: #fff; font-family:'Plus Jakarta Sans',sans-serif; font-weight: 700; }
.chat-header-info p { font-size: .73rem; color: rgba(255,255,255,.82); }
.chat-close { margin-left: auto; background: none; color: rgba(255,255,255,.8); font-size: 1.1rem; border: none; cursor: pointer; padding: 4px; transition: .2s; }
.chat-close:hover { color: #fff; }
.chat-messages { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; scroll-behavior: smooth; }
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--border); border-radius: 99px; }
.chat-msg {
  max-width: 85%; padding: 10px 14px; border-radius: 14px;
  font-size: .875rem; line-height: 1.6; animation: msgIn .25s ease;
}
@keyframes msgIn { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:translateY(0)} }
.msg-bot { background: var(--bg2); color: var(--text); align-self: flex-start; border-bottom-left-radius: 3px; }
.msg-user { background: var(--blue); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }
.typing { display: flex; gap: 4px; padding: 10px 14px; background: var(--bg2); border-radius: 14px; border-bottom-left-radius: 3px; align-self: flex-start; }
.typing span { width: 7px; height: 7px; background: var(--text2); border-radius: 50%; animation: typ .9s ease-in-out infinite; }
.typing span:nth-child(2){animation-delay:.15s} .typing span:nth-child(3){animation-delay:.3s}
@keyframes typ { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-5px)} }
.chat-quick { display: flex; gap: 6px; flex-wrap: wrap; padding: 0 14px 10px; flex-shrink: 0; }
.quick-btn {
  padding: 5px 12px; border-radius: 99px; border: 1.5px solid var(--blue2);
  color: var(--blue2); font-size: .76rem; font-weight: 600; background: #fff;
  cursor: pointer; transition: .2s; font-family:'Plus Jakarta Sans',sans-serif;
}
.quick-btn:hover { background: var(--blue2); color: #fff; }
.chat-input-row { display: flex; padding: 12px 14px; border-top: 1px solid var(--border); gap: 8px; flex-shrink: 0; }
.chat-input-row input {
  flex: 1; border: 2px solid var(--border); border-radius: 9px; padding: 10px 14px;
  font-size: .875rem; outline: none; transition: .2s; min-width: 0;
}
.chat-input-row input:focus { border-color: var(--blue2); }
.chat-send {
  width: 38px; height: 38px; border-radius: 9px; background: var(--blue);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: .88rem; border: none; cursor: pointer; flex-shrink: 0; transition: .2s;
}
.chat-send:hover { background: var(--blue2); }

/* ── MOBILE STICKY CTA ── */
.mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 850; background: #fff; border-top: 1px solid var(--border); padding: 10px 12px; gap: 8px; box-shadow: 0 -4px 20px rgba(0,0,0,.09); }

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal-l { opacity: 0; transform: translateX(-36px); transition: opacity .6s ease, transform .6s ease; }
.reveal-r { opacity: 0; transform: translateX(36px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible, .reveal-l.visible, .reveal-r.visible { opacity: 1; transform: none; }
.stagger .reveal:nth-child(1){transition-delay:.04s} .stagger .reveal:nth-child(2){transition-delay:.1s}
.stagger .reveal:nth-child(3){transition-delay:.16s} .stagger .reveal:nth-child(4){transition-delay:.22s}
.stagger .reveal:nth-child(5){transition-delay:.28s} .stagger .reveal:nth-child(6){transition-delay:.34s}
.stagger .reveal:nth-child(7){transition-delay:.40s} .stagger .reveal:nth-child(8){transition-delay:.46s}
.stagger .reveal:nth-child(9){transition-delay:.52s}

/* ── HERO (INDEX ONLY) ── */
.hero { background: var(--grad); min-height: 88vh; display: flex; align-items: center; padding: 72px 0; position: relative; overflow: hidden; }
.hero::before { content:''; position:absolute; inset:0; pointer-events:none; opacity:.05; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Ccircle cx='10' cy='10' r='1.5'/%3E%3Ccircle cx='30' cy='10' r='1.5'/%3E%3Ccircle cx='50' cy='10' r='1.5'/%3E%3Ccircle cx='10' cy='30' r='1.5'/%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3Ccircle cx='50' cy='30' r='1.5'/%3E%3Ccircle cx='10' cy='50' r='1.5'/%3E%3Ccircle cx='30' cy='50' r='1.5'/%3E%3Ccircle cx='50' cy='50' r='1.5'/%3E%3C/g%3E%3C/svg%3E"); }
.hero-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28); padding: 6px 16px; border-radius: 99px; font-size: .8rem; color: rgba(255,255,255,.9); margin-bottom: 20px; backdrop-filter: blur(8px); }
.hero-pill .dot { width: 8px; height: 8px; background: #4ade80; border-radius: 50%; animation: blink 1.5s infinite; flex-shrink: 0; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); color: #fff; margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: rgba(255,255,255,.7); }
.hero-sub { color: rgba(255,255,255,.85); font-size: 1.05rem; line-height: 1.78; margin-bottom: 36px; max-width: 480px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-btns .btn { padding: 13px 24px; font-size: .95rem; }
.hero-img-wrap { position: relative; }
.hero-img { border-radius: var(--rx); width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: top; box-shadow: 0 36px 80px rgba(0,0,0,.28); }
.hero-float-card { position: absolute; background: #fff; border-radius: var(--rl); padding: 16px 20px; box-shadow: 0 16px 40px rgba(10,77,140,.2); }
.hfc-1 { bottom: 28px; left: -24px; animation: floatBadge 4s ease-in-out infinite; min-width: 160px; }
.hfc-2 { top: 24px; right: -18px; background: var(--green); animation: floatBadge 4s ease-in-out .8s infinite; }
.hfc-num { font-family:'Cormorant Garamond',serif; font-size: 1.6rem; font-weight: 700; color: var(--blue); line-height: 1; }
.hfc-lbl { font-size: .74rem; color: var(--text2); margin-top: 3px; }
.hfc-2 .hfc-num { color: #fff; font-size: 1rem; }
.hfc-2 .hfc-lbl { color: rgba(255,255,255,.85); }

/* ── GRID UTILITIES ── */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }

/* ── FACILITY CARDS ── */
.facility-card { background: #fff; border-radius: var(--r); overflow: hidden; border: 1px solid var(--border); transition: .3s; }
.facility-card:hover { box-shadow: var(--shadow2); transform: translateY(-5px); }
.facility-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: .5s; }
.facility-card:hover img { transform: scale(1.04); }
.facility-info { padding: 20px; }
.facility-info h3 { font-size: 1.05rem; font-family:'Plus Jakarta Sans',sans-serif; font-weight: 700; margin-bottom: 6px; }
.facility-info p { font-size: .88rem; color: var(--text2); line-height: 1.65; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hmo-providers { grid-template-columns: repeat(3,1fr); }
  .hmo-steps { grid-template-columns: repeat(2,1fr); }
  .hmo-step:not(:last-child)::after { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .hero { min-height: auto; padding: 56px 0 48px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 0; }
  .hero-img-wrap { display: none; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { width: 100%; justify-content: center; padding: 14px 20px; }
  .section { padding: 60px 0; }
  .section-inner { padding: 0 16px; }
  .section-title { font-size: 1.7rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .services-grid, .testimonials-grid, .values-grid, .hmo-why { grid-template-columns: 1fr; }
  .hmo-providers { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .hmo-steps { grid-template-columns: 1fr; }
  .g2 { grid-template-columns: 1fr; }
  .about-grid { gap: 28px; }
  .about-img-badge { display: none; }
  .about-img-main { aspect-ratio: 16/9; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .float-btns { bottom: 80px; right: 16px; }
  .chat-trigger { bottom: 80px; left: 16px; }
  .chat-window { left: 10px; right: 10px; width: auto; bottom: 80px; height: 460px; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 70px; }
  .emergency-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .emergency-btns .btn { width: 100%; justify-content: center; }
  .page-hero { padding: 56px 16px 44px; }
  .page-hero h1 { font-size: 1.9rem; }
}
@media (max-width: 480px) {
  .section-inner { padding: 0 12px; }
  .hmo-providers { grid-template-columns: repeat(2,1fr); }
  .stats-grid { gap: 10px; }
}
