/* â•â•â• DESIGN SYSTEM: Health Plus+ â•â•â• */
/* Typography: Figtree (headings) + Noto Sans (body) */
/* Colors: Medical Teal #0891B2 + Health Green #22C55E */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&family=Noto+Sans:wght@300;400;500;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0891B2;
  --primary-dark: #0E7490;
  --primary-darker: #155E75;
  --secondary: #22D3EE;
  --accent: #22C55E;
  --accent-dark: #16A34A;
  --bg: #F0FDFA;
  --bg-white: #FFFFFF;
  --bg-alt: #F0F9FF;
  --text: #134E4A;
  --text-dark: #0F172A;
  --text-muted: #475569;
  --text-light: #64748B;
  --border: #E2E8F0;
  --border-teal: #99F6E4;
  --teal-light: #3BB4C1;
  --teal-light-border: #2b9ca9;
  --teal-light-text: #ffffff;
  --teal-med: #048998;
  --teal-med-border: #036b78;
  --teal-med-text: #ffffff;
  --teal-dark: #255456;
  --teal-dark-border: #173839;
  --teal-dark-text: #ffffff;
  --shadow-sm: 0 1px 3px rgba(14,116,144,0.08);
  --shadow-md: 0 4px 16px rgba(14,116,144,0.1);
  --shadow-lg: 0 12px 40px rgba(14,116,144,0.12);
  --shadow-xl: 0 20px 60px rgba(14,116,144,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --transition: 200ms ease;
  --font-heading: 'Figtree', sans-serif;
  --font-body: 'Noto Sans', sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg-white); overflow-x: hidden; line-height: 1.6; -webkit-font-smoothing: antialiased; }

/* â•â•â• SKIP LINK â•â•â• */
.skip-link { position: absolute; top: -100%; left: 16px; padding: 12px 24px; background: var(--primary); color: white; border-radius: var(--radius-sm); font-weight: 500; z-index: 1000; text-decoration: none; }
.skip-link:focus { top: 16px; }

/* â•â•â• NAVBAR â•â•â• */
.navbar {
  position: fixed; top: 12px; left: 16px; right: 16px; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; height: 64px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid rgba(226,232,240,0.6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), background var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); background: rgba(255,255,255,0.97); }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { width: 40px; height: 40px; border-radius: var(--radius-sm); object-fit: contain; }
.nav-brand { font-family: var(--font-heading); font-weight: 600; font-size: 16px; color: var(--text-dark); letter-spacing: -0.01em; }
.nav-brand span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { text-decoration: none; font-size: 13px; font-weight: 500; color: var(--text-muted); padding: 8px 12px; border-radius: var(--radius-sm); transition: color var(--transition), background var(--transition); cursor: pointer; }
.nav-links a:hover { color: var(--primary); background: rgba(8,145,178,0.06); }
.nav-cta { background: var(--primary) !important; color: white !important; padding: 10px 22px !important; border-radius: var(--radius-full) !important; font-weight: 600 !important; transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important; }
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(8,145,178,0.3) !important; }

/* For Companies — prominent nav link */
.nav-corp-link {
  background: linear-gradient(135deg, rgba(8,145,178,0.08), rgba(34,197,94,0.08)) !important;
  border: 1.5px solid rgba(8,145,178,0.3) !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-full) !important;
  font-weight: 700 !important;
  color: var(--primary-dark) !important;
  position: relative;
  transition: all 0.3s ease !important;
}
.nav-corp-link:hover {
  background: linear-gradient(135deg, rgba(8,145,178,0.15), rgba(34,197,94,0.12)) !important;
  border-color: var(--primary) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(8,145,178,0.2) !important;
}
.nav-corp-link::before {
  content: '🏢';
  margin-right: 4px;
  font-size: 13px;
}

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; border-radius: var(--radius-sm); transition: background var(--transition); }
.hamburger:hover { background: rgba(8,145,178,0.06); }
.hamburger svg { width: 24px; height: 24px; color: var(--text-dark); }
.mobile-menu { display: none; position: fixed; top: 84px; left: 16px; right: 16px; background: white; padding: 16px; box-shadow: var(--shadow-lg); z-index: 99; flex-direction: column; gap: 4px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.mobile-menu.active { display: flex; }
.mobile-menu a { display: block; padding: 14px 16px; text-decoration: none; font-size: 15px; color: var(--text-dark); font-weight: 500; border-radius: var(--radius-sm); transition: background var(--transition); cursor: pointer; }
.mobile-menu a:hover { background: var(--bg); }
.mobile-menu .nav-corp-link {
  background: linear-gradient(135deg, rgba(8,145,178,0.06), rgba(34,197,94,0.06));
  border: 1.5px solid rgba(8,145,178,0.25);
  border-radius: var(--radius-md);
  font-weight: 700;
  color: var(--primary-dark);
  text-align: center;
  margin-top: 4px;
}
.mobile-menu .nav-corp-link::before { content: '🏢 '; }
.mobile-menu .nav-corp-link:hover { background: rgba(8,145,178,0.1); }
.mobile-menu .nav-cta { text-align: center; margin-top: 8px; }

/* â•â•â• HERO â•â•â• */
.hero {
  margin-top: 88px; min-height: 88vh; position: relative;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center;
  padding: 60px 52px; gap: 60px; overflow: hidden;
  background: linear-gradient(135deg, var(--bg) 0%, #ECFDF5 50%, #F0F9FF 100%);
}
.hero::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(8,145,178,0.08) 0%, transparent 70%); top: -100px; right: -100px; pointer-events: none; }
.hero::after { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(34,197,94,0.06) 0%, transparent 70%); bottom: -50px; left: -50px; pointer-events: none; }
.hero-content { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(8,145,178,0.08); border: 1px solid rgba(8,145,178,0.15); border-radius: var(--radius-full); margin-bottom: 24px; }
.hero-badge svg { width: 16px; height: 16px; color: var(--primary); }
.hero-badge span { font-size: 13px; font-weight: 600; color: var(--primary); letter-spacing: 0.04em; text-transform: uppercase; }
.hero h1 { font-family: var(--font-heading); font-size: clamp(36px, 5vw, 56px); font-weight: 700; color: var(--text-dark); line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.02em; }
.hero h1 .accent { color: var(--primary); }
.hero p { font-size: 17px; line-height: 1.7; color: var(--text-muted); margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--primary); color: white; padding: 14px 28px; border-radius: var(--radius-full); font-family: var(--font-body); font-size: 15px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: background var(--transition), transform var(--transition), box-shadow var(--transition); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(8,145,178,0.25); }
.btn-primary:focus-visible { outline: 3px solid var(--secondary); outline-offset: 2px; }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--text-dark); padding: 14px 28px; border-radius: var(--radius-full); font-size: 15px; font-weight: 600; text-decoration: none; border: 1.5px solid var(--border); cursor: pointer; transition: border-color var(--transition), background var(--transition); }
.btn-secondary:hover { border-color: var(--primary); background: rgba(8,145,178,0.04); }
.btn-secondary:focus-visible { outline: 3px solid var(--secondary); outline-offset: 2px; }

.hero-visual { position: relative; z-index: 2; }
.hero-image-wrapper { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); position: relative; aspect-ratio: 4/3; }
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-wrapper::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(8,145,178,0.1) 0%, transparent 50%); pointer-events: none; }

/* â•â•â• QUICK BAR â•â•â• */
.quick-bar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); margin: 0 52px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); position: relative; z-index: 3; margin-top: -40px; }
.quick-item { display: flex; align-items: center; gap: 14px; padding: 24px 28px; background: white; text-decoration: none; transition: background var(--transition); cursor: pointer; }
.quick-item:hover { background: var(--bg); }
.quick-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.quick-icon.teal { background: rgba(8,145,178,0.1); color: var(--primary); }
.quick-icon.green { background: rgba(34,197,94,0.1); color: var(--accent); }
.quick-icon.cyan { background: rgba(34,211,238,0.1); color: var(--secondary); }
.quick-icon svg { width: 22px; height: 22px; }
.quick-label { font-family: var(--font-heading); font-size: 15px; font-weight: 600; color: var(--text-dark); }
.quick-sub { font-size: 13px; color: var(--text-light); margin-top: 2px; }
.quick-arrow { margin-left: auto; color: var(--primary); transition: transform var(--transition); }
.quick-item:hover .quick-arrow { transform: translateX(3px); }
.quick-arrow svg { width: 18px; height: 18px; }

/* â•â•â• SECTIONS â•â•â• */
section { padding: 100px 52px; }
.section-label { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary); margin-bottom: 14px; }
.section-label svg { width: 16px; height: 16px; }
h2 { font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 42px); font-weight: 700; color: var(--text-dark); line-height: 1.2; margin-bottom: 16px; letter-spacing: -0.02em; }
.section-desc { font-size: 16px; line-height: 1.8; color: var(--text-muted); max-width: 560px; }

/* â•â•â• ABOUT â•â•â• */
.about { background: var(--bg-white); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { border-radius: var(--radius-xl); overflow: hidden; position: relative; aspect-ratio: 4/3; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.about-image:hover img { transform: scale(1.03); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.stat-card { background: var(--bg); border-radius: var(--radius-md); padding: 22px; border: 1px solid var(--border-teal); transition: transform var(--transition), box-shadow var(--transition); cursor: default; }
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-num { font-family: var(--font-heading); font-size: 32px; font-weight: 700; color: var(--primary); line-height: 1; }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* â•â•â• SERVICES â•â•â• */
.services { background: var(--bg); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 900px; }
.service-card { background: white; border-radius: var(--radius-lg); padding: 32px 28px; border: 1px solid var(--border); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); cursor: pointer; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.service-card:focus-visible { outline: 3px solid var(--secondary); outline-offset: 2px; }
.service-img-icon { width: 100%; height: 160px; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 20px; }
.service-img-icon img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-img-icon img { transform: scale(1.05); }
.service-title { font-family: var(--font-heading); font-size: 19px; font-weight: 600; color: var(--text-dark); margin-bottom: 12px; }
.service-list { list-style: none; font-size: 14px; color: var(--text-muted); line-height: 2; }
.service-list li { display: flex; align-items: center; gap: 8px; }
.service-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; opacity: 0.5; }
.service-hours { margin-top: 14px; padding: 8px 12px; background: rgba(8,145,178,0.07); border-radius: var(--radius-sm); font-size: 12.5px; font-weight: 600; color: var(--primary); border: 1px solid rgba(8,145,178,0.12); }

/* â•â•â• SPECIALIST FINDER â•â•â• */
.specialist-finder-section { background: linear-gradient(180deg, var(--bg) 0%, #EFF6FF 100%); }
.sf-container { max-width: 620px; margin: 0 auto; }
.sf-hidden { display: none !important; }
.sf-card { background: white; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); overflow: hidden; }

.sf-intro-hero {
  background: linear-gradient(145deg, #0F172A 0%, var(--primary-darker) 60%, var(--primary) 100%);
  padding: 48px 40px 40px; text-align: center; position: relative; overflow: hidden;
}
.sf-intro-hero::before { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.04); top: -100px; right: -80px; }
.sf-intro-eyebrow { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.sf-intro-title { font-family: var(--font-heading); font-size: 28px; font-weight: 700; color: white; line-height: 1.2; margin-bottom: 14px; position: relative; z-index: 1; }
.sf-intro-title span { color: var(--secondary); }
.sf-intro-sub { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; max-width: 380px; margin: 0 auto 28px; position: relative; z-index: 1; }
.sf-start-btn { background: white; color: var(--text-dark); border: none; padding: 16px 40px; border-radius: var(--radius-full); font-family: var(--font-body); font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.25s ease; position: relative; z-index: 1; }
.sf-start-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.2); }

.sf-intro-specs { padding: 28px 36px 32px; }
.sf-specs-title { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 16px; }
.sf-spec-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.sf-chip { display: flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: var(--radius-full); border: 1.5px solid var(--border); font-size: 12px; font-weight: 600; color: var(--text); background: var(--bg); }

.sf-quiz-header { padding: 28px 32px 0; }
.sf-breadcrumb { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; min-height: 24px; }
.sf-breadcrumb-item { font-size: 11px; color: var(--primary); background: rgba(8,145,178,0.08); padding: 3px 10px; border-radius: var(--radius-full); font-weight: 600; max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sf-quiz-q { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; line-height: 1.3; }
.sf-quiz-sub { font-size: 13px; color: var(--text-light); margin-bottom: 24px; }
.sf-quiz-options { padding: 0 32px 28px; display: flex; flex-direction: column; gap: 9px; }
.sf-opt-btn { display: flex; align-items: center; gap: 14px; padding: 13px 16px; border-radius: 14px; border: 2px solid var(--border); background: white; cursor: pointer; transition: all 0.18s ease; text-align: left; width: 100%; font-family: var(--font-body); font-size: 14px; }
.sf-opt-btn:hover { border-color: var(--primary); background: rgba(8,145,178,0.04); transform: translateX(4px); }
.sf-opt-btn.active { border-color: var(--primary); background: linear-gradient(135deg, rgba(8,145,178,0.06), rgba(34,211,238,0.06)); box-shadow: 0 4px 16px rgba(8,145,178,0.12); }
.sf-opt-icon { font-size: 20px; width: 32px; text-align: center; flex-shrink: 0; }
.sf-opt-text { flex: 1; }
.sf-opt-label { font-weight: 600; color: var(--text-dark); display: block; }
.sf-opt-sub { font-size: 11px; color: var(--text-light); display: block; margin-top: 1px; }
.sf-opt-check { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; transition: all 0.15s; display: flex; align-items: center; justify-content: center; }
.sf-opt-btn.active .sf-opt-check { background: var(--primary); border-color: var(--primary); }
.sf-opt-btn.active .sf-opt-check::after { content: 'âœ“'; color: white; font-size: 11px; }

.sf-quiz-footer { padding: 0 32px 32px; display: flex; gap: 10px; }
.sf-back-btn { padding: 14px 20px; border-radius: 14px; border: 2px solid var(--border); background: white; font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all 0.18s; }
.sf-back-btn:hover { border-color: var(--text-muted); color: var(--text-dark); }
.sf-next-btn { flex: 1; padding: 14px; border-radius: 14px; border: none; background: var(--text-dark); color: white; font-family: var(--font-body); font-size: 14px; font-weight: 700; cursor: pointer; transition: all 0.18s; }
.sf-next-btn:hover:not(:disabled) { background: var(--primary); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(8,145,178,0.25); }
.sf-next-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.sf-result-banner { padding: 36px 32px 28px; display: flex; align-items: center; gap: 20px; border-bottom: 1px solid var(--border); }
.sf-result-icon-wrap { width: 72px; height: 72px; border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 36px; flex-shrink: 0; }
.sf-result-match-label { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
.sf-result-name { font-family: var(--font-heading); font-size: 22px; font-weight: 700; color: var(--text-dark); line-height: 1.2; margin-bottom: 6px; }
.sf-result-tagline { font-size: 13px; color: var(--text-light); }
.sf-result-when { margin: 24px 32px 0; padding: 16px 18px; border-radius: 14px; font-size: 13px; line-height: 1.65; color: var(--text); border-left: 4px solid var(--primary); background: rgba(8,145,178,0.04); }
.sf-result-section { padding: 20px 32px 0; }
.sf-result-label { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 12px; }
.sf-result-doc { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.sf-result-doc:last-child { border-bottom: none; }
.sf-result-doc-name { font-weight: 600; color: var(--text-dark); font-size: 14px; }
.sf-result-doc-role { font-size: 12px; color: var(--text-light); }
.sf-result-doc-sched { font-size: 11px; color: var(--primary); font-weight: 600; }
.sf-result-services { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 0; }
.sf-result-svc { display: flex; align-items: center; gap: 8px; padding: 9px 12px; border-radius: 10px; font-size: 12px; font-weight: 500; color: var(--text); border: 1.5px solid var(--border); background: var(--bg); }
.sf-result-svc::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.sf-result-actions { padding: 24px 32px 32px; display: flex; gap: 10px; }
.sf-restart-btn { padding: 14px 24px; border-radius: var(--radius-full); border: 2px solid var(--border); background: white; font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all 0.18s; }
.sf-restart-btn:hover { border-color: var(--primary); color: var(--primary); }

/* â•â•â• GALLERY â•â•â• */
.gallery { background: var(--bg-white); }
.gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  margin: 48px auto 0;
  max-width: 1100px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.gallery-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(15,23,42,0.3) 100%); opacity: 0; transition: opacity 0.3s ease; pointer-events: none; }
.gallery-item:hover::after { opacity: 1; }

/* â•â•â• CARE STAGES â€” PREMIUM TAB DESIGN â•â•â• */
.care-stages-section { background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg) 100%); }

/* Tab buttons */
.care-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.care-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border);
  background: white;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.care-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.care-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(8,145,178,0.3);
  transform: translateY(-2px);
}
.care-tab-emoji { font-size: 22px; line-height: 1; display: flex; align-items: center; justify-content: center; }
.care-tab-emoji svg { width: 22px; height: 22px; color: var(--primary); }
.care-tab.active .care-tab-emoji svg { color: white; stroke: white; }
.care-tab-label { white-space: nowrap; }

/* Panels container */
.care-panels { max-width: 960px; margin: 0 auto; }
.care-panel { display: none; animation: careFadeIn 0.4s ease; }
.care-panel.active { display: block; }
@keyframes careFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Panel inner card */
.care-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  min-height: 400px;
}

/* Gradient backgrounds per category */
.care-gradient-kids {
  background: linear-gradient(145deg, #ECFEFF 0%, #CFFAFE 30%, white 100%);
}
.care-gradient-mothers {
  background: linear-gradient(145deg, #FFF1F2 0%, #FFE4E6 30%, white 100%);
}
.care-gradient-adults {
  background: linear-gradient(145deg, #F0FDF4 0%, #DCFCE7 30%, white 100%);
}

/* Text panel */
.care-panel-text {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.care-panel-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
}
.care-badge-kids { background: rgba(6,182,212,0.12); color: #0891B2; }
.care-badge-mothers { background: rgba(244,114,182,0.12); color: #DB2777; }
.care-badge-adults { background: rgba(34,197,94,0.12); color: #16A34A; }

.care-panel-text h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.care-panel-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

/* Feature list */
.care-panel-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.care-panel-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}
.care-panel-list li::before {
  content: '\2713';
  width: 22px; height: 22px;
  background: rgba(8,145,178,0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0;
}

/* CTA button */
.care-panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(8,145,178,0.2);
}
.care-panel-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8,145,178,0.3);
}
.care-panel-cta svg { flex-shrink: 0; }

/* Photo gallery — masonry-like 1 big + 2 small */
.care-panel-gallery {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr auto;
  gap: 0;
  min-height: 400px;
}
.care-gallery-main {
  overflow: hidden;
  position: relative;
}
.care-gallery-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  min-height: 260px;
  transition: transform 0.5s ease;
}
.care-gallery-main:hover img { transform: scale(1.04); }
.care-gallery-side {
  display: flex;
}
.care-gallery-side img {
  flex: 1 1 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16/10;
  transition: transform 0.5s ease;
  border-top: 3px solid white;
}
.care-gallery-side img:first-child { border-right: 1.5px solid white; }
.care-gallery-side img:last-child { border-left: 1.5px solid white; }
.care-gallery-side img:hover { transform: scale(1.06); overflow: hidden; }

/* ——— VISION ——— */
.vision { background: var(--text-dark); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.vision h2 { color: white; }
.vision .section-label { color: var(--secondary); }
.vision .section-desc { color: rgba(255,255,255,0.6); max-width: 100%; }
.vision-image { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/3; }
.vision-image img { width: 100%; height: 100%; object-fit: cover; }
.pillars { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.pillar { display: flex; align-items: center; gap: 14px; padding: 14px 18px; background: rgba(255,255,255,0.04); border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.06); transition: background var(--transition); }
.pillar:hover { background: rgba(255,255,255,0.08); }
.pillar-icon { width: 8px; height: 8px; background: var(--secondary); border-radius: 50%; flex-shrink: 0; }
.pillar-text { font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 400; }

/* ——— LIFE STAGES (Kids, Mothers, Adults) ——— */
.life-stages { background: var(--bg-white); }
.stage-card { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 64px; padding: 48px; border-radius: var(--radius-xl); background: white; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: box-shadow 0.3s ease; }
.stage-card:hover { box-shadow: var(--shadow-md); }
.stage-card:last-child { margin-bottom: 0; }
.stage-badge { display: inline-block; padding: 6px 16px; border-radius: var(--radius-full); font-size: 13px; font-weight: 700; margin-bottom: 12px; }
.kids-badge { background: rgba(34,211,238,0.1); color: #0891B2; }
.mothers-badge { background: rgba(232,86,122,0.1); color: #E8567A; }
.adults-badge { background: rgba(34,197,94,0.1); color: #16A34A; }
.stage-content h3 { font-family: var(--font-heading); font-size: 26px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.stage-content p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.stage-features { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.stage-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); font-weight: 500; }
.stage-features li::before { content: '\2713'; width: 22px; height: 22px; background: rgba(8,145,178,0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }
.stage-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stage-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); transition: transform 0.3s ease; }
.stage-gallery img:hover { transform: scale(1.03); }

/* â•â•â• DOCTORS â•â•â• */
.doctors {
  background: linear-gradient(180deg, var(--bg) 0%, #EFF6FF 40%, var(--bg) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.doctors::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,145,178,0.06) 0%, transparent 70%);
  top: -200px; left: -200px;
  pointer-events: none;
}
.doctors::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.05) 0%, transparent 70%);
  bottom: -100px; right: -100px;
  pointer-events: none;
}

/* Group label pill */
.doctors-group-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 56px 0 56px;
  padding: 10px 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(8,145,178,0.07);
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(8,145,178,0.2);
  position: relative;
}
.doctors-group-label::before,
.doctors-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(8,145,178,0.18);
  min-width: 32px;
}

/* Grid layouts */
.doctors-grid, .doctors-grid.two-up, .doctors-grid-4 {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 32px !important;
  margin: 0 auto !important;
  position: relative;
  z-index: 1;
  width: 100% !important;
  max-width: 100%;
  padding-bottom: 24px;
}

/* â”€â”€ DOCTOR CARD â”€â”€ */
.doctor-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: default;
  width: 280px !important;
  max-width: 100%;
  flex-shrink: 0;
  scroll-snap-align: center;
}

.doctor-avatar-wrap {
  position: relative;
  z-index: 2;
  margin-bottom: -40px;
  flex-shrink: 0;
}
.doctor-avatar-ring {
  width: 148px;
  height: 148px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 60%, var(--accent) 100%);
  box-shadow:
    0 8px 32px rgba(8,145,178,0.30),
    0 0 0 6px rgba(8,145,178,0.10);
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), box-shadow 0.3s ease;
}
.doctor-card:hover .doctor-avatar-ring {
  transform: translateY(-6px) scale(1.04);
  box-shadow:
    0 16px 40px rgba(8,145,178,0.35),
    0 0 0 8px rgba(8,145,178,0.12);
}
.doctor-avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(8,145,178,0.12), rgba(34,211,238,0.10));
  border: 3px solid white;
}
.doctor-avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.4s ease;
}
.doctor-card:hover .doctor-avatar-inner img { transform: scale(1.08); }

.doctor-avatar-wrap .doc-badge {
  position: absolute;
  bottom: 6px;
  right: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid white;
  background: var(--accent);
  box-shadow: 0 2px 8px rgba(34,197,94,0.4);
}

.doctor-info {
  background: white;
  border-radius: 20px;
  border: 1.5px solid rgba(8,145,178,0.12);
  box-shadow:
    0 4px 24px rgba(8,145,178,0.08),
    0 1px 4px rgba(0,0,0,0.04);
  padding: 44px 20px 20px;
  width: 100%;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.doctor-info::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.doctor-card:hover .doctor-info {
  transform: translateY(3px);
  box-shadow:
    0 12px 40px rgba(8,145,178,0.14),
    0 2px 8px rgba(0,0,0,0.06);
  border-color: rgba(8,145,178,0.25);
}
.doctor-card:hover .doctor-info::before { opacity: 1; }

.doctor-name {
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
  line-height: 1.3;
}
.doctor-creds {
  font-size: 11px;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.doctor-spec {
  font-size: 12.5px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  padding: 4px 12px;
  background: rgba(8,145,178,0.07);
  border-radius: var(--radius-full);
  display: inline-block;
}
.doctor-sched {
  font-size: 11px;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 4px;
}

/* â•â•â• TESTIMONIALS â•â•â• */
.testimonials-section { background: var(--bg); }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; max-width: 900px; margin: 0 auto; }
.testimonial-card { background: white; border-radius: var(--radius-xl); padding: 36px 32px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative; }
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-card::before { content: '"'; position: absolute; top: 20px; right: 28px; font-size: 72px; font-family: Georgia, serif; color: rgba(8,145,178,0.08); line-height: 1; }
.testimonial-stars { font-size: 18px; color: #F5A623; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--text); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 16px; flex-shrink: 0; }
.testimonial-name { font-family: var(--font-heading); font-weight: 700; font-size: 15px; color: var(--text-dark); margin-bottom: 2px; }
.testimonial-source { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 6px; }

/* â•â•â• PACKAGES â€” PREMIUM REDESIGN â•â•â• */
.packages-section {
  background: linear-gradient(180deg, var(--bg) 0%, #EFF6FF 40%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}
.packages-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,145,178,0.06) 0%, transparent 70%);
  top: -150px; right: -150px;
  pointer-events: none;
}
.packages-section::after {
  content: '';
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34,197,94,0.05) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  pointer-events: none;
}
.pkg-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.pkg-tab {
  padding: 14px 28px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.pkg-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.pkg-tab.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(8,145,178,0.3);
  transform: translateY(-2px);
}
.pkg-panel { display: none; max-width: 960px; margin: 0 auto; position: relative; z-index: 1; }
.pkg-panel.active { display: block; }
.pkg-panel.active .reveal { opacity: 1; transform: translateY(0); }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.pkg-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  border: 1px solid var(--border);
  border-left: 5px solid var(--primary);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pkg-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, rgba(8,145,178,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--accent);
}
.pkg-card.pkg-highlight {
  border-left: 5px solid var(--accent-dark);
  background: linear-gradient(135deg, rgba(8,145,178,0.04) 0%, rgba(34,197,94,0.04) 100%);
}
.pkg-card.pkg-highlight::after {
  content: 'â˜…';
  position: absolute;
  top: 12px; right: 16px;
  font-size: 16px;
  color: var(--accent);
  opacity: 0.5;
}
.pkg-card-header {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.pkg-includes {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 500;
}

/* â”€â”€ PACKAGE CARDS V2 â€” Rich Descriptive Layout â”€â”€ */
.pkg-grid-v2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pkg-card-v2 {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pkg-card-v2::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.pkg-card-v2:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(8,145,178,0.2);
}
.pkg-card-v2:hover::before { opacity: 1; }

.pkg-card-v2.pkg-featured {
  background: linear-gradient(135deg, rgba(8,145,178,0.03) 0%, rgba(34,197,94,0.03) 100%);
  border: 2px solid rgba(8,145,178,0.15);
}
.pkg-card-v2.pkg-featured::before { opacity: 1; }
.pkg-card-v2.pkg-featured::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, rgba(34,197,94,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pkg-card-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(8,145,178,0.07);
  color: var(--primary);
  margin-bottom: 14px;
}
.pkg-card-v2-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}
.pkg-card-v2-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.pkg-card-v2-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.pkg-card-v2-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}
.pkg-card-v2-ideal {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-light);
  padding: 8px 14px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  border: 1px solid var(--border);
}
.pkg-card-v2-tests {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pkg-card-v2-tests span {
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  border: 1.5px solid var(--border);
  background: linear-gradient(135deg, var(--bg) 0%, white 100%);
  cursor: default;
  transition: all 0.25s ease;
}
.pkg-card-v2-tests span:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(8,145,178,0.08) 0%, rgba(34,211,238,0.05) 100%);
  color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(8,145,178,0.12);
}

/* Lab Tests Accordion â€” Enhanced */
.lab-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.lab-category {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: white;
  transition: all 0.3s ease;
}
.lab-category:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(8,145,178,0.2);
}
.lab-cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 28px;
  background: white;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.2s ease;
  text-align: left;
}
.lab-cat-header:hover { background: rgba(8,145,178,0.03); }
.lab-cat-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  color: white;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.lab-cat-info { flex: 1; }
.lab-cat-name { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--text-dark); }
.lab-cat-count { font-size: 12px; color: var(--text-light); font-weight: 600; margin-top: 2px; }
.lab-cat-tagline { font-size: 11px; color: var(--text-muted); font-weight: 400; margin-top: 2px; line-height: 1.4; opacity: 0.75; }
.lab-cat-chevron { flex-shrink: 0; color: var(--text-light); transition: transform 0.3s ease; }
.lab-cat-header.active .lab-cat-chevron { transform: rotate(180deg); color: var(--primary); }
.lab-cat-body { max-height: 0; overflow: hidden; transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease; padding: 0 28px; }
.lab-cat-body.open { max-height: 500px; padding: 0 28px 24px; }
.lab-tests-flow { display: flex; flex-wrap: wrap; gap: 8px; }
.lab-tests-flow span {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  border: 1.5px solid var(--border);
  background: linear-gradient(135deg, var(--bg) 0%, white 100%);
  cursor: default;
  transition: all 0.25s ease;
}
.lab-tests-flow span:hover {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(8,145,178,0.08) 0%, rgba(34,211,238,0.05) 100%);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(8,145,178,0.15);
}

/* â•â•â• STICKY NEWSLETTER POPUP â•â•â• */
.nl-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(.34,1.56,.64,1);
}
.nl-popup.visible { transform: translateY(0); }
.nl-popup.dismissed { transform: translateY(100%) !important; }
.nl-popup-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 60%, var(--primary) 100%);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
  position: relative;
}
.nl-popup-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
}
.nl-popup-text { flex: 1; min-width: 0; }
.nl-popup-text strong { color: white; font-family: var(--font-heading); font-size: 14px; display: block; line-height: 1.3; }
.nl-popup-text span { color: rgba(255,255,255,0.65); font-size: 12px; }
.nl-popup-form { display: flex; gap: 8px; flex-shrink: 0; }
.nl-popup-input {
  padding: 10px 16px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 13px;
  color: white;
  outline: none;
  width: 220px;
  transition: border-color 0.2s ease;
}
.nl-popup-input::placeholder { color: rgba(255,255,255,0.45); }
.nl-popup-input:focus { border-color: var(--secondary); }
.nl-popup-btn {
  padding: 10px 24px;
  background: white;
  color: var(--primary-dark);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nl-popup-btn:hover { background: var(--secondary); color: var(--text-dark); transform: scale(1.03); }
.nl-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.6);
  transition: background 0.2s ease, color 0.2s ease;
}
.nl-popup-close:hover { background: rgba(255,255,255,0.2); color: white; }
.nl-popup-success {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: white;
  font-weight: 600;
  font-size: 14px;
  position: relative;
}
.nl-popup-success svg { flex-shrink: 0; }

.billing-section { background: var(--bg-white); }
.billing-container {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin: 48px auto 0;
  max-width: 720px;
}
.billing-box { text-align: center; }
.billing-box h3 {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.billing-box h3::before,
.billing-box h3::after {
  content: '';
  height: 1px;
  flex: 1;
  max-width: 100px;
  background: var(--border);
}
.billing-logos {
  display: flex;
  justify-content: center;
  gap: 48px;
}
.billing-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.billing-item img {
  height: 52px;
  width: 52px;
  border-radius: var(--radius-md);
  object-fit: contain;
  background: var(--bg);
  padding: 8px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.billing-item:hover img {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.billing-item span { font-size: 12px; color: var(--text-muted); font-weight: 600; }

/* â•â•â• FAQ â•â•â• */
.faq-section { background: var(--bg-white); }
.faq-container { max-width: 720px; margin: 0 auto; }
.faq-group-label { font-family: var(--font-heading); font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 20px; padding: 10px 24px; display: inline-flex; background: rgba(8,145,178,0.07); border-radius: var(--radius-full); border: 1.5px solid rgba(8,145,178,0.2); }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-md); margin-bottom: 10px; overflow: hidden; transition: box-shadow 0.2s ease; }
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 18px 24px; background: white; border: none; cursor: pointer; font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--text-dark); text-align: left; transition: background 0.2s ease; }
.faq-question:hover { background: var(--bg); }
.faq-question svg { flex-shrink: 0; color: var(--primary); transition: transform 0.3s ease; }
.faq-question.active svg { transform: rotate(180deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; font-size: 14px; color: var(--text-muted); line-height: 1.8; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-answer.open { max-height: 300px; padding: 0 24px 20px; }
.faq-answer a { color: var(--primary); font-weight: 600; text-decoration: none; }
.faq-answer a:hover { color: var(--primary-dark); }

/* â•â•â• SCHEDULE NOTICE â•â•â• */
.schedule-notice { background: var(--bg); }
.schedule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.schedule-card {
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.schedule-card:last-child { border-right: none; }
.schedule-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.schedule-card-header svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.schedule-card-time {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  white-space: nowrap;
}
.schedule-card-days {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.5;
}
.schedule-disclaimer {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin: 24px auto 0;
  max-width: 640px;
  line-height: 1.6;
}
.schedule-disclaimer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}
.schedule-disclaimer a:hover { color: var(--primary-dark); }

/* â•â•â• NEWSLETTER â•â•â• */
.newsletter-section { background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 50%, var(--primary) 100%); padding: 80px 52px; }
.newsletter-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.newsletter-section h2 { color: white; margin-bottom: 10px; }
.newsletter-section p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 12px; max-width: 520px; margin: 0 auto; }
.newsletter-input { flex: 1; padding: 14px 20px; border: 2px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); border-radius: var(--radius-full); font-family: var(--font-body); font-size: 15px; color: white; outline: none; transition: border-color 0.2s ease; }
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-input:focus { border-color: var(--secondary); }
.newsletter-btn { background: white !important; color: var(--primary-dark) !important; padding: 14px 32px !important; font-weight: 700 !important; }
.newsletter-btn:hover { background: var(--secondary) !important; color: var(--text-dark) !important; transform: translateY(-2px); }
.newsletter-success { display: flex; align-items: center; justify-content: center; gap: 10px; color: var(--secondary); font-weight: 600; font-size: 15px; margin-top: 20px; }

/* â•â•â• CONTACT â•â•â• */
.contact { background: var(--bg-white); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 44px; height: 44px; background: var(--bg); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--border-teal); color: var(--primary); }
.contact-icon svg { width: 20px; height: 20px; }
.contact-detail { font-size: 14px; color: var(--text-dark); line-height: 1.7; }
.contact-detail strong { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--primary-dark); margin-bottom: 2px; }
.contact-detail a { color: var(--primary); text-decoration: none; font-weight: 500; transition: color var(--transition); }
.contact-detail a:hover { color: var(--primary-dark); }
.map-container { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* â•â•â• FOOTER â•â•â• */
footer { background: var(--text-dark); padding: 56px 52px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { width: 36px; height: 36px; border-radius: var(--radius-sm); object-fit: contain; }
.footer-brand-name { font-family: var(--font-heading); font-size: 15px; font-weight: 600; color: white; }
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.7; }
.footer-socials { display: flex; gap: 10px; margin-top: 8px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background var(--transition); text-decoration: none; color: rgba(255,255,255,0.6); }
.social-btn:hover { background: var(--primary); color: white; }
.social-btn svg { width: 16px; height: 16px; }
.footer-col h4 { font-family: var(--font-heading); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { text-decoration: none; font-size: 14px; color: rgba(255,255,255,0.6); transition: color var(--transition); cursor: pointer; }
.footer-col a:hover { color: var(--secondary); }
.footer-bottom { background: rgba(0,0,0,0.25); padding: 18px 52px; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom span { font-size: 12px; color: rgba(255,255,255,0.25); }

/* â•â•â• MODAL â•â•â• */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(15,23,42,0.5); backdrop-filter: blur(8px); z-index: 200; justify-content: center; align-items: center; animation: fadeIn 0.2s ease; }
.modal-overlay.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal-box { background: white; border-radius: var(--radius-xl); padding: 40px 36px; max-width: 620px; width: 92%; position: relative; box-shadow: var(--shadow-xl); animation: modalSlide 0.3s ease; max-height: 85vh; overflow-y: auto; transition: max-width 0.3s ease; }
@keyframes modalSlide { from { opacity: 0; transform: translateY(16px) scale(0.97); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--text-muted); transition: background var(--transition), color var(--transition); }
.modal-close:hover { background: var(--border); color: var(--text-dark); }
.modal-close svg { width: 18px; height: 18px; }
.modal-icon { width: 52px; height: 52px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; background: rgba(8,145,178,0.1); color: var(--primary); }
.modal-icon svg { width: 24px; height: 24px; }
.modal-title { font-family: var(--font-heading); font-size: 24px; font-weight: 700; color: var(--text-dark); margin-bottom: 12px; }
.modal-desc { font-size: 14px; color: var(--text-muted); line-height: 1.8; }
.modal-desc ul { list-style: none; margin-top: 12px; }
.modal-desc ul li { padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.modal-desc ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.modal-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; background: var(--primary); color: white; padding: 12px 24px; border-radius: var(--radius-full); font-size: 14px; font-weight: 600; text-decoration: none; transition: background var(--transition); cursor: pointer; }
.modal-cta:hover { background: var(--primary-dark); }

/* â•â•â• COLLAPSIBLE PHOTO GALLERY â•â•â• */
.collapsible-gallery-section {
  text-align: center;
}
.collapsible-gallery-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.collapsible-gallery-toggle:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.collapsible-gallery-toggle.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(8,145,178,0.3);
}
.collapsible-gallery-toggle.active .collapsible-gallery-chevron {
  transform: rotate(180deg);
}
.collapsible-gallery-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.collapsible-gallery-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, margin 0.4s ease;
  opacity: 0;
  margin-top: 0;
}
.collapsible-gallery-body.open {
  max-height: 3000px;
  opacity: 1;
  margin-top: 24px;
}
.collapsible-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 4px;
}
.collapsible-gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.collapsible-gallery-grid img:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
/* Gallery Vibe Text */
.gallery-vibe-text {
  text-align: center;
  padding: 20px 28px 24px;
  background: linear-gradient(135deg, rgba(8,145,178,0.05), rgba(34,197,94,0.04));
  border: 1.5px solid rgba(8,145,178,0.12);
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
}
.gallery-vibe-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto;
  font-style: italic;
}

/* Video Wrapper â€” smaller video with overlay text */
.collapsible-gallery-video-wrap {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border);
  background: linear-gradient(135deg, #0F172A, var(--primary-darker));
}
.gallery-video-overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 32px;
  color: white;
}
.gallery-video-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.gallery-video-overlay p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

.collapsible-gallery-video {
  overflow: hidden;
  position: relative;
}
.collapsible-gallery-video video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 200px;
}

/* â•â•â• SCROLL REVEAL â•â•â• */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* â•â•â• REDUCED MOTION â•â•â• */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” LARGE DESKTOP (1280px+)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (min-width: 1280px) {
  section { padding: 100px 80px; }
  .hero { padding: 60px 80px; }
  .quick-bar { margin: -40px 80px 0; }
  footer { padding: 56px 80px; }
  .footer-bottom { padding: 18px 80px; }
  .newsletter-section { padding: 80px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” TABLET LANDSCAPE (1024px)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 1024px) {
  /* Navbar — switch to hamburger on tablets */
  .navbar { padding: 0 20px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .mobile-menu { display: none; top: 80px; }
  .mobile-menu.active { display: flex; }

  section { padding: 80px 32px; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 32px 80px;
    gap: 40px;
    text-align: center;
  }
  .hero-content { display: flex; flex-direction: column; align-items: center; }
  .hero p { max-width: 560px; }
  .hero-actions { justify-content: center; }
  .hero-visual { max-width: 560px; margin: 0 auto; width: 100%; }
  .quick-bar { margin: -40px 32px 0; grid-template-columns: repeat(2, 1fr) !important; }
  .about, .vision, .contact, .telecare-section { grid-template-columns: 1fr; gap: 40px; }
  .about { text-align: center; }
  .about .section-label { justify-content: center; }
  .about-stats { max-width: 480px; margin-left: auto; margin-right: auto; }
  .vision { text-align: center; }
  .vision .section-label { justify-content: center; }
  .pillars { max-width: 540px; margin: 32px auto 0; text-align: left; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr) !important; }
  /* Care stages tabs */
  .care-panel-inner { grid-template-columns: 1fr; min-height: auto; }
  .care-panel-gallery { min-height: 280px; }
  .care-panel-text { padding: 32px 28px; }
  /* Tour (legacy) */
  .tour-grid { grid-template-columns: 1fr; }
  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; }
  /* Billing */
  .billing-logos { gap: 32px; }
  /* Schedule */
  .schedule-grid { grid-template-columns: repeat(4, 1fr); }
  /* Doctors */
  .doctors-grid { gap: 48px 24px; }
  .doctors-group-label { margin: 48px 0 56px; }
  /* Packages */
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  /* Newsletter */
  .newsletter-section { padding: 64px 32px; }
  .newsletter-form { flex-direction: column; }
  /* Footer */
  footer { grid-template-columns: 1fr 1fr; padding: 48px 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { padding: 18px 32px; }
  .contact { text-align: left; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” TABLET PORTRAIT (768px)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 768px) {
  /* Navbar adjustments for smaller tablets/phones */
  .navbar { top: 8px; left: 12px; right: 12px; padding: 0 16px; height: 58px; }
  .mobile-menu { top: 74px; left: 12px; right: 12px; }

  /* Sections */
  section { padding: 64px 20px; }
  h2 { font-size: clamp(24px, 6vw, 36px); }

  /* Hero */
  .hero {
    padding: 28px 20px 56px;
    margin-top: 74px;
    gap: 32px;
    text-align: center;
  }
  .hero-badge span { font-size: 11px; }
  .hero p { font-size: 15px; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; padding: 15px 20px; }
  .hero-actions { flex-direction: column; width: 100%; max-width: 320px; }

  /* Quick bar */
  .quick-bar {
    grid-template-columns: repeat(2, 1fr) !important;
    margin: 0 20px;
    margin-top: 24px;
    border-radius: var(--radius-md);
  }
  .quick-item { padding: 18px 20px; }
  .quick-sub { display: none; }

  /* About */
  .about { text-align: center; }
  .about .section-label { justify-content: center; }
  .about-stats { grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
  .stat-card { padding: 16px; }
  .stat-num { font-size: 26px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .services-header .btn-primary { width: auto; }

  /* Collapsible gallery responsive */
  .collapsible-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .collapsible-gallery-toggle { font-size: 14px; padding: 14px 24px; }
  .collapsible-gallery-video-wrap { grid-template-columns: 1fr; }
  .gallery-video-overlay { padding: 20px 24px; text-align: center; }
  .gallery-video-badge { justify-content: center; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px; margin-top: 32px; }

  /* Specialist finder */
  .sf-intro-hero { padding: 36px 24px 32px; }
  .sf-intro-title { font-size: 24px; }
  .sf-quiz-header { padding: 24px 20px 0; }
  .sf-quiz-options { padding: 0 20px 24px; }
  .sf-quiz-footer { padding: 0 20px 24px; }
  .sf-result-banner { padding: 28px 20px 20px; flex-direction: column; text-align: center; }
  .sf-result-when { margin: 20px 20px 0; }
  .sf-result-section { padding: 16px 20px 0; }
  .sf-result-services { grid-template-columns: 1fr; }
  .sf-result-actions { padding: 20px 20px 24px; flex-direction: column; }

  /* Care stages */
  .care-tabs { gap: 8px; }
  .care-tab { padding: 12px 18px; font-size: 13px; gap: 8px; }
  .care-tab-emoji { font-size: 18px; }
  .care-panel-inner { grid-template-columns: 1fr; min-height: auto; }
  .care-panel-text { padding: 28px 24px; }
  .care-panel-text h3 { font-size: 22px; }
  .care-panel-gallery { min-height: 240px; }
  .care-gallery-main img { min-height: 200px; }

  /* Tour (legacy) */
  .tour-images { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Vision */
  .vision { text-align: center; }
  .vision .section-label { justify-content: center; }
  .pillars { text-align: left; }

  /* Doctors */
  .doctors-group-label { margin: 40px 0 48px; font-size: 10px; }
  .doctors-grid {
    gap: 48px 16px !important;
    max-width: 100%;
  }
  .doctor-avatar-ring { width: 118px; height: 118px; }
  .doctor-avatar-wrap { margin-bottom: -34px; }
  .doctor-info { padding: 42px 16px 20px; border-radius: 16px; }
  .doctor-name { font-size: 13.5px; }
  .doctor-spec { font-size: 11px; padding: 3px 10px; }
  .doctor-creds { font-size: 10px; }

  /* Billing */
  .billing-logos { gap: 24px; }

  /* Schedule */
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-card { border-bottom: 1px solid var(--border); }
  .schedule-card:nth-child(2) { border-right: none; }

  /* Packages */
  .pkg-tabs { gap: 6px; }
  .pkg-tab { padding: 10px 18px; font-size: 13px; }
  .pkg-grid { grid-template-columns: 1fr; }

  /* Newsletter */
  .newsletter-section { padding: 56px 20px; }

  /* Contact */
  .contact { gap: 32px; }
  .map-container { aspect-ratio: 16/9; }

  /* Footer */
  footer { grid-template-columns: 1fr 1fr; padding: 40px 20px; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding: 16px 20px; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” MOBILE (480px)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 480px) {
  section { padding: 56px 16px; }

  /* Hero */
  .hero { padding: 24px 16px 48px; }
  .hero-badge { flex-wrap: wrap; justify-content: center; text-align: center; }
  .hero-actions { max-width: 100%; }

  /* Collapsible gallery small */
  .collapsible-gallery-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 6px; }
  .collapsible-gallery-toggle { font-size: 13px; padding: 12px 20px; gap: 8px; }
  .collapsible-gallery-video-wrap { grid-template-columns: 1fr; }
  .gallery-video-overlay { padding: 16px 20px; }
  .gallery-video-badge { font-size: 14px; }
  .gallery-vibe-text { padding: 16px 20px; }
  .gallery-vibe-text p { font-size: 13px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }

  /* Billing */
  .billing-logos { gap: 16px; }
  .billing-item img { height: 44px; width: 44px; }
  .billing-box h3 { font-size: 12px; }

  /* Schedule */
  .schedule-grid { grid-template-columns: 1fr 1fr; }
  .schedule-card { padding: 16px 12px; }
  .schedule-card-time { font-size: 13px; }
  .schedule-card-header { font-size: 10px; }
  .schedule-disclaimer { font-size: 11px; }

  /* Life stages (legacy) */
  .stage-gallery { grid-template-columns: 1fr; }
  .stage-content h3 { font-size: 22px; }

  /* About stats */
  .about-stats { grid-template-columns: 1fr 1fr; gap: 10px; }

  /* Doctors mobile carousel */
  .doctors-grid {
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    gap: 16px !important;
    padding: 0 8px 24px !important;
    justify-content: flex-start !important;
    max-width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .doctors-grid::-webkit-scrollbar { display: none; }
  .doctors-grid .doctor-card {
    width: 220px !important;
    min-width: 220px;
    flex-shrink: 0;
    scroll-snap-align: center;
  }
  .doctor-card .doctor-avatar-ring { width: 100px; height: 100px; }
  .doctor-card .doctor-avatar-wrap { margin-bottom: -30px; }
  .doctor-card .doctor-info { padding: 36px 12px 16px; border-radius: 14px; }
  .doctor-card .doctor-name { font-size: 13px; }
  .doctor-card .doctor-spec { font-size: 10.5px; padding: 3px 8px; }
  .doctor-card .doctor-creds { font-size: 9px; }
  .doctor-card .doctor-sched { font-size: 10px; }
  .doctors-group-label { margin: 28px 0 32px; font-size: 10px; padding: 7px 16px; }

  /* Footer */
  footer { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }

  /* Quick bar */
  .quick-bar { margin: 20px 16px 0; }
  .quick-item { min-width: 160px; }

  /* Modal */
  .modal-box { padding: 28px 20px; max-width: 620px !important; }
  .modal-desc div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }

  /* Popup newsletter â€” mobile optimized */
  .nl-popup-inner {
    flex-direction: column;
    padding: 16px 16px 14px;
    gap: 8px;
    align-items: stretch;
  }
  .nl-popup-icon { display: none; }
  .nl-popup-text { text-align: center; }
  .nl-popup-text strong { font-size: 14px; }
  .nl-popup-text span { font-size: 11px; display: block; margin-top: 2px; color: rgba(255,255,255,0.55); }
  .nl-popup-form {
    width: 100%;
    flex-direction: row;
    gap: 6px;
  }
  .nl-popup-input {
    flex: 1;
    width: auto;
    min-width: 0;
    padding: 11px 14px;
    font-size: 13px;
  }
  .nl-popup-btn { padding: 11px 18px; font-size: 12px; }
  .nl-popup-close { top: 6px; right: 6px; width: 24px; height: 24px; }

  /* Care stages mobile */
  .care-tabs { flex-direction: column; gap: 8px; align-items: stretch; }
  .care-tab { justify-content: center; padding: 14px 20px; }
  .care-panel-text { padding: 24px 20px; }
  .care-panel-text h3 { font-size: 20px; }
  .care-panel-list li { font-size: 12px; gap: 8px; }
  .care-panel-list li::before { width: 18px; height: 18px; font-size: 9px; }
  .care-gallery-main img { min-height: 180px; }
  .care-gallery-side img { aspect-ratio: 16/9; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   RESPONSIVE â€” TINY (360px and below)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media (max-width: 360px) {
  .navbar { left: 8px; right: 8px; padding: 0 12px; }
  section { padding: 48px 12px; }
  .hero { padding: 20px 12px 40px; }
  .doctor-avatar-ring { width: 100px; height: 100px; }
  .quick-bar { margin: 16px 12px 0; }
}

/* â•â•â• BOOKING MODAL â•â•â• */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15,23,42,0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 24px;
}
.booking-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.booking-modal-box {
  background: white;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
  overflow: hidden;
}
.booking-modal-overlay.active .booking-modal-box {
  transform: translateY(0) scale(1);
}

/* Close button */
.booking-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(15,23,42,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.booking-modal-close svg {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}
.booking-modal-close:hover {
  background: rgba(239,68,68,0.1);
}
.booking-modal-close:hover svg {
  color: #EF4444;
}

/* Modal header */
.booking-modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px 20px;
  background: linear-gradient(135deg, rgba(8,145,178,0.06) 0%, rgba(34,211,238,0.04) 100%);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.booking-modal-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
}
.booking-modal-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.booking-modal-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.booking-modal-header p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Scrollable body */
.booking-modal-body {
  padding: 28px 32px 32px;
  overflow-y: auto;
  flex: 1;
}

.booking-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.booking-field label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.booking-field label svg {
  color: var(--primary);
  flex-shrink: 0;
}
.bf-required {
  color: #EF4444;
  font-weight: 700;
}

.booking-field input[type="text"],
.booking-field input[type="tel"],
.booking-field input[type="email"],
.booking-field input[type="date"],
.booking-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: white;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.booking-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.booking-field input:focus,
.booking-field select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(8,145,178,0.1);
  background: rgba(240,253,250,0.5);
}
.booking-field input::placeholder {
  color: var(--text-light);
  font-weight: 400;
}
.booking-field input[type="date"] {
  cursor: pointer;
}

/* Radio buttons */
.booking-radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.booking-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
  background: white;
}
.booking-radio:hover {
  border-color: var(--primary);
  background: rgba(8,145,178,0.03);
}
.booking-radio input[type="radio"] {
  display: none;
}
.booking-radio-mark {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  position: relative;
  transition: all 0.2s ease;
}
.booking-radio input[type="radio"]:checked + .booking-radio-mark {
  border-color: var(--primary);
  background: var(--primary);
  box-shadow: inset 0 0 0 3px white;
}
.booking-radio input[type="radio"]:checked ~ .booking-radio-text {
  color: var(--primary);
  font-weight: 600;
}
.booking-radio-text {
  font-size: 13.5px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.3;
}
.booking-radio-text small {
  font-weight: 400;
  color: var(--text-light);
  font-size: 12px;
}
.booking-radio:has(input:checked) {
  border-color: var(--primary);
  background: rgba(8,145,178,0.04);
}

/* Consent checkbox */
.booking-consent {
  margin: 8px 0 24px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: rgba(8,145,178,0.04);
  border: 1.5px solid rgba(8,145,178,0.12);
}
.booking-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}
.booking-checkbox input[type="checkbox"] {
  display: none;
}
.booking-checkbox-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  background: white;
}
.booking-checkbox-mark svg {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}
.booking-checkbox input:checked + .booking-checkbox-mark {
  background: var(--primary);
  border-color: var(--primary);
}
.booking-checkbox input:checked + .booking-checkbox-mark svg {
  opacity: 1;
  transform: scale(1);
}
.booking-checkbox-text {
  font-size: 13.5px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}

/* UTZ Subcategory Highlight */
.utz-highlight-row {
  background: linear-gradient(135deg, rgba(8,145,178,0.06) 0%, rgba(34,211,238,0.04) 100%);
  border: 1.5px solid rgba(8,145,178,0.2);
  border-radius: 14px;
  padding: 18px 20px 14px !important;
  animation: utzPulse 0.4s ease;
}
.utz-highlight-row .booking-field { width: 100%; }
.utz-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary-dark, #0E7490);
  background: rgba(8,145,178,0.08);
  border-radius: 8px;
  padding: 8px 14px;
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.utz-banner svg { flex-shrink: 0; color: var(--primary, #0891B2); }
@keyframes utzPulse {
  0% { transform: scale(0.98); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Submit */
.booking-submit-wrap {
  text-align: center;
}
.booking-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  padding: 16px 44px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(8,145,178,0.25);
}
.booking-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(8,145,178,0.35);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
}
.booking-submit-btn:active {
  transform: translateY(-1px);
}
.booking-submit-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.booking-disclaimer {
  font-size: 12.5px;
  color: var(--text-light);
  margin-top: 14px;
  line-height: 1.5;
}

/* Success state */
.booking-success {
  text-align: center;
  padding: 48px 32px;
  animation: bookingFadeIn 0.5s ease;
}
@keyframes bookingFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.booking-success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(16,185,129,0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
  animation: bookingPulse 2s ease infinite;
}
@keyframes bookingPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.2); }
  50% { box-shadow: 0 0 0 16px rgba(34,197,94,0); }
}
.booking-success h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.booking-success p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 400px;
  margin: 0 auto 24px;
}
.booking-another-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border);
  background: white;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}
.booking-another-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Responsive */
@media (max-width: 768px) {
  .booking-modal-overlay { padding: 12px; }
  .booking-modal-box { max-height: 95vh; }
  .booking-modal-header { padding: 22px 20px 16px; }
  .booking-modal-body { padding: 20px 20px 24px; }
  .booking-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
}

/* Footer bottom padding to account for sticky popup */
.footer-bottom { padding-bottom: 80px; }

/* Quick bar single column on small phones */
@media (max-width: 480px) {
  .quick-bar { grid-template-columns: 1fr !important; }
}

/* ── ONLINE CALENDAR ── */
.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}
.legend-color {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  border: 1.5px solid;
}
.legend-color.walk-in { background: var(--teal-light); border-color: var(--teal-light-border); }
.legend-color.appt { background: var(--teal-med); border-color: var(--teal-med-border); }
.legend-color.both { background: var(--teal-dark); border-color: var(--teal-dark-border); }

.calendar-grid-wrap {
  overflow-x: auto;
  padding-bottom: 16px;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  min-width: 900px;
}
.calendar-col {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.calendar-day-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}
.calendar-slot {
  border-radius: var(--radius-sm);
  padding: 12px;
  cursor: pointer;
  border: 1.5px solid;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.calendar-separator {
  height: 2px;
  background: var(--border);
  margin: 8px 0;
  border-radius: 2px;
}
.calendar-slot:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.calendar-slot-time {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.calendar-slot-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}
.calendar-slot-role {
  font-size: 11px;
  opacity: 0.85;
  line-height: 1.2;
}
.slot-walk-in {
  background: var(--teal-light);
  border-color: var(--teal-light-border);
  color: var(--teal-light-text);
}
.slot-appt {
  background: var(--teal-med);
  border-color: var(--teal-med-border);
  color: var(--teal-med-text);
}
.slot-both {
  background: var(--teal-dark);
  border-color: var(--teal-dark-border);
  color: var(--teal-dark-text);
}

/* DOCTOR MODAL */
.doctor-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15,23,42,0.6);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 24px;
}
.doctor-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.doctor-modal-box {
  background: white;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 400px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1);
  overflow: hidden;
  text-align: center;
}
.doctor-modal-overlay.active .doctor-modal-box {
  transform: translateY(0) scale(1);
}
.doctor-modal-content {
  padding: 32px 24px 24px;
}
.doctor-modal-content img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--bg-alt);
  margin: 0 auto 16px;
  display: block;
}
.doctor-modal-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

/* ═══ GOOGLE REVIEWS SECTION ═══ */
.google-reviews-section {
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg) 40%, var(--bg-white) 100%);
  padding-bottom: 80px;
  overflow: hidden;
}

.reviews-google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: white;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-top: 16px;
  margin-bottom: 8px;
}
.reviews-google-badge span {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}
.reviews-stars {
  color: #F5A623;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
}
.reviews-count {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--text-light) !important;
}

/* Marquee wrapper */
.reviews-marquee-wrapper {
  position: relative;
  margin-top: 40px;
  width: 100%;
}

.reviews-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.reviews-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: reviewsScroll 45s linear infinite;
  padding: 16px 0;
  align-items: stretch;
}

.reviews-marquee:hover .reviews-marquee-track {
  animation-play-state: paused;
}

@keyframes reviewsScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.3333%); }
}

/* Fade edges */
.reviews-fade-left,
.reviews-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.reviews-fade-left {
  left: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 100%);
}
.reviews-fade-right {
  right: 0;
  background: linear-gradient(270deg, var(--bg) 0%, transparent 100%);
}

/* Review cards */
.review-card {
  flex-shrink: 0;
  width: 380px;
  background: white;
  border-radius: var(--radius-xl);
  padding: 28px 24px 24px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.35s ease, border-color 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(8,145,178,0.25);
}
.review-card:hover::before {
  opacity: 1;
}

/* Card size variants — width differences for visual variety */
.review-card--short { width: 320px; }
.review-card--medium { width: 380px; }
.review-card--long { width: 440px; }

/* Card header */
.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(8,145,178,0.2);
}

.review-meta {
  flex: 1;
  min-width: 0;
}

.review-author {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-date {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
}

.review-stars-sm {
  color: #F5A623;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}

.review-date span {
  font-size: 12px;
  color: var(--text-light);
}

.review-platform-icon {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.review-card:hover .review-platform-icon {
  opacity: 1;
}

/* Card body */
.review-body {
  flex: 1;
  overflow: hidden;
}

.review-body p {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 10px;
}
.review-body p:last-child {
  margin-bottom: 0;
}

.review-body strong {
  color: var(--primary-dark);
  font-weight: 700;
}

/* NEW badge */
.review-badge-new {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(34,197,94,0.12), rgba(34,211,238,0.12));
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(34,197,94,0.2);
}

/* CTA link */
.reviews-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(8,145,178,0.2);
  background: rgba(8,145,178,0.04);
  transition: all 0.3s ease;
}
.reviews-cta-link:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8,145,178,0.25);
}
.reviews-cta-link svg {
  transition: transform 0.3s ease;
}
.reviews-cta-link:hover svg {
  transform: translate(2px, -2px);
  stroke: white;
}

/* Responsive */
@media (max-width: 768px) {
  .review-card,
  .review-card--short,
  .review-card--medium,
  .review-card--long {
    width: 300px;
  }
  .reviews-fade-left,
  .reviews-fade-right {
    width: 40px;
  }
  .reviews-marquee-track {
    gap: 16px;
  }
  .google-reviews-section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
