/* ==========================================================================
   Best Children's Hospital - Vibrant Attractive Backgrounds Stylesheet
   Tagline: Right Care | Right Time | Right Place
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --dark-hero-bg: linear-gradient(135deg, #0A192F 0%, #0F2B48 45%, #1A365D 75%, #0F172A 100%);
  --dark-footer-bg: #09121F;
  --blue-primary: #2563EB;
  --blue-dark: #1D4ED8;
  --blue-light: #EEF2FF;
  --cyan-vivid: #00D8F6;
  --pink-vivid: #FF007F;
  --orange-accent: #F97316;
  --yellow-accent: #FFB800;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --border-color: #E2E8F0;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 22px 50px rgba(0, 0, 0, 0.16);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  position: relative;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  font-weight: 700;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

a { text-decoration: none; color: inherit; }

/* Page Opening & Loading Entrance Animations */
@keyframes pageHeroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(35px) scale(0.97);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pageHeroSlideRight {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pageHeroSlideLeft {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Automatic Page Opening Animations (Slower, Silky Easing) */
.hero-left-content {
  animation: pageHeroSlideRight 1.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-right-stack, .hero-form-card {
  animation: pageHeroSlideLeft 1.35s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.page-hero-title {
  animation: pageHeroFadeUp 1.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.page-hero-desc {
  animation: pageHeroFadeUp 1.25s cubic-bezier(0.16, 1, 0.3, 1) 0.18s forwards;
}

/* Scroll Reveal Animation System Engine */
.scroll-reveal,
.reveal-init,
.reveal-fade-up {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal-left {
  opacity: 0;
  transform: translateX(-45px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal-right {
  opacity: 0;
  transform: translateX(45px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.is-visible,
.scroll-reveal-left.is-visible,
.scroll-reveal-right.is-visible,
.scroll-reveal-scale.is-visible,
.reveal-init.is-visible,
.reveal-init.reveal-active,
.reveal-active {
  opacity: 1 !important;
  transform: translateY(0) translateX(0) scale(1) !important;
}

/* Stagger Delays for Grid Elements */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* Eyebrow Pill Tag */
.eyebrow-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0, 216, 246, 0.15); color: var(--cyan-vivid);
  padding: 6px 18px; border-radius: 50px; font-size: 0.82rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px;
  border: 1px solid rgba(0, 216, 246, 0.3);
}

/* Header & Top Bar */
.top-emergency-bar {
  background: #FFFFFF; color: #334155; padding: 5px 0; font-size: 0.8rem; font-weight: 500;
  border-bottom: 1px solid #E2E8F0; box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}
.top-bar-inner {
  max-width: 1440px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.emergency-hotline {
  display: inline-flex; align-items: center; gap: 7px; background: #FEF2F2; padding: 3px 12px; border-radius: 50px; border: 1px solid #FECACA;
  color: #DC2626; font-size: 0.77rem; font-weight: 600; box-shadow: 0 1px 2px rgba(220, 38, 38, 0.05); transition: all 0.2s ease;
}
.emergency-hotline:hover {
  background: #FEE2E2; border-color: #FCA5A5;
}
.emergency-hotline i {
  font-size: 0.82rem; color: #DC2626; margin-right: 2px;
}
.emergency-hotline strong {
  color: #B91C1C; font-weight: 700;
}
.pulse-dot {
  width: 7px; height: 7px; background-color: #EF4444; border-radius: 50%; animation: pulse-ring 1.8s infinite; display: inline-block; flex-shrink: 0;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
  70% { box-shadow: 0 0 0 7px rgba(239, 68, 68, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

.top-nav-links {
  display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.top-nav-link-item {
  display: inline-flex; align-items: center; gap: 6px; color: #475569; font-size: 0.76rem; font-weight: 500;
  text-decoration: none !important; padding: 3px 11px; border-radius: 50px;
  background: #F8FAFC; border: 1px solid #E2E8F0;
  transition: all 0.2s ease; white-space: nowrap;
}
.top-nav-link-item strong {
  color: #0F172A; font-weight: 700;
}
.top-nav-link-item i {
  font-size: 0.8rem; color: #2563EB; display: inline-block; flex-shrink: 0; margin-right: 4px !important;
}
.top-nav-link-item span {
  display: inline-flex; align-items: center; gap: 3px;
}
.top-nav-link-item:hover {
  background: #EFF6FF; color: #2563EB; border-color: #BFDBFE; transform: translateY(-1px);
}

.main-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9); box-shadow: 0 4px 25px rgba(15, 23, 42, 0.06); width: 100%; box-sizing: border-box;
}
.header-container {
  max-width: 1440px; margin: 0 auto; padding: 8px 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; width: 100%; box-sizing: border-box; position: relative;
}
.brand-logo-wrap { display: flex; align-items: center; text-decoration: none !important; flex-shrink: 0; }
.brand-logo-img { height: 50px; width: auto; display: block; object-fit: contain; transition: transform 0.2s ease; }
.brand-logo-wrap:hover .brand-logo-img { transform: scale(1.02); }

.header-right-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; margin-left: auto; }

.mobile-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  background: #F8FAFC;
  color: #1E293B;
  font-size: 1.35rem;
  border: 1.5px solid #CBD5E1;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
  outline: none;
  user-select: none;
  touch-action: manipulation;
}
.mobile-nav-toggle:hover, .mobile-nav-toggle:active {
  background: #EFF6FF;
  color: #2563EB;
  border-color: #93C5FD;
  transform: scale(1.05);
}

.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; flex: 1; justify-content: center; flex-wrap: nowrap; min-width: 0; }

.mobile-only-action { display: none; }

.nav-link {
  font-size: 0.79rem; font-weight: 600; color: #334155; padding: 5px 8px; border-radius: 50px;
  transition: all 0.2s ease; white-space: nowrap; text-decoration: none !important; display: inline-flex; align-items: center; gap: 3px; flex-shrink: 0;
}
.nav-link:hover { color: #2563EB; background: #F1F5F9; transform: translateY(-1px); }
.nav-link.active { color: #2563EB; background: #EFF6FF; font-weight: 700; box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1); }
.nav-link.emergency-badge-link { color: #DC2626; font-weight: 700; }
.nav-link.emergency-badge-link:hover, .nav-link.emergency-badge-link.active { color: #DC2626; background: #FEF2F2; }

.btn-appointment {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%); color: #FFFFFF; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.86rem;
  padding: 10px 20px; border-radius: 50px; border: none; cursor: pointer; transition: all 0.25s ease; display: inline-flex; align-items: center; gap: 6px;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3); white-space: nowrap; flex-shrink: 0; margin-left: 8px;
}
.btn-appointment:hover { background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37, 99, 235, 0.45); color: #FFFFFF; }

/* ==========================================================================
   SECTION 1: VIBRANT RICH HERO BANNER
   ========================================================================== */
.exact-hero-section {
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.48) 55%, rgba(15, 23, 42, 0.18) 100%), url('/images/tamil_children_playroom_banner.jpg') center/cover no-repeat;
  color: #FFFFFF; padding: 50px 24px 145px 24px; position: relative;
}
.exact-hero-section::before {
  content: ''; position: absolute; top: -100px; left: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, rgba(37, 99, 235, 0) 70%); pointer-events: none;
}
.exact-hero-section::after {
  content: ''; position: absolute; bottom: -100px; right: -100px; width: 450px; height: 450px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, rgba(16, 185, 129, 0) 70%); pointer-events: none;
}

.exact-hero-container {
  max-width: 1280px; margin: 0 auto; display: block; position: relative; z-index: 2;
}

.hero-left-content { max-width: 860px; padding-right: 0; }

/* Human-Crafted Professional Corporate Hero Typography */
.hero-category-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2563EB;
  border: none;
  color: #FFFFFF;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  backdrop-filter: none;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-heading-exact {
  font-size: 2.35rem; line-height: 1.22; color: #FFFFFF; margin: 10px 0 16px 0; font-weight: 800;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
  letter-spacing: -0.4px;
}

.hero-desc-exact {
  font-size: 1.08rem; color: rgba(255, 255, 255, 0.95); line-height: 1.65; margin-bottom: 24px; max-width: 580px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

.hero-btn-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.btn-hero-blue {
  background: linear-gradient(135deg, var(--blue-primary) 0%, #1D4ED8 100%); color: #FFFFFF; font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 1.02rem; padding: 14px 28px; border-radius: 50px; border: none; cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 8px 22px rgba(37, 99, 235, 0.45);
}
.btn-hero-blue:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37, 99, 235, 0.6); color: #FFFFFF; }

.btn-hero-outline {
  background: rgba(255, 255, 255, 0.15); color: #FFFFFF; font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 1.02rem; padding: 14px 26px; border-radius: 50px; border: 1px solid rgba(255, 255, 255, 0.4); cursor: pointer; transition: var(--transition); backdrop-filter: blur(8px);
}
.btn-hero-outline:hover { background: rgba(255, 255, 255, 0.3); border-color: #FFFFFF; }

/* Hero Play Area Pill Badge */
.hero-playarea-pill {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  padding: 8px 22px 8px 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}
.hero-playarea-thumb {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFB800;
  flex-shrink: 0;
}
.hero-playarea-info strong {
  font-size: 0.88rem;
  color: #FFFFFF;
  display: block;
  font-weight: 700;
}
.hero-playarea-info span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Right Column Stack */
.hero-right-stack { display: flex; flex-direction: column; gap: 18px; }

/* Hero Banner Image Card */
.hero-image-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.5);
}
.hero-banner-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.hero-image-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 10px 16px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-image-badge i {
  color: #FFB800;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.hero-image-badge-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
}
.hero-image-badge-text span {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-form-card {
  background: #FFFFFF; color: var(--text-dark); border-radius: 28px; padding: 26px; box-shadow: 0 24px 48px rgba(0,0,0,0.28); border: 1px solid rgba(255,255,255,0.4);
}
.form-card-title { font-size: 1.25rem; color: var(--text-dark); margin-bottom: 16px; text-align: center; font-weight: 800; }
.form-card-group { margin-bottom: 12px; }
.form-card-control {
  width: 100%; padding: 11px 16px; border-radius: 12px; border: 1px solid var(--border-color);
  font-family: inherit; font-size: 0.92rem; color: var(--text-dark); outline: none; transition: var(--transition); background: #F8FAFC;
}
.form-card-control:focus { border-color: var(--blue-primary); background: #FFFFFF; box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15); }

.form-card-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
@media (max-width: 576px) {
  .form-card-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   HERO RIGHT HIGHLIGHTS & HORIZONTAL WHATSAPP BOOKING STRIP (MATCHING SCREENSHOT 2)
   ========================================================================== */
.hero-right-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}
.hero-highlight-pill {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(10px);
  transition: transform 0.25s ease, background 0.25s ease;
}
.hero-highlight-pill:hover {
  transform: translateX(4px);
  background: rgba(15, 23, 42, 0.65);
}
.highlight-pill-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.hero-highlight-pill strong {
  display: block;
  font-size: 0.95rem;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 2px;
}
.hero-highlight-pill span {
  display: block;
  font-size: 0.78rem;
  color: #CBD5E1;
}

/* ==========================================================================
   HORIZONTAL WHATSAPP STRIP (UNIFIED CLEAN DIRECT BOOKING)
   ========================================================================== */
.hero-booking-strip-wrapper {
  max-width: 1280px;
  margin: -80px auto 36px auto;
  position: relative;
  z-index: 25;
  padding: 0 24px;
}

.hero-booking-strip-card.wa-direct-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 18px 28px;
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.12), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.95);
}

.wa-unified-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Left Cluster: Icon + Text */
.wa-left-cluster {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.wa-icon-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
}

.wa-content-text {
  flex: 1;
  min-width: 0;
}

.wa-heading-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 5px;
}

.wa-main-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.34rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.wa-pill-status {
  background: #ECFDF5;
  color: #059669;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #A7F3D0;
  white-space: nowrap;
}

.wa-pill-status.wa-pill-time {
  background: #FEF3C7;
  color: #B45309;
  border-color: #FDE68A;
}

.wa-pill-status.wa-pill-time i {
  color: #D97706;
}

.wa-main-subtext {
  font-size: 0.94rem;
  color: #475569;
  margin: 0;
  line-height: 1.45;
  font-weight: 500;
}

/* Right Stack: WhatsApp Number Above + Lengthy Tab Below */
.wa-right-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 360px;
  max-width: 100%;
  flex-shrink: 0;
}

/* WhatsApp Number Above Pill - Strictly 1 Line */
.wa-number-above-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #F0FDF4;
  border: 1.5px solid #22C55E;
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.10);
  box-sizing: border-box;
  width: 100%;
  white-space: nowrap !important;
  flex-wrap: nowrap !important;
}

.wa-number-above-pill:hover {
  background: #DCFCE7;
  border-color: #16A34A;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.18);
}

.wa-pill-left-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #15803D;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  white-space: nowrap !important;
  flex-shrink: 0;
}

.wa-pill-left-label span {
  white-space: nowrap !important;
}

.wa-pill-left-label i {
  font-size: 1.15rem;
  color: #22C55E;
}

.wa-pill-digits {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #064E3B;
  letter-spacing: 0.2px;
  white-space: nowrap !important;
  flex-shrink: 0;
}

/* Below: Lengthy "Book on WhatsApp" Tab */
.btn-wa-lengthy-tab {
  width: 100%;
  background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
  color: #FFFFFF !important;
  text-decoration: none !important;
  font-family: 'Outfit', sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
  transition: all 0.25s ease;
  box-sizing: border-box;
}

.btn-wa-lengthy-tab:hover {
  background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.48);
  color: #FFFFFF !important;
}

.btn-wa-lengthy-tab i.fa-whatsapp {
  font-size: 1.30rem;
}

.btn-wa-lengthy-tab i.fa-arrow-right {
  font-size: 0.92rem;
  margin-left: 4px;
  transition: transform 0.2s ease;
}

.btn-wa-lengthy-tab:hover i.fa-arrow-right {
  transform: translateX(4px);
}

/* Legacy alias support */
.wa-right-cluster {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 360px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .wa-unified-strip {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }
  .wa-left-cluster {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .wa-heading-row {
    justify-content: center;
  }
  .wa-right-stack {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .hero-booking-strip-card.wa-direct-card {
    padding: 18px 16px;
    border-radius: 16px;
  }
  .wa-right-stack {
    width: 100%;
  }
  .wa-number-above-pill {
    padding: 8px 12px;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    justify-content: center;
    gap: 6px;
  }
  .wa-pill-left-label {
    font-size: 0.74rem;
  }
  .wa-pill-digits {
    font-size: 0.96rem;
  }
  .btn-wa-lengthy-tab {
    padding: 12px 18px;
    font-size: 0.96rem;
  }
}


/* WhatsApp Booking Card - Clean & Classic Universal Design */
.whatsapp-booking-card {
  background: #FFFFFF;
  color: var(--text-dark);
  border-radius: 28px;
  padding: 32px 30px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
  overflow: hidden;
}

.whatsapp-card-topbar-clean {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.whatsapp-live-pill-clean {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ECFDF5;
  color: #065F46;
  border: 1px solid #A7F3D0;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
}

.whatsapp-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseLiveDot 1.8s infinite;
}

@keyframes pulseLiveDot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.whatsapp-reply-speed {
  font-size: 0.8rem;
  font-weight: 700;
  color: #059669;
  background: #F0FDF4;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid #DCFCE7;
  display: inline-flex;
  align-items: center;
}

.whatsapp-clean-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 8px;
  line-height: 1.25;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-title-icon {
  color: #25D366;
  font-size: 1.9rem;
}

.whatsapp-clean-subtitle {
  font-size: 0.94rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 22px;
}

/* 3 Clean, Simple Steps */
.whatsapp-step-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.whatsapp-step-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 11px 16px;
  border-radius: 16px;
  transition: all 0.2s ease;
}

.whatsapp-step-item:hover {
  background: #F0FDF4;
  border-color: #86EFAC;
  transform: translateX(3px);
}

.step-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #DCFCE7;
  color: #16A34A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-text-wrap {
  display: flex;
  flex-direction: column;
}

.step-text-wrap strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #0F172A;
}

.step-text-wrap span {
  font-size: 0.8rem;
  color: #64748B;
  margin-top: 1px;
}

/* Giant, High-Impact WhatsApp Action Button */
.btn-whatsapp-giant {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 16px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF !important;
  font-family: 'Outfit', sans-serif;
  text-decoration: none !important;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}

.btn-whatsapp-giant:hover {
  background: linear-gradient(135deg, #20BA5A 0%, #0E7467 100%);
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.6);
  color: #FFFFFF !important;
}

.btn-whatsapp-giant i.fa-whatsapp {
  font-size: 2.1rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  flex-shrink: 0;
}

.giant-btn-text {
  flex-grow: 1;
  text-align: left;
  line-height: 1.25;
}

.giant-btn-text strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.giant-btn-text span {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.95;
  display: block;
  margin-top: 2px;
}

.giant-arrow {
  font-size: 1.15rem;
  opacity: 0.85;
  transition: transform 0.2s ease;
}

.btn-whatsapp-giant:hover .giant-arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* Helpline Clean Row */
.whatsapp-helpline-clean {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.helpline-label {
  font-size: 0.82rem;
  color: #64748B;
  font-weight: 500;
}

.helpline-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #DC2626;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  padding: 6px 14px;
  border-radius: 50px;
  transition: all 0.2s ease;
}

.helpline-phone-btn:hover {
  background: #DC2626;
  color: #FFFFFF;
  border-color: #DC2626;
}

/* Tablet & Mobile Responsive Adjustments for WhatsApp Booking Card */
@media (max-width: 991px) {
  .whatsapp-booking-card {
    max-width: 540px;
    margin: 0 auto;
    padding: 28px 24px;
  }
}

@media (max-width: 767px) {
  .whatsapp-booking-card {
    padding: 20px 16px !important;
    border-radius: 22px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .whatsapp-card-topbar-clean {
    gap: 6px;
    margin-bottom: 12px;
  }
  .whatsapp-live-pill-clean {
    font-size: 0.76rem;
    padding: 4px 10px;
  }
  .whatsapp-reply-speed {
    font-size: 0.74rem;
    padding: 4px 10px;
  }
  .whatsapp-clean-title {
    font-size: 1.25rem;
    gap: 8px;
    margin-bottom: 6px;
  }
  .whatsapp-title-icon {
    font-size: 1.55rem;
  }
  .whatsapp-clean-subtitle {
    font-size: 0.85rem;
    line-height: 1.45;
    margin-bottom: 16px;
  }
  .whatsapp-step-list {
    gap: 8px;
    margin-bottom: 18px;
  }
  .whatsapp-step-item {
    padding: 9px 12px;
    gap: 10px;
    border-radius: 12px;
  }
  .step-icon-wrap {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }
  .step-text-wrap strong {
    font-size: 0.84rem;
  }
  .step-text-wrap span {
    font-size: 0.72rem;
  }
  .btn-whatsapp-giant {
    padding: 13px 16px;
    border-radius: 14px;
    gap: 10px;
  }
  .btn-whatsapp-giant i.fa-whatsapp {
    font-size: 1.7rem;
  }
  .giant-btn-text strong {
    font-size: 0.98rem;
  }
  .giant-btn-text span {
    font-size: 0.72rem;
  }
  .giant-arrow {
    font-size: 1rem;
  }
  .whatsapp-helpline-clean {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-top: 14px;
    padding-top: 12px;
    width: 100%;
  }
  .helpline-phone-btn {
    width: 100%;
    justify-content: center;
    padding: 8px 14px;
    font-size: 0.84rem;
  }
  .modal-card.whatsapp-booking-card {
    width: calc(100vw - 24px) !important;
    max-width: 100% !important;
    padding: 22px 16px !important;
    margin: auto !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
  }
}

@media (max-width: 420px) {
  .whatsapp-clean-title {
    font-size: 1.15rem;
  }
  .giant-btn-text strong {
    font-size: 0.92rem;
  }
  .giant-arrow {
    display: none;
  }
}


/* Inline Hero Statistics Bar (Left Column Alignment) */
.hero-stats-inline {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  background: transparent;
  backdrop-filter: none;
  border: none;
  padding: 0;
  max-width: fit-content;
  flex-wrap: wrap;
}

.hero-stat-item strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.hero-stat-item span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
  margin-top: 4px;
  display: block;
  white-space: nowrap;
}

.hero-stat-divider {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   SECTION 2: 3-COLUMN STANDALONE QUICK FEATURE RIBBON (SPACIOUS & DE-CONGESTED)
   ========================================================================== */
.floating-ribbon-wrapper { max-width: 1280px; margin: 10px auto 60px auto; padding: 0 24px; position: relative; z-index: 10; }
.floating-ribbon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ribbon-item-card {
  background: linear-gradient(135deg, #E6FFFA 0%, #E0F2FE 100%); border-radius: 24px; padding: 30px 26px;
  display: flex; align-items: center; gap: 20px; box-shadow: var(--shadow-soft); transition: var(--transition); border: 1px solid #CCFBF1;
}
.ribbon-item-card.highlight {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%); color: #FFFFFF; box-shadow: 0 14px 35px rgba(37, 99, 235, 0.4); border: none;
}
.ribbon-item-card.highlight h4, .ribbon-item-card.highlight p { color: #FFFFFF; }
.ribbon-item-card.lavender {
  background: linear-gradient(135deg, #FDF2F8 0%, #EEF2FF 100%); border-color: #FBCFE8;
}
.ribbon-item-icon {
  width: 54px; height: 54px; border-radius: 18px; background: #FFFFFF; color: var(--blue-primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

/* ==========================================================================
   SECTION 3: ABOUT US SECTION (Warm Soft Mint Tint)
   ========================================================================== */
.about-section-exact {
  background: linear-gradient(180deg, #F0FDFA 0%, #FFFFFF 100%); border-radius: 36px; padding: 60px 32px 90px 32px; max-width: 1280px; margin: 0 auto 90px auto; border: 1px solid #E6FFFA;
}
.about-grid-exact { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-image-stack { display: flex; gap: 20px; height: 420px; }

/* Animated Image Frame System (Zero Heavy Video Overhead, Smooth Ken Burns & Sheen) */
.about-img-frame {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  position: relative;
  border: 4px solid #FFFFFF;
  background: #F1F5F9;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-img-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.2);
}

.animated-hospital-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: photoKenBurns 14s ease-in-out infinite alternate;
}

.about-img-frame:hover .animated-hospital-photo {
  transform: scale(1.08);
  animation-play-state: paused;
}

@keyframes photoKenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.06) translate(-4px, -3px);
  }
  100% {
    transform: scale(1.03) translate(3px, 4px);
  }
}

/* Light Sheen Overlay Effect */
.about-img-frame::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  pointer-events: none;
  animation: photoSheenPass 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  z-index: 2;
}

@keyframes photoSheenPass {
  0%, 70% {
    left: -70%;
  }
  100% {
    left: 170%;
  }
}
.about-features-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 24px 0 32px 0; }
.about-feature-box { background: #FFFFFF; border-radius: 18px; padding: 22px; display: flex; gap: 14px; align-items: flex-start; box-shadow: 0 6px 20px rgba(0,0,0,0.04); border: 1px solid #E2E8F0; }
.about-feature-icon {
  width: 44px; height: 44px; border-radius: 14px; background: var(--blue-primary); color: #FFFFFF;
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0;
}
.btn-orange-cta {
  background: linear-gradient(135deg, #F97316 0%, #EA580C 100%); color: #FFFFFF; font-family: 'Outfit', sans-serif; font-weight: 700;
  font-size: 1.05rem; padding: 16px 34px; border-radius: 50px; border: none; cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 8px 22px rgba(249, 115, 22, 0.4);
}
.btn-orange-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(249, 115, 22, 0.55); color: #FFFFFF; }

/* ==========================================================================
   SECTION 4: PARTNERSHIP & GLOBAL STANDARDS BANNER (Deep Sapphire Blue)
   ========================================================================== */
.partnership-banner-wrapper { max-width: 1280px; margin: 0 auto 90px auto; padding: 0 24px; }
.partnership-banner-card {
  background: linear-gradient(135deg, #0F172A 0%, #1E3A8A 50%, #0F4C81 100%);
  color: #FFFFFF;
  border-radius: 32px;
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}
.partner-logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.partner-tab-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 10px 22px;
  border-radius: 50px;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
  text-decoration: none;
}
.partner-tab-pill:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.partner-tab-pill.nabh-pill {
  background: rgba(255, 184, 0, 0.14);
  border-color: rgba(255, 184, 0, 0.45);
  cursor: pointer;
  font-family: inherit;
}
.partner-tab-pill.nabh-pill:hover {
  background: rgba(255, 184, 0, 0.24);
  border-color: #FFB800;
  box-shadow: 0 6px 20px rgba(255, 184, 0, 0.25);
  transform: translateY(-2px);
}
.partner-tab-pill .pill-badge {
  background: #FFB800;
  color: #0F172A;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 768px) {
  .partnership-banner-card {
    padding: 36px 20px;
  }
  .partner-tab-pill {
    font-size: 0.84rem;
    padding: 8px 16px;
  }
}

/* Modal action & download buttons */
.btn-modal-action {
  background: linear-gradient(135deg, #00A3E0 0%, #0284C7 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  font-size: 0.86rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 163, 224, 0.25);
  cursor: pointer;
}
.btn-modal-action:hover {
  background: linear-gradient(135deg, #0284C7 0%, #0369A1 100%);
  color: #FFFFFF !important;
  transform: translateY(-1px);
}
.btn-modal-download {
  background: #0F172A;
  color: #FFFFFF !important;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  font-size: 0.86rem;
  transition: all 0.2s ease;
  border: 1px solid #334155;
  cursor: pointer;
}
.btn-modal-download:hover {
  background: #1E293B;
  color: #FFFFFF !important;
  border-color: #475569;
  transform: translateY(-1px);
}

/* ==========================================================================
   SECTION 5: 6-CARD HEALTHCARE SERVICES (Vibrant Colorful Tint Cards)
   ========================================================================== */
.services-section-exact { padding: 0 24px 90px 24px; max-width: 1280px; margin: 0 auto; }
.services-grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card-exact {
  background: #ECFEFF; border-radius: 26px; padding: 36px 28px; transition: var(--transition); display: flex; flex-direction: column; justify-content: space-between; min-height: 270px; border: 1px solid #A5F3FC;
}
.service-card-exact:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-card-exact.active-blue { background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%); color: #FFFFFF; box-shadow: 0 16px 38px rgba(37, 99, 235, 0.4); border: none; }
.service-card-exact.active-blue h3, .service-card-exact.active-blue p { color: #FFFFFF; }
.service-card-exact.lavender-tint { background: #F5F3FF; border-color: #DDD6FE; }
.service-card-exact.emerald-tint { background: #ECFDF5; border-color: #A7F3D0; }
.service-card-exact.amber-tint { background: #FFFBEB; border-color: #FDE68A; }
.service-card-exact.dark-help { background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%); color: #FFFFFF; border: none; }
.service-card-exact.dark-help h3, .service-card-exact.dark-help p { color: #FFFFFF; }

/* ==========================================================================
   SECTION 6: DOCTOR DIRECTORY
   ========================================================================== */
.doctors-section-exact { padding: 0 24px 70px 24px; max-width: 1380px; margin: 0 auto; }
.doctors-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.doctors-grid-team { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: stretch; }
.doctors-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; align-items: start; }

@media (max-width: 1240px) {
  .doctors-grid-team, .doctors-grid-5 { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 768px) {
  .doctors-grid-team, .doctors-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 440px) {
  .doctors-grid-team, .doctors-grid-5 { grid-template-columns: 1fr; gap: 12px; }
}

/* Compact Doctor Card */
.doctor-card-compact {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.doctor-card-compact:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
  border-color: #2563EB;
}
.doctor-card-compact.is-expanded {
  border-color: #2563EB;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.14);
}
.doctor-card-compact .doc-compact-img {
  position: relative;
  height: 155px;
  width: 100%;
  overflow: hidden;
  background: #F1F5F9;
  flex-shrink: 0;
}
.doctor-card-compact .doc-compact-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.3s ease;
}
.doctor-card-compact:hover .doc-compact-img img {
  transform: scale(1.05);
}
.doctor-card-compact .doc-compact-pill {
  position: absolute;
  top: 8px;
  left: 8px;
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
  letter-spacing: 0.2px;
}
.doctor-card-compact .doc-compact-body {
  padding: 12px 10px 14px 10px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}
.doctor-card-compact .doc-main-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.doctor-card-compact .doc-name {
  font-size: 0.98rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 1px 0;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.doctor-card-compact .doc-tamil {
  font-size: 0.75rem;
  color: #64748B;
  font-weight: 600;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.doctor-card-compact .doc-role {
  font-size: 0.77rem;
  color: #2563EB;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 32px;
}
.doctor-card-compact .doc-qual {
  font-size: 0.69rem;
  color: #0F4C81;
  background: #EFF6FF;
  border: 1px solid #DBEAFE;
  padding: 3px 6px;
  border-radius: 6px;
  font-weight: 600;
  margin: 0 auto 6px auto;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: block;
}
.doctor-card-compact .doc-short-desc {
  font-size: 0.73rem;
  color: #475569;
  line-height: 1.35;
  margin: 4px 0 6px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}
.doctor-card-compact .btn-doc-expand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  color: #2563EB;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 2px auto 8px auto;
  font-family: inherit;
}
.doctor-card-compact .btn-doc-expand:hover {
  background: #EFF6FF;
  border-color: #93C5FD;
  color: #1D4ED8;
}
.doctor-card-compact .btn-doc-expand .expand-icon {
  font-size: 0.62rem;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.doctor-card-compact.is-expanded .btn-doc-expand {
  background: #EFF6FF;
  border-color: #2563EB;
  color: #1D4ED8;
}
.doctor-card-compact.is-expanded .btn-doc-expand .expand-icon {
  transform: rotate(180deg);
}
.doctor-card-compact .doc-expand-drawer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  width: 100%;
  text-align: left;
}
.doctor-card-compact.is-expanded .doc-expand-drawer {
  max-height: 700px;
  opacity: 1;
}
.doctor-card-compact .doc-drawer-content {
  padding: 8px 2px 4px 2px;
  border-top: 1px dashed #CBD5E1;
  margin-top: 4px;
}
.doctor-card-compact .drawer-desc {
  font-size: 0.70rem;
  color: #475569;
  line-height: 1.4;
  margin: 0 0 8px 0;
}
.doctor-card-compact .drawer-section {
  margin-bottom: 8px;
}
.doctor-card-compact .drawer-title {
  font-size: 0.69rem;
  font-weight: 800;
  color: #0F172A;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.doctor-card-compact .drawer-title i {
  color: #2563EB;
}
.doctor-card-compact .drawer-list {
  margin: 0;
  padding-left: 14px;
  font-size: 0.70rem;
  color: #475569;
  line-height: 1.35;
}
.doctor-card-compact .drawer-list li {
  margin-bottom: 3px;
}
.doctor-card-compact .drawer-meta-grid {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: #F8FAFC;
  border-radius: 8px;
  padding: 6px 8px;
  border: 1px solid #E2E8F0;
}
.doctor-card-compact .drawer-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.doctor-card-compact .drawer-meta-item i {
  color: #2563EB;
  margin-top: 2px;
  font-size: 0.72rem;
  flex-shrink: 0;
}
.doctor-card-compact .drawer-meta-item .meta-label {
  font-weight: 700;
  color: #0F172A;
  display: block;
  font-size: 0.67rem;
  line-height: 1.2;
}
.doctor-card-compact .drawer-meta-item .meta-val {
  color: #475569;
  font-size: 0.67rem;
  line-height: 1.2;
}
.doctor-card-compact .btn-compact-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  padding: 8px 10px;
  font-size: 0.80rem;
  font-weight: 700;
  color: #FFFFFF;
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 10px;
}
.doctor-card-compact .btn-compact-book:hover {
  background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.35);
  transform: translateY(-1px);
}
.doc-filter-pills { display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.doc-pill-btn { background: #FFFFFF; border: 1px solid #CBD5E1; color: #475569; font-size: 0.82rem; font-weight: 700; padding: 6px 14px; border-radius: 50px; cursor: pointer; transition: all 0.2s ease; display: inline-flex; align-items: center; gap: 6px; }
.doc-pill-btn:hover { background: #F1F5F9; color: #0F172A; border-color: #94A3B8; }
.doc-pill-btn.active { background: #2563EB; color: #FFFFFF; border-color: #2563EB; box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25); }
.doctor-card-exact { background: #FFFFFF; border-radius: 24px; overflow: hidden; border: 1px solid var(--border-color); box-shadow: var(--shadow-soft); transition: var(--transition); text-align: center; }
.doctor-card-exact:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.doctor-img-box { height: 260px; width: 100%; background: #F1F5F9; overflow: hidden; }
.doctor-img-box img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.doctor-info-box { padding: 22px 18px; }

/* ==========================================================================
   SECTION 7: WHY CHOOSE US
   ========================================================================== */
.why-us-section-exact { padding: 0 24px 90px 24px; max-width: 1280px; margin: 0 auto; }
.why-us-grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.why-us-card { background: #F0F7FF; border-radius: 22px; padding: 32px 28px; display: flex; gap: 20px; align-items: flex-start; border: 1px solid #BAE6FD; }
.step-number-circle { width: 46px; height: 46px; border-radius: 50%; background: var(--blue-primary); color: #FFFFFF; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.15rem; flex-shrink: 0; box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3); }

/* ==========================================================================
   SECTION 8: PATIENT TESTIMONIALS (Deep Royal Blue)
   ========================================================================== */
.testimonials-section-exact { background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%); color: #FFFFFF; padding: 90px 24px; margin-bottom: 90px; }
.testimonials-container { max-width: 1280px; margin: 0 auto; }
.testimonials-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.testimonial-card-exact { background: #FFFFFF; color: var(--text-dark); border-radius: 24px; padding: 34px 28px; box-shadow: var(--shadow-soft); }

/* ==========================================================================
   SECTION 9 & 10: NEWS & NEWSLETTER
   ========================================================================== */
.news-section-exact { padding: 0 24px 90px 24px; max-width: 1280px; margin: 0 auto; }
.news-grid-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 28px; }
.news-featured-card { position: relative; border-radius: 28px; overflow: hidden; height: 400px; box-shadow: var(--shadow-soft); display: flex; flex-direction: column; justify-content: flex-end; padding: 36px; color: #FFFFFF; }
.news-featured-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }
.news-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.2) 100%); z-index: 2; }
.news-featured-content { position: relative; z-index: 3; }
.news-side-stack { display: flex; flex-direction: column; gap: 20px; }
.news-small-card { background: #FFFFFF; border-radius: 22px; padding: 22px; border: 1px solid var(--border-color); display: flex; gap: 18px; align-items: center; box-shadow: var(--shadow-soft); }
.news-small-card img { width: 95px; height: 95px; border-radius: 16px; object-fit: cover; }

.newsletter-section-exact { max-width: 1280px; margin: 0 auto 90px auto; padding: 0 24px; }
.newsletter-card-exact { background: linear-gradient(135deg, #EFF6FF 0%, #FDF2F8 100%); border-radius: 32px; padding: 54px 44px; text-align: center; border: 1px solid #DBEAFE; }
.newsletter-form-row { max-width: 520px; margin: 26px auto 0 auto; display: flex; gap: 12px; }
.newsletter-input { flex: 1; padding: 15px 22px; border-radius: 50px; border: 1px solid var(--border-color); outline: none; font-size: 0.95rem; }

/* ==========================================================================
   FIXED PREMIUM DARK FOOTER
   ========================================================================== */
.main-footer { background: var(--dark-footer-bg); color: #FFFFFF; padding: 80px 24px 30px 24px; position: relative; z-index: 10; }
.footer-container { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.5fr; gap: 48px; padding-bottom: 50px; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
.footer-logo-wrap { display: inline-block; margin-bottom: 14px; }
.footer-logo-img {
  height: 48px; width: auto; max-width: 260px; display: block; background: #FFFFFF;
  padding: 6px 14px; border-radius: 10px; box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  object-fit: contain; transition: transform 0.2s ease;
}
.footer-logo-wrap:hover .footer-logo-img { transform: translateY(-2px); }
.footer-brand-title { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; color: #FFFFFF; margin-bottom: 6px; }
.footer-brand-tagline { font-size: 0.82rem; font-weight: 700; color: var(--yellow-accent); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; display: block; }
.footer-brand-desc { color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; line-height: 1.65; max-width: 380px; margin-bottom: 24px; }

.social-pills-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-pill-btn {
  background: rgba(255, 255, 255, 0.1); color: #FFFFFF; padding: 8px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px; transition: var(--transition); border: 1px solid rgba(255, 255, 255, 0.15);
}
.social-pill-btn:hover { background: var(--blue-primary); border-color: var(--blue-primary); transform: translateY(-2px); color: #FFFFFF; }

.footer-heading { font-size: 1.15rem; color: #FFFFFF; font-weight: 700; margin-bottom: 24px; position: relative; }
.footer-heading::after { content: ''; display: block; width: 28px; height: 3px; background: var(--blue-primary); border-radius: 2px; margin-top: 8px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255, 255, 255, 0.75); font-size: 0.92rem; font-weight: 500; transition: var(--transition); display: inline-block; }
.footer-links a:hover { color: var(--blue-primary); transform: translateX(4px); }

.footer-contact-item { color: rgba(255, 255, 255, 0.8); font-size: 0.92rem; margin-bottom: 14px; display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-item i { color: var(--blue-primary); margin-top: 4px; font-size: 1.05rem; flex-shrink: 0; }

.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 30px; display: flex; justify-space-between; align-items: center; flex-wrap: wrap; gap: 16px; color: rgba(255, 255, 255, 0.6); font-size: 0.88rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255, 255, 255, 0.6); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--blue-primary); }

/* Modal Overlay */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(15, 23, 42, 0.82); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000000 !important; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: var(--transition); padding: 20px;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal-card { background: #FFFFFF; border-radius: 28px; width: 100%; max-width: 580px; padding: 40px; position: relative; box-shadow: var(--shadow-hover); }
.modal-close-btn {
  position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; border-radius: 50%; background: #F1F5F9; border: none; font-size: 1.4rem; color: #64748B; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.modal-close-btn:hover { background: var(--pink-vivid); color: #FFFFFF; }

.form-group-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-input-control { width: 100%; padding: 12px 16px; border-radius: 12px; border: 1px solid var(--border-color); font-family: inherit; font-size: 0.92rem; color: var(--text-dark); outline: none; transition: var(--transition); }
.form-input-control:focus { border-color: var(--blue-primary); }

@media (max-width: 992px) {
  .footer-container { grid-template-columns: 1fr 1fr; }
  .exact-hero-container, .about-grid-exact, .news-grid-layout { grid-template-columns: 1fr; }
  .hero-heading-exact { font-size: 2.1rem; }
  .floating-ribbon-grid, .services-grid-6, .doctors-grid-4, .testimonials-grid-3 { grid-template-columns: 1fr; }
  .why-us-grid-4 { grid-template-columns: 1fr; }
}

/* Page Hero Banners with Relatable Background Images */
.page-hero-banner {
  position: relative;
  padding: 48px 24px 52px 24px;
  min-height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(226, 232, 240, 0.2);
  overflow: hidden;
  box-shadow: inset 0 -20px 30px rgba(0,0,0,0.2);
}

.page-hero-banner.banner-mother-child {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 58, 138, 0.75) 100%), url('/images/tamil_mother_hero.jpg') center 30%/cover no-repeat;
}
.page-hero-banner.banner-specialties {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 76, 129, 0.75) 100%), url('/images/specialties_hero.jpg') center 35%/cover no-repeat;
}
.page-hero-banner.banner-doctors {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(37, 99, 235, 0.75) 100%), url('/images/doctors_team_hero.jpg') center 25%/cover no-repeat;
}
.page-hero-banner.banner-vaccine {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(6, 182, 212, 0.75) 100%), url('/images/toddler_vaccine_hero.jpg') center 30%/cover no-repeat;
}
.page-hero-banner.banner-emergency {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.90) 0%, rgba(220, 38, 38, 0.80) 100%), url('/images/emergency_pediatric_banner.jpg') center 30%/cover no-repeat;
}
.page-hero-banner.banner-contact {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 76, 129, 0.75) 100%), url('/images/hospital_reception_hero.jpg') center 35%/cover no-repeat;
}

.page-hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 6px 0 10px 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);
  letter-spacing: -0.3px;
}

.page-hero-desc {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.95);
  max-width: 740px;
  margin: 0 auto;
  line-height: 1.55;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

/* Mother & Child Page Layout & Bounded Image Cards */
.mother-child-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  align-items: stretch;
}

.mother-child-card {
  background: #FFFFFF;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mother-child-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
}

.mother-child-card-img-wrap {
  position: relative;
  width: 100%;
  height: 230px;
  max-height: 230px;
  overflow: hidden;
  background: #F1F5F9;
}

.mother-child-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.mother-child-card-body {
  padding: 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* ==========================================================================
   WHATSAPP PARENT CARE COMMUNITY CHANNEL BANNER
   ========================================================================== */
.whatsapp-channel-section {
  max-width: 1280px;
  margin: 60px auto;
  padding: 0 24px;
}

.whatsapp-channel-container {
  background: linear-gradient(135deg, #075E54 0%, #128C7E 45%, #0B4B42 100%);
  border-radius: 32px;
  padding: 44px 48px;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 36px;
  align-items: center;
  box-shadow: 0 16px 40px rgba(18, 140, 126, 0.25);
  position: relative;
  overflow: hidden;
}

.whatsapp-channel-container::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.25) 0%, rgba(37, 211, 102, 0) 70%);
  pointer-events: none;
}

.whatsapp-badge-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

.whatsapp-channel-title {
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.whatsapp-channel-desc {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  margin-bottom: 24px;
}

.whatsapp-features-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.whatsapp-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 600;
  color: #FFFFFF;
}

.btn-whatsapp-join {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #075E54;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-whatsapp-join:hover {
  background: #20BA5A;
  color: #053D37;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

/* WhatsApp Card Preview Mockup */
.whatsapp-card-preview {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  color: #0F172A;
}

.whatsapp-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #F1F5F9;
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.whatsapp-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.2rem;
}

.whatsapp-chat-info strong {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.98rem;
  color: #0F172A;
}

.whatsapp-chat-info span {
  font-size: 0.78rem;
  color: #64748B;
  display: block;
}

.whatsapp-msg-bubble {
  background: #DCF8C6;
  border-radius: 16px;
  border-top-left-radius: 4px;
  padding: 14px 16px;
  color: #0F172A;
}

.whatsapp-msg-tag {
  display: inline-block;
  background: #25D366;
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.whatsapp-msg-text {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #1E293B;
  margin: 0 0 8px 0;
}

.whatsapp-msg-time {
  font-size: 0.7rem;
  color: #64748B;
  display: block;
  text-align: right;
}

@media (max-width: 992px) {
  .whatsapp-channel-container {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
}

/* ==========================================================================
   SPECIALTIES PAGE 2-COLUMN LAYOUT & SIDEBAR STYLES
   ========================================================================== */
.specialty-layout-container {
  max-width: 1280px;
  margin: 40px auto 80px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 36px;
  align-items: start;
}

.specialty-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sidebar-nav-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}

.sidebar-nav-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #EFF6FF;
}

.sidebar-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-menu-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 12px;
  color: #475569;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none !important;
  transition: all 0.2s ease;
  background: #F8FAFC;
}

.sidebar-menu-item a:hover,
.sidebar-menu-item a.active {
  background: #EFF6FF;
  color: var(--blue-primary);
  font-weight: 700;
}

.sidebar-cta-card {
  background: linear-gradient(135deg, #0F4C81 0%, #1E3A8A 100%);
  border-radius: 24px;
  padding: 24px;
  color: #FFFFFF;
  box-shadow: 0 10px 28px rgba(15, 76, 129, 0.22);
}

.sidebar-cta-card h4 {
  color: #FFFFFF;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
}

.sidebar-check-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.9);
}

.sidebar-check-list li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-check-list i {
  color: #38BDF8;
}

.specialty-content-area {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.specialty-section-block {
  background: #FFFFFF;
  border-radius: 28px;
  padding: 36px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-soft);
}

.specialty-section-block h2 {
  font-size: 1.75rem;
  color: #0F172A;
  font-weight: 800;
  margin-bottom: 16px;
}

/* Facilities Bullet Grid Styles */
.facilities-bullet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.facility-bullet-item {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
}

.facility-bullet-item:hover {
  background: #FFFFFF;
  border-color: #2563EB;
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.12);
}

.facility-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  background: rgba(37, 99, 235, 0.1);
  color: #2563EB;
  transition: all 0.3s ease;
}

.facility-bullet-item:hover .facility-icon-box {
  background: #2563EB;
  color: #FFFFFF;
  transform: scale(1.08);
}

.facility-item-content strong {
  display: block;
  font-size: 0.94rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.3;
}

.facility-item-content span {
  display: block;
  font-size: 0.78rem;
  color: #64748B;
  margin-top: 2px;
}

/* Accordion Wrapper & Item Styling */
.accordion-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.accordion-item, .faq-accordion-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.accordion-header {
  width: 100%;
  padding: 18px 22px;
  background: #F8FAFC;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  transition: all 0.25s ease;
}

.accordion-header:hover {
  background: #F1F5F9;
}

.accordion-header-text {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.02rem;
  color: #0F172A;
}

.accordion-header-text i {
  font-size: 1.1rem;
}

.accordion-icon {
  color: #64748B;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.accordion-item.active, .faq-accordion-item.active {
  border-color: #2563EB;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.12);
}

.accordion-item.active .accordion-header, .faq-accordion-item.active .accordion-header {
  background: #EFF6FF;
  color: #2563EB;
}

.accordion-item.active .accordion-header-text, .faq-accordion-item.active .accordion-header-text {
  color: #2563EB;
}

.accordion-item.active .accordion-icon, .faq-accordion-item.active .accordion-icon {
  transform: rotate(180deg);
  color: #2563EB;
}

.accordion-body {
  padding: 20px 22px;
  border-top: 1px solid #E2E8F0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: #475569;
  display: none;
  background: #FFFFFF;
}

.accordion-item.active .accordion-body, .faq-accordion-item.active .accordion-body {
  display: block;
  animation: accordionExpand 0.3s ease-out forwards;
}

@keyframes accordionExpand {
  0% { opacity: 0; transform: translateY(-6px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Doctor Card Modern Design */
.doctor-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.doctor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
  border-color: #2563EB;
}

.doctor-img-wrap {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #F1F5F9;
  flex-shrink: 0;
}

.doctor-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.doctor-card:hover .doctor-img-wrap img {
  transform: scale(1.04);
}

.doc-info {
  padding: 22px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: center;
}

.doc-info h4 {
  font-size: 1.1rem;
  color: #0F172A;
  font-weight: 800;
  margin: 0 0 4px 0;
}

.doc-info span {
  font-size: 0.84rem;
  color: #2563EB;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.doc-info p {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.doc-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.85);
  color: #FFFFFF;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-doc-book {
  width: 100%;
  padding: 11px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  margin-top: auto;
}

.btn-doc-book:hover {
  background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

/* Priority Banner with Top Highlighting Accent Bar */
.bottom-priority-banner {
  max-width: 1280px;
  margin: 36px auto 48px auto;
  padding: 0 24px;
  width: 100%;
}

.priority-banner-card {
  position: relative;
  background: linear-gradient(135deg, #09121F 0%, #0F2B48 50%, #1A365D 100%);
  border-radius: 24px;
  padding: 36px 28px;
  color: #FFFFFF;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.25);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Glowing Top Highlighting Accent Bar */
.priority-banner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #00D8F6 0%, #2563EB 50%, #FF007F 100%);
  box-shadow: 0 0 12px rgba(0, 216, 246, 0.8);
}

.priority-banner-card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  line-height: 1.25;
}

.priority-banner-card p {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 580px;
  line-height: 1.6;
}

.priority-banner-card .btn-appointment {
  background: #FFFFFF;
  color: #0F4C81;
  padding: 13px 30px;
  font-size: 0.94rem;
  font-weight: 800;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 4px;
}

.priority-banner-card .btn-appointment:hover {
  background: #00D8F6;
  color: #0F172A;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 216, 246, 0.45);
}

/* ==========================================================================
   FULL RESPONSIVENESS (DESKTOP, LAPTOP, TABLETS, MOBILE)
   ========================================================================== */

/* Laptops & Standard Desktops (992px - 1199px) */
@media (max-width: 1199px) {
  .specialty-layout-container {
    grid-template-columns: 280px 1fr;
    gap: 24px;
  }
}

/* ==========================================================================
   COMPREHENSIVE TABLET & MOBILE RESPONSIVE DESIGN SYSTEM
   ========================================================================== */

/* 1. Mobile Hamburger Toggle & Nav Drawer Default Styles */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #0F172A;
  font-size: 1.5rem;
  padding: 6px 10px;
  cursor: pointer;
  border-radius: 8px;
  transition: var(--transition);
}

.mobile-nav-toggle:hover {
  background: #F1F5F9;
  color: #2563EB;
}

.mobile-bottom-bar {
  display: none;
}

/* 2. Large Tablets & Laptops (992px - 1199px) */
@media (max-width: 1199px) {
  .header-container { padding: 8px 18px; }
  .nav-menu { gap: 12px; }
  .nav-link { font-size: 0.82rem; padding: 6px 10px; }
  .doctors-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-us-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .news-grid-layout { grid-template-columns: 1.1fr 0.9fr; gap: 24px; }
}

/* 3. Medium Tablets & iPads (768px - 991px) */
@media (max-width: 991px) {
  /* Navbar & Top Bar */
  .top-emergency-bar { padding: 8px 16px; font-size: 0.8rem; }
  .top-bar-inner { justify-content: center; text-align: center; gap: 10px; }
  .emergency-hotline { font-size: 0.8rem; justify-content: center; padding: 4px 14px; }
  .top-nav-links { display: flex; justify-content: center; gap: 10px; font-size: 0.78rem; flex-wrap: wrap; }
  .top-nav-link-item { font-size: 0.76rem; padding: 4px 10px; gap: 7px; }
  .top-nav-link-item i { font-size: 0.84rem; margin-right: 2px; }
  .brand-logo-img { height: 44px !important; }
  
  .header-right-actions {
    display: flex !important;
    align-items: center !important;
    margin-left: auto !important;
  }

  .mobile-nav-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative;
    z-index: 1000000 !important;
    width: 44px !important;
    height: 44px !important;
  }
  .header-desktop-btn {
    display: none !important;
  }
  
  .main-header {
    position: sticky;
    top: 0;
    z-index: 99999;
  }
  
  .nav-menu {
    display: none !important;
  }
  .nav-menu.mobile-open {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(15, 23, 42, 0.97) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 76px 20px 100px 20px !important;
    gap: 8px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    z-index: 999999 !important;
    box-sizing: border-box !important;
  }
  .nav-menu .nav-link {
    font-size: 1.02rem !important;
    font-weight: 700 !important;
    width: 100% !important;
    max-width: 320px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 11px 20px !important;
    border-radius: 14px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #FFFFFF !important;
    text-align: center !important;
    box-sizing: border-box !important;
    text-decoration: none !important;
  }
  .nav-menu .nav-link:hover, .nav-menu .nav-link.active {
    background: #2563EB !important;
    color: #FFFFFF !important;
    border-color: #2563EB !important;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4) !important;
  }
  .nav-menu .nav-link.emergency-badge-link {
    background: rgba(220, 38, 38, 0.25) !important;
    color: #FCA5A5 !important;
    border-color: rgba(239, 68, 68, 0.4) !important;
  }
  .mobile-only-action { display: block !important; }

  /* Hero Banner */
  .exact-hero-section { padding: 36px 20px 85px 20px; }
  .hero-booking-strip-wrapper { margin: -40px auto 30px auto; padding: 0 16px; }
  .exact-hero-container { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .hero-left-content { padding-right: 0; }
  .hero-heading-exact { font-size: 1.95rem; margin: 10px auto 16px auto; }
  .hero-desc-exact { font-size: 0.98rem; margin: 0 auto 24px auto; }
  .hero-btn-row { justify-content: center; }
  .hero-form-card { max-width: 540px; margin: 0 auto; }

  /* About Us Section */
  .about-section-exact { padding: 44px 20px 60px 20px; margin-bottom: 60px; }
  .about-grid-exact { display: grid !important; grid-template-columns: 1fr !important; gap: 28px !important; }
  .about-image-stack { height: auto; flex-direction: row; }
  .about-img-frame { height: 320px; }

  /* Services & Grids */
  .services-grid-6 { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .mother-child-grid { grid-template-columns: 1fr; gap: 24px; }
  .news-grid-layout { grid-template-columns: 1fr; gap: 28px; }

  /* Specialties Sidebar */
  .specialty-layout-container { grid-template-columns: 1fr; gap: 28px; padding: 0 16px; }
  .specialty-sidebar { position: static; }
  .sidebar-menu-list { display: flex; flex-wrap: wrap; gap: 8px; }
  .sidebar-menu-item { flex: 1; min-width: 140px; }
  .sidebar-menu-item a { justify-content: center; text-align: center; font-size: 0.82rem; }

  /* WhatsApp & Newsletter */
  .whatsapp-channel-container { grid-template-columns: 1fr; text-align: center; }
  .whatsapp-card-preview { margin-top: 24px; }
  .whatsapp-features-grid { justify-content: center; }

  /* Footer */
  .footer-container { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* 4. Small Mobile Phones (< 768px) */
@media (max-width: 767px) {
  html, body {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    position: relative !important;
  }

  .top-emergency-bar, .main-header, .header-container, section, footer, main, .page-hero-banner {
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }

  .vision-values-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  body { padding-bottom: 60px; }

  /* Top Bar Header Alignment (Clean & Single-Line Hotline) */
  .top-emergency-bar {
    padding: 6px 12px !important;
    font-size: 0.76rem !important;
  }
  .top-bar-inner {
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
    text-align: center !important;
    width: 100% !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .emergency-hotline {
    width: auto !important;
    max-width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    font-size: 0.78rem !important;
    padding: 5px 16px !important;
    gap: 8px !important;
    border-radius: 50px !important;
    white-space: nowrap !important;
  }
  .top-nav-links {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
    padding: 0 !important;
  }
  .top-nav-link-item {
    font-size: 0.72rem !important;
    padding: 4px 9px !important;
    border-radius: 50px !important;
    white-space: nowrap !important;
    gap: 4px !important;
  }
  .top-nav-link-item i {
    font-size: 0.76rem !important;
    margin-right: 2px !important;
  }

  /* Header */
  .header-container { padding: 8px 14px; }
  .brand-logo-wrap img, .brand-logo-img { height: 40px !important; }

  /* Statistics 2x2 Grid Alignment on Mobile */
  .hero-stats-inline {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 22px !important;
  }
  .hero-stat-item {
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }
  .hero-stat-item strong { font-size: 1.3rem; color: #FFFFFF; }
  .hero-stat-item span { font-size: 0.73rem; margin-top: 2px; color: rgba(255, 255, 255, 0.9); }
  .hero-stat-divider { display: none !important; }

  /* Hero Section & WhatsApp Card */
  .exact-hero-section { padding: 24px 14px 70px 14px; }
  .hero-booking-strip-wrapper { margin: -30px auto 24px auto; padding: 0 12px; }
  .hero-heading-exact { font-size: 1.6rem; line-height: 1.22; text-align: center; }
  .hero-desc-exact { font-size: 0.92rem; text-align: center; margin: 0 auto 20px auto; }
  .hero-btn-row { flex-direction: column; width: 100%; gap: 10px; }
  .btn-hero-blue, .btn-hero-outline { width: 100%; text-align: center; justify-content: center; padding: 12px 20px; }

  .whatsapp-booking-card {
    padding: 20px 15px !important;
    border-radius: 22px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
  }
  .whatsapp-card-topbar-clean {
    gap: 6px !important;
    margin-bottom: 12px !important;
    justify-content: space-between !important;
  }
  .whatsapp-live-pill-clean {
    font-size: 0.75rem !important;
    padding: 4px 9px !important;
  }
  .whatsapp-reply-speed {
    font-size: 0.73rem !important;
    padding: 4px 9px !important;
  }
  .whatsapp-clean-title {
    font-size: 1.22rem !important;
    gap: 8px !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
  }
  .whatsapp-clean-subtitle {
    font-size: 0.84rem !important;
    line-height: 1.45 !important;
    margin-bottom: 14px !important;
  }
  .whatsapp-step-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    margin-bottom: 16px !important;
  }
  .whatsapp-step-item {
    padding: 9px 11px !important;
    gap: 10px !important;
    border-radius: 12px !important;
  }
  .btn-whatsapp-giant {
    padding: 13px 15px !important;
    border-radius: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 3-Column Quick Ribbon */
  .floating-ribbon-wrapper {
    padding: 0 14px !important;
    margin: 28px auto 36px auto !important;
  }
  .floating-ribbon-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .ribbon-item-card {
    padding: 18px 16px !important;
    border-radius: 18px !important;
    gap: 14px !important;
  }

  /* About Us Stack - Clean Unobstructed Photos on Mobile */
  .about-section-exact {
    padding: 34px 14px 44px 14px !important;
    border-radius: 24px !important;
    margin: 0 auto 40px auto !important;
  }
  .about-grid-exact {
    display: flex !important;
    flex-direction: column !important;
    gap: 22px !important;
  }
  .about-image-stack {
    display: flex !important;
    flex-direction: row !important;
    height: 220px !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .about-img-frame {
    flex: 1 !important;
    height: 220px !important;
    border-radius: 16px !important;
    border: 3px solid #FFFFFF !important;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1) !important;
    overflow: hidden !important;
  }
  .about-img-frame img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
  .about-features-two-col { grid-template-columns: 1fr; gap: 12px; }

  /* WhatsApp Channel Section on Mobile */
  .whatsapp-channel-wrapper {
    padding: 0 14px !important;
    margin: 28px auto 40px auto !important;
  }
  .whatsapp-channel-container {
    grid-template-columns: 1fr !important;
    padding: 26px 16px !important;
    border-radius: 22px !important;
    text-align: center !important;
  }
  .whatsapp-channel-title {
    font-size: 1.6rem !important;
    line-height: 1.25 !important;
    margin-bottom: 10px !important;
  }
  .whatsapp-channel-desc {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    margin-bottom: 18px !important;
  }
  .whatsapp-features-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    background: rgba(0, 0, 0, 0.15) !important;
    padding: 14px 12px !important;
    border-radius: 16px !important;
    margin-bottom: 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    align-items: flex-start !important;
    text-align: left !important;
  }
  .whatsapp-feature-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    font-size: 0.86rem !important;
    line-height: 1.4 !important;
  }
  .whatsapp-feature-item i {
    font-size: 1rem !important;
    margin-top: 2px !important;
    flex-shrink: 0 !important;
  }
  .btn-whatsapp-join {
    width: 100% !important;
    justify-content: center !important;
    padding: 13px 16px !important;
    font-size: 0.92rem !important;
    border-radius: 50px !important;
    box-sizing: border-box !important;
  }
  .whatsapp-graphic-right {
    width: 100% !important;
    margin-top: 20px !important;
    display: flex !important;
    justify-content: center !important;
  }
  .whatsapp-card-preview {
    width: 100% !important;
    max-width: 330px !important;
    margin: 0 auto !important;
    padding: 16px 14px !important;
    border-radius: 18px !important;
    text-align: left !important;
  }

  /* Doctor Cards & Grids */
  .doctors-grid-4 { grid-template-columns: 1fr; gap: 20px; }
  .why-us-grid-4 { grid-template-columns: 1fr; gap: 16px; }
  .services-grid-6 { grid-template-columns: 1fr; gap: 16px; }
  .testimonials-grid-3 { grid-template-columns: 1fr; gap: 20px; }

  /* Blog & News */
  .news-featured-card { height: 360px !important; }
  .news-small-card { flex-direction: column; text-align: center; }
  .news-small-card img { width: 100% !important; height: 160px !important; }

  /* Floating Bottom Mobile Action Bar */
  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: #FFFFFF;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    border-top: 1px solid #E2E8F0;
    z-index: 9999;
    padding: 8px 12px;
    gap: 10px;
  }
  .mobile-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
  }
  .mobile-bar-btn.call-er {
    background: #DC2626;
    color: #FFFFFF;
  }
  .mobile-bar-btn.book-visit {
    background: #2563EB;
    color: #FFFFFF;
  }

  /* Modals */
  .modal-article-dialog, .appointment-modal-content {
    width: 95vw !important;
    max-height: 88vh !important;
    padding: 20px 16px !important;
    margin: 10px auto !important;
  }

  /* Footer */
  .footer-container { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
}

@media (max-width: 480px) {
  .about-image-stack {
    height: 190px !important;
    gap: 8px !important;
  }
  .about-img-frame {
    height: 190px !important;
    border-radius: 14px !important;
  }
  .emergency-hotline {
    font-size: 0.74rem !important;
    padding: 4px 12px !important;
  }
  .top-nav-link-item {
    font-size: 0.7rem !important;
    padding: 3px 8px !important;
  }
}

/* Vaccine Tracker Component */
.vaccine-tracker-card {
  background: #FFFFFF;
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 12px 36px rgba(0,0,0,0.06);
  border: 1px solid #E2E8F0;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}

.vaccine-calc-box {
  background: #F8FAFC;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #E2E8F0;
  width: 100%;
  box-sizing: border-box;
}

.vaccine-item-row {
  padding: 14px 18px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #E2E8F0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}

.badge-mandatory {
  background: #FEF3C7;
  color: #92400E;
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.78rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge-recommended {
  background: #D1FAE5;
  color: #065F46;
  padding: 4px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.78rem;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .vaccine-tracker-card {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    padding: 24px 18px !important;
    border-radius: 24px !important;
  }
  .vaccine-calc-box {
    padding: 20px 14px !important;
    border-radius: 20px !important;
  }
  .vaccine-item-row {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 14px !important;
    font-size: 0.88rem !important;
  }
}

@media (max-width: 480px) {
  .vaccine-tracker-card {
    padding: 18px 14px !important;
  }
  .vaccine-item-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 6px !important;
  }
}

/* ==========================================================================
   OFFICIAL VISION & MISSION BOARD STYLES
   ========================================================================== */
.official-vm-board {
  background: linear-gradient(135deg, #A21058 0%, #C2185B 50%, #880E4F 100%);
  border-radius: 28px;
  padding: 40px 32px;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(162, 16, 88, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.official-vm-board::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.vm-board-header-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 28px;
}

.vm-board-header {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 14px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.vm-board-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.vm-board-title-group {
  text-align: left;
}

.vm-board-title-en {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F4C81;
  line-height: 1.2;
}

.vm-board-motto {
  font-size: 0.78rem;
  font-weight: 700;
  color: #00A3E0;
  letter-spacing: 0.5px;
  display: block;
}

.vm-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.vm-display-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.25s ease, background 0.25s ease;
}

.vm-display-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.18);
}

.vm-badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFFFFF;
  color: #A21058;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1.2px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.vm-card-text-en {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.45;
  color: #FFFFFF;
  margin-bottom: 14px;
  letter-spacing: 0.2px;
  text-align: center;
}

.vm-card-text-ta {
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 14px;
  text-align: center;
  width: 100%;
}

/* Compact In-Line Vision & Mission Cards for Section 1 and Home */
.vm-inline-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 24px;
}

.vm-inline-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.vm-inline-card:hover {
  transform: translateY(-3px);
  border-color: #2563EB;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.09);
}

.vm-inline-card.vision-card {
  border-left: 5px solid #E11D48;
}

.vm-inline-card.mission-card {
  border-left: 5px solid #2563EB;
}

.vm-inline-title {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vm-inline-card.vision-card .vm-inline-title {
  color: #BE123C;
}

.vm-inline-card.mission-card .vm-inline-title {
  color: #1D4ED8;
}

.vm-inline-en {
  font-size: 0.88rem;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.45;
  margin: 0 0 6px 0;
}

.vm-inline-ta {
  font-size: 0.8rem;
  color: #64748B;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .official-vm-board { padding: 28px 18px; }
  .vm-board-header { width: 100%; box-sizing: border-box; }
  .vm-cards-grid { grid-template-columns: 1fr; }
  .vm-inline-grid { grid-template-columns: 1fr; }
}

