/* ================================================================
   HEALTHPLIX — style.css
   Complete styles for all sections:
   • Core layout & design system
   • Hero, Header, Navigation
   • Doctor Slider & Grid (with Ahmedabad)
   • Insurance & TPA dedicated section
   • International Patients dedicated section
   • Messenger Popup (post-booking notification)
   • AI Chatbot Widget
   • BMI Calculator, Symptom Checker, FAQ
   • Social Media, Footer
   • Fully responsive (1920 → 375px)
================================================================ */

/* ─── RESET & CSS VARIABLES ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand colours */
  --blue:      #0066CC;
  --blue-dk:   #004EA3;
  --blue-dkr:  #003278;
  --blue-lt:   #EBF4FF;
  --cyan:      #00B4D8;
  --green:     #00A86B;
  --green-dk:  #007A4D;
  --green-lt:  #E6F7F1;
  --red:       #D42B2B;
  --red-lt:    #FFF0F0;
  --gold:      #F5A623;
  --amber:     #F59E0B;
  /* Neutrals */
  --white:     #FFFFFF;
  --off:       #F7F9FC;
  --gray:      #F0F3F7;
  --text:      #0D1C2E;
  --muted:     #5B6B80;
  --border:    #DDE5EF;
  /* Shadows */
  --sh-xs: 0 1px 4px rgba(0,0,0,.05);
  --sh-sm: 0 2px 12px rgba(0,0,0,.07);
  --sh-md: 0 8px 36px rgba(0,0,0,.11);
  --sh-lg: 0 20px 64px rgba(0,0,0,.15);
  --sh-b:  0 8px 28px rgba(0,102,204,.28);
  /* Radii */
  --r-xs: 4px;  --r-sm: 8px;
  --r: 14px;    --r-lg: 20px;
  --r-xl: 28px; --r-full: 9999px;
  /* Motion */
  --ease:   cubic-bezier(.4,0,.2,1);
  --bounce: cubic-bezier(.34,1.56,.64,1);
  /* Layout */
  --maxw: 1340px;
  --hh:   74px;
}

html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.68; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* ─── SECTION UTILITIES ──────────────────────────────────────── */
.section { padding: 88px 0; }
.section-eyebrow { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: var(--green); margin-bottom: 10px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(26px,3.6vw,44px); font-weight: 700; line-height: 1.12; color: var(--text); margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--muted); max-width: 560px; line-height: 1.72; }
.section-hd { margin-bottom: 52px; }
.section-hd.center { text-align: center; }
.section-hd.center .section-sub { margin: 0 auto; }
.row-hd { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.sec-more { text-align: center; margin-top: 44px; }

/* Fade-in animation */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.fade-in.visible { opacity: 1; transform: none; }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 24px; border-radius: var(--r-full); font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; border: none; transition: all .22s var(--ease); white-space: nowrap; line-height: 1; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: var(--sh-b); }
.btn-primary:hover { background: var(--blue-dk); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,102,204,.38); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dk); transform: translateY(-2px); }
.btn-ghost { background: transparent; border: 1.5px solid var(--blue); color: var(--blue); }
.btn-ghost:hover { background: var(--blue-lt); }
.btn-outline { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-lt); }
.btn-emrg { background: var(--red); color: #fff; }
.btn-emrg:hover { background: #b72323; transform: translateY(-1px); }
.btn-hero-w { background: #fff; color: var(--blue-dkr); font-weight: 700; font-size: 15px; padding: 14px 32px; }
.btn-hero-w:hover { background: #EEF6FF; transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-hero-o { background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.6); color: #fff; font-size: 15px; padding: 14px 32px; backdrop-filter: blur(4px); }
.btn-hero-o:hover { background: rgba(255,255,255,.22); border-color: #fff; }
.btn-pkg-line { background: transparent; border: 1.5px solid var(--blue); color: var(--blue); width: 100%; padding: 11px; }
.btn-pkg-line:hover { background: var(--blue-lt); }
.btn-pkg-fill { background: var(--green); color: #fff; width: 100%; padding: 11px; }
.btn-pkg-fill:hover { background: var(--green-dk); }
.btn-sm-ghost { background: transparent; border: 1px solid var(--border); color: var(--muted); padding: 9px 18px; font-size: 13.5px; border-radius: var(--r-full); cursor: pointer; font-family: 'Inter', sans-serif; font-weight: 500; transition: all .2s; }
.btn-sm-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-cta-w { background: #fff; color: var(--green-dk); font-weight: 700; font-size: 15px; padding: 14px 32px; }
.btn-cta-w:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-cta-o { background: rgba(255,255,255,.12); border: 2px solid rgba(255,255,255,.5); color: #fff; font-size: 15px; padding: 14px 32px; }
.btn-cta-o:hover { background: rgba(255,255,255,.22); }
.btn-cta-r { background: rgba(212,43,43,.25); border: 2px solid rgba(212,43,43,.55); color: #fff; font-size: 15px; padding: 14px 32px; }
.btn-cta-r:hover { background: rgba(212,43,43,.42); }

/* ─── SCROLL PROGRESS ────────────────────────────────────────── */
#scroll-prog { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg,var(--cyan),var(--blue)); z-index: 9999; pointer-events: none; transition: width .1s linear; }

/* ─── TOP BAR ────────────────────────────────────────────────── */
.top-bar { background: linear-gradient(90deg,#002050,#003884); color: rgba(255,255,255,.85); font-size: 12.5px; padding: 8px 0; }
.top-bar-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.tb-item { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.78); }
.tb-item i { color: var(--gold); font-size: 11px; }
.tb-link { color: var(--gold); font-weight: 700; transition: opacity .2s; }
.tb-link:hover { opacity: .8; text-decoration: underline; }
.tb-sep { color: rgba(255,255,255,.25); }
.em-pulse { width: 9px; height: 9px; border-radius: 50%; background: #FF4D4D; flex-shrink: 0; animation: emPulse 1.5s ease-in-out infinite; }
@keyframes emPulse { 0%,100%{box-shadow:0 0 0 0 rgba(255,77,77,.7)} 50%{box-shadow:0 0 0 7px rgba(255,77,77,0)} }

/* ─── HEADER ─────────────────────────────────────────────────── */
header { position: sticky; top: 0; z-index: 1000; background: rgba(255,255,255,.97); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); box-shadow: var(--sh-xs); transition: transform .3s var(--ease), box-shadow .3s; }
header.scrolled { box-shadow: var(--sh-sm); }
.header-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; align-items: center; height: var(--hh); gap: 22px; }

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-mark { filter: drop-shadow(0 4px 10px rgba(0,102,204,.22)); transition: filter .25s; }
.logo:hover .logo-mark { filter: drop-shadow(0 6px 16px rgba(0,102,204,.38)); }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 23px; font-weight: 700; color: var(--blue-dkr); line-height: 1.1; }
.logo-name em { font-style: italic; color: var(--blue); }
.logo-tag { font-size: 9.5px; font-weight: 600; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }

/* Navigation */
.main-nav { flex: 1; display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; font-size: 13.5px; font-weight: 500; color: var(--text); padding: 8px 13px; border-radius: var(--r-sm); cursor: pointer; white-space: nowrap; user-select: none; transition: background .2s, color .2s; display: flex; align-items: center; gap: 4px; }
.nav-item:hover { background: var(--blue-lt); color: var(--blue); }
.nav-arr { font-size: 8px; opacity: .5; transition: transform .2s; }
.nav-item:hover .nav-arr { transform: rotate(180deg); opacity: 1; }

/* Mega menus */
.mega-menu { display: none; position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%); background: #fff; border: 1px solid var(--border); border-radius: var(--r); box-shadow: var(--sh-lg); padding: 24px 26px; min-width: 260px; z-index: 9999; }
.mega-menu.mm-wide { min-width: 460px; display: none; grid-template-columns: 1fr 1fr; }
.mega-menu.mm-xl   { min-width: 680px; display: none; grid-template-columns: 1fr 1fr 1fr; }
.nav-item:hover .mega-menu { display: block; animation: mmDrop .18s var(--ease) both; }
.nav-item:hover .mega-menu.mm-wide,
.nav-item:hover .mega-menu.mm-xl { display: grid; }
@keyframes mmDrop { from{opacity:0;transform:translateX(-50%) translateY(10px)} to{opacity:1;transform:translateX(-50%) translateY(0)} }
.mm-col { display: flex; flex-direction: column; gap: 2px; }
.mm-head { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); padding: 2px 10px 8px; border-bottom: 1px solid var(--border); margin-bottom: 2px; }
.mega-menu a { font-size: 13.5px; color: var(--muted); padding: 7px 10px; border-radius: var(--r-sm); transition: all .18s; display: flex; align-items: center; gap: 8px; }
.mega-menu a:hover { background: var(--blue-lt); color: var(--blue); padding-left: 14px; }
.mm-ico { width: 18px; text-align: center; color: var(--blue); flex-shrink: 0; font-size: 12px; }

/* Header actions */
.hdr-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.search-wrap { position: relative; }
.search-wrap input { border: 1.5px solid var(--border); border-radius: var(--r-full); padding: 8px 16px 8px 36px; font-size: 13.5px; width: 200px; font-family: 'Inter', sans-serif; color: var(--text); background: var(--off); transition: all .25s; }
.search-wrap input:focus { outline: none; border-color: var(--blue); width: 240px; background: #fff; }
.s-ico { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 13px; pointer-events: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .25s; display: block; }

/* ─── HERO SLIDER ────────────────────────────────────────────── */
.hero { position: relative; min-height: 92vh; overflow: hidden; }
.hero-slides { position: relative; width: 100%; height: 92vh; min-height: 580px; }
.hero-slide { position: absolute; inset: 0; background-image: var(--bg); background-size: cover; background-position: center; opacity: 0; transition: opacity 1s var(--ease); }
.hero-slide.active { opacity: 1; }
.slide-ov { position: absolute; inset: 0; background: linear-gradient(115deg,rgba(2,14,36,.88) 0%,rgba(0,50,130,.64) 55%,rgba(0,40,110,.18) 100%); }
.slide-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 100%; max-width: var(--maxw); padding: 0 28px; z-index: 2; color: #fff; }
.slide-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(0,180,216,.2); border: 1px solid rgba(0,180,216,.5); color: #90E0F0; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; padding: 6px 16px; border-radius: var(--r-full); margin-bottom: 22px; }
.slide-title { font-family: 'Playfair Display', serif; font-size: clamp(36px,5.6vw,72px); font-weight: 700; line-height: 1.06; margin-bottom: 18px; max-width: 740px; text-shadow: 0 2px 22px rgba(0,0,0,.35); }
.slide-title em { font-style: italic; color: var(--gold); }
.slide-sub { font-size: 17.5px; color: rgba(255,255,255,.82); max-width: 560px; margin-bottom: 36px; line-height: 1.7; }
.slide-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.slider-ctrl { position: absolute; bottom: 130px; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 16px; z-index: 10; }
.slide-arr { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.32); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .22s; backdrop-filter: blur(4px); }
.slide-arr:hover { background: rgba(255,255,255,.28); border-color: rgba(255,255,255,.65); }
.slide-dots { display: flex; gap: 8px; }
.slide-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.36); cursor: pointer; border: none; transition: all .3s; padding: 0; }
.slide-dot.active { background: #fff; width: 28px; border-radius: 4px; }
.hero-stats { position: absolute; bottom: 0; left: 0; right: 0; z-index: 10; background: rgba(255,255,255,.97); backdrop-filter: blur(14px); border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: center; height: 86px; }
.hstat { display: flex; flex-direction: column; align-items: center; padding: 0 30px; }
.hstat-n { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; color: var(--blue); line-height: 1; display: inline; }
.hstat-s { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--gold); display: inline; }
.hstat-l { font-size: 11px; color: var(--muted); margin-top: 4px; text-align: center; }
.hstat-sep { width: 1px; height: 38px; background: var(--border); flex-shrink: 0; }

/* ─── QUICK ACCESS BAR ───────────────────────────────────────── */
.quick-bar { background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--sh-xs); }
.qb-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; display: flex; overflow-x: auto; scrollbar-width: none; }
.qb-inner::-webkit-scrollbar { display: none; }
.qb-item { display: flex; flex-direction: column; align-items: center; gap: 5px; padding: 13px 20px; border-right: 1px solid var(--border); text-decoration: none; color: var(--text); font-size: 11.5px; font-weight: 500; transition: all .2s; white-space: nowrap; flex-shrink: 0; }
.qb-item:hover { background: var(--blue-lt); color: var(--blue); }
.qb-ico { font-size: 18px; color: var(--blue); transition: transform .2s; }
.qb-item:hover .qb-ico { transform: translateY(-2px); }
.qb-emrg { color: var(--red) !important; }
.qb-emrg .qb-ico { color: var(--red) !important; }
.qb-emrg:hover { background: var(--red-lt) !important; }

/* ─── ACCREDITATIONS ─────────────────────────────────────────── */
.accred-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 18px 0; }
.accred-bar .container { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.accred-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); white-space: nowrap; }
.accred-list { display: flex; gap: 10px; flex-wrap: wrap; }
.accred-chip { display: flex; flex-direction: column; align-items: center; gap: 2px; border: 1.5px solid var(--border); border-radius: var(--r-sm); padding: 8px 16px; min-width: 78px; background: var(--off); transition: all .2s; }
.accred-chip:hover { border-color: var(--blue); box-shadow: var(--sh-sm); transform: translateY(-2px); }
.accred-chip strong { font-family: 'Playfair Display', serif; font-size: 15px; font-weight: 700; color: var(--blue); }
.accred-chip small { font-size: 9px; color: var(--muted); text-align: center; }

/* ─── SPECIALTIES ────────────────────────────────────────────── */
.spec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.spec-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 30px 26px; transition: all .28s var(--ease); position: relative; overflow: hidden; }
.spec-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--sc,var(--blue)); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.spec-card:hover { transform: translateY(-8px); box-shadow: var(--sh-md); border-color: transparent; }
.spec-card:hover::after { transform: scaleX(1); }
.spec-ico { width: 62px; height: 62px; border-radius: 16px; background: var(--sc,var(--blue)); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 28px; color: #fff; }
.spec-card h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.spec-card p { font-size: 14px; color: var(--muted); margin-bottom: 18px; line-height: 1.68; }
.spec-lnk { font-size: 13.5px; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 5px; transition: gap .2s; }
.spec-lnk:hover { gap: 10px; }

/* ─── DOCTOR SLIDER ──────────────────────────────────────────── */
.doc-slider-section { background: var(--off); padding: 90px 0; }
.ds-nav { display: flex; gap: 10px; }
.ds-arr { width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1.5px solid var(--border); color: var(--text); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all .22s; font-size: 14px; }
.ds-arr:hover { background: var(--blue); color: #fff; border-color: var(--blue); box-shadow: var(--sh-b); }
.ds-viewport { overflow: hidden; border-radius: var(--r); }
.ds-track { display: flex; gap: 20px; transition: transform .5s var(--ease); will-change: transform; }
.ds-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; min-width: calc(25% - 15px); max-width: calc(25% - 15px); flex-shrink: 0; transition: all .3s var(--ease); display: flex; flex-direction: column; }
.ds-card:hover { transform: translateY(-8px); box-shadow: var(--sh-md); border-color: transparent; }
.ds-img-wrap { position: relative; height: 250px; overflow: hidden; background: linear-gradient(135deg,#D6E8FF,#B3D4FF); }
.ds-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .45s var(--ease); }
.ds-card:hover .ds-img { transform: scale(1.06); }
.ds-spec-tag { position: absolute; top: 12px; left: 12px; background: var(--tc,var(--blue)); color: #fff; font-size: 10.5px; font-weight: 700; padding: 4px 12px; border-radius: var(--r-full); text-transform: uppercase; letter-spacing: .05em; }
.ds-avail { position: absolute; bottom: 12px; left: 12px; background: rgba(0,168,107,.9); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: var(--r-full); display: flex; align-items: center; gap: 6px; backdrop-filter: blur(4px); }
.ds-avail.tmrw { background: rgba(245,166,35,.9); }
.avail-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: emPulse 1.8s infinite; }
.avail-dot.t { animation: none; }
.ds-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.ds-name { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.ds-role { font-size: 13px; color: var(--muted); margin-bottom: 10px; line-height: 1.5; }
.ds-meta { display: flex; gap: 14px; margin-bottom: 8px; flex-wrap: wrap; }
.ds-mi { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.ds-mi i { color: var(--blue); font-size: 11px; }
.ds-stars { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.ds-s { color: var(--gold); font-size: 13px; }
.ds-rc { font-size: 12px; color: var(--muted); }
.ds-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.ds-badge { font-size: 11px; font-weight: 600; background: var(--blue-lt); color: var(--blue); padding: 3px 10px; border-radius: var(--r-full); border: 1px solid rgba(0,102,204,.15); }
.ds-btns { display: flex; gap: 8px; margin-top: auto; }
.ds-bk { flex: 1; justify-content: center; padding: 9px; font-size: 13px; }
.ds-vp { padding: 9px 14px; font-size: 13px; border-radius: var(--r-full); }
.ds-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.ds-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; border: none; transition: all .3s; padding: 0; }
.ds-dot.active { background: var(--blue); width: 24px; border-radius: 4px; }

/* ─── DOCTORS GRID ───────────────────────────────────────────── */
.doctors-bg { background: #fff; }
.doc-filter { background: var(--off); border: 1px solid var(--border); border-radius: var(--r); padding: 16px 20px; margin-bottom: 32px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.doc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.doc-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: all .28s var(--ease); }
.doc-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.doc-img-wrap { position: relative; height: 220px; overflow: hidden; }
.doc-img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform .4s var(--ease); }
.doc-card:hover .doc-img { transform: scale(1.05); }
.doc-tag { position: absolute; top: 12px; right: 12px; background: var(--blue); color: #fff; font-size: 10.5px; font-weight: 700; padding: 4px 11px; border-radius: var(--r-full); }
.doc-body { padding: 18px 20px; }
.doc-nm { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.doc-sp { font-size: 13px; font-weight: 600; color: var(--green); margin-bottom: 4px; }
.doc-me { font-size: 12.5px; color: var(--muted); margin-bottom: 8px; }
.doc-me i { color: var(--blue); font-size: 11px; margin-right: 2px; }
.doc-st { font-size: 13px; color: var(--gold); margin-bottom: 14px; }
.doc-st span { color: var(--muted); font-size: 12px; }
.doc-btn { width: 100%; justify-content: center; padding: 9px; font-size: 13.5px; }
.no-res { grid-column: 1/-1; text-align: center; padding: 44px; color: var(--muted); }

/* ─── PACKAGES ───────────────────────────────────────────────── */
.pkg-bg { background: var(--off); }
.pkg-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.pkg-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--r); padding: 26px 22px; transition: all .28s var(--ease); position: relative; }
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: var(--blue); }
.pkg-best { border-color: var(--green); }
.pkg-best:hover { border-color: var(--green) !important; }
.pkg-ribbon { position: absolute; top: -1px; right: 18px; background: var(--green); color: #fff; font-size: 10px; font-weight: 700; padding: 4px 12px; border-radius: 0 0 8px 8px; text-transform: uppercase; letter-spacing: .07em; }
.pkg-ico { width: 56px; height: 56px; border-radius: 50%; background: var(--pc,var(--blue)); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 22px; color: #fff; }
.pkg-card h3 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.pkg-cnt { font-size: 12.5px; font-weight: 600; color: var(--muted); margin-bottom: 10px; }
.pkg-price { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--blue); }
.pkg-dur { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.pkg-dur i { color: var(--blue); }
.pkg-list { list-style: none; margin-bottom: 20px; display: flex; flex-direction: column; gap: 6px; }
.pkg-list li { font-size: 12.5px; color: var(--muted); display: flex; align-items: flex-start; gap: 7px; }
.pkg-list li::before { content: '✓'; color: var(--green); font-weight: 800; flex-shrink: 0; }

/* ─── WHY CHOOSE US ──────────────────────────────────────────── */
.why-bg { background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.why-card { background: var(--off); border: 1px solid var(--border); border-radius: var(--r); padding: 30px 26px; transition: all .28s var(--ease); }
.why-card:hover { background: #fff; transform: translateY(-5px); box-shadow: var(--sh-md); border-color: transparent; }
.why-ico { width: 60px; height: 60px; border-radius: 16px; background: var(--wi,var(--blue)); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; font-size: 26px; color: #fff; }
.why-card h3 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.68; }

/* ─── BMI CALCULATOR ─────────────────────────────────────────── */
.bmi-section { background: linear-gradient(135deg,#001730,#003884); padding: 90px 0; }
.bmi-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.bmi-wrap .section-title { color: #fff; }
.bmi-wrap .section-sub { color: rgba(255,255,255,.65); }
.bmi-wrap .section-eyebrow { color: #7EE8C8; }
.bmi-toggle { display: flex; background: rgba(255,255,255,.1); border-radius: var(--r-full); padding: 4px; margin-bottom: 26px; width: fit-content; }
.bmi-btn { padding: 8px 20px; border-radius: var(--r-full); border: none; cursor: pointer; font-size: 13.5px; font-weight: 600; font-family: 'Inter', sans-serif; color: rgba(255,255,255,.6); background: transparent; transition: all .22s; }
.bmi-btn.on { background: #fff; color: var(--blue); }
.bmi-field { margin-bottom: 20px; }
.bmi-field label { display: block; font-size: 13px; font-weight: 600; color: rgba(255,255,255,.75); margin-bottom: 10px; }
.bmi-slider-row { display: flex; align-items: center; gap: 16px; }
.bmi-slider { flex: 1; -webkit-appearance: none; appearance: none; height: 6px; border-radius: 3px; outline: none; cursor: pointer; background: rgba(255,255,255,.2); }
.bmi-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%; background: #fff; cursor: pointer; box-shadow: 0 2px 10px rgba(0,0,0,.25); transition: transform .15s; margin-top: -8px; }
.bmi-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.bmi-slider::-webkit-slider-runnable-track { height: 6px; border-radius: 3px; }
.bmi-val { min-width: 72px; text-align: right; font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; color: #fff; white-space: nowrap; }
.bmi-result-card { background: #fff; border-radius: var(--r-xl); padding: 32px 28px; box-shadow: 0 24px 64px rgba(0,0,0,.28); }
.bmi-ring-wrap { position: relative; width: 160px; height: 160px; margin: 0 auto 18px; }
.bmi-ring-svg { width: 100%; height: 100%; }
.bmi-ring-center { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; }
.bmi-num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--text); display: block; }
.bmi-unit-lbl { font-size: 12px; color: var(--muted); font-weight: 600; }
.bmi-cat { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; text-align: center; margin-bottom: 10px; }
.bmi-dsc { font-size: 13.5px; color: var(--muted); text-align: center; margin-bottom: 20px; line-height: 1.65; }
.bmi-bar-wrap { margin-bottom: 8px; }
.bmi-bar { display: flex; height: 10px; border-radius: 5px; overflow: hidden; margin-bottom: 10px; gap: 2px; }
.bmi-seg { height: 100%; }
.bmi-bar-lbls { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); }

/* ─── SYMPTOM CHECKER ────────────────────────────────────────── */
.sym-section { background: var(--off); }
.sym-box { max-width: 760px; margin: 0 auto; background: #fff; border-radius: var(--r-xl); padding: 40px 44px; box-shadow: var(--sh-md); }
.sym-prog { display: flex; align-items: center; margin-bottom: 34px; }
.sym-dot { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--muted); background: #fff; flex-shrink: 0; transition: all .3s; }
.sym-dot.on { border-color: var(--blue); background: var(--blue); color: #fff; }
.sym-dot.done { border-color: var(--green); background: var(--green); color: #fff; }
.sym-line { flex: 1; height: 2px; background: var(--border); margin: 0 4px; transition: background .3s; }
.sym-line.done { background: var(--green); }
.sym-q { font-family: 'Playfair Display', serif; font-size: 19px; font-weight: 700; margin-bottom: 24px; }
.sym-opts { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-bottom: 8px; }
.sym-opts.three { grid-template-columns: repeat(3,1fr); }
.sym-opt { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 18px 10px; border: 1.5px solid var(--border); border-radius: var(--r); cursor: pointer; font-size: 12.5px; font-weight: 600; text-align: center; color: var(--text); transition: all .22s; background: var(--off); }
.sym-opt i { font-size: 22px; color: var(--blue); }
.sym-opt:hover, .sym-opt.sel { border-color: var(--blue); background: var(--blue-lt); color: var(--blue); transform: translateY(-2px); }
.sev-row { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.sev-card { flex: 1; min-width: 100px; padding: 16px 10px; border: 1.5px solid var(--border); border-radius: var(--r); text-align: center; cursor: pointer; transition: all .22s; background: var(--off); }
.sev-n { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--text); display: block; }
.sev-l { font-size: 12px; font-weight: 600; color: var(--muted); display: block; }
.sev-card:nth-child(1):hover,.sev-card:nth-child(1).sel{border-color:#10B981;background:#E6FAF2}
.sev-card:nth-child(2):hover,.sev-card:nth-child(2).sel{border-color:#F59E0B;background:#FEF3C7}
.sev-card:nth-child(3):hover,.sev-card:nth-child(3).sel{border-color:#EF4444;background:#FEF2F2}
.sev-card:nth-child(4):hover,.sev-card:nth-child(4).sel{border-color:#991B1B;background:#FEE2E2}
.sev-card:nth-child(1).sel .sev-n,.sev-card:nth-child(1).sel .sev-l{color:#10B981}
.sev-card:nth-child(2).sel .sev-n,.sev-card:nth-child(2).sel .sev-l{color:#F59E0B}
.sev-card:nth-child(3).sel .sev-n,.sev-card:nth-child(3).sel .sev-l{color:#EF4444}
.sev-card:nth-child(4).sel .sev-n,.sev-card:nth-child(4).sel .sev-l{color:#991B1B}
.sym-res { text-align: center; padding: 10px 0; }
.sym-res-ico { width: 80px; height: 80px; border-radius: 50%; background: var(--blue-lt); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 32px; color: var(--blue); }
.sym-res h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.sym-res p { font-size: 15px; color: var(--muted); max-width: 440px; margin: 0 auto 22px; line-height: 1.7; }
.sym-res-spec { display: inline-flex; align-items: center; gap: 10px; background: var(--blue-lt); border: 1.5px solid rgba(0,102,204,.2); border-radius: var(--r); padding: 14px 24px; margin-bottom: 22px; font-size: 15px; font-weight: 700; color: var(--blue); }
.sym-res-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.sym-note { font-size: 12px; color: var(--muted); margin-top: 16px; line-height: 1.6; max-width: 420px; margin-left: auto; margin-right: auto; }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testi-bg { background: linear-gradient(135deg,#040E20 0%,#002F80 60%,#003884 100%); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.testi-card { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1); border-radius: var(--r); padding: 28px; backdrop-filter: blur(8px); transition: all .28s var(--ease); }
.testi-card:hover { background: rgba(255,255,255,.13); transform: translateY(-6px); }
.testi-ph-wrap { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; margin-bottom: 14px; border: 2px solid rgba(255,255,255,.3); }
.testi-ph { width: 100%; height: 100%; object-fit: cover; }
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text { font-size: 15px; color: rgba(255,255,255,.82); font-style: italic; line-height: 1.72; margin-bottom: 18px; }
.testi-auth strong { font-size: 14.5px; color: #fff; font-weight: 600; display: block; }
.testi-auth span { font-size: 12.5px; color: rgba(255,255,255,.5); }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-section { background: #fff; }
.faq-box { max-width: 780px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r-sm); margin-bottom: 10px; overflow: hidden; transition: box-shadow .25s; }
.faq-item:hover { box-shadow: var(--sh-sm); }
.faq-q { width: 100%; background: #fff; border: none; padding: 18px 20px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); text-align: left; gap: 16px; transition: background .2s; }
.faq-q:hover { background: var(--off); }
.faq-q.open { background: var(--blue-lt); color: var(--blue); }
.faq-q.open .faq-ico { transform: rotate(45deg); color: var(--blue); }
.faq-ico { font-size: 14px; color: var(--muted); flex-shrink: 0; transition: transform .25s; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease), padding .35s; font-size: 14.5px; color: var(--muted); line-height: 1.72; padding: 0 20px; background: var(--off); }
.faq-a.open { max-height: 240px; padding: 16px 20px; }

/* ─── NEWS ───────────────────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.news-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: all .28s var(--ease); }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.news-img { position: relative; height: 200px; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.news-card:hover .news-img img { transform: scale(1.06); }
.news-lbl { position: absolute; top: 14px; left: 14px; background: var(--blue); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: var(--r-full); text-transform: uppercase; letter-spacing: .06em; }
.news-body { padding: 20px; }
.news-body h3 { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; line-height: 1.45; }
.news-body p { font-size: 13.5px; color: var(--muted); margin-bottom: 12px; line-height: 1.6; }
.news-date { font-size: 12px; color: var(--muted); }
.news-date i { color: var(--blue); margin-right: 4px; }

/* ─── CTA BANNER ─────────────────────────────────────────────── */
.cta-section { background: linear-gradient(135deg,var(--green) 0%,#004A99 100%); padding: 80px 0; text-align: center; }
.cta-inner { max-width: 720px; margin: 0 auto; }
.cta-title { font-family: 'Playfair Display', serif; font-size: clamp(28px,5vw,50px); font-weight: 700; color: #fff; margin-bottom: 14px; }
.cta-sub { font-size: 17px; color: rgba(255,255,255,.78); margin-bottom: 36px; }
.cta-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ─── PATIENT PORTAL ─────────────────────────────────────────── */
.portal-section { background: var(--off); }
.pp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 28px; }
.pp-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 26px 22px; display: flex; flex-direction: column; gap: 12px; transition: all .25s var(--ease); }
.pp-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: transparent; }
.pp-ico { width: 52px; height: 52px; border-radius: 14px; background: var(--pi,var(--blue)); display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; }
.pp-card h3 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; }
.pp-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }
.pp-card a { font-size: 13.5px; font-weight: 700; color: var(--blue); display: inline-flex; align-items: center; gap: 5px; transition: gap .2s; }
.pp-card a:hover { gap: 10px; }
.pp-note { background: var(--blue-lt); border: 1px solid rgba(0,102,204,.18); border-radius: var(--r-sm); padding: 16px 20px; display: flex; gap: 14px; align-items: flex-start; }
.pp-note i { font-size: 18px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }
.pp-note p { font-size: 13.5px; color: var(--text); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   INSURANCE & TPA — DEDICATED FULL SECTION
═══════════════════════════════════════════════════════════════ */
.ins-section { background: var(--off); }

/* Section header */
.ins-sec-hd { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 50px; }
.ins-stats-row { display: flex; gap: 16px; flex-wrap: wrap; }
.ins-stat { display: flex; align-items: center; gap: 12px; background: var(--blue-lt); border: 1px solid rgba(0,102,204,.18); border-radius: var(--r); padding: 14px 20px; }
.ins-stat i { font-size: 22px; color: var(--blue); }
.ins-stat strong { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--blue); display: block; line-height: 1; }
.ins-stat span { font-size: 12px; color: var(--muted); }

/* Main 2-col grid */
.ins-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }

/* Info column */
.ins-info-col { display: flex; flex-direction: column; gap: 0; }
.ins-info-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 26px; }
.ins-info-card-hd { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.ins-info-card-hd i { color: var(--blue); font-size: 16px; }

/* Flow steps */
.ins-flow { display: flex; flex-direction: column; gap: 0; }
.ins-flow-item { display: flex; align-items: flex-start; gap: 16px; padding: 14px 0; }
.ins-flow-item + .ins-flow-item { border-top: 1px dashed var(--border); }
.ins-flow-num { width: 34px; height: 34px; border-radius: 50%; background: var(--blue); color: #fff; font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ins-flow-item h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 4px; }
.ins-flow-item p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.ins-flow-arrow { text-align: center; color: var(--border); font-size: 12px; padding: 4px 0; }

/* Coverage grid */
.ins-cov-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ins-cov-item { display: flex; align-items: center; gap: 8px; font-size: 13px; padding: 8px 10px; border-radius: var(--r-sm); font-weight: 500; }
.ins-cov-item.yes { background: #E6FAF1; color: #065F46; }
.ins-cov-item.yes i { color: #059669; }
.ins-cov-item.no { background: var(--red-lt); color: #991B1B; }
.ins-cov-item.no i { color: var(--red); }

/* Helpdesk */
.ins-helpdesk-bar { display: flex; align-items: center; gap: 18px; background: linear-gradient(90deg,var(--blue),var(--blue-dk)); border-radius: var(--r); padding: 20px 24px; margin-top: 20px; }
.ins-hd-ico { width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center; font-size: 22px; color: #fff; flex-shrink: 0; }
.ins-helpdesk-bar h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ins-hd-links { display: flex; gap: 10px; flex-wrap: wrap; }
.ins-hd-links a { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); border-radius: var(--r-full); font-size: 12.5px; font-weight: 600; color: #fff; transition: background .2s; }
.ins-hd-links a:hover { background: rgba(255,255,255,.28); }
.ins-hd-links a.wa { background: rgba(37,211,102,.25); border-color: rgba(37,211,102,.5); }
.ins-hd-links a.wa:hover { background: rgba(37,211,102,.42); }

/* Partners */
.ins-partners { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 22px 24px; margin-top: 20px; }
.ins-partners-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 14px; }
.ins-partners-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.ins-chip { padding: 6px 14px; border: 1px solid var(--border); border-radius: var(--r-full); font-size: 12.5px; font-weight: 600; color: var(--text); background: var(--off); transition: all .2s; }
.ins-chip:hover { border-color: var(--blue); background: var(--blue-lt); color: var(--blue); }
.ins-chip.featured { background: var(--blue-lt); border-color: rgba(0,102,204,.25); color: var(--blue); font-weight: 700; }
.ins-chip.more { background: var(--blue); color: #fff; border-color: var(--blue); }

/* Booking card */
.ins-booking-col { position: sticky; top: calc(var(--hh) + 20px); }
.ins-booking-card { background: #fff; border: 2px solid var(--blue-lt); border-radius: var(--r-xl); padding: 28px; box-shadow: 0 12px 44px rgba(0,102,204,.12); }
.ins-bk-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.ins-bk-header-ico { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg,var(--blue-lt),#BFDBFF); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--blue); flex-shrink: 0; }
.ins-bk-header h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.ins-bk-header p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* Step progress (Insurance) */
.ins-step-prog { display: flex; align-items: center; margin-bottom: 28px; }
.ins-si { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.ins-si span { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--muted); transition: all .3s; }
.ins-si em { font-style: normal; font-size: 10px; color: var(--muted); white-space: nowrap; font-weight: 500; }
.ins-si.active span { border-color: var(--blue); background: var(--blue); color: #fff; }
.ins-si.done   span { border-color: var(--green); background: var(--green); color: #fff; }
.ins-si.active em, .ins-si.done em { color: var(--blue); font-weight: 600; }
.ins-sl { flex: 1; height: 2px; background: var(--border); margin: 0 4px 14px; }

.ins-bk-step { }
.ins-step-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 18px; padding: 10px 14px; background: var(--off); border-radius: var(--r-sm); border-left: 3px solid var(--blue); }
.ins-note { background: var(--blue-lt); border-radius: var(--r-sm); padding: 10px 14px; font-size: 12.5px; color: var(--muted); margin-bottom: 18px; display: flex; align-items: flex-start; gap: 8px; }
.ins-note i { color: var(--blue); flex-shrink: 0; margin-top: 1px; }
.ins-bk-ft { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }

/* Radio & checkbox helpers */
.radio-row { display: flex; gap: 16px; flex-wrap: wrap; }
.radio-opt { display: flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 500; cursor: pointer; }
.radio-opt input[type="radio"] { accent-color: var(--blue); width: 15px; height: 15px; }
.check-row { display: flex; gap: 12px; flex-wrap: wrap; }
.check-opt { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; cursor: pointer; }
.check-opt input[type="checkbox"] { accent-color: var(--blue); width: 14px; height: 14px; }

/* Insurance confirmation */
.ins-confirm { text-align: center; padding: 10px 0; }
.ins-confirm-ico { width: 72px; height: 72px; border-radius: 50%; background: var(--green-lt); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 34px; color: var(--green); }
.ins-confirm h3 { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.ins-confirm p { font-size: 14px; color: var(--muted); margin-bottom: 18px; line-height: 1.6; }
.ins-confirm-ref, .intl-confirm-ref { background: var(--off); border-radius: var(--r-sm); padding: 14px; margin-bottom: 18px; text-align: left; }
.ref-lbl { font-size: 12px; color: var(--muted); margin-bottom: 4px; }
.ref-num { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--blue); }
.ins-confirm-details, .confirm-details { font-size: 13px; color: var(--muted); background: var(--off); border-radius: var(--r-sm); padding: 12px 14px; margin-bottom: 4px; line-height: 1.7; text-align: left; }
.req { color: var(--red); font-size: 13px; }

/* ═══════════════════════════════════════════════════════════════
   INTERNATIONAL PATIENTS — DEDICATED FULL SECTION
═══════════════════════════════════════════════════════════════ */
.intl-section { background: linear-gradient(180deg,#F7F9FC 0%,#EBF4FF 100%); }

/* Section header */
.intl-sec-hd { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 50px; }
.intl-stats-row { display: flex; gap: 16px; flex-wrap: wrap; }
.intl-stat { display: flex; align-items: center; gap: 12px; background: white; border: 1px solid var(--border); border-radius: var(--r); padding: 14px 20px; box-shadow: var(--sh-xs); }
.intl-stat i { font-size: 22px; color: var(--blue); }
.intl-stat strong { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--blue); display: block; line-height: 1; }
.intl-stat span { font-size: 12px; color: var(--muted); }

/* Main grid */
.intl-main-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }

/* Services grid */
.intl-services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-bottom: 28px; }
.intl-svc { background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 18px; transition: all .22s var(--ease); }
.intl-svc:hover { border-color: var(--blue); box-shadow: var(--sh-sm); transform: translateY(-3px); }
.intl-svc-ico { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-lt); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--blue); margin-bottom: 12px; }
.intl-svc h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 6px; }
.intl-svc p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* Map */
/* ═══════════════════════════════════════════════════════════════
   INTERACTIVE MAP — Clickable Hospital Location Selector
═══════════════════════════════════════════════════════════════ */
.map-section { background:#fff; border:1px solid var(--border); border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--sh-sm); }
.map-sec-hd { display:flex; align-items:center; justify-content:space-between; padding:16px 20px 14px; border-bottom:1px solid var(--border); background:var(--off); flex-wrap:wrap; gap:8px; }
.map-sec-title { font-size:14px; font-weight:700; color:var(--text); display:flex; align-items:center; gap:8px; }
.map-sec-title i { color:var(--blue); font-size:15px; }
.map-count-badge { background:var(--blue-lt); color:var(--blue); font-size:11.5px; font-weight:700; padding:4px 12px; border-radius:var(--r-full); border:1px solid rgba(0,102,204,.2); }

/* Location selector strip */
.loc-selector { display:flex; overflow-x:auto; scrollbar-width:none; padding:12px 18px; gap:8px; border-bottom:1px solid var(--border); background:#fff; }
.loc-selector::-webkit-scrollbar { display:none; }

/* Individual location button */
.loc-btn { display:flex; align-items:center; gap:9px; padding:9px 16px 9px 12px; border:1.5px solid var(--border); border-radius:var(--r-full); background:#fff; cursor:pointer; white-space:nowrap; flex-shrink:0; transition:all .22s var(--ease); font-family:'Inter',sans-serif; position:relative; }
.loc-btn:hover { border-color:var(--lc,var(--blue)); transform:translateY(-2px); box-shadow:0 4px 14px rgba(0,0,0,.09); background:color-mix(in srgb,var(--lc,var(--blue)) 6%,white); }
.loc-btn.active { border-color:var(--lc,var(--blue)); background:color-mix(in srgb,var(--lc,var(--blue)) 10%,white); box-shadow:0 4px 14px rgba(0,0,0,.1); }

/* Coloured dot */
.loc-btn-dot { width:10px; height:10px; border-radius:50%; flex-shrink:0; box-shadow:0 0 0 3px rgba(0,0,0,.06); }
.loc-btn.active .loc-btn-dot { animation:emPulse 2s ease-in-out infinite; }

/* Text */
.loc-btn-body { display:flex; flex-direction:column; text-align:left; }
.loc-btn-city { font-size:13px; font-weight:700; color:var(--text); line-height:1.2; }
.loc-btn.active .loc-btn-city { color:var(--lc,var(--blue)); }
.loc-btn-area { font-size:10.5px; color:var(--muted); line-height:1.2; }

/* NEW badge */
.loc-btn-new { position:absolute; top:-7px; right:-3px; background:#F59E0B; color:#fff; font-size:9px; font-weight:800; padding:2px 6px; border-radius:var(--r-full); letter-spacing:.05em; }

/* Map iframe */
.map-container { position:relative; height:340px; border-bottom:1px solid var(--border); overflow:hidden; background:var(--off); }
.map-container iframe { width:100%; height:100%; border:none; display:block; transition:opacity .35s var(--ease); }
.map-container iframe.loading { opacity:0; }

/* Loading overlay */
.map-loading { position:absolute; inset:0; background:var(--off); display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; font-size:13.5px; color:var(--muted); z-index:5; transition:opacity .3s; }
.map-loading.hidden { opacity:0; pointer-events:none; }
.map-spinner { width:32px; height:32px; border:3px solid var(--border); border-top-color:var(--blue); border-radius:50%; animation:spin .75s linear infinite; }
@keyframes spin { to { transform:rotate(360deg); } }

/* Hospital info card */
.hosp-info-card { padding:18px 20px; display:grid; grid-template-columns:auto 1fr auto; gap:18px; align-items:start; transition:all .3s var(--ease); }
.hosp-info-left { display:flex; align-items:center; gap:12px; }
.hosp-info-badge { width:50px; height:50px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:22px; color:#fff; flex-shrink:0; box-shadow:0 4px 14px rgba(0,0,0,.15); transition:background .4s; }
.hosp-info-name { font-family:'Playfair Display',serif; font-size:16px; font-weight:700; color:var(--text); line-height:1.2; white-space:nowrap; }
.hosp-info-tag { font-size:11.5px; color:var(--muted); margin-top:3px; }
.hosp-info-details { display:flex; flex-direction:column; gap:6px; }
.hosp-detail-item { display:flex; align-items:flex-start; gap:9px; font-size:12.5px; color:var(--text); line-height:1.5; }
.hosp-detail-item i { font-size:12px; flex-shrink:0; margin-top:2px; width:15px; text-align:center; }
.hosp-info-actions { display:flex; flex-direction:column; gap:8px; flex-shrink:0; }
.hosp-dir-btn, .hosp-book-btn { padding:9px 18px; font-size:13px; white-space:nowrap; }
@keyframes infoSlide { from{opacity:0;transform:translateY(8px)} to{opacity:1;transform:none} }
.hosp-info-card.updated { animation:infoSlide .32s var(--ease) both; }

/* Responsive */
@media(max-width:900px) {
  .hosp-info-card { grid-template-columns:1fr; }
  .hosp-info-actions { flex-direction:row; flex-wrap:wrap; }
}
@media(max-width:600px) {
  .loc-btn-area { display:none; }
  .loc-btn { padding:8px 12px 8px 10px; }
  .map-container { height:240px; }
  .hosp-info-name { white-space:normal; }
}

/* International booking card */
.intl-booking-col { position: sticky; top: calc(var(--hh) + 20px); }
.intl-booking-card { background: #fff; border: 2px solid rgba(0,168,107,.2); border-radius: var(--r-xl); padding: 28px; box-shadow: 0 12px 44px rgba(0,168,107,.1); }
.intl-bk-header { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.intl-bk-header-ico { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg,var(--green-lt),#B2EDD8); display: flex; align-items: center; justify-content: center; font-size: 22px; color: var(--green); flex-shrink: 0; }
.intl-bk-header h3 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.intl-bk-header p { font-size: 13px; color: var(--muted); line-height: 1.55; }

/* Step progress (International) */
.intl-step-prog { display: flex; align-items: center; margin-bottom: 28px; }
.intl-si { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.intl-si span { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--muted); transition: all .3s; }
.intl-si em { font-style: normal; font-size: 10px; color: var(--muted); white-space: nowrap; font-weight: 500; }
.intl-si.active span { border-color: var(--green); background: var(--green); color: #fff; }
.intl-si.done   span { border-color: var(--blue); background: var(--blue); color: #fff; }
.intl-si.active em, .intl-si.done em { color: var(--green); font-weight: 600; }
.intl-sl { flex: 1; height: 2px; background: var(--border); margin: 0 4px 14px; }

.intl-step-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 18px; padding: 10px 14px; background: var(--green-lt); border-radius: var(--r-sm); border-left: 3px solid var(--green); }
.intl-bk-ft { display: flex; gap: 10px; justify-content: flex-end; margin-top: 20px; }

/* International confirmation */
.intl-confirm { text-align: center; padding: 10px 0; }
.intl-confirm-ico { width: 72px; height: 72px; border-radius: 50%; background: var(--green-lt); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 34px; color: var(--green); }
.intl-confirm h3 { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; margin-bottom: 10px; }
.intl-confirm p { font-size: 14px; color: var(--muted); margin-bottom: 18px; line-height: 1.6; max-width: 380px; margin-left: auto; margin-right: auto; }
.intl-what-next { background: var(--off); border-radius: var(--r); padding: 18px; margin-bottom: 4px; text-align: left; }
.intl-wn-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 12px; }
.intl-wn-steps { display: flex; flex-direction: column; gap: 10px; }
.intl-wn-step { display: flex; align-items: center; gap: 12px; }
.intl-wn-num { width: 26px; height: 26px; border-radius: 50%; background: var(--green); color: #fff; font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.intl-wn-step span { font-size: 13px; color: var(--muted); }

/* ─── FORM CONTROLS (shared) ─────────────────────────────────── */
.form-grp { margin-bottom: 16px; }
.form-lbl { font-size: 13px; font-weight: 600; color: var(--text); display: block; margin-bottom: 7px; }
.form-ctrl { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: 14px; font-family: 'Inter', sans-serif; color: var(--text); background: #fff; transition: border-color .2s; }
.form-ctrl:focus { outline: none; border-color: var(--blue); }
textarea.form-ctrl { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ─── SOCIAL MEDIA ───────────────────────────────────────────── */
.social-section { background: #fff; padding: 60px 0; }
.social-hd { text-align: center; margin-bottom: 40px; }
.social-cards { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.social-card { display: flex; align-items: center; gap: 12px; padding: 16px 28px; border-radius: var(--r); font-weight: 700; font-size: 14.5px; transition: all .25s var(--ease); }
.social-card i { font-size: 22px; }
.social-txt { display: flex; flex-direction: column; }
.social-txt strong { font-size: 14px; }
.social-txt span { font-size: 11.5px; font-weight: 400; opacity: .85; }
.sc-fb { background: #1877F2; color: #fff; }
.sc-fb:hover { background: #0d65d9; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(24,119,242,.38); }
.sc-x  { background: #000; color: #fff; }
.sc-x:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.3); }
.sc-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.sc-ig:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(225,48,108,.4); }
.sc-yt { background: #FF0000; color: #fff; }
.sc-yt:hover { background: #cc0000; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(255,0,0,.3); }
.sc-wa { background: #25D366; color: #fff; }
.sc-wa:hover { background: #1fba58; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }
.sc-li { background: #0077B5; color: #fff; }
.sc-li:hover { background: #005e90; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,119,181,.3); }

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer { background: linear-gradient(175deg,#060F1C,#020810); color: rgba(255,255,255,.65); padding: 70px 0 0; }
.ft-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.ft-brand p { font-size: 14px; line-height: 1.85; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.ft-logo-row { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.ft-logo-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: #fff; }
.ft-logo-name em { font-style: italic; color: var(--cyan); }
.ft-social { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.ft-soc { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.55); display: flex; align-items: center; justify-content: center; font-size: 15px; transition: all .22s; }
.ft-soc:hover { background: rgba(255,255,255,.15); color: #fff; transform: translateY(-2px); }
.ft-soc.fb:hover { background: #1877F2; border-color: #1877F2; }
.ft-soc.tw:hover { background: #111; border-color: #111; }
.ft-soc.ig:hover { background: linear-gradient(45deg,#f09433,#dc2743,#bc1888); border-color: transparent; }
.ft-soc.yt:hover { background: #FF0000; border-color: #FF0000; }
.ft-soc.li:hover { background: #0077B5; border-color: #0077B5; }
.ft-emrg { background: rgba(212,43,43,.12); border: 1px solid rgba(212,43,43,.25); border-radius: 10px; padding: 14px 18px; }
.ft-emrg span { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: #FF8080; display: flex; align-items: center; gap: 6px; margin-bottom: 4px; }
.ft-emrg a { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; color: #fff; }
.ft-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 16px; }
.ft-col a { display: flex; align-items: center; gap: 7px; font-size: 13.5px; color: rgba(255,255,255,.45); padding: 4px 0; transition: color .2s; }
.ft-col a:hover { color: #7DD3FC; }
.ft-col a i { font-size: 10px; color: rgba(255,255,255,.2); }
.ft-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 20px 0; }
.ft-btm-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.ft-bottom p { font-size: 13px; color: rgba(255,255,255,.35); }
.ft-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.ft-legal a { font-size: 13px; color: rgba(255,255,255,.28); transition: color .2s; }
.ft-legal a:hover { color: rgba(255,255,255,.7); }

/* ─── BOOKING MODAL ──────────────────────────────────────────── */
.modal-ov { display: none; position: fixed; inset: 0; background: rgba(5,14,28,.82); backdrop-filter: blur(6px); z-index: 9999; align-items: center; justify-content: center; padding: 20px; }
.modal-ov.open { display: flex; }
.modal-box { background: #fff; border-radius: var(--r-xl); padding: 36px 34px; max-width: 520px; width: 100%; max-height: 92vh; overflow-y: auto; position: relative; animation: mIn .28s var(--bounce); }
@keyframes mIn { from{opacity:0;transform:scale(.92) translateY(20px)} to{opacity:1;transform:none} }
.modal-close { position: absolute; top: 18px; right: 18px; background: none; border: none; cursor: pointer; color: var(--muted); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 8px; transition: background .2s; font-size: 15px; }
.modal-close:hover { background: var(--off); }
.modal-hdr { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.modal-hdr h2 { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 700; }
.modal-hdr p { font-size: 13px; color: var(--muted); }
.step-prog { display: flex; align-items: center; margin-bottom: 26px; }
.step-it { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.step-num { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--muted); transition: all .3s; }
.step-lbl { font-size: 11px; color: var(--muted); font-weight: 500; white-space: nowrap; }
.step-it.active .step-num { border-color: var(--blue); background: var(--blue); color: #fff; }
.step-it.done   .step-num { border-color: var(--green); background: var(--green); color: #fff; }
.step-it.active .step-lbl, .step-it.done .step-lbl { color: var(--blue); font-weight: 600; }
.step-line { flex: 1; height: 2px; background: var(--border); margin: 0 6px 18px; }
.step-q { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 16px; }
.spec-sel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 4px; }
.spec-sel-opt { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--r-sm); font-size: 13px; cursor: pointer; text-align: center; transition: all .2s; font-family: 'Inter', sans-serif; display: flex; align-items: center; justify-content: center; gap: 6px; }
.spec-sel-opt:hover { border-color: var(--blue); background: var(--blue-lt); }
.spec-sel-opt.selected { border-color: var(--blue); background: var(--blue-lt); color: var(--blue); font-weight: 600; }
.step-ft { display: flex; gap: 10px; justify-content: flex-end; margin-top: 22px; }
.confirm-wrap { text-align: center; padding: 16px 0; }
.confirm-ico { width: 80px; height: 80px; border-radius: 50%; background: var(--green-lt); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 36px; color: var(--green); }
.confirm-wrap h3 { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 10px; }
.confirm-wrap p { font-size: 14.5px; color: var(--muted); margin-bottom: 20px; }
.confirm-ref { background: var(--off); border-radius: var(--r-sm); padding: 16px; margin-bottom: 16px; text-align: left; }

/* ═══════════════════════════════════════════════════════════════
   ★ NEW PREMIUM APPOINTMENT POPUP + VIEW DETAILS DRAWER
═══════════════════════════════════════════════════════════════ */

/* ── Popup card ── */
.appt-popup {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 10000;
  width: 380px;
  max-width: calc(100vw - 40px);
  background: #fff;
  border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,.2), 0 4px 16px rgba(0,102,204,.12);
  border: 1px solid var(--border);
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px) scale(.94);
  pointer-events: none;
  transition: opacity .38s var(--bounce), transform .38s var(--bounce);
}
.appt-popup.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Auto-dismiss timer bar */
.appt-popup-timer {
  height: 3px;
  background: var(--blue-lt);
  overflow: hidden;
}
.appt-popup-timer-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  width: 100%;
  transform-origin: left;
}
.appt-popup-timer-bar.running {
  animation: timerShrink 6s linear forwards;
}
@keyframes timerShrink { from{width:100%} to{width:0%} }

/* Header strip */
.appt-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px 10px;
  background: linear-gradient(90deg, var(--blue-dkr), var(--blue));
  color: #fff;
}
.appt-popup-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.appt-popup-logo-mark {
  display: flex;
  align-items: center;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.2));
}
.appt-popup-brand {
  font-family: 'Playfair Display', serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .01em;
}
.appt-popup-x {
  background: rgba(255,255,255,.15);
  border: none;
  color: rgba(255,255,255,.85);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: background .2s;
}
.appt-popup-x:hover { background: rgba(255,255,255,.28); }

/* Body */
.appt-popup-body {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px 14px;
}

/* Check icon column */
.appt-popup-check-col { flex-shrink: 0; }
.appt-popup-check-ring {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #34D399, #059669);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 4px 14px rgba(5,150,105,.35);
  animation: checkPop .5s var(--bounce) both;
}
@keyframes checkPop {
  0%   { transform: scale(0) rotate(-20deg); opacity: 0; }
  60%  { transform: scale(1.15) rotate(5deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* Info column */
.appt-popup-info { flex: 1; min-width: 0; }
.appt-popup-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green);
  margin-bottom: 4px;
}
.appt-popup-doctor-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 6px;
}
.appt-popup-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.appt-popup-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: var(--muted);
}
.appt-popup-meta-item i { color: var(--blue); font-size: 11px; }
.appt-popup-meta-sep { color: var(--border); font-size: 12px; }
.appt-popup-ref-row {
  display: flex;
  align-items: center;
  gap: 6px;
}
.appt-popup-ref-lbl {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.appt-popup-ref-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  font-family: 'Playfair Display', serif;
}

/* Action buttons */
.appt-popup-actions {
  display: flex;
  border-top: 1px solid var(--border);
}
.appt-popup-btn-view,
.appt-popup-btn-dismiss {
  flex: 1;
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background .2s, color .2s;
}
.appt-popup-btn-view {
  background: var(--blue);
  color: #fff;
}
.appt-popup-btn-view:hover { background: var(--blue-dk); }
.appt-popup-btn-dismiss {
  background: var(--off);
  color: var(--muted);
  border-left: 1px solid var(--border);
}
.appt-popup-btn-dismiss:hover { background: #E8ECF1; color: var(--text); }

/* ── Appointment Details Drawer ── */
.appt-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5,14,28,.55);
  backdrop-filter: blur(4px);
  z-index: 10001;
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s var(--ease);
}
.appt-drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.appt-drawer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  z-index: 10002;
  box-shadow: 0 -16px 64px rgba(0,0,0,.22);
  transition: transform .38s var(--bounce);
  max-height: 92vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}
.appt-drawer.open {
  transform: translateX(-50%) translateY(0);
}

/* Drawer handle */
.appt-drawer::before {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin: 12px auto 0;
}

/* Drawer header */
.appt-drawer-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px 14px;
  border-bottom: 1px solid var(--border);
}
.appt-drawer-hd-left {
  display: flex;
  align-items: center;
  gap: 14px;
}
.appt-drawer-hd-ico {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-lt), #BFDBFF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--blue);
  flex-shrink: 0;
}
.appt-drawer-hd-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.appt-drawer-hd-sub {
  font-size: 12.5px;
  color: var(--muted);
}
.appt-drawer-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--off);
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all .2s;
}
.appt-drawer-close-btn:hover {
  background: var(--red-lt);
  color: var(--red);
  border-color: rgba(212,43,43,.25);
}

/* Status banner */
.appt-drawer-status {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--green-lt);
  border-bottom: 1px solid rgba(0,168,107,.15);
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dk);
}
.appt-drawer-status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  animation: emPulse 2s ease-in-out infinite;
}

/* Reference card */
.appt-drawer-ref-card {
  margin: 18px 22px 0;
  background: linear-gradient(135deg, var(--blue-dkr), var(--blue));
  border-radius: var(--r);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.appt-drawer-ref-lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.65);
  margin-bottom: 4px;
}
.appt-drawer-ref-num {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .02em;
}
.appt-drawer-copy-btn {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--r-full);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  transition: background .2s;
  white-space: nowrap;
}
.appt-drawer-copy-btn:hover { background: rgba(255,255,255,.28); }
.appt-drawer-copy-btn.copied { background: rgba(5,150,105,.4); border-color: rgba(52,211,153,.5); }

/* Details section */
.appt-drawer-details {
  padding: 20px 22px 0;
}
.appt-drawer-section-lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.appt-drawer-section-lbl i { color: var(--blue); }
.appt-drawer-detail-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--off);
}
.appt-drawer-detail-row:last-child { border-bottom: none; }
.appt-drawer-detail-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.appt-drawer-detail-lbl {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}
.appt-drawer-detail-val {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}

/* Drawer actions */
.appt-drawer-actions {
  display: flex;
  gap: 10px;
  padding: 20px 22px;
  flex-wrap: wrap;
}
.appt-drawer-action-btn {
  flex: 1;
  min-width: 130px;
  justify-content: center;
  padding: 11px 16px;
  font-size: 13.5px;
}

/* SMS confirmation note */
.appt-drawer-sms-note {
  margin: 0 22px 24px;
  padding: 12px 16px;
  background: var(--off);
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.55;
  border: 1px solid var(--border);
}
.appt-drawer-sms-note i { color: var(--green); font-size: 16px; flex-shrink: 0; margin-top: 1px; }

/* Responsive */
@media(max-width:600px) {
  .appt-popup { left:14px; right:14px; width:auto; bottom:14px; }
  .appt-drawer { max-width:100%; border-radius:var(--r-xl) var(--r-xl) 0 0; }
  .appt-drawer-actions { flex-direction:column; }
  .appt-drawer-action-btn { min-width:unset; }
}

/* ─── AI CHATBOT ─────────────────────────────────────────────── */
.chatbot-wrap { position: fixed; bottom: 100px; right: 24px; width: 340px; background: #fff; border-radius: var(--r-xl); box-shadow: 0 24px 70px rgba(0,0,0,.2); z-index: 9000; transform: translateY(20px) scale(.95); opacity: 0; pointer-events: none; transition: all .3s var(--bounce); border: 1px solid var(--border); overflow: hidden; display: flex; flex-direction: column; }
.chatbot-wrap.open { transform: none; opacity: 1; pointer-events: auto; }
.chat-head { display: flex; align-items: center; gap: 12px; padding: 16px 18px; background: linear-gradient(135deg,var(--blue),var(--blue-dk)); color: #fff; flex-shrink: 0; }
.chat-avatar { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; border: 2px solid rgba(255,255,255,.3); }
.chat-title-wrap { flex: 1; }
.chat-title-name { font-size: 14.5px; font-weight: 700; }
.chat-status { font-size: 11.5px; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.chat-online { width: 7px; height: 7px; border-radius: 50%; background: #4ade80; animation: emPulse 2s infinite; }
.chat-close-btn { background: rgba(255,255,255,.15); border: none; color: #fff; width: 30px; height: 30px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 13px; transition: background .2s; }
.chat-close-btn:hover { background: rgba(255,255,255,.25); }
.chat-body { flex: 1; max-height: 300px; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 10px; background: var(--off); scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
.chat-body::-webkit-scrollbar { width: 4px; }
.chat-body::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }
.chat-msg { display: flex; gap: 8px; animation: msgPop .2s ease; }
@keyframes msgPop { from{opacity:0;transform:translateY(6px)} to{opacity:1;transform:none} }
.chat-msg.bot .chat-bubble { background: #fff; border: 1px solid var(--border); color: var(--text); }
.chat-msg.user { flex-direction: row-reverse; }
.chat-msg.user .chat-bubble { background: var(--blue); color: #fff; border-radius: 18px 4px 18px 18px; }
.chat-bubble { max-width: 80%; padding: 10px 14px; border-radius: 4px 18px 18px 18px; font-size: 13.5px; line-height: 1.55; }
.chat-qrs { display: flex; flex-wrap: wrap; gap: 7px; padding: 4px 0; }
.chat-qr { padding: 7px 13px; background: #fff; border: 1.5px solid var(--blue); border-radius: var(--r-full); color: var(--blue); font-size: 12.5px; font-weight: 600; cursor: pointer; transition: all .18s; font-family: 'Inter', sans-serif; }
.chat-qr:hover { background: var(--blue); color: #fff; }
.chat-foot { display: flex; gap: 8px; padding: 12px 14px; border-top: 1px solid var(--border); background: #fff; flex-shrink: 0; }
.chat-inp { flex: 1; padding: 9px 14px; border: 1.5px solid var(--border); border-radius: var(--r-full); font-size: 13.5px; font-family: 'Inter', sans-serif; color: var(--text); outline: none; transition: border-color .2s; }
.chat-inp:focus { border-color: var(--blue); }
.chat-send { width: 36px; height: 36px; border-radius: 50%; background: var(--blue); color: #fff; border: none; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: all .2s; flex-shrink: 0; }
.chat-send:hover { background: var(--blue-dk); transform: scale(1.05); }
.chat-typing { display: flex; gap: 4px; align-items: center; padding: 10px 14px; }
.typing-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: typeBounce 1.2s ease-in-out infinite; }
.typing-dot:nth-child(2) { animation-delay: .15s; }
.typing-dot:nth-child(3) { animation-delay: .3s; }
@keyframes typeBounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }

/* ─── FLOATING BUTTONS ───────────────────────────────────────── */
.float-btns { position: fixed; bottom: 28px; right: 28px; display: flex; flex-direction: column; gap: 12px; z-index: 900; }
.float-btn { width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: var(--sh-md); border: none; transition: all .22s; text-decoration: none; position: relative; }
.float-btn:hover { transform: scale(1.1) translateY(-2px); }
.float-wa   { background: #25D366; color: #fff; }
.float-wa:hover { box-shadow: 0 8px 24px rgba(37,211,102,.4); }
.float-chat { background: var(--blue); color: #fff; }
.float-chat:hover { box-shadow: var(--sh-b); }
.chat-badge { position: absolute; top: -4px; right: -4px; width: 18px; height: 18px; border-radius: 50%; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; display: flex; align-items: center; justify-content: center; border: 2px solid #fff; }
.chat-badge.hidden { display: none; }
.back-top { position: fixed; bottom: 120px; right: 28px; width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1.5px solid var(--border); color: var(--text); display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; pointer-events: none; transition: all .28s; z-index: 900; box-shadow: var(--sh-sm); }
.back-top.show { opacity: 1; pointer-events: auto; }
.back-top:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-2px); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media(max-width:1200px) {
  .spec-grid  { grid-template-columns: repeat(2,1fr); }
  .pkg-grid   { grid-template-columns: repeat(2,1fr); }
  .doc-grid   { grid-template-columns: repeat(2,1fr); }
  .ft-grid    { grid-template-columns: 1.4fr 1fr 1fr; gap: 30px; }
  .ds-card    { min-width: calc(33.33% - 14px); max-width: calc(33.33% - 14px); }
  .ins-main-grid, .intl-main-grid { grid-template-columns: 1fr; }
  .ins-booking-col, .intl-booking-col { position: static; }
}
@media(max-width:1024px) {
  .why-grid  { grid-template-columns: repeat(2,1fr); }
  .pp-grid   { grid-template-columns: 1fr 1fr; }
  .bmi-wrap  { grid-template-columns: 1fr; }
  .intl-services-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:900px) {
  .testi-grid, .news-grid { grid-template-columns: 1fr 1fr; }
  .hstat-sep:nth-child(n+4), .hstat:nth-child(n+4) { display: none; }
  .ft-grid   { grid-template-columns: 1fr 1fr; }
  .ds-card   { min-width: calc(50% - 10px); max-width: calc(50% - 10px); }
  .map-locs  { grid-template-columns: 1fr; }
}
@media(max-width:768px) {
  .main-nav { display: none; }
  .search-wrap { display: none; }
  .hamburger { display: flex; }
  .spec-grid,.doc-grid,.pkg-grid,.testi-grid,.news-grid,.why-grid,.pp-grid { grid-template-columns: 1fr; }
  .hero-slides { height: 78vh; }
  .ft-grid   { grid-template-columns: 1fr; }
  .form-row  { grid-template-columns: 1fr; }
  .spec-sel-grid { grid-template-columns: 1fr 1fr; }
  .ds-card   { min-width: calc(80% - 10px); max-width: calc(80% - 10px); }
  .sym-opts  { grid-template-columns: repeat(2,1fr); }
  .sym-opts.three { grid-template-columns: repeat(2,1fr); }
  .chatbot-wrap { width: calc(100vw - 32px); right: 16px; bottom: 90px; }
  .social-card .social-txt { display: none; }
  .social-card { padding: 14px 18px; }
  .messenger-popup { left: 16px; right: 16px; width: auto; bottom: 16px; }
  .ins-stats-row, .intl-stats-row { display: none; }
  .ins-services-grid, .intl-services-grid { grid-template-columns: 1fr; }
  .ins-hd-links { flex-direction: column; }
  .top-bar { display: none; }
}
@media(max-width:480px) {
  .slide-title { font-size: 30px; }
  .slide-sub { font-size: 15px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .slide-ctas { flex-direction: column; }
  .hstat { padding: 0 18px; }
  .sev-row { gap: 8px; }
  .sev-card { min-width: calc(50% - 4px); }
  .sym-box { padding: 28px 20px; }
  .ins-booking-card, .intl-booking-card { padding: 20px 16px; }
}

/* Mobile nav open */
.main-nav.nav-open { display: flex !important; flex-direction: column; position: absolute; top: var(--hh); left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); box-shadow: var(--sh-md); padding: 12px 0; z-index: 999; max-height: calc(100vh - var(--hh)); overflow-y: auto; }
.main-nav.nav-open .nav-item { border-radius: 0; padding: 12px 24px; border-bottom: 1px solid var(--off); width: 100%; }
.main-nav.nav-open .mega-menu,
.main-nav.nav-open .mega-menu.mm-wide,
.main-nav.nav-open .mega-menu.mm-xl { position: static !important; transform: none !important; box-shadow: none !important; border: none !important; background: var(--off); padding: 8px 24px; margin: 4px 0 0; min-width: unset !important; display: flex !important; flex-direction: column; grid-template-columns: 1fr !important; }
.main-nav.nav-open .mm-col { margin-bottom: 8px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
