/* ═══════════════════════════════════════════════════════════
   GARG CHILD HOSPITAL — Main Stylesheet
   File: assets/css/style.css
   To change colours: update the :root variables below
   Font: Poppins (Google Fonts - loaded in HTML)
═══════════════════════════════════════════════════════════ */

/* ── CSS VARIABLES (Edit colours here) ───────────────── */
:root {
  --pink:        #FF6B9D;
  --pink-deep:   #D44A7A;
  --pink-mid:    #FF8FAB;
  --pink-light:  #FFD6E7;
  --pink-bg:     #FFF5F9;
  --blue:        #4DB8E8;
  --blue-deep:   #2196C8;
  --blue-light:  #B3E5F9;
  --blue-bg:     #EDF8FF;
  --white:       #FFFFFF;
  --text:        #2A2A3D;
  --muted:       #6B7890;
  --border:      #F0E8F3;
  --gold:        #FFD166;
  --mint:        #6EDDBF;
  --radius:      18px;
  --radius-lg:   28px;
  --shadow-p:    0 12px 40px rgba(255,107,157,.18);
  --shadow-b:    0 12px 40px rgba(77,184,232,.18);
  --shadow-c:    0 8px 32px rgba(42,42,61,.10);
  --transition:  all .3s ease;
}

/* ── RESET ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; }
body  { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); overflow-x: hidden; }
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

/* ── UTILITY ────────────────────────────────────────── */
.container { max-width: 1300px; margin: 0 auto; padding: 0 32px; }
.text-pink  { color: var(--pink); }
.text-blue  { color: var(--blue); }
.text-muted { color: var(--muted); }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }
.text-center { text-align: center; }

/* ── SECTION COMMON ─────────────────────────────────── */
.section { padding: 88px 0; position: relative; overflow: hidden; }
.section-alt { background: linear-gradient(160deg, var(--pink-bg) 0%, #fff 50%, var(--blue-bg) 100%); }
.section-blue { background: var(--blue-bg); }

.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

.section-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(90deg, rgba(255,107,157,.1), rgba(77,184,232,.1));
  border: 1.5px solid rgba(255,107,157,.25);
  border-radius: 50px; padding: 6px 18px;
  font-size: 11.5px; font-weight: 700; color: var(--pink);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px;
}
.section-title { font-size: clamp(26px, 3.5vw, 42px); font-weight: 900; color: var(--text); line-height: 1.15; margin-bottom: 12px; }
.section-desc  { font-size: 15.5px; color: var(--muted); line-height: 1.8; max-width: 580px; }

/* ── EMERGENCY BAR ──────────────────────────────────── */
.emergency-bar {
  background: linear-gradient(90deg, var(--pink), var(--pink-mid));
  color: #fff; padding: 9px 0; font-size: 13px; font-weight: 500;
  position: relative; z-index: 1001;
}
.emergency-bar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.eb-left  { font-weight: 600; display: flex; align-items: center; gap: 6px; }
.eb-right { display: flex; align-items: center; gap: 8px; }
.eb-link  { color: #fff; background: rgba(255,255,255,.2); border-radius: 20px; padding: 4px 14px; font-size: 12px; font-weight: 600; transition: background .2s; }
.eb-link:hover { background: rgba(255,255,255,.35); }

/* ── HEADER ─────────────────────────────────────────── */
#site-header { position: sticky; top: 0; z-index: 1000; }
.header-inner {
  background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--pink-light); transition: box-shadow .3s;
}
.header-inner.scrolled { box-shadow: 0 4px 24px rgba(255,107,157,.12); }
.header-wrap { max-width: 1300px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 12px; }

/* LOGO */
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-box {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--pink), var(--pink-mid));
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; box-shadow: 4px 4px 0 var(--pink-deep), 0 6px 18px rgba(255,107,157,.3);
  transform: rotate(-3deg); transition: transform .3s;
}
.logo:hover .logo-box { transform: rotate(0) scale(1.06); }
.logo-text strong { font-size: 15.5px; font-weight: 800; color: var(--text); display: block; line-height: 1.2; }
.logo-text span    { font-size: 10.5px; font-weight: 600; color: var(--pink); text-transform: uppercase; letter-spacing: .7px; }

/* NAVIGATION */
nav.main-nav { display: flex; align-items: center; gap: 0; }
.nav-item { position: relative; }

/* Bridge: transparent strip covers gap so hover doesn't break */
.nav-item::after { content: ''; position: absolute; left: 0; right: 0; bottom: -10px; height: 10px; z-index: 10; }

.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 10px 14px; font-size: 13.5px; font-weight: 500;
  color: var(--muted); border-radius: 10px; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
  background: none; border: none; font-family: 'Poppins', sans-serif;
}
.nav-link:hover, .nav-link.active { color: var(--pink); background: var(--pink-bg); }
.nav-arrow { width: 13px; height: 13px; transition: transform .25s; opacity: .55; flex-shrink: 0; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); opacity: 1; }

/* DROPDOWN BASE */
.dropdown, .mega-menu {
  position: absolute; top: calc(100% + 10px);
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(42,42,61,.16), 0 0 0 1.5px var(--pink-light);
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  transform: translateY(-8px) scale(.97); z-index: 999;
}
.nav-item:hover .dropdown,
.nav-item:hover .mega-menu { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }

/* SIMPLE DROPDOWN */
.dropdown { left: 0; padding: 10px; min-width: 210px; }
.drop-item {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 14px; border-radius: 10px;
  color: var(--text); font-size: 13px; font-weight: 500; transition: var(--transition);
}
.drop-item:hover { background: var(--pink-bg); color: var(--pink); transform: translateX(4px); }
.drop-icon { width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; background: var(--pink-bg); flex-shrink: 0; }

/* MEGA MENU */
.mega-menu { left: 50%; transform: translateX(-50%) translateY(-8px) scale(.97); min-width: 640px; padding: 26px 30px; }
.nav-item:hover .mega-menu { transform: translateX(-50%) translateY(0) scale(1); }
.mega-head { font-size: 11px; font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1.5px solid var(--pink-light); }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.mega-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 12px;
  color: var(--text); font-size: 13px; font-weight: 500;
  transition: var(--transition); border: 1px solid transparent; cursor: pointer;
}
.mega-item:hover { background: var(--pink-bg); border-color: var(--pink-light); color: var(--pink); transform: translateX(3px); }
.mega-icon { width: 34px; height: 34px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }

/* APPOINTMENT BUTTON */
.appt-btn {
  background: linear-gradient(135deg, var(--pink), var(--pink-mid));
  color: #fff; padding: 12px 22px; border-radius: 50px;
  font-size: 13.5px; font-weight: 700;
  box-shadow: 0 5px 0 var(--pink-deep), 0 10px 24px rgba(255,107,157,.3);
  transition: var(--transition); font-family: 'Poppins', sans-serif;
  border: none; cursor: pointer; display: inline-block; flex-shrink: 0;
}
.appt-btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 0 var(--pink-deep), 0 14px 32px rgba(255,107,157,.4); }

/* MOBILE MENU BUTTON */
.mob-menu-btn { display: none; background: none; border: none; font-size: 26px; cursor: pointer; color: var(--pink); }

/* ── NEWS TICKER ─────────────────────────────────────── */
.news-ticker { background: linear-gradient(90deg, var(--blue-bg), var(--pink-bg)); border-bottom: 1.5px solid var(--pink-light); padding: 10px 0; overflow: hidden; }
.ticker-inner { display: inline-flex; gap: 64px; white-space: nowrap; animation: ticker 35s linear infinite; }
.ticker-item { font-size: 13px; font-weight: 500; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.ticker-dot { width: 7px; height: 7px; background: var(--pink); border-radius: 50%; flex-shrink: 0; animation: heartbeat 2s ease infinite; }

/* ── HERO SLIDER ─────────────────────────────────────── */
.hero { position: relative; min-height: 90vh; overflow: hidden; background: #111; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.slide-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,107,157,.78) 0%, rgba(77,184,232,.45) 100%); }

.hero-content { position: relative; z-index: 2; max-width: 1300px; margin: 0 auto; padding: 100px 32px 180px; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 56px; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.18); backdrop-filter: blur(8px); border: 1.5px solid rgba(255,255,255,.35); border-radius: 50px; padding: 7px 18px; font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 20px; }
.hero-eyebrow .dot { width: 8px; height: 8px; background: #fff; border-radius: 50%; animation: heartbeat 2s infinite; }
.hero h1 { font-size: clamp(34px, 4.5vw, 58px); font-weight: 900; line-height: 1.1; color: #fff; margin-bottom: 18px; text-shadow: 0 2px 20px rgba(0,0,0,.15); }
.hero-sub { font-size: 16px; color: rgba(255,255,255,.9); line-height: 1.8; max-width: 480px; margin-bottom: 32px; font-weight: 400; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.btn-white { background: #fff; color: var(--pink); padding: 14px 28px; border-radius: 50px; font-size: 15px; font-weight: 700; box-shadow: 0 6px 0 rgba(255,255,255,.4), 0 10px 28px rgba(0,0,0,.15); transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 9px 0 rgba(255,255,255,.4), 0 14px 36px rgba(0,0,0,.2); }
.btn-outline-white { background: transparent; color: #fff; padding: 13px 26px; border-radius: 50px; font-size: 15px; font-weight: 600; border: 2.5px solid rgba(255,255,255,.6); transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }

.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badge { background: rgba(255,255,255,.18); backdrop-filter: blur(8px); border: 1.5px solid rgba(255,255,255,.3); border-radius: 12px; padding: 9px 15px; display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: #fff; }

/* HERO STATS CARD */
.hero-card { background: rgba(255,255,255,.15); backdrop-filter: blur(20px); border-radius: 28px; padding: 28px; border: 1.5px solid rgba(255,255,255,.3); }
.hero-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.hero-card-logo { width: 52px; height: 52px; background: rgba(255,255,255,.25); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; }
.hero-card-name { font-size: 16px; font-weight: 800; color: #fff; line-height: 1.2; }
.hero-card-sub { font-size: 12px; color: rgba(255,255,255,.8); }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-stat { background: rgba(255,255,255,.18); border-radius: 16px; padding: 16px; text-align: center; border: 1px solid rgba(255,255,255,.25); transition: transform .2s; }
.hero-stat:hover { transform: scale(1.04); }
.hero-stat-num { font-size: 28px; font-weight: 900; color: #fff; line-height: 1; }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,.8); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; margin-top: 3px; }

/* SLIDE DOTS */
.slide-dots { position: absolute; bottom: 130px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.slide-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); cursor: pointer; transition: all .3s; border: none; }
.slide-dot.active { background: #fff; width: 24px; border-radius: 4px; }

/* CLOUD WAVE */
.hero-cloud { position: absolute; bottom: 0; left: 0; width: 100%; z-index: 2; line-height: 0; }
.hero-cloud svg { width: 100%; display: block; }

/* ── STATS RIBBON ────────────────────────────────────── */
.stats-ribbon { background: linear-gradient(90deg, var(--pink), var(--pink-mid), var(--blue), var(--blue-deep)); padding: 26px 0; }
.stats-row { max-width: 1300px; margin: 0 auto; padding: 0 32px; display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px; }
.stat-item { text-align: center; color: #fff; }
.stat-num { font-size: 34px; font-weight: 900; line-height: 1; display: block; }
.stat-label { font-size: 13px; font-weight: 500; opacity: .85; margin-top: 4px; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,.22); }

/* ── SERVICE CARDS (3D) ──────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff; border-radius: 24px; padding: 28px 24px;
  border: 2px solid var(--pink-light); position: relative; overflow: hidden;
  cursor: pointer; transition: all .32s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 5px 5px 0 var(--pink-light), 0 10px 32px rgba(255,107,157,.07);
}
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--pink), var(--pink-mid)); opacity: 0; transition: opacity .32s; border-radius: 22px; }
.service-card:hover { transform: perspective(600px) rotateY(-5deg) rotateX(3deg) translateY(-8px); box-shadow: 10px 12px 0 var(--pink-light), 0 22px 56px rgba(255,107,157,.25); }
.service-card:hover::before { opacity: 1; }
.service-card:hover .svc-icon, .service-card:hover .svc-title, .service-card:hover .svc-desc, .service-card:hover .svc-link { color: #fff; }
.service-card:hover .svc-icon { background: rgba(255,255,255,.2); }
.service-card > * { position: relative; z-index: 1; }
.svc-icon { width: 62px; height: 62px; background: linear-gradient(135deg, var(--pink-bg), var(--pink-light)); border-radius: 17px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 18px; transition: all .3s; box-shadow: 3px 3px 0 rgba(255,107,157,.12); }
.svc-title { font-size: 16.5px; font-weight: 700; color: var(--text); margin-bottom: 8px; transition: color .3s; }
.svc-desc  { font-size: 13.5px; color: var(--muted); line-height: 1.75; margin-bottom: 16px; transition: color .3s; font-weight: 400; }
.svc-link  { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--pink); transition: color .3s; }
.svc-link-icon { width: 26px; height: 26px; background: var(--pink-bg); border: 1.5px solid var(--pink-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; transition: all .3s; }
.service-card:hover .svc-link-icon { background: rgba(255,255,255,.25); border-color: rgba(255,255,255,.4); }

/* ── WHY CHOOSE GRID ─────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.why-img-card { border-radius: 28px; overflow: hidden; box-shadow: 10px 10px 0 var(--pink-light), 0 24px 70px rgba(255,107,157,.12); border: 2px solid var(--pink-light); position: relative; }
.why-img-card img { width: 100%; height: 420px; object-fit: cover; }
.since-badge { position: absolute; top: 20px; right: 20px; background: linear-gradient(135deg, var(--pink), var(--pink-mid)); color: #fff; border-radius: 16px; padding: 14px 18px; box-shadow: 4px 4px 0 var(--pink-deep); text-align: center; }
.since-badge strong { font-size: 22px; font-weight: 900; display: block; line-height: 1; }
.since-badge span { font-size: 10.5px; font-weight: 600; opacity: .9; }
.why-features { display: flex; flex-direction: column; gap: 18px; margin-top: 32px; }
.why-feature { background: #fff; border-radius: 20px; padding: 20px 22px; display: flex; gap: 16px; align-items: flex-start; box-shadow: 4px 4px 0 var(--pink-light), 0 8px 24px rgba(255,107,157,.07); transition: var(--transition); cursor: default; }
.why-feature:hover { transform: translateX(8px) translateY(-2px); box-shadow: 6px 6px 0 var(--pink-light), 0 14px 36px rgba(255,107,157,.15); }
.why-feat-icon { width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; box-shadow: 2px 2px 0 rgba(0,0,0,.06); }
.wfi-pink   { background: linear-gradient(135deg, var(--pink-light), var(--pink-bg)); }
.wfi-blue   { background: linear-gradient(135deg, var(--blue-light), var(--blue-bg)); }
.wfi-purple { background: linear-gradient(135deg, #E9D5FF, #F5F0FF); }
.wfi-mint   { background: linear-gradient(135deg, #B2F5E4, #E7FBF5); }
.wf-title { font-size: 14.5px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.wf-desc  { font-size: 13px; color: var(--muted); line-height: 1.65; font-weight: 400; }

/* ── DOCTOR CARDS ────────────────────────────────────── */
.doctors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.doctor-card { background: #fff; border-radius: 24px; overflow: hidden; box-shadow: 6px 6px 0 var(--blue-light), 0 12px 40px rgba(77,184,232,.1); border: 2px solid var(--blue-light); transition: all .32s cubic-bezier(.34,1.56,.64,1); cursor: default; }
.doctor-card:hover { transform: translateY(-10px); box-shadow: 10px 14px 0 var(--blue-light), 0 28px 60px rgba(77,184,232,.2); }
.doctor-photo { height: 210px; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--blue-bg), var(--pink-bg)); }
.doctor-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.doctor-card:hover .doctor-photo img { transform: scale(1.07); }
.doctor-photo-emoji { height: 100%; display: flex; align-items: center; justify-content: center; font-size: 80px; }
.doctor-dept { position: absolute; bottom: 12px; left: 12px; background: linear-gradient(90deg, var(--blue), var(--blue-deep)); color: #fff; border-radius: 20px; padding: 5px 14px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; box-shadow: 2px 2px 0 var(--blue-deep); }
.doctor-info { padding: 22px; }
.doctor-name { font-size: 16.5px; font-weight: 800; color: var(--text); margin-bottom: 3px; }
.doctor-spec { font-size: 13px; font-weight: 600; color: var(--pink); margin-bottom: 5px; }
.doctor-qual { font-size: 12px; color: var(--muted); margin-bottom: 14px; font-weight: 400; }
.doctor-timing { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--blue-deep); background: var(--blue-bg); border-radius: 10px; padding: 8px 12px; font-weight: 500; border: 1px solid var(--blue-light); }

/* ── SPECIALITIES GRID ───────────────────────────────── */
.spec-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.spec-card { background: #fff; border-radius: 20px; padding: 22px 18px; text-align: center; border: 2px solid var(--pink-light); box-shadow: 4px 4px 0 var(--pink-light); transition: var(--transition); cursor: pointer; }
.spec-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: 7px 7px 0 var(--pink-light), 0 18px 48px rgba(255,107,157,.18); border-color: var(--pink); }
.spec-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--pink-bg), var(--pink-light)); border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 12px; transition: transform .3s; box-shadow: 3px 3px 0 rgba(255,107,157,.14); }
.spec-card:hover .spec-icon { transform: scale(1.2) rotate(-8deg); }
.spec-name { font-size: 13px; font-weight: 700; color: var(--text); line-height: 1.4; }

/* ── FACILITIES GRID ─────────────────────────────────── */
.facilities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.facility-card { background: #fff; border-radius: 22px; padding: 30px 26px; border: 2px solid var(--blue-light); box-shadow: 5px 5px 0 var(--blue-light); transition: var(--transition); cursor: default; text-align: center; }
.facility-card:hover { transform: translateY(-7px); box-shadow: 8px 8px 0 var(--blue-light), 0 20px 50px rgba(77,184,232,.2); }
.facility-icon { font-size: 48px; display: block; margin-bottom: 16px; }
.facility-title { font-size: 16.5px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.facility-desc { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 400; }

/* ── INSURANCE SECTION ───────────────────────────────── */
.insurance-wrap { background: linear-gradient(135deg, var(--blue-bg), #fff, var(--pink-bg)); border-radius: var(--radius-lg); padding: 48px 52px; box-shadow: 8px 8px 0 var(--pink-light), 0 20px 60px rgba(255,107,157,.1); border: 2px solid var(--pink-light); }
.insurance-title { font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 6px; text-align: center; }
.insurance-sub   { font-size: 15px; color: var(--muted); text-align: center; margin-bottom: 32px; font-weight: 400; }
.insurance-grid  { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.insurance-item  { background: #fff; border-radius: 14px; padding: 13px 16px; display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--pink-light); box-shadow: 3px 3px 0 var(--pink-light); transition: var(--transition); cursor: default; }
.insurance-item:hover { transform: translateY(-3px); box-shadow: 5px 5px 0 var(--pink-light), 0 10px 28px rgba(255,107,157,.15); border-color: var(--pink); }
.ins-icon { font-size: 20px; flex-shrink: 0; }
.ins-name { font-size: 12.5px; font-weight: 600; color: var(--text); }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { background: #fff; border-radius: 22px; padding: 26px; border: 2px solid var(--blue-light); box-shadow: 5px 5px 0 var(--blue-light); transition: var(--transition); cursor: default; }
.testimonial-card:hover { transform: translateY(-5px) scale(1.02); box-shadow: 8px 8px 0 var(--blue-light), 0 18px 48px rgba(77,184,232,.15); }
.test-stars  { color: var(--gold); font-size: 18px; margin-bottom: 12px; letter-spacing: 2px; }
.test-text   { font-size: 14px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; font-style: italic; font-weight: 400; }
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--pink-light), var(--pink)); display: flex; align-items: center; justify-content: center; font-size: 18px; border: 2px solid var(--pink-light); }
.test-name   { font-size: 14px; font-weight: 700; color: var(--text); }
.test-city   { font-size: 12px; color: var(--muted); font-weight: 400; }

/* ── EMERGENCY CTA ───────────────────────────────────── */
.emergency-cta { background: linear-gradient(135deg, var(--pink), var(--pink-mid), #FF4D8C); padding: 70px 0; overflow: hidden; position: relative; }
.emergency-cta::before { content: ''; position: absolute; inset: 0; opacity: .06; background: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%) 0/30px 30px; }
.emer-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; z-index: 1; }
.emer-text h2 { font-size: clamp(22px, 3vw, 38px); font-weight: 900; color: #fff; margin-bottom: 7px; }
.emer-text p  { font-size: 15px; color: rgba(255,255,255,.87); font-weight: 400; }
.emer-btns    { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-white-3d { background: #fff; color: var(--pink); padding: 14px 28px; border-radius: 50px; font-size: 15px; font-weight: 700; box-shadow: 0 6px 0 rgba(0,0,0,.1), 0 12px 28px rgba(0,0,0,.14); transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; font-family: 'Poppins', sans-serif; }
.btn-white-3d:hover { transform: translateY(-3px); box-shadow: 0 9px 0 rgba(0,0,0,.1), 0 16px 36px rgba(0,0,0,.2); }
.btn-outline-w { border: 2.5px solid rgba(255,255,255,.65); color: #fff; padding: 13px 26px; border-radius: 50px; font-size: 15px; font-weight: 600; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; backdrop-filter: blur(4px); }
.btn-outline-w:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* ── GALLERY GRID ────────────────────────────────────── */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { border-radius: 18px; overflow: hidden; aspect-ratio: 4/3; box-shadow: 4px 4px 0 var(--pink-light); border: 2px solid var(--pink-light); transition: var(--transition); cursor: pointer; }
.gallery-item:hover { transform: scale(1.04); box-shadow: 8px 8px 0 var(--pink-light), 0 16px 40px rgba(255,107,157,.2); border-color: var(--pink); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.08); }

/* ── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero { padding: 70px 0 56px; text-align: center; position: relative; overflow: hidden; }
.page-hero-pink { background: linear-gradient(135deg, var(--pink-bg), var(--blue-bg)); }
.page-hero-blue { background: linear-gradient(135deg, var(--blue-bg), var(--pink-bg)); }
.page-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,107,157,.12); border: 1.5px solid rgba(255,107,157,.25); border-radius: 50px; padding: 7px 20px; font-size: 12px; font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(30px, 4vw, 50px); font-weight: 900; line-height: 1.15; margin-bottom: 12px; }
.page-hero p  { font-size: 15.5px; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.8; font-weight: 400; }

/* ── BREADCRUMB ──────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 14px; color: var(--muted); margin-bottom: 18px; font-weight: 500; }
.bc-sep { color: var(--pink); }
.bc-cur { color: var(--pink); font-weight: 600; }
.breadcrumb a { color: var(--muted); transition: color .2s; }
.breadcrumb a:hover { color: var(--pink); }

/* ── SERVICE PAGE LAYOUT ─────────────────────────────── */
.sp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.sp-img { border-radius: 24px; overflow: hidden; box-shadow: 8px 8px 0 var(--pink-light), 0 20px 60px rgba(255,107,157,.12); border: 2px solid var(--pink-light); }
.sp-img img { width: 100%; height: 380px; object-fit: cover; }
.sp-content h3 { font-size: 20px; font-weight: 700; color: var(--pink); margin-bottom: 12px; margin-top: 24px; }
.sp-content h3:first-child { margin-top: 0; }
.sp-content p  { font-size: 14.5px; color: var(--muted); line-height: 1.85; margin-bottom: 12px; font-weight: 400; }
.sp-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.sp-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); line-height: 1.6; }
.sp-list li::before { content: '✅'; flex-shrink: 0; margin-top: 1px; }
.sp-equip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }
.sp-equip { background: #fff; border-radius: 14px; padding: 12px 16px; display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--pink-light); box-shadow: 3px 3px 0 var(--pink-light); font-size: 13px; font-weight: 600; color: var(--text); transition: var(--transition); }
.sp-equip:hover { transform: translateY(-2px); border-color: var(--pink); }
.sp-equip-icon { font-size: 18px; }
.sp-photo-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 32px; }
.sp-photo { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; border: 2px solid var(--pink-light); box-shadow: 3px 3px 0 var(--pink-light); }
.sp-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ── CONTACT & FORM ──────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 0; }
.contact-item { background: #fff; border-radius: 20px; padding: 20px 22px; display: flex; align-items: center; gap: 16px; border: 2px solid var(--pink-light); box-shadow: 4px 4px 0 var(--pink-light); transition: transform .3s; margin-bottom: 14px; }
.contact-item:hover { transform: translateX(6px); }
.ci-icon { width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.ci-icon-pink { background: linear-gradient(135deg, var(--pink-bg), var(--pink-light)); }
.ci-icon-blue { background: linear-gradient(135deg, var(--blue-bg), var(--blue-light)); }
.ci-label { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); margin-bottom: 3px; }
.ci-value { font-size: 15px; font-weight: 600; color: var(--text); }
.ci-value a { color: var(--pink); }
.map-box { background: linear-gradient(135deg, var(--pink-bg), var(--blue-bg)); border-radius: 18px; height: 160px; display: flex; align-items: center; justify-content: center; border: 2px solid var(--pink-light); font-size: 15px; font-weight: 600; color: var(--muted); margin-top: 4px; }

/* FORM */
.appt-form { background: #fff; border-radius: 28px; padding: 36px 32px; border: 2px solid var(--pink-light); box-shadow: 8px 8px 0 var(--pink-light), 0 20px 60px rgba(255,107,157,.1); }
.form-title { font-size: 20px; font-weight: 800; color: var(--text); margin-bottom: 22px; display: flex; align-items: center; gap: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; display: block; margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--pink-light); border-radius: 12px; font-size: 14px; font-family: 'Poppins', sans-serif; color: var(--text); background: #fff; transition: all .2s; outline: none; font-weight: 400; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 4px rgba(255,107,157,.09); }
.form-group textarea { height: 88px; resize: vertical; }
.form-submit { width: 100%; padding: 15px; background: linear-gradient(135deg, var(--pink), var(--pink-mid)); color: #fff; border: none; border-radius: 50px; font-size: 15.5px; font-weight: 700; font-family: 'Poppins', sans-serif; cursor: pointer; box-shadow: 0 5px 0 var(--pink-deep), 0 10px 28px rgba(255,107,157,.32); transition: var(--transition); margin-top: 4px; }
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 8px 0 var(--pink-deep), 0 14px 36px rgba(255,107,157,.42); }
.form-note { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 12px; }

/* ── FOOTER ──────────────────────────────────────────── */
.footer-wave { background: linear-gradient(160deg, var(--pink-bg), #fff, var(--blue-bg)); line-height: 0; }
.footer-wave svg { display: block; width: 100%; }
footer { background: #1A0D24; color: #fff; padding: 68px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.3fr; gap: 44px; margin-bottom: 44px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer-logo-box { width: 48px; height: 48px; background: linear-gradient(135deg, var(--pink), var(--pink-mid)); border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 22px; box-shadow: 3px 3px 0 var(--pink-deep); flex-shrink: 0; }
.footer-logo-name strong { font-size: 15.5px; font-weight: 800; display: block; line-height: 1.2; }
.footer-logo-name span   { font-size: 10.5px; color: var(--pink-light); font-weight: 500; }
.footer-brand-text { font-size: 13.5px; color: rgba(255,255,255,.52); line-height: 1.9; margin-bottom: 20px; font-weight: 400; }
.social-row { display: flex; gap: 9px; }
.social-btn { width: 38px; height: 38px; border-radius: 11px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 16px; transition: var(--transition); border: 1px solid rgba(255,255,255,.09); color: #fff; }
.social-btn:hover { background: var(--pink); transform: translateY(-2px); border-color: transparent; }
.footer-col h4 { font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.42); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,.62); text-decoration: none; margin-bottom: 10px; transition: color .2s; font-weight: 400; }
.footer-col a:hover { color: var(--pink-light); }
.footer-timing { font-size: 13px; color: rgba(255,255,255,.52); line-height: 2; font-weight: 400; }
.footer-timing strong { color: #fff; font-weight: 600; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: rgba(255,255,255,.36); font-weight: 400; }
.footer-bottom a { color: rgba(255,255,255,.45); }
.nabh-pill { background: linear-gradient(90deg, var(--pink), var(--pink-mid)); border-radius: 50px; padding: 3px 13px; font-size: 11px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .7px; }

/* ── WHATSAPP FLOAT ──────────────────────────────────── */
.wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 9999; width: 58px; height: 58px; background: linear-gradient(135deg, #25D366, #128C7E); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 27px; text-decoration: none; box-shadow: 0 6px 22px rgba(37,211,102,.48), 4px 4px 0 #128C7E; transition: transform .2s; }
.wa-float:hover { transform: scale(1.12); }

/* ── MOBILE NAV OVERLAY ──────────────────────────────── */
.mob-nav { display: none; position: fixed; inset: 0; background: rgba(255,255,255,.97); backdrop-filter: blur(20px); z-index: 1100; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.mob-nav.open { display: flex; }
.mob-nav a { font-size: 21px; font-weight: 700; color: var(--text); text-decoration: none; padding: 11px 28px; border-radius: 14px; transition: var(--transition); }
.mob-nav a:hover { background: var(--pink-bg); color: var(--pink); }
.mob-close { position: absolute; top: 22px; right: 22px; background: var(--pink-bg); border: none; font-size: 26px; cursor: pointer; color: var(--pink); width: 48px; height: 48px; border-radius: 13px; display: flex; align-items: center; justify-content: center; }

/* ── DOODLE SHAPES ───────────────────────────────────── */
.doodles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.doodle { position: absolute; opacity: .17; }

/* ═══════════════════════════════════════════════════
   MOBILE-SPECIFIC OVERRIDES (appended fix)
═══════════════════════════════════════════════════ */

/* Ensure mob-nav is HIDDEN by default on all screens */
.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
}
/* Only show when .open is toggled by JS */
.mob-nav.open { display: flex !important; }

/* Ensure mob-menu-btn hidden on desktop */
.mob-menu-btn {
  display: none;
  width: 44px; height: 44px;
  background: var(--pink-bg);
  border: 2px solid var(--pink-light);
  border-radius: 12px;
  font-size: 22px;
  color: var(--pink);
  cursor: pointer;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

/* Hero fixes */
.hero-slide { will-change: opacity; }
.slide-bg   { will-change: transform; }

/* Smooth touch scrolling */
* { -webkit-tap-highlight-color: transparent; }
body { -webkit-overflow-scrolling: touch; }

/* Fix for iOS Safari 100vh bug */
@supports (-webkit-touch-callout: none) {
  .hero { min-height: -webkit-fill-available; }
  .mob-nav { height: 100vh; height: -webkit-fill-available; }
}
