﻿/* ============================================
   MEDITRUST HOSPITAL — main.css
   Combined: style.css + about.css + booking.css + departments.css + doctors.css
   ============================================ */

/* ============================================
   MEDITRUST HOSPITAL â€” Global Tokens
   ============================================ */
:root {
  --hero-bg:    #0A0F1E;
  --accent:     #4ECDC4;
  --accent-2:   #2563EB;
  --teal:       #0D9488;
  --teal-light: #F0FDFA;
  --font-head:  'Syne', sans-serif;
  --font-body:  'Inter', sans-serif;
  --text-dark:  #0F172A;
  --text-mid:   #475569;
  --text-muted: #94A3B8;
  --border:     #E2E8F0;
  --radius-card: 20px;`n  --dark:       #0F172A;`n  --blue:       #2563EB;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: white;
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announce-bar {
  background: var(--teal);
  color: white;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.announce-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: white;
  flex-shrink: 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 36px;
  left: 0; right: 0;
  z-index: 999;
  transition: top 0.3s ease, background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  top: 0;
  background: rgba(10,15,30,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: white;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px; height: 36px;
  background: rgba(78,205,196,0.15);
  border: 1px solid rgba(78,205,196,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ECDC4;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.08); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-emergency {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #FCA5A5;
  text-decoration: none;
}
.emergency-dot-sm {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #EF4444;
  animation: pulse-red 2s ease-in-out infinite;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.2s;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #0A0F1E;
  padding: 80px 32px 40px;
  flex-direction: column;
  gap: 8px;
  z-index: 998;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #4ECDC4, #2563EB);
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { transform: scale(1.04); box-shadow: 0 12px 32px rgba(78,205,196,0.35); }
.btn-lg { padding: 15px 30px; font-size: 15px; }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  background: transparent;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); color: white; }

.btn-outline-teal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-outline-teal:hover { background: var(--teal); color: white; }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--hero-bg);
  background-image:
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(78,205,196,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 15% 70%, rgba(37,99,235,0.1) 0%, transparent 50%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: 96px;
}
.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-orb--teal {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(78,205,196,0.22) 0%, transparent 70%);
  right: -100px; top: 50%;
  transform: translateY(-50%);
}
.hero-glow-orb--blue {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  left: 20%; bottom: -100px;
}
.hero-content {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  position: relative;
  z-index: 1;
}
.hero-announce-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(78,205,196,0.1);
  border: 1px solid rgba(78,205,196,0.3);
  color: #4ECDC4;
  padding: 7px 18px;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}
.announce-dot-sm {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4ECDC4;
  flex-shrink: 0;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 800;
  color: white;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.dim { color: rgba(255,255,255,0.32); }
.accent-gradient {
  background: linear-gradient(135deg, #4ECDC4 0%, #2563EB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar-stack { display: flex; }
.avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #0A0F1E;
  margin-left: -10px;
}
.avatar:first-child { margin-left: 0; }
.avatar-1 { background: linear-gradient(135deg,#f87171,#ef4444); }
.avatar-2 { background: linear-gradient(135deg,#60a5fa,#3b82f6); }
.avatar-3 { background: linear-gradient(135deg,#34d399,#10b981); }
.avatar-4 { background: linear-gradient(135deg,#a78bfa,#8b5cf6); }
.avatar-5 { background: linear-gradient(135deg,#fbbf24,#f59e0b); }
.proof-text { font-size: 13px; color: rgba(255,255,255,0.5); }
.proof-text strong { color: rgba(255,255,255,0.9); }

/* Hero visual â€” rings */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 460px;
}
.hero-orb-visual {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78,205,196,0.18) 0%, rgba(37,99,235,0.08) 50%, transparent 70%);
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(78,205,196,0.15);
  animation: ring-spin 20s linear infinite;
}
.hero-ring--1 { width: 320px; height: 320px; }
.hero-ring--2 { width: 440px; height: 440px; border-color: rgba(37,99,235,0.1); animation-duration: 30s; animation-direction: reverse; }
@keyframes ring-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-center-icon {
  position: absolute;
  width: 100px; height: 100px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(78,205,196,0.25);
  border-radius: 28px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

/* FLOATING CARDS */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 14px 18px;
  color: white;
  animation: float-bob 3s ease-in-out infinite alternate;
  z-index: 5;
}
@keyframes float-bob {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}
.float-card--doctor { display: flex; align-items: center; gap: 12px; animation-delay: 0.8s; }
.float-card--live { display: flex; align-items: center; gap: 10px; animation-delay: 1.5s; font-size: 13px; }
.float-card--live strong { display: block; font-size: 13px; margin-bottom: 2px; }
.float-card--live span { font-size: 12px; color: rgba(255,255,255,0.6); }
.float-card--stat { display: flex; align-items: center; gap: 12px; animation-delay: 0.3s; }
.float-card--rating { animation-delay: 2s; text-align: center; }
.float-card-icon {
  width: 36px; height: 36px;
  background: rgba(78,205,196,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-stat-num { display: block; font-size: 22px; font-weight: 700; color: #4ECDC4; }
.float-stat-label { font-size: 12px; color: rgba(255,255,255,0.6); margin-top: 2px; display: block; }
.float-doc-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg,#4ECDC4,#2563EB);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.float-doc-info strong { display: block; font-size: 14px; font-weight: 700; }
.float-doc-info span { display: block; font-size: 12px; color: rgba(255,255,255,0.6); }
.float-rating { display: block; font-size: 12px; color: #F59E0B; margin-top: 2px; }
.float-stars { color: #F59E0B; font-size: 14px; margin-bottom: 4px; }
.float-rating-text { font-size: 18px; font-weight: 700; }
.float-rating-sub { font-size: 11px; color: rgba(255,255,255,0.5); }
.live-dot {
  width: 8px; height: 8px;
  background: #22C55E;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-green 2s ease-in-out infinite;
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: white;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid var(--border);
  padding: 28px 40px;
}
.trust-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.trust-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.trust-badge {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  padding: 6px 16px;
  border: 1.5px solid var(--border);
  border-radius: 9999px;
  transition: all 0.2s;
}
.trust-badge:hover { color: var(--teal); border-color: var(--teal); }

/* ============================================
   BELOW-HERO CARDS
   ============================================ */
.below-hero-cards {
  padding: 0 40px;
  margin-top: -32px;
  position: relative;
  z-index: 10;
  background: transparent;
}
.bhc-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bhc-card {
  background: white;
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.09);
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--border);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.bhc-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,0.11); }
.bhc-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0D9488, #0891B2);
  flex-shrink: 0;
  border: 3px solid var(--teal-light);
  display: flex; align-items: center; justify-content: center;
}
.bhc-card-body { flex: 1; }
.bhc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 6px;
}
.bhc-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22C55E;
  animation: pulse-green 2s ease-in-out infinite;
}
.bhc-title { font-size: 15px; font-weight: 700; color: var(--text-dark); line-height: 1.3; margin-bottom: 4px; }
.bhc-desc { font-size: 13px; color: var(--text-mid); line-height: 1.5; margin-bottom: 10px; }
.bhc-link { font-size: 13px; font-weight: 600; color: var(--teal); text-decoration: none; }
.bhc-card--book { background: #F0FDFA; border-color: #CCFBF1; }
.bhc-book-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.bhc-btn-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #0D9488, #0891B2);
  color: white;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.bhc-btn-book:hover { transform: scale(1.03); box-shadow: 0 8px 20px rgba(13,148,136,0.3); }

/* ============================================
   SECTION SHARED
   ============================================ */
.section-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section-header { text-align: center; max-width: 620px; margin: 0 auto 64px; }
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.eyebrow--light { color: rgba(78,205,196,0.9); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title--light { color: white; }
.title-accent { font-style: italic; color: #4ECDC4; }
.section-sub { font-size: 16px; color: var(--text-mid); line-height: 1.65; }
.section-cta-center { text-align: center; margin-top: 48px; }

/* ============================================
   DEPARTMENTS
   ============================================ */
.departments-section {
  padding: 100px 0;
  background: linear-gradient(160deg, #F8FAFC 0%, #EFF6FF 100%);
}
.dept-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.1); border-color: rgba(13,148,136,0.3); }
.service-icon {
  width: 52px; height: 52px;
  background: #F0FDFA;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--teal);
}
.service-title { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; line-height: 1.3; }
.service-desc { font-size: 14px; color: var(--text-mid); line-height: 1.55; margin-bottom: 16px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.service-link { font-size: 13px; font-weight: 600; color: var(--teal); text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s ease; }
.service-link:hover { gap: 8px; }

/* ============================================
   STATS COUNTER
   ============================================ */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0D9488 0%, #0891B2 100%);
}
.stats-inner { max-width: 1000px; margin: 0 auto; padding: 0 40px; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item { text-align: center; padding: 24px 20px; position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%;
  height: 60%; width: 1px;
  background: rgba(255,255,255,0.2);
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 800;
  color: white;
  display: inline;
  line-height: 1;
}
.stat-unit {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  display: inline;
}
.stat-name { font-size: 14px; color: rgba(255,255,255,0.7); margin-top: 8px; font-weight: 500; }

/* ============================================
   COLORFUL CATEGORY CARDS
   ============================================ */
.color-cards-section { padding: 60px 0; background: #F0F2F8; }
.color-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.cc-card { border-radius: 24px; padding: 36px 28px; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.cc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(0,0,0,0.12); }
.cc-card--coral { background: #FECDD3; }
.cc-card--teal  { background: #99F6E4; }
.cc-card--slate { background: #CBD5E1; }
.cc-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.5);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.cc-title { font-size: 20px; font-weight: 800; color: var(--text-dark); line-height: 1.25; margin-bottom: 12px; }
.cc-desc { font-size: 14px; color: rgba(15,23,42,0.65); line-height: 1.65; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.cc-link { font-size: 13px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s ease; }
.cc-link:hover { gap: 8px; }
.cc-link--coral { color: #9F1239; }
.cc-link--teal  { color: #0F766E; }
.cc-link--slate { color: #334155; }

/* ============================================
   DOCTORS
   ============================================ */
.doctors-section { padding: 100px 0; background: white; }
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.doctor-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.doctor-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }
.doctor-photo-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  display: flex; align-items: flex-end; justify-content: center;
}
.doctor-photo-wrap--teal   { background: linear-gradient(160deg,#F0FDFA,#CCFBF1); }
.doctor-photo-wrap--blue   { background: linear-gradient(160deg,#EFF6FF,#BFDBFE); }
.doctor-photo-wrap--purple { background: linear-gradient(160deg,#F5F3FF,#DDD6FE); }
.doctor-photo-wrap--green  { background: linear-gradient(160deg,#F0FDF4,#BBF7D0); }
.doctor-placeholder {
  width: 130px; height: 170px;
  border-radius: 18px 18px 0 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}
.doctor-placeholder svg { width: 130px; height: 170px; display: block; }
.doctor-rating {
  position: absolute;
  bottom: 12px; right: 12px;
  background: rgba(255,255,255,0.95);
  border-radius: 9999px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #F59E0B;
}
.doctor-info { padding: 20px; }
.doctor-name { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.doctor-specialty { display: block; font-size: 13px; color: var(--teal); font-weight: 500; margin-bottom: 2px; }
.doctor-exp { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.doctor-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 14px; }
.tag { background: #F1F5F9; color: var(--text-mid); padding: 3px 9px; border-radius: 9999px; font-size: 11px; font-weight: 500; }
.doctor-actions { display: flex; gap: 8px; }
.btn-book {
  flex: 1;
  background: linear-gradient(135deg, #0D9488, #0891B2);
  color: white;
  padding: 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.btn-book:hover { transform: scale(1.03); }
.btn-profile {
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-profile:hover { border-color: var(--teal); color: var(--teal); }

/* ============================================
   TAB SECTION
   ============================================ */
.tab-section { padding: 100px 0; background: #F8FAFC; }
.tab-pills {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 40px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 6px;
  width: fit-content;
}
.tab-pill {
  padding: 10px 24px;
  border-radius: 9999px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all 0.2s ease;
}
.tab-pill--active { background: var(--teal); color: white; box-shadow: 0 4px 12px rgba(13,148,136,0.3); }
.tab-pill:not(.tab-pill--active):hover { background: #F0FDFA; color: var(--teal); }
.tab-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.tab-card--blue { background: #EFF6FF; border-color: #BFDBFE; }
.tab-card--red  { background: #FFF1F2; border-color: #FECDD3; }
.tab-card h3 {
  font-family: var(--font-head);
  font-size: 26px; font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2; margin-bottom: 24px;
}
.tab-feature-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.tab-feature-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text-mid); line-height: 1.5; }
.tfl-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; margin-top: 7px; }
.tfl-dot--red { background: #EF4444; }
.tab-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #0D9488, #0891B2);
  color: white; padding: 12px 24px; border-radius: 10px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tab-cta:hover { transform: scale(1.03); box-shadow: 0 8px 20px rgba(13,148,136,0.3); }
.tab-cta--red { background: linear-gradient(135deg, #EF4444, #DC2626); }
.tab-cta--red:hover { box-shadow: 0 8px 20px rgba(239,68,68,0.3); }
.tab-mockup-card {
  background: #F8FAFC; border: 1px solid var(--border);
  border-radius: 20px; padding: 24px;
}
.tab-mock-header { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 16px; }
.tab-mock-row {
  background: white; border: 1px solid var(--border);
  border-radius: 12px; padding: 12px; margin-bottom: 10px;
}
.tab-mock-label { display: block; font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.tab-mock-value { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); }
.tab-mock-value--green { color: #059669; }
.tab-mock-metrics {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 10px;
  background: white; border: 1px solid var(--border); border-radius: 12px; padding: 12px;
}
.tmm-item span { display: block; font-size: 11px; color: var(--text-muted); margin-bottom: 2px; }
.tmm-item strong { font-size: 16px; font-weight: 700; color: var(--teal); display: block; }

/* ============================================
   PROCESS
   ============================================ */
.process-section { padding: 100px 0; background: var(--hero-bg); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  margin-top: 0;
}
.process-step { text-align: center; position: relative; }
.step-number {
  font-family: var(--font-head);
  font-size: 48px; font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1; margin-bottom: 16px;
}
.step-icon {
  width: 56px; height: 56px;
  background: rgba(78,205,196,0.1);
  border: 1px solid rgba(78,205,196,0.22);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: #4ECDC4;
}
.step-title { font-size: 17px; font-weight: 700; color: white; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: rgba(255,255,255,0.48); line-height: 1.65; }
.step-connector {
  position: absolute;
  top: 88px; right: -20px;
  width: 40px; height: 1px;
  background: linear-gradient(90deg, rgba(78,205,196,0.4), rgba(78,205,196,0.1));
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { padding: 100px 0; background: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial-card {
  background: white; border: 1px solid var(--border);
  border-radius: 20px; padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.av-initials { color: white; font-size: 13px; font-weight: 700; font-family: var(--font-body); line-height: 1; }
.ta-1 { background: linear-gradient(135deg,#f87171,#ef4444); }
.ta-2 { background: linear-gradient(135deg,#60a5fa,#3b82f6); }
.ta-3 { background: linear-gradient(135deg,#a78bfa,#8b5cf6); }
.testimonial-name { display: block; font-size: 14px; font-weight: 700; color: var(--text-dark); }
.testimonial-meta { display: block; font-size: 12px; color: var(--text-muted); }
.testimonial-stars { margin-left: auto; color: #F59E0B; font-size: 13px; flex-shrink: 0; }
.testimonial-quote { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; font-style: italic; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.testimonial-condition { display: flex; align-items: center; justify-content: space-between; }
.condition-tag {
  background: #F0FDFA; color: var(--teal);
  padding: 3px 10px; border-radius: 9999px;
  font-size: 11px; font-weight: 500;
}
.testimonial-date { font-size: 11px; color: #CBD5E1; }

/* ============================================
   CTA / BOOKING SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #0D9488 0%, #0891B2 60%, #2563EB 100%);
}
.cta-section-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(ellipse 80% 80% at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 60px; position: relative; z-index: 1;
}
.cta-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  color: white; padding: 5px 14px; border-radius: 9999px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.05em; margin-bottom: 20px;
}
.cta-headline {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px;
}
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.75); line-height: 1.65; margin-bottom: 32px; max-width: 480px; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-cta-primary {
  background: white; color: #0D9488;
  padding: 14px 28px; border-radius: 10px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-cta-primary:hover { transform: scale(1.04); box-shadow: 0 12px 32px rgba(0,0,0,0.2); }
.btn-cta-phone {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.4); color: white;
  padding: 14px 24px; border-radius: 10px;
  font-weight: 600; font-size: 15px; text-decoration: none;
  transition: all 0.2s ease;
}
.btn-cta-phone:hover { background: rgba(255,255,255,0.1); border-color: white; }

/* BOOKING FORM */
.cta-form { flex-shrink: 0; }
.appt-form-wrap {
  background: white; border: 1px solid var(--border);
  border-radius: 24px; padding: 32px; min-width: 360px;
}
.appt-form-title { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 20px; }
.appt-section { border: 1px solid var(--border); border-radius: 14px; margin-bottom: 10px; overflow: hidden; transition: border-color 0.2s; }
.appt-section--open { border-color: var(--teal); }
.appt-section-header {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; background: transparent; border: none; cursor: pointer;
}
.appt-section-label { font-size: 14px; font-weight: 600; color: var(--text-dark); }
.appt-chevron { color: var(--text-muted); transition: transform 0.2s ease; flex-shrink: 0; }
.appt-section--open .appt-chevron { transform: rotate(180deg); color: var(--teal); }
.appt-section-body { padding: 0 16px 16px; }
.appt-select, .appt-input {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 14px; color: var(--text-dark);
  background: #F8FAFC; outline: none;
  transition: border-color 0.2s; box-sizing: border-box;
  font-family: var(--font-body);
}
.appt-select:focus, .appt-input:focus { border-color: var(--teal); background: white; }
.appt-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, #0D9488, #0891B2);
  color: white; padding: 14px; border-radius: 12px; border: none;
  font-size: 15px; font-weight: 700; cursor: pointer; margin-top: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--font-body);
}
.appt-submit:hover { transform: scale(1.02); box-shadow: 0 8px 24px rgba(13,148,136,0.3); }
.appt-note {
  display: flex; align-items: flex-start; gap: 6px;
  font-size: 12px; color: var(--text-muted); margin-top: 12px; line-height: 1.5;
}
.appt-note svg { flex-shrink: 0; color: #22C55E; margin-top: 1px; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: #0A0F1E; color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-main {
  max-width: 1280px; margin: 0 auto; padding: 0 40px 60px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 48px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon {
  width: 34px; height: 34px;
  background: rgba(78,205,196,0.12);
  border: 1px solid rgba(78,205,196,0.25);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  color: #4ECDC4;
}
.footer-logo span { font-weight: 700; font-size: 17px; color: white; font-family: var(--font-head); }
.footer-tagline { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.45); margin-bottom: 24px; max-width: 240px; }
.footer-social { display: flex; gap: 10px; margin-bottom: 24px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55); text-decoration: none;
  transition: all 0.2s ease;
}
.social-link:hover { background: rgba(255,255,255,0.14); color: white; transform: translateY(-2px); }
.footer-accred { display: flex; gap: 8px; }
.footer-badge-text {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 3px 10px; border-radius: 6px;
}
.footer-col-title {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.9); margin-bottom: 20px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 14px; color: rgba(255,255,255,0.45); }
.contact-icon { flex-shrink: 0; margin-top: 2px; color: var(--teal); }
.contact-item a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.contact-item a:hover { color: white; }
.emergency-bar {
  display: flex; align-items: center; gap: 10px;
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.25);
  border-radius: 12px; padding: 12px 14px; margin-top: 8px;
}
.emergency-dot-red {
  width: 8px; height: 8px; background: #EF4444; border-radius: 50%;
  flex-shrink: 0; animation: pulse-red 2s ease-in-out infinite;
}
.emergency-bar strong { display: block; font-size: 12px; color: rgba(255,255,255,0.9); }
.emergency-bar a { display: block; font-size: 13px; font-weight: 700; color: #FCA5A5; text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: 1280px; margin: 0 auto; padding: 20px 40px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copyright { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%       { box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}
@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.5); }
  50%       { box-shadow: 0 0 0 4px rgba(239,68,68,0); }
}

/* ============================================
   RESPONSIVE â€” TABLET (â‰¤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; padding: 60px 32px 80px; text-align: center; }
  .hero-visual { display: none; }
  .hero-ctas { justify-content: center; }
  .hero-social-proof { justify-content: center; }
  .float-card--doctor,
  .float-card--rating { display: none; }
  .float-card--stat { bottom: 5%; left: 5%; }
  .float-card--live  { bottom: 5%; right: 5%; }
  .dept-grid { grid-template-columns: repeat(2, 1fr); }
  .doctors-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .step-connector { display: none; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-form { width: 100%; max-width: 440px; margin: 0 auto; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .tab-card { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE â€” MOBILE (â‰¤768px)
   ============================================ */
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { padding: 14px 20px; }
  .announce-bar { font-size: 12px; }

  .hero { padding-top: 70px; }
  .hero-content { padding: 40px 20px 60px; }
  .hero-headline { font-size: clamp(40px, 10vw, 60px); }
  .hero-sub { font-size: 15px; }
  .float-card { display: none; }

  .trust-strip { padding: 20px; }
  .trust-logos { gap: 12px; }

  .below-hero-cards { padding: 0 20px; }
  .bhc-inner { grid-template-columns: 1fr; }

  .section-inner { padding: 0 20px; }
  .section-header { margin-bottom: 36px; }
  .color-cards-grid { grid-template-columns: 1fr; padding: 0 20px; }
  .dept-grid { grid-template-columns: 1fr; }
  .doctors-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .tab-pills { padding: 4px; }
  .tab-pill { padding: 8px 14px; font-size: 13px; }
  .tab-card { padding: 28px 20px; }
  .tab-card h3 { font-size: 20px; }

  .departments-section,
  .doctors-section,
  .tab-section,
  .process-section,
  .testimonials-section,
  .cta-section { padding: 64px 0; }

  .cta-inner { padding: 0 20px; }
  .cta-headline { font-size: clamp(26px, 7vw, 38px); }

  .footer-main { grid-template-columns: 1fr; padding: 0 20px 40px; gap: 32px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .appt-form-wrap { min-width: unset; }
}



/* ── Active nav link (shared) ──────────────── */
.nav-link--active {
  color: var(--teal) !important;
  font-weight: 700 !important;
}


/* ============================================
   ABOUT PAGE — about.css
   ============================================ */
/* ============================================
   MEDITRUST HOSPITAL â€” about.css
   About page â€” all page-specific styles
   ============================================ */



/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
  padding: 160px 40px 80px;
  min-height: 540px;
  display: flex;
  align-items: center;
}
.page-hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.page-hero-orb--teal {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(78,205,196,0.18) 0%, transparent 70%);
  top: -80px; right: 15%;
}
.page-hero-orb--blue {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,0.14) 0%, transparent 70%);
  bottom: -60px; right: 5%;
}
.page-hero-inner {
  max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 0.7fr;
  gap: 60px; align-items: center;
}
.page-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.breadcrumb-link { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.breadcrumb-link:hover { color: var(--accent); }
.page-breadcrumb svg { color: rgba(255,255,255,0.25); }
.breadcrumb-current { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }

.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -0.025em;
  margin: 16px 0 20px;
}
.page-hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.55);
  line-height: 1.7; max-width: 520px; margin-bottom: 32px;
}
.page-hero-stats-row { display: flex; gap: 10px; flex-wrap: wrap; }
.phs-pill {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 10px 18px; min-width: 80px;
}
.phs-pill strong { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: white; line-height: 1.1; }
.phs-pill span { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* â€” Hero right: hospital identity widget â€” */
.page-hero-visual { display: flex; flex-direction: column; gap: 14px; }

.hero-about-widget {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 24px;
  backdrop-filter: blur(12px);
}
.haw-est {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(78,205,196,0.12);
  border: 1px solid rgba(78,205,196,0.28);
  border-radius: 8px; padding: 6px 14px;
  font-size: 13px; font-weight: 700;
  color: var(--accent); letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.haw-name {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 800;
  color: white; line-height: 1.1; margin-bottom: 4px;
}
.haw-loc {
  font-size: 13px; color: rgba(255,255,255,0.45);
  display: flex; align-items: center; gap: 5px; margin-bottom: 20px;
}
.haw-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 18px; }
.haw-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.haw-stat { text-align: center; }
.haw-stat strong { display: block; font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--accent); line-height: 1; }
.haw-stat span { display: block; font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 3px; }

.hero-about-accred {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px; padding: 14px 18px;
  flex-wrap: wrap;
}
.hab-badge {
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 4px 10px; border-radius: 6px;
}
.hab-sep { color: rgba(255,255,255,0.2); font-size: 13px; }
.hab-text { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ============================================
   MISSION & VISION
   ============================================ */
.mission-section { padding: 100px 0; background: white; }
.mv-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 48px;
}
.mv-card {
  padding: 40px; border-radius: 24px;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.mv-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.mv-card--mission {
  background: linear-gradient(135deg, #F0FDFA 0%, #ECFDF5 100%);
  border-color: rgba(13,148,136,0.2);
}
.mv-card--vision {
  background: linear-gradient(135deg, #EFF6FF 0%, #F0F9FF 100%);
  border-color: rgba(37,99,235,0.2);
}
.mv-card-glow {
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  pointer-events: none;
}
.mv-card--mission .mv-card-glow { background: radial-gradient(circle, rgba(13,148,136,0.12) 0%, transparent 70%); }
.mv-card--vision  .mv-card-glow { background: radial-gradient(circle, rgba(37,99,235,0.1)  0%, transparent 70%); }

.mv-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; position: relative; z-index: 1;
}
.mv-icon--teal { background: rgba(13,148,136,0.12); color: var(--teal); }
.mv-icon--blue { background: rgba(37,99,235,0.1);   color: #2563EB; }

.mv-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 12px; display: block; position: relative; z-index: 1;
}
.mv-label--teal { color: var(--teal); }
.mv-label--blue { color: #2563EB; }
.mv-title {
  font-family: var(--font-head);
  font-size: 24px; font-weight: 800; color: var(--text-dark);
  line-height: 1.2; margin-bottom: 14px; position: relative; z-index: 1;
}
.mv-body {
  font-size: 15px; color: var(--text-mid); line-height: 1.75;
  position: relative; z-index: 1;
}

/* Values row */
.values-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.value-chip {
  background: #F8FAFC; border: 1px solid var(--border);
  border-radius: 16px; padding: 20px 18px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.value-chip:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.07); border-color: rgba(13,148,136,0.25); }
.value-chip-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.vci--teal   { background: #F0FDFA; color: var(--teal); }
.vci--blue   { background: #EFF6FF; color: #2563EB; }
.vci--amber  { background: #FFFBEB; color: #D97706; }
.vci--purple { background: #F5F3FF; color: #7C3AED; }
.value-chip-name { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.value-chip-desc { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ============================================
   HISTORY TIMELINE
   ============================================ */
.timeline-section { padding: 100px 0; background: linear-gradient(160deg, #F8FAFC 0%, #EFF6FF 100%); }

.timeline { display: flex; flex-direction: column; }
.timeline-item {
  display: grid;
  grid-template-columns: 72px 36px 1fr;
  align-items: flex-start;
}
.ti-year-col { padding-top: 20px; text-align: right; padding-right: 0; }
.ti-year {
  font-family: var(--font-head);
  font-size: 15px; font-weight: 800; color: var(--teal); line-height: 1;
}
.ti-axis {
  display: flex; flex-direction: column; align-items: center;
}
.ti-dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--teal); border: 3px solid #F0FDFD;
  box-shadow: 0 0 0 3px rgba(13,148,136,0.2);
  margin-top: 20px; flex-shrink: 0; z-index: 1;
}
.ti-line {
  flex: 1; width: 2px; min-height: 32px;
  background: linear-gradient(to bottom, rgba(13,148,136,0.35), rgba(37,99,235,0.15));
}
.timeline-item:last-child .ti-line { display: none; }

.ti-card {
  background: white; border: 1px solid var(--border);
  border-radius: 18px; padding: 24px 28px;
  margin-left: 18px; margin-bottom: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ti-card:hover { transform: translateX(4px); box-shadow: 0 8px 28px rgba(0,0,0,0.08); }
.ti-badge {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  background: #F0FDFA; color: var(--teal);
  padding: 3px 10px; border-radius: 6px; margin-bottom: 10px;
}
.ti-title {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700; color: var(--text-dark);
  margin-bottom: 8px; line-height: 1.25;
}
.ti-desc { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
.ti-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.ti-tag {
  font-size: 11px; font-weight: 600;
  background: #F1F5F9; color: var(--text-mid);
  padding: 3px 10px; border-radius: 6px;
}

/* ============================================
   LEADERSHIP
   ============================================ */
.leadership-section { padding: 100px 0; background: white; }

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.leader-card {
  background: white; border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
  border-color: rgba(13,148,136,0.25);
}
.leader-photo {
  height: 160px; display: flex;
  align-items: flex-end; justify-content: center;
  position: relative;
}
.leader-photo--teal   { background: linear-gradient(160deg, #F0FDFA, #CCFBF1); }
.leader-photo--blue   { background: linear-gradient(160deg, #EFF6FF, #BFDBFE); }
.leader-photo--green  { background: linear-gradient(160deg, #F0FDF4, #BBF7D0); }
.leader-photo--rose   { background: linear-gradient(160deg, #FFF1F2, #FECDD3); }
.leader-photo--purple { background: linear-gradient(160deg, #F5F3FF, #DDD6FE); }
.leader-photo--indigo { background: linear-gradient(160deg, #EEF2FF, #C7D2FE); }

.leader-body { padding: 16px 20px 20px; }
.leader-role {
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 6px;
}
.leader-name {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700; color: var(--text-dark);
  line-height: 1.2; margin-bottom: 4px;
}
.leader-cred { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ============================================
   AWARDS & ACCREDITATIONS
   ============================================ */
.awards-section {
  padding: 100px 0; background: var(--hero-bg);
  position: relative; overflow: hidden;
}
.awards-bg-orb {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(78,205,196,0.07) 0%, transparent 70%);
  filter: blur(60px); top: -100px; right: -100px; pointer-events: none;
}
.awards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.award-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 28px 24px;
  transition: background 0.2s, border-color 0.2s, transform 0.25s ease;
  backdrop-filter: blur(6px);
}
.award-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(78,205,196,0.3);
  transform: translateY(-4px);
}
.award-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.award-icon--gold   { background: rgba(245,158,11,0.15); color: #F59E0B; }
.award-icon--teal   { background: rgba(78,205,196,0.12); color: #4ECDC4; }
.award-icon--blue   { background: rgba(37,99,235,0.12);  color: #60A5FA; }
.award-icon--green  { background: rgba(21,128,61,0.15);  color: #4ADE80; }
.award-icon--rose   { background: rgba(225,29,72,0.12);  color: #FB7185; }
.award-icon--purple { background: rgba(124,58,237,0.12); color: #C084FC; }
.award-name {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700; color: white;
  line-height: 1.25; margin-bottom: 6px;
}
.award-body { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.award-year {
  display: inline-block; margin-top: 12px;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}

/* ============================================
   INFRASTRUCTURE
   ============================================ */
.infra-section { padding: 100px 0; background: white; }
.infra-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.infra-card {
  background: #F8FAFC; border: 1px solid var(--border);
  border-radius: 18px; padding: 24px 20px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.infra-card:hover {
  transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.07);
  border-color: rgba(13,148,136,0.2); background: white;
}
.infra-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.infra-icon--teal   { background: #F0FDFA; color: var(--teal); }
.infra-icon--blue   { background: #EFF6FF; color: #2563EB; }
.infra-icon--amber  { background: #FFFBEB; color: #D97706; }
.infra-icon--green  { background: #F0FDF4; color: #15803D; }
.infra-icon--red    { background: #FFF1F2; color: #E11D48; }
.infra-icon--purple { background: #F5F3FF; color: #7C3AED; }
.infra-icon--indigo { background: #EEF2FF; color: #4F46E5; }
.infra-icon--rose   { background: #FFF1F2; color: #BE123C; }

.infra-num {
  font-family: var(--font-head);
  font-size: 28px; font-weight: 800; color: var(--text-dark); line-height: 1;
}
.infra-label { font-size: 13px; font-weight: 600; color: var(--text-mid); line-height: 1.4; }

/* ============================================
   RESPONSIVE â€” TABLET (â‰¤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .page-hero { padding: 140px 32px 60px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .page-hero-visual { display: none; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-row { grid-template-columns: repeat(2, 1fr); }
  .timeline-item { grid-template-columns: 60px 30px 1fr; }
  .leadership-grid { grid-template-columns: repeat(3, 1fr); }
  .awards-grid { grid-template-columns: repeat(2, 1fr); }
  .infra-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE â€” MOBILE (â‰¤768px)
   ============================================ */
@media (max-width: 768px) {
  .page-hero { padding: 120px 20px 50px; min-height: auto; }
  .mission-section { padding: 60px 0; }
  .mission-section .section-inner { padding: 0 20px; }
  .mv-grid { grid-template-columns: 1fr; }
  .mv-card { padding: 28px 22px; }
  .values-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .timeline-section { padding: 60px 0; }
  .timeline-section .section-inner { padding: 0 20px; }
  .timeline-item { grid-template-columns: 50px 28px 1fr; }
  .ti-year { font-size: 13px; }
  .ti-card { padding: 18px 20px; }
  .leadership-section { padding: 60px 0; }
  .leadership-section .section-inner { padding: 0 20px; }
  .leadership-grid { grid-template-columns: 1fr; }
  .awards-section { padding: 60px 0; }
  .awards-section .section-inner { padding: 0 20px; }
  .awards-grid { grid-template-columns: 1fr; }
  .infra-section { padding: 60px 0; }
  .infra-section .section-inner { padding: 0 20px; }
  .infra-grid { grid-template-columns: repeat(2, 1fr); }
}


/* ============================================
   BOOKING PAGE — booking.css
   ============================================ */
/* ============================================
   MEDITRUST HOSPITAL â€” booking.css
   ============================================ */



/* â”€â”€ PAGE HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.booking-hero {
  background: var(--hero-bg);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.booking-hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.booking-hero-orb--1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(78,205,196,.14) 0%, transparent 70%);
  top: -120px; left: -100px;
}
.booking-hero-orb--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(37,99,235,.12) 0%, transparent 70%);
  bottom: -80px; right: 60px;
}
.booking-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.booking-hero-left {}
.booking-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.bhb-link {
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  transition: color .2s;
}
.bhb-link:hover { color: var(--teal); }
.bhb-sep {
  color: rgba(255,255,255,.3);
  font-size: 13px;
}
.bhb-current {
  color: var(--teal);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
}
.booking-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(78,205,196,.12);
  border: 1px solid rgba(78,205,196,.25);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
  font-family: 'Inter', sans-serif;
}
.booking-hero-eyebrow svg {
  width: 14px; height: 14px; flex-shrink: 0;
}
.booking-hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 18px;
}
.booking-hero-title span {
  background: linear-gradient(135deg, var(--teal), #60E5DC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.booking-hero-desc {
  color: rgba(255,255,255,.6);
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 32px;
  max-width: 520px;
  font-family: 'Inter', sans-serif;
}
.booking-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bhp-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.75);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  padding: 7px 14px;
  border-radius: 100px;
}
.bhp-pill svg {
  width: 14px; height: 14px; flex-shrink: 0;
  color: var(--teal);
}

/* Hero right â€” available today widget */
.booking-hero-widget {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
}
.bhw-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.bhw-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 15px;
}
.bhw-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(34,197,94,.15);
  color: #4ADE80;
  font-size: 11px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid rgba(34,197,94,.25);
}
.bhw-dot {
  width: 6px; height: 6px;
  background: #4ADE80;
  border-radius: 50%;
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}
.bhw-list {
  padding: 8px 0;
}
.bhw-doc {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .2s;
}
.bhw-doc:last-child { border-bottom: none; }
.bhw-doc:hover { background: rgba(255,255,255,.04); }
.bhw-ava {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  font-family: 'Syne', sans-serif;
  flex-shrink: 0;
}
.bhw-ava--teal   { background: linear-gradient(135deg,#4ECDC4,#2AA59E); color:#fff; }
.bhw-ava--blue   { background: linear-gradient(135deg,#3B82F6,#1D4ED8); color:#fff; }
.bhw-ava--purple { background: linear-gradient(135deg,#A855F7,#7C3AED); color:#fff; }
.bhw-ava--green  { background: linear-gradient(135deg,#22C55E,#16A34A); color:#fff; }
.bhw-info {
  flex: 1;
  min-width: 0;
}
.bhw-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  font-family: 'Syne', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bhw-spec {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,.5);
  font-family: 'Inter', sans-serif;
}
.bhw-next {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  background: rgba(78,205,196,.1);
  padding: 3px 9px;
  border-radius: 100px;
}
.bhw-footer {
  padding: 14px 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  gap: 8px;
}
.bhw-footer-text {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  font-family: 'Inter', sans-serif;
}
.bhw-book-btn {
  margin-left: auto;
  background: var(--teal);
  color: #0A0F1E;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  border: none;
  padding: 7px 16px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.bhw-book-btn:hover {
  background: #3BB8AF;
  transform: translateY(-1px);
}

/* â”€â”€ HOW IT WORKS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.how-section {
  background: #fff;
  padding: 80px 0;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 36px);
  right: calc(16.66% + 36px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  z-index: 0;
}
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.how-step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  margin-bottom: 20px;
  position: relative;
}
.how-step-num--1 { background: linear-gradient(135deg,#4ECDC4,#2AA59E); color: #fff; }
.how-step-num--2 { background: linear-gradient(135deg,#3B82F6,#1D4ED8); color: #fff; }
.how-step-num--3 { background: linear-gradient(135deg,#A855F7,#7C3AED); color: #fff; }
.how-step-icon {
  width: 26px; height: 26px;
  color: #fff;
}
.how-step-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
}
.how-step-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  max-width: 240px;
}

/* â”€â”€ BOOKING SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.booking-section {
  background: linear-gradient(160deg, #F8FAFC 0%, #EFF6FF 100%);
  padding: 80px 0;
}
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}

/* Form card */
.booking-form-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid #E2E8F0;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}

/* Step progress bar */
.bk-steps {
  display: flex;
  align-items: center;
  padding: 22px 32px;
  border-bottom: 1px solid #F1F5F9;
  background: #FAFBFC;
  gap: 0;
}
.bk-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.bk-step-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: default;
  padding: 0;
}
.bk-step-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #CBD5E1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #94A3B8;
  flex-shrink: 0;
  transition: all .25s;
}
.bk-step-btn--active .bk-step-circle {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(78,205,196,.18);
}
.bk-step-btn--done .bk-step-circle {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.bk-step-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #94A3B8;
  white-space: nowrap;
  transition: color .25s;
}
.bk-step-btn--active .bk-step-label { color: var(--dark); font-weight: 600; }
.bk-step-btn--done .bk-step-label   { color: var(--teal); font-weight: 600; }
.bk-step-connector {
  flex: 1;
  height: 2px;
  background: #E2E8F0;
  margin: 0 10px;
  min-width: 24px;
}
.bk-steps--confirmed .bk-step-connector { background: var(--teal); }

/* Error banner */
.bk-error {
  display: none;
  align-items: center;
  gap: 10px;
  background: #FEF2F2;
  border-left: 4px solid #EF4444;
  color: #991B1B;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  padding: 12px 32px;
}
.bk-error svg { width: 16px; height: 16px; flex-shrink: 0; }

/* Panels */
.bk-panel {
  display: none;
  padding: 32px;
}
.bk-panel--active { display: block; }

.bk-panel-title {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 6px;
}
.bk-panel-sub {
  font-size: 14px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  margin: 0 0 28px;
}

/* Panel nav buttons */
.bk-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #F1F5F9;
}
.bk-btn-back {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid #CBD5E1;
  color: #64748B;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s, color .2s;
}
.bk-btn-back:hover { border-color: var(--teal); color: var(--teal); }
.bk-btn-back svg { width: 16px; height: 16px; }
.bk-btn-next {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--teal), #2AA59E);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  border: none;
  padding: 11px 24px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s;
}
.bk-btn-next:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(78,205,196,.3);
}
.bk-btn-next svg { width: 16px; height: 16px; }
.bk-btn-confirm {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  border: none;
  padding: 13px 28px;
  border-radius: 10px;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s;
}
.bk-btn-confirm:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,.35);
}
.bk-btn-confirm svg { width: 16px; height: 16px; }

/* â”€â”€ PANEL 0: SPECIALTY GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bk-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}
.bk-spec-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: #F8FAFC;
  border: 2px solid #E2E8F0;
  border-radius: 14px;
  padding: 16px 8px;
  cursor: pointer;
  transition: all .2s;
}
.bk-spec-pill:hover {
  border-color: var(--teal);
  background: #F0FDFA;
}
.bk-spec-pill--selected {
  border-color: var(--teal);
  background: #F0FDFA;
  box-shadow: 0 0 0 3px rgba(78,205,196,.15);
}
.bk-spec-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bk-spec-icon svg { width: 20px; height: 20px; }
.bk-spec-icon--rose    { background: #FFF1F2; color: #F43F5E; }
.bk-spec-icon--violet  { background: #F5F3FF; color: #7C3AED; }
.bk-spec-icon--orange  { background: #FFF7ED; color: #EA580C; }
.bk-spec-icon--blue    { background: #EFF6FF; color: #2563EB; }
.bk-spec-icon--green   { background: #F0FDF4; color: #16A34A; }
.bk-spec-icon--pink    { background: #FDF2F8; color: #DB2777; }
.bk-spec-icon--amber   { background: #FFFBEB; color: #D97706; }
.bk-spec-icon--teal    { background: #F0FDFA; color: #0D9488; }
.bk-spec-label {
  font-size: 11.5px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #334155;
  text-align: center;
  line-height: 1.3;
}
.bk-spec-pill--selected .bk-spec-label { color: var(--dark); }

/* Doctor list */
.bk-doc-list { display: none; }
.bk-doc-list-title {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bk-doc-list-title span {
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 100px;
}
.bk-doc-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bk-doc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F8FAFC;
  border: 2px solid #E2E8F0;
  border-radius: 14px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all .2s;
}
.bk-doc-card:hover { border-color: var(--teal); background: #F0FDFA; }
.bk-doc-card--selected {
  border-color: var(--teal);
  background: #F0FDFA;
  box-shadow: 0 0 0 3px rgba(78,205,196,.15);
}
.bk-doc-card--hidden { display: none !important; }
.bkdc-ava {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  font-family: 'Syne', sans-serif;
  flex-shrink: 0;
}
.bkdc-ava--teal   { background: linear-gradient(135deg,#4ECDC4,#2AA59E); color:#fff; }
.bkdc-ava--blue   { background: linear-gradient(135deg,#3B82F6,#1D4ED8); color:#fff; }
.bkdc-ava--purple { background: linear-gradient(135deg,#A855F7,#7C3AED); color:#fff; }
.bkdc-ava--green  { background: linear-gradient(135deg,#22C55E,#16A34A); color:#fff; }
.bkdc-ava--rose   { background: linear-gradient(135deg,#F43F5E,#BE123C); color:#fff; }
.bkdc-ava--amber  { background: linear-gradient(135deg,#F59E0B,#D97706); color:#fff; }
.bkdc-info {
  flex: 1;
  min-width: 0;
}
.bkdc-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  color: var(--dark);
}
.bkdc-meta {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  margin-top: 2px;
}
.bkdc-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.bkdc-fee {
  font-size: 14px;
  font-weight: 700;
  font-family: 'Syne', sans-serif;
  color: var(--dark);
}
.bkdc-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.bkdc-check svg { width: 12px; height: 12px; color: transparent; transition: color .2s; }
.bk-doc-card--selected .bkdc-check {
  background: var(--teal);
  border-color: var(--teal);
}
.bk-doc-card--selected .bkdc-check svg { color: #fff; }

/* â”€â”€ PANEL 1: DATE & TIME â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bk-visit-row {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}
.bk-visit-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background: #F8FAFC;
  border: 2px solid #E2E8F0;
  color: #64748B;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  padding: 9px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
}
.bk-visit-pill svg { width: 15px; height: 15px; }
.bk-visit-pill:hover { border-color: var(--teal); color: var(--teal); }
.bk-visit-pill--active {
  border-color: var(--teal);
  background: #F0FDFA;
  color: var(--dark);
}

.bk-date-time-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.bk-section-label {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* Calendar */
.bk-calendar {
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  overflow: hidden;
}
.bk-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}
.bk-cal-nav {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #E2E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .15s;
  color: #64748B;
}
.bk-cal-nav:hover { border-color: var(--teal); color: var(--teal); }
.bk-cal-nav svg { width: 14px; height: 14px; }
#bkCalMonth {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.bk-cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #F8FAFC;
  border-bottom: 1px solid #E2E8F0;
}
.bk-cal-wd {
  text-align: center;
  padding: 6px 0;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.bk-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 6px;
  gap: 2px;
}
.bk-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #334155;
  border-radius: 8px;
  cursor: pointer;
  transition: all .15s;
  position: relative;
}
.bk-cal-day:not(.bk-cal-day--disabled):not(.bk-cal-day--other):hover {
  background: #F0FDFA;
  color: var(--teal);
}
.bk-cal-day--other   { color: #CBD5E1; cursor: default; }
.bk-cal-day--disabled { color: #CBD5E1; cursor: not-allowed; }
.bk-cal-day--today {
  font-weight: 700;
  color: var(--teal);
}
.bk-cal-day--today::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  background: var(--teal);
  border-radius: 50%;
}
.bk-cal-day--selected {
  background: var(--teal) !important;
  color: #fff !important;
  font-weight: 700;
}
.bk-cal-day--selected::after { display: none; }
.bk-cal-day--limited {
  color: #D97706;
}
.bk-cal-day--limited::before {
  content: '';
  position: absolute;
  top: 3px; right: 3px;
  width: 5px; height: 5px;
  background: #F59E0B;
  border-radius: 50%;
}
.bk-cal-legend {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  padding: 0 2px;
}
.bk-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: #94A3B8;
  font-family: 'Inter', sans-serif;
}
.bk-legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.bk-legend-dot--avail   { background: var(--teal); }
.bk-legend-dot--limited { background: #F59E0B; }
.bk-legend-dot--off     { background: #CBD5E1; }

/* Time slots */
.bk-slot-group { margin-bottom: 20px; }
.bk-slot-group:last-child { margin-bottom: 0; }
.bk-slot-group-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #94A3B8;
  font-family: 'Inter', sans-serif;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.bk-slot-group-label svg { width: 13px; height: 13px; }
.bk-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.bk-slot {
  text-align: center;
  padding: 8px 4px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #334155;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  cursor: pointer;
  transition: all .15s;
}
.bk-slot:hover:not(.bk-slot--unavailable) {
  border-color: var(--teal);
  color: var(--teal);
  background: #F0FDFA;
}
.bk-slot--selected {
  background: var(--teal) !important;
  border-color: var(--teal) !important;
  color: #fff !important;
}
.bk-slot--unavailable {
  background: #F8FAFC;
  color: #CBD5E1;
  cursor: not-allowed;
  text-decoration: line-through;
  border-color: #F1F5F9;
}

/* â”€â”€ PANEL 2: PATIENT DETAILS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bk-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.bk-form-field { display: flex; flex-direction: column; gap: 6px; }
.bk-form-field--full { grid-column: 1 / -1; }
.bk-form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  font-family: 'Inter', sans-serif;
}
.bk-form-label .optional {
  font-weight: 400;
  color: #94A3B8;
}
.bk-form-input,
.bk-form-textarea,
.bk-form-select {
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.bk-form-input:focus,
.bk-form-textarea:focus,
.bk-form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(78,205,196,.12);
}
.bk-form-textarea {
  resize: vertical;
  min-height: 90px;
}
.bk-gender-pills {
  display: flex;
  gap: 8px;
}
.bk-gender-pill {
  flex: 1;
  text-align: center;
  padding: 9px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #64748B;
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
}
.bk-gender-pill:hover { border-color: var(--teal); color: var(--teal); }
.bk-gender-pill--active {
  border-color: var(--teal);
  background: #F0FDFA;
  color: var(--dark);
  font-weight: 700;
}

/* â”€â”€ PANEL SUCCESS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bk-success-wrap {
  text-align: center;
  padding: 16px 0 8px;
}
.bk-success-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, #4ECDC4, #2AA59E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 8px 30px rgba(78,205,196,.3);
}
.bk-success-icon svg { width: 34px; height: 34px; color: #fff; }
.bk-success-title {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 8px;
}
.bk-success-sub {
  font-size: 15px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  margin: 0 0 8px;
}
.bk-success-name {
  font-weight: 700;
  color: var(--teal);
}
.bk-success-id-wrap {
  display: inline-block;
  background: #F0FDFA;
  border: 1px solid rgba(78,205,196,.3);
  border-radius: 10px;
  padding: 10px 22px;
  margin: 16px 0 28px;
}
.bk-success-id-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #94A3B8;
  font-family: 'Inter', sans-serif;
  margin-bottom: 2px;
}
.bk-success-id {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: .05em;
}
.bk-conf-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
  margin-bottom: 28px;
  padding: 20px;
  background: #F8FAFC;
  border-radius: 14px;
  border: 1px solid #E2E8F0;
}
.bk-conf-item {}
.bk-conf-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #94A3B8;
  font-family: 'Inter', sans-serif;
  margin-bottom: 3px;
}
.bk-conf-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  font-family: 'Syne', sans-serif;
}
.bk-success-note {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  color: #92400E;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  padding: 12px 16px;
  border-radius: 10px;
  text-align: left;
  margin-bottom: 24px;
}
.bk-success-note svg { width: 16px; height: 16px; flex-shrink: 0; }
.bk-success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.bk-btn-another {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  padding: 11px 22px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
}
.bk-btn-another:hover { background: #F0FDFA; }
.bk-btn-home {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #0A0F1E, #1E293B);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  padding: 11px 22px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: transform .15s;
}
.bk-btn-home:hover { transform: translateY(-1px); }

/* â”€â”€ SIDEBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.booking-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bk-summary-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.bk-sum-header {
  padding: 18px 22px 14px;
  border-bottom: 1px solid #F1F5F9;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bk-sum-header-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #4ECDC4, #2AA59E);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bk-sum-header-icon svg { width: 16px; height: 16px; color: #fff; }
.bk-sum-header-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}
.bk-sum-body { padding: 16px 22px; }
.bk-sum-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid #F8FAFC;
}
.bk-sum-row:last-child { border-bottom: none; }
.bk-sum-label {
  font-size: 12px;
  color: #94A3B8;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  flex-shrink: 0;
}
.bk-sum-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  text-align: right;
  word-break: break-word;
}
.bk-sum-val--teal { color: var(--teal); }
.bk-sum-fee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: #F0FDFA;
  border-top: 1px solid rgba(78,205,196,.2);
}
.bk-sum-fee-label {
  font-size: 13px;
  font-weight: 600;
  color: #0D9488;
  font-family: 'Inter', sans-serif;
}
.bk-sum-fee-val {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
}
.bk-sum-note {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 22px;
  border-top: 1px solid #F1F5F9;
  font-size: 11.5px;
  color: #94A3B8;
  font-family: 'Inter', sans-serif;
}
.bk-sum-note svg { width: 13px; height: 13px; flex-shrink: 0; color: #16A34A; }

/* Trust pills below sidebar */
.bk-sidebar-trust {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bk-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  font-family: 'Inter', sans-serif;
  color: #334155;
}
.bk-trust-item svg {
  width: 16px; height: 16px;
  color: #16A34A;
  flex-shrink: 0;
}

/* â”€â”€ BENEFITS SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.benefits-section {
  background: var(--hero-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.benefits-section-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.benefits-section-orb--1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(78,205,196,.1) 0%, transparent 70%);
  top: -80px; right: -60px;
}
.benefits-section-orb--2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,.1) 0%, transparent 70%);
  bottom: -60px; left: 80px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}
.benefit-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  padding: 28px 24px;
  transition: transform .2s, background .2s;
}
.benefit-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.08);
}
.benefit-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.benefit-icon svg { width: 24px; height: 24px; }
.benefit-icon--teal   { background: rgba(78,205,196,.15); color: var(--teal); }
.benefit-icon--blue   { background: rgba(59,130,246,.15); color: #60A5FA; }
.benefit-icon--green  { background: rgba(34,197,94,.15); color: #4ADE80; }
.benefit-icon--amber  { background: rgba(245,158,11,.15); color: #FCD34D; }
.benefit-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}
.benefit-desc {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,.55);
  font-family: 'Inter', sans-serif;
}

/* â”€â”€ FAQ SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq-section {
  background: #fff;
  padding: 80px 0;
}
.faq-list {
  max-width: 760px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid #F1F5F9;
}
.faq-item:first-child { border-top: 1px solid #F1F5F9; }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-q-text {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  transition: color .2s;
}
.faq-item--open .faq-q-text { color: var(--teal); }
.faq-chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all .25s;
}
.faq-chevron svg {
  width: 14px; height: 14px;
  color: #64748B;
  transition: transform .25s, color .25s;
}
.faq-item--open .faq-chevron {
  background: rgba(78,205,196,.12);
}
.faq-item--open .faq-chevron svg {
  transform: rotate(180deg);
  color: var(--teal);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item--open .faq-answer {
  max-height: 500px;
  padding-bottom: 18px;
}
.faq-a-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
}

/* â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .booking-hero-inner  { grid-template-columns: 1fr; gap: 40px; }
  .booking-hero-widget { max-width: 480px; }
  .booking-layout      { grid-template-columns: 1fr; }
  .booking-sidebar     { position: static; }
  .benefits-grid       { grid-template-columns: repeat(2, 1fr); }
  .how-steps           { grid-template-columns: 1fr; gap: 24px; }
  .how-steps::before   { display: none; }
  .bk-spec-grid        { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .booking-hero  { padding: 90px 0 40px; }
  .how-section   { padding: 48px 0; }
  .booking-section { padding: 48px 0; }
  .benefits-section { padding: 48px 0; }
  .faq-section   { padding: 48px 0; }
  .how-steps     { margin-top: 36px; }
  .faq-list      { margin-top: 36px; }
  .bk-steps { padding: 16px 20px; gap: 0; }
  .bk-step-label { display: none; }
  .bk-panel { padding: 22px; }
  .bk-spec-grid { grid-template-columns: repeat(2, 1fr); }
  .bk-date-time-layout { grid-template-columns: 1fr; }
  .bk-form-grid { grid-template-columns: 1fr; }
  .bk-form-field--full { grid-column: 1; }
  .benefits-grid { grid-template-columns: 1fr; }
  .bk-conf-details { grid-template-columns: 1fr; }
  .bk-success-actions { flex-direction: column; }
  .bk-slots { grid-template-columns: repeat(2, 1fr); }
  .bk-visit-row { flex-wrap: wrap; }
}


/* ============================================
   DEPARTMENTS PAGE — departments.css
   ============================================ */
/* ============================================
   MEDITRUST HOSPITAL â€” departments.css
   Departments page â€” all page-specific styles
   ============================================ */



/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
  padding: 160px 40px 80px;
  min-height: 540px;
  display: flex;
  align-items: center;
}

.page-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.page-hero-orb--teal {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(78,205,196,0.18) 0%, transparent 70%);
  top: -80px; right: 15%;
}
.page-hero-orb--blue {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  bottom: -60px; right: 5%;
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 60px;
  align-items: center;
}

/* â€” Breadcrumb â€” */
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.breadcrumb-link {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-link:hover { color: var(--accent); }
.page-breadcrumb svg { color: rgba(255,255,255,0.25); }
.breadcrumb-current { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }

/* â€” Page hero headline â€” */
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 16px 0 20px;
}

.page-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

/* â€” Stat row â€” */
.page-hero-stats-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.phs-pill {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px 18px;
  min-width: 80px;
}
.phs-pill strong {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: white;
  line-height: 1.1;
}
.phs-pill span {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}

/* â€” Hero visual (right side bento) â€” */
.page-hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.hero-dept-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.hdb-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(10px);
}
.hdb-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(78,205,196,0.3);
}

.hdb-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hdb-icon--rose   { background: rgba(244,63,94,0.2); color: #f87171; }
.hdb-icon--blue   { background: rgba(59,130,246,0.2); color: #60a5fa; }
.hdb-icon--purple { background: rgba(168,85,247,0.2); color: #c084fc; }
.hdb-icon--teal   { background: rgba(78,205,196,0.2); color: #4ECDC4; }

.hdb-info { display: flex; flex-direction: column; gap: 2px; }
.hdb-info strong { font-size: 13px; font-weight: 700; color: white; line-height: 1.2; }
.hdb-info span   { font-size: 11px; color: rgba(255,255,255,0.45); }

.hero-dept-count-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(78,205,196,0.1);
  border: 1px solid rgba(78,205,196,0.25);
  border-radius: 14px;
  padding: 14px 20px;
  width: 100%;
}
.hdcb-num {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hdcb-text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* ============================================
   FILTER BAR
   ============================================ */
.dept-filter-section {
  background: white;
  border-bottom: 1px solid #F1F5F9;
  position: sticky;
  top: 72px;
  z-index: 40;
}

.dept-filter-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.dept-filter-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.dept-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 9999px;
  border: 1.5px solid #E2E8F0;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: #64748B;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
  white-space: nowrap;
}

.dept-filter-pill:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: #F0FDFA;
}

.dept-filter-pill--active {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
}
.dept-filter-pill--active:hover {
  background: #0B7E78;
  color: white;
}

.dfc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.25);
  border-radius: 9999px;
  font-size: 11px;
  font-weight: 700;
  min-width: 20px;
  height: 18px;
  padding: 0 5px;
}
.dept-filter-pill--active .dfc { background: rgba(255,255,255,0.3); }

.dfc-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}
.dfc-dot--surgical   { background: #f43f5e; }
.dfc-dot--medical    { background: #3b82f6; }
.dfc-dot--diagnostic { background: #f59e0b; }
.dfc-dot--emergency  { background: #ef4444; }
.dfc-dot--womens     { background: #a855f7; }
.dfc-dot--pediatric  { background: #22c55e; }

.dept-result-label {
  font-size: 13px;
  color: #94A3B8;
  white-space: nowrap;
  flex-shrink: 0;
}
.dept-result-label span { font-weight: 700; color: var(--text-dark); }

/* ============================================
   ALL DEPARTMENTS GRID
   ============================================ */
.all-depts-section {
  padding: 64px 0 80px;
  background: linear-gradient(160deg, #F8FAFC 0%, #EFF6FF 100%);
}

.all-depts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* â€” Dept card â€” */
.dept-card {
  background: white;
  border: 1px solid #F1F5F9;
  border-radius: 20px;
  padding: 24px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-left: 3px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dept-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.dept-card--surgical  { border-left-color: #f43f5e; }
.dept-card--medical   { border-left-color: #3b82f6; }
.dept-card--diagnostic{ border-left-color: #f59e0b; }
.dept-card--emergency { border-left-color: #ef4444; }
.dept-card--womens    { border-left-color: #a855f7; }
.dept-card--pediatric { border-left-color: #22c55e; }

.dept-card--hidden {
  display: none !important;
}

/* Card head */
.dept-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.dept-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dept-icon--rose   { background: #FFF1F2; color: #e11d48; }
.dept-icon--blue   { background: #EFF6FF; color: #2563EB; }
.dept-icon--amber  { background: #FFFBEB; color: #D97706; }
.dept-icon--red    { background: #FEF2F2; color: #DC2626; }
.dept-icon--purple { background: #FAF5FF; color: #9333EA; }
.dept-icon--green  { background: #F0FDF4; color: #16A34A; }

/* Category badge */
.dept-cat-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 9999px;
  white-space: nowrap;
}
.dept-cat-badge--surgical   { background: #FFF1F2; color: #e11d48; }
.dept-cat-badge--medical    { background: #EFF6FF; color: #2563EB; }
.dept-cat-badge--diagnostic { background: #FFFBEB; color: #D97706; }
.dept-cat-badge--emergency  { background: #FEF2F2; color: #DC2626; }
.dept-cat-badge--womens     { background: #FAF5FF; color: #9333EA; }
.dept-cat-badge--pediatric  { background: #F0FDF4; color: #16A34A; }

/* Card body */
.dept-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
  flex: 1;
}

.dept-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Card footer */
.dept-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #F8FAFC;
  margin-top: auto;
}

.dept-spec-count {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.dept-spec-count--live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #16A34A;
}

.live-indicator {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22C55E;
  animation: pulse-green 2s ease-in-out infinite;
  flex-shrink: 0;
}

.dept-view-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  padding: 5px 12px;
  border: 1.5px solid var(--teal-light);
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.dept-view-btn:hover {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}

.dept-view-btn--emergency {
  color: #DC2626;
  border-color: #FCA5A5;
}
.dept-view-btn--emergency:hover {
  background: #DC2626;
  color: white;
  border-color: #DC2626;
}

/* No results */
.no-results-msg {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  color: #94A3B8;
}
.no-results-msg p {
  margin-top: 16px;
  font-size: 16px;
}

/* ============================================
   DEPT SPOTLIGHT â€” CARDIOLOGY
   ============================================ */
.dept-spotlight {
  background: var(--hero-bg);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

.spotlight-bg-orb {
  position: absolute;
  width: 600px; height: 600px;
  top: -100px; right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78,205,196,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.spotlight-inner {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.eyebrow-spotlight {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(78,205,196,0.1);
  border: 1px solid rgba(78,205,196,0.2);
  padding: 5px 14px;
  border-radius: 9999px;
  margin-bottom: 20px;
}

.spotlight-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.spotlight-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}

.spotlight-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 36px;
}

.spl-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.spotlight-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.spotlight-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: gap 0.2s;
}
.spotlight-link:hover { opacity: 0.8; }

/* â€” Spotlight stat cards â€” */
.spotlight-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spl-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 24px;
  transition: border-color 0.2s;
}
.spl-stat-card:hover { border-color: rgba(78,205,196,0.3); }

.spl-stat-card--accent {
  background: linear-gradient(135deg, rgba(78,205,196,0.15) 0%, rgba(37,99,235,0.1) 100%);
  border-color: rgba(78,205,196,0.25);
}

.spl-stat-card--dark {
  background: rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.06);
}

.spl-stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 6px;
}
.spl-stat-num--teal { color: var(--accent); }

.spl-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.spl-award-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.spl-award-label {
  font-size: 12px;
  font-weight: 700;
  color: #F59E0B;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.spl-award-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .all-depts-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-visual { display: none; }
  .spotlight-inner  { grid-template-columns: 1fr; }
  .spotlight-stats  { flex-direction: row; flex-wrap: wrap; }
  .spl-stat-card    { flex: 1; min-width: 200px; }
  .all-depts-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .page-hero { padding: 140px 20px 60px; min-height: auto; }
  .dept-filter-inner { padding: 12px 20px; gap: 12px; }
  .dept-filter-pills { gap: 5px; }
  .dept-filter-pill  { padding: 7px 12px; font-size: 12px; }
  .dept-result-label { display: none; }
  .all-depts-section { padding: 40px 0 60px; }
  .all-depts-grid { grid-template-columns: 1fr; gap: 12px; }
  .dept-spotlight { padding: 60px 20px; }
  .spotlight-features { grid-template-columns: 1fr; }
  .spotlight-stats { flex-direction: column; }
  .page-hero-stats-row { gap: 8px; }
  .phs-pill { padding: 8px 14px; }
  .phs-pill strong { font-size: 17px; }
}


/* ============================================
   DOCTORS PAGE — doctors.css
   ============================================ */
/* ============================================
   MEDITRUST HOSPITAL â€” doctors.css
   Doctors page â€” all page-specific styles
   ============================================ */



/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
  background: var(--hero-bg);
  position: relative;
  overflow: hidden;
  padding: 160px 40px 80px;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.page-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.page-hero-orb--teal {
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(78,205,196,0.18) 0%, transparent 70%);
  top: -100px; right: 18%;
}
.page-hero-orb--blue {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(37,99,235,0.14) 0%, transparent 70%);
  bottom: -60px; right: 6%;
}

.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 60px;
  align-items: center;
}

/* â€” Breadcrumb â€” */
.page-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px;
}
.breadcrumb-link {
  font-size: 13px; color: rgba(255,255,255,0.45);
  text-decoration: none; transition: color 0.2s;
}
.breadcrumb-link:hover { color: var(--accent); }
.page-breadcrumb svg  { color: rgba(255,255,255,0.25); }
.breadcrumb-current   { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }

/* â€” Page hero headline â€” */
.page-hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 16px 0 20px;
}

.page-hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
}

/* â€” Search bar in hero â€” */
.doc-hero-search {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: 14px;
  padding: 4px 4px 4px 16px;
  max-width: 460px;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  transition: border-color 0.2s, background 0.2s;
}
.doc-hero-search:focus-within {
  border-color: rgba(78,205,196,0.5);
  background: rgba(255,255,255,0.09);
}
.dhs-icon { color: rgba(255,255,255,0.4); flex-shrink: 0; }
.dhs-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 12px;
  font-size: 15px;
  color: white;
  font-family: var(--font-body);
}
.dhs-input::placeholder { color: rgba(255,255,255,0.35); }

/* â€” Stat row â€” */
.page-hero-stats-row {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.phs-pill {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 10px 18px;
  min-width: 80px;
}
.phs-pill strong {
  font-family: var(--font-head);
  font-size: 20px; font-weight: 800;
  color: white; line-height: 1.1;
}
.phs-pill span { font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 2px; }

/* â€” Hero visual (right): doctor widget â€” */
.page-hero-visual {
  display: flex; flex-direction: column; gap: 14px;
}

.hero-doc-widget {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(12px);
  width: 100%;
}
.hdw-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.hdw-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); }
.hdw-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: rgba(78,205,196,0.9); font-weight: 500;
}

.hdw-list { display: flex; flex-direction: column; gap: 10px; }

.hdw-doc {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  transition: background 0.2s, border-color 0.2s;
}
.hdw-doc:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(78,205,196,0.25);
}

.hdw-ava {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: white;
  flex-shrink: 0;
}
.hdw-ava--teal   { background: linear-gradient(135deg, #0D9488, #0891B2); }
.hdw-ava--blue   { background: linear-gradient(135deg, #2563EB, #1D4ED8); }
.hdw-ava--purple { background: linear-gradient(135deg, #7C3AED, #6D28D9); }

.hdw-info { flex: 1; min-width: 0; }
.hdw-info strong {
  display: block; font-size: 13px; font-weight: 700;
  color: white; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hdw-info span { display: block; font-size: 11px; color: rgba(255,255,255,0.45); margin-top: 1px; }

.hdw-btn {
  flex-shrink: 0;
  font-size: 12px; font-weight: 700;
  background: rgba(78,205,196,0.15);
  border: 1px solid rgba(78,205,196,0.3);
  color: #4ECDC4;
  padding: 5px 12px; border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}
.hdw-btn:hover { background: rgba(78,205,196,0.28); border-color: #4ECDC4; }

.hero-doc-count-badge {
  display: flex; align-items: center; gap: 12px;
  background: rgba(78,205,196,0.1);
  border: 1px solid rgba(78,205,196,0.25);
  border-radius: 14px; padding: 14px 20px;
  width: 100%;
}
.hdcb-num {
  font-family: var(--font-head);
  font-size: 32px; font-weight: 800;
  color: var(--accent); line-height: 1;
}
.hdcb-text { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.4; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-bar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
}
.trust-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon--teal   { background: #F0FDFA; color: var(--teal); }
.trust-icon--blue   { background: #EFF6FF; color: #2563EB; }
.trust-icon--amber  { background: #FFFBEB; color: #D97706; }
.trust-icon--green  { background: #F0FDF4; color: #15803D; }

.trust-info strong {
  display: block; font-size: 18px; font-weight: 800;
  color: var(--text-dark); font-family: var(--font-head); line-height: 1.1;
}
.trust-info span { font-size: 13px; color: var(--text-mid); margin-top: 2px; display: block; }

/* ============================================
   FILTER BAR
   ============================================ */
.doc-filter-section {
  background: white;
  border-bottom: 1px solid #F1F5F9;
  position: sticky;
  top: 72px;
  z-index: 40;
}
.doc-filter-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 14px 40px;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.doc-filter-pills { display: flex; gap: 6px; flex-wrap: wrap; }

.doc-filter-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: 9999px;
  border: 1.5px solid #E2E8F0;
  background: transparent;
  font-size: 13px; font-weight: 600;
  color: #64748B; cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
  white-space: nowrap;
}
.doc-filter-pill:hover     { border-color: var(--teal); color: var(--teal); background: #F0FDFA; }
.doc-filter-pill--active   { background: var(--teal); border-color: var(--teal); color: white; }
.doc-filter-pill--active:hover { background: #0B7E78; color: white; }

.dfc-dot-sm {
  width: 7px; height: 7px;
  border-radius: 50%; flex-shrink: 0;
}
.dfc-dot-sm--cardiology     { background: #E11D48; }
.dfc-dot-sm--neurology      { background: #2563EB; }
.dfc-dot-sm--oncology       { background: #7C3AED; }
.dfc-dot-sm--orthopaedics   { background: #0D9488; }
.dfc-dot-sm--paediatrics    { background: #15803D; }
.dfc-dot-sm--womens         { background: #A21CAF; }
.dfc-dot-sm--gastro         { background: #D97706; }

.doc-count-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(13,148,136,0.1);
  color: var(--teal);
  font-size: 11px; font-weight: 700;
  min-width: 22px; height: 22px;
  border-radius: 9999px; padding: 0 6px;
}
.doc-result-label { font-size: 13px; color: var(--text-muted); white-space: nowrap; }

/* ============================================
   ALL DOCTORS GRID
   ============================================ */
.all-doctors-section {
  padding: 80px 0;
  background: linear-gradient(160deg, #F8FAFC 0%, #EFF6FF 100%);
}

.doctors-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* â€” Doctor Card â€” */
.doctor-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex; flex-direction: column;
}
.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
  border-color: rgba(13,148,136,0.25);
}
.doctor-card--hidden { display: none !important; }

/* â€” Doctor Photo Area â€” */
.doc-photo {
  height: 170px;
  display: flex; align-items: flex-end; justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.doc-photo--teal   { background: linear-gradient(160deg, #F0FDFA, #CCFBF1); }
.doc-photo--blue   { background: linear-gradient(160deg, #EFF6FF, #BFDBFE); }
.doc-photo--purple { background: linear-gradient(160deg, #F5F3FF, #DDD6FE); }
.doc-photo--green  { background: linear-gradient(160deg, #F0FDF4, #BBF7D0); }
.doc-photo--rose   { background: linear-gradient(160deg, #FFF1F2, #FECDD3); }
.doc-photo--indigo { background: linear-gradient(160deg, #EEF2FF, #C7D2FE); }

.doc-hod-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--hero-bg);
  color: var(--accent);
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em;
  padding: 3px 9px; border-radius: 6px;
  border: 1px solid rgba(78,205,196,0.3);
}

/* â€” Doctor Card Body â€” */
.doc-body {
  padding: 18px 18px 20px;
  flex: 1; display: flex; flex-direction: column;
}
.doc-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.doc-spec {
  font-size: 11px; font-weight: 600; letter-spacing: 0.03em;
  padding: 3px 10px; border-radius: 9999px;
  text-transform: capitalize;
}
.doc-spec--cardiology     { background: #FFF1F2; color: #E11D48; }
.doc-spec--neurology      { background: #EFF6FF; color: #2563EB; }
.doc-spec--oncology       { background: #F5F3FF; color: #7C3AED; }
.doc-spec--orthopaedics   { background: #F0FDFA; color: #0D9488; }
.doc-spec--gastroenterology { background: #FFFBEB; color: #D97706; }
.doc-spec--nephrology     { background: #EEF2FF; color: #4F46E5; }
.doc-spec--paediatrics    { background: #F0FDF4; color: #15803D; }
.doc-spec--womens         { background: #FDF4FF; color: #A21CAF; }
.doc-spec--pulmonology    { background: #F0F9FF; color: #0369A1; }
.doc-spec--endocrinology  { background: #FFFBEB; color: #B45309; }
.doc-spec--psychiatry     { background: #FAF5FF; color: #6D28D9; }
.doc-spec--dermatology    { background: #FFF1F2; color: #BE123C; }

.doc-rating {
  display: flex; align-items: center; gap: 4px;
  font-size: 13px; font-weight: 700; color: var(--text-dark);
}

.doc-name {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700;
  color: var(--text-dark); line-height: 1.2;
  margin-bottom: 4px;
}
.doc-title {
  font-size: 13px; color: var(--text-mid);
  line-height: 1.5; margin-bottom: 8px;
}
.doc-exp {
  font-size: 12px; color: var(--text-muted);
  font-weight: 500; margin-bottom: 14px;
  display: flex; align-items: center; gap: 5px;
}
.doc-exp svg { color: var(--teal); }

.doc-cta {
  margin-top: auto;
  display: block; text-align: center;
  background: linear-gradient(135deg, #0D9488, #0891B2);
  color: white; padding: 10px 16px; border-radius: 10px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.doc-cta:hover { transform: scale(1.03); box-shadow: 0 6px 18px rgba(13,148,136,0.3); }

/* â€” No Results â€” */
.doc-no-results {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; padding: 60px 20px;
  color: var(--text-muted);
  text-align: center;
  grid-column: 1 / -1;
}
.doc-no-results p { font-size: 16px; font-weight: 500; }

/* ============================================
   FEATURED DOCTOR SPOTLIGHT
   ============================================ */
.doc-spotlight {
  background: var(--hero-bg);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.doc-spotlight-orb {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(78,205,196,0.1) 0%, transparent 70%);
  border-radius: 50%; filter: blur(60px);
  top: -100px; left: -100px;
  pointer-events: none;
}
.doc-spotlight-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 0.7fr;
  gap: 72px; align-items: center;
}

.eyebrow-spotlight {
  display: inline-block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
  border: 1px solid rgba(78,205,196,0.3);
  padding: 5px 14px; border-radius: 9999px;
  background: rgba(78,205,196,0.07);
}
.doc-spotlight-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800; color: white;
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.doc-spotlight-sub {
  font-size: 14px; color: rgba(255,255,255,0.5);
  margin-bottom: 18px; font-weight: 500;
}
.doc-spotlight-desc {
  font-size: 16px; color: rgba(255,255,255,0.6);
  line-height: 1.7; margin-bottom: 24px; max-width: 520px;
}

.doc-creds {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px;
}
.doc-cred-tag {
  font-size: 12px; font-weight: 600;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  padding: 5px 12px; border-radius: 8px;
}

.doc-spl-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.doc-spl-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.65);
}

.doc-spotlight-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.doc-spotlight-link {
  font-size: 14px; font-weight: 600;
  color: var(--accent); text-decoration: none;
  display: inline-flex; align-items: center; gap: 4px;
  transition: gap 0.2s;
}
.doc-spotlight-link:hover { gap: 8px; }

/* â€” Spotlight Right: large card + stats â€” */
.doc-spotlight-right { display: flex; flex-direction: column; gap: 14px; }

.doc-spotlight-card {
  background: white; border-radius: 24px; overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.doc-spotlight-card .doc-photo { height: 220px; }

.doc-spotlight-info { padding: 20px 22px 22px; }
.doc-spotlight-info .doc-spec { margin-bottom: 8px; display: inline-block; }
.doc-spotlight-info .doc-name { font-size: 19px; margin-bottom: 4px; }
.doc-spotlight-info .doc-title { font-size: 14px; margin-bottom: 4px; }
.doc-spotlight-info .doc-exp { font-size: 13px; margin-bottom: 0; }

.doc-spl-stats-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.doc-spl-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 18px 16px;
  text-align: center;
}
.doc-spl-stat-num {
  font-family: var(--font-head);
  font-size: 28px; font-weight: 800;
  color: var(--accent); line-height: 1; display: block;
}
.doc-spl-stat-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; display: block; line-height: 1.4; }

/* ============================================
   WHY OUR DOCTORS BENTO
   ============================================ */
.why-docs-section { padding: 100px 0; background: white; }

.why-docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 0;
}
.why-doc-card {
  background: #F8FAFC;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.why-doc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
  border-color: rgba(13,148,136,0.25);
  background: white;
}
.why-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.why-icon--teal   { background: #F0FDFA; color: var(--teal); }
.why-icon--blue   { background: #EFF6FF; color: #2563EB; }
.why-icon--amber  { background: #FFFBEB; color: #D97706; }
.why-icon--purple { background: #F5F3FF; color: #7C3AED; }

.why-title {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 10px; line-height: 1.25;
}
.why-desc { font-size: 14px; color: var(--text-mid); line-height: 1.65; }

/* ============================================
   RESPONSIVE â€” TABLET (â‰¤1024px)
   ============================================ */
@media (max-width: 1024px) {
  .page-hero { padding: 140px 32px 60px; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .page-hero-visual { display: none; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .doctors-directory-grid { grid-template-columns: repeat(3, 1fr); }
  .doc-spotlight-inner { grid-template-columns: 1fr; gap: 48px; }
  .doc-spotlight-right { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 20px; }
  .doc-spl-stats-row { grid-template-columns: 1fr; }
  .why-docs-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   RESPONSIVE â€” MOBILE (â‰¤768px)
   ============================================ */
@media (max-width: 768px) {
  .page-hero { padding: 120px 20px 50px; min-height: auto; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .doc-hero-search { max-width: 100%; }
  .trust-bar { padding: 20px 0; }
  .trust-bar-inner { grid-template-columns: 1fr 1fr; padding: 0 20px; gap: 16px; }
  .doc-filter-inner { padding: 12px 20px; }
  .doc-filter-pills { gap: 5px; }
  .doc-filter-pill { padding: 7px 12px; font-size: 12px; }
  .all-doctors-section { padding: 60px 0; }
  .all-doctors-section .section-inner { padding: 0 20px; }
  .doctors-directory-grid { grid-template-columns: 1fr; gap: 16px; }
  .doc-spotlight-inner { padding: 0 20px; grid-template-columns: 1fr; }
  .doc-spotlight-right { grid-template-columns: 1fr; }
  .why-docs-section { padding: 60px 0; }
  .why-docs-section .section-inner { padding: 0 20px; }
  .why-docs-grid { grid-template-columns: 1fr; }
  .doc-spotlight { padding: 60px 0; }
}

/* ============================================
   HOMEPAGE HERO DASHBOARD WIDGET
   ============================================ */
.hero-visual {
  height: auto;
  min-height: 460px;
  align-items: flex-start;
  padding-top: 20px;
}
.hero-dashboard {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 22px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Header row */
.hdash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.hdash-live {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
}
.hdash-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--accent);
  background: rgba(78,205,196,0.12);
  border: 1px solid rgba(78,205,196,0.28);
  padding: 3px 9px;
  border-radius: 6px;
}

/* 2×2 stat grid */
.hdash-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.hdash-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  padding: 13px 15px;
}
.hdash-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.hdash-stat span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
  font-family: var(--font-body);
}
.hdash-stat--accent strong { color: var(--accent); }

/* Divider */
.hdash-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 14px;
}

/* Doctors section */
.hdash-docs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.hdash-docs-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-body);
}
.hdash-docs-count {
  font-size: 11px;
  font-weight: 600;
  color: #4ADE80;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 2px 8px;
  border-radius: 100px;
}
.hdash-doc-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 7px;
  transition: background 0.2s, border-color 0.2s;
}
.hdash-doc-row:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(78,205,196,0.2);
}
.hdash-ava {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  font-family: var(--font-head);
}
.hdash-doc-info { flex: 1; min-width: 0; }
.hdash-doc-info strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: var(--font-head);
}
.hdash-doc-info span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 1px;
  font-family: var(--font-body);
}
.hdash-open {
  font-size: 11px;
  font-weight: 600;
  color: #4ADE80;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.22);
  padding: 3px 8px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* CTA button */
.hdash-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--teal), #2563EB);
  color: white;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--font-body);
}
.hdash-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(78,205,196,0.3);
}

/* ===== HERO MOTION PATH TRACK ===== */
.hmp-track {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.hmp-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.hero-dashboard {
  position: relative;
  z-index: 2;
}
