@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Lora:ital,wght@0,600;0,700;1,600&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --white:         #FFFFFF;
  --ice:           #F7F8F3;
  --pale-blue:     #EAECE1;
  --mid-blue:      #B4C5C1;
  --badge:         #E1EBE8;
  --primary:       #1B6A70;
  --primary-dark:  #124F54;
  --navy:          #0D2B33;
  --navy-deep:     #051317;
  --text:          #1A1A1A;
  --muted:         #6B7280;
  --whatsapp:      #25D366;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  line-height: 1.65;
  background-color: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
}

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

ul {
  list-style: none;
}

/* Typography Classes */
.playfair { font-family: 'Lora', serif; } /* Retained class name for HTML compatibility */
.inter { font-family: 'Outfit', sans-serif; } /* Retained class name for HTML compatibility */
.eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.78rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.card-hover {
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}
.card-hover:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
button, .btn {
  transition: background 0.15s ease, transform 0.1s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 0.9rem;
}
.btn-primary:hover {
  background: var(--primary-dark);
}

.stagger-child:nth-child(1) { transition-delay: 0s; }
.stagger-child:nth-child(2) { transition-delay: 0.08s; }
.stagger-child:nth-child(3) { transition-delay: 0.16s; }
.stagger-child:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Global Elements */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Scroll Progress Bar */


/* Top Ribbon */
.top-ribbon {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}
.top-ribbon a {
  color: var(--mid-blue);
}

/* Navbar */
.navbar {
  background: transparent;
  height: 90px;
  border-bottom: 1px solid var(--ice);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: top 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.navbar.nav-hidden {
  top: -100px;
}
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.nav-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-left i {
  color: var(--primary);
  font-size: 28px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  color: var(--navy);
  font-size: 1.6rem;
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 600;
  position: relative;
}
.nav-link:hover {
  color: var(--primary);
}
.nav-link.active {
  color: var(--primary);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--primary);
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border-radius: 8px;
  padding: 10px 0;
  display: none;
  flex-direction: column;
  min-width: 200px;
}
.nav-item { position: relative; display: flex; align-items: center; height: 100%; }
.nav-item:hover .nav-dropdown { display: flex; }
.nav-dropdown a {
  padding: 10px 20px;
  font-size: 0.85rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-dropdown a:hover {
  background: var(--ice);
  color: var(--primary);
}
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text);
  cursor: pointer;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: var(--white);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
.mobile-menu-overlay.active {
  transform: translateX(0);
}
.mobile-menu-overlay a {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 5%;
  font-size: 2rem;
  background: none; border: none; color: var(--text);
}

/* Image Placeholder */
.img-placeholder {
  background: var(--pale-blue);
  border: 2px dashed var(--mid-blue);
  border-radius: 16px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--primary);
  min-height: 280px;
  font-family: 'DM Sans', sans-serif;
  overflow: hidden;
  position: relative;
}

/* FABs */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  z-index: 998;
}
.wa-fab::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  background: var(--whatsapp);
  z-index: -1;
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.5); opacity: 0; }
}

.back-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 50%;
  color: var(--white);
  border: none;
  cursor: pointer;
  z-index: 998;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.back-top.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Breadcrumbs */
.breadcrumb {
  background: var(--ice);
  padding: 10px 5%;
}
.breadcrumb ol {
  display: flex;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
}
.breadcrumb li + li::before {
  content: '/';
  color: var(--mid-blue);
  margin-right: 8px;
}
.breadcrumb li:last-child {
  color: var(--text);
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: var(--navy);
  border-top: 2px solid var(--primary);
  z-index: 999;
  grid-template-columns: 1fr 1fr 1fr;
}
.mobile-sticky-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.65rem;
  min-height: 52px;
  gap: 4px;
}

/* Footer */
footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.65);
  position: relative;
  overflow: hidden;
}
.footer-top {
  padding: 64px 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}
.footer-col h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a:hover { color: var(--white); }
.footer-brand .nav-logo { color: var(--white); font-size: 1.4rem; }
.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 2;
}
.footer-bottom {
  background: transparent;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  position: relative;
  z-index: 2;
}
.giant-wordmark {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: clamp(4rem, 12vw, 9rem);
  color: rgba(255,255,255,0.04);
  letter-spacing: -0.02em;
  z-index: 1;
  pointer-events: none;
  line-height: 0.8;
}

/* Layout Utilities */
.section-pad { padding: 80px 0; }
.bg-ice { background: var(--ice); }
.bg-white { background: var(--white); }
.bg-pale { background: var(--pale-blue); }

/* --- HOMEPAGE SPECIFIC COMPONENTS --- */

/* Services Main Grid */
.services-main { display: grid; grid-template-columns: 280px 1.2fr 2fr; gap: 24px; min-height: 480px; }
.services-col-1 { background: var(--white); border-radius: 16px; padding: 40px 20px; display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--white); height: 100%; box-shadow: 0 4px 24px rgba(0,0,0,0.02); }
.services-col-1 h3 { font-size: 3.5rem; font-weight: 700; text-align: center; color: var(--navy); line-height: 1; margin-bottom: 10px; }
.services-col-1 p { text-align: center; font-size: 0.9rem; }

.services-left-col { display: flex; flex-direction: column; gap: 16px; }
.mini-service-card { background: var(--white); border-radius: 12px; padding: 16px 20px; display: flex; justify-content: space-between; align-items: center; border: 1px solid var(--white); box-shadow: 0 4px 24px rgba(0,0,0,0.02); }
.mini-arrow { background: var(--white); color: var(--primary); width: 32px; height: 32px; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 0.85rem; box-shadow: 0 4px 12px rgba(0,0,0,0.06); }

.tag-pills { display: flex; flex-direction: column; gap: 12px; margin-top: 30px; }
.tag-pill { padding: 8px 16px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; font-family: 'DM Sans', sans-serif; display: inline-block; width: fit-content; }
.pill-border { background: var(--white); border: 1px solid #D2E4F3; color: var(--navy); }

.services-col-2 { background: var(--pale-blue); border-radius: 16px; padding: 30px; position: relative; display: flex; flex-direction: column; color: var(--navy); overflow: hidden; }
.services-col-2 h3 { font-size: 1.8rem; font-weight: 700; margin-top: 10px; margin-bottom: 10px; z-index: 2; }
.services-col-2 p { font-size: 0.95rem; color: var(--navy); margin-top: auto; max-width: 80%; z-index: 2; }
.services-col-2 .badge { background: var(--white); color: var(--text); padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; width: fit-content; z-index: 2; }
.col-2-arrow-btn { position: absolute; bottom: 20px; right: 20px; width: 44px; height: 44px; background: var(--white); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 2; box-shadow: 0 8px 24px rgba(0,0,0,0.1); border: none; }

.services-col-3 { display: flex; flex-direction: column; gap: 24px; }
.stacked-card { background: var(--white); border-radius: 16px; padding: 30px; flex: 1; display: flex; flex-direction: column; position: relative; border: 1px solid var(--white); color: var(--navy); overflow: hidden; }
.stacked-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; z-index: 2;}
.stacked-card p { font-size: 0.9rem; color: var(--text); margin-top: auto; max-width: 70%; z-index: 2; }
.stacked-arrow-btn { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; background: var(--white); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; border: none; box-shadow: 0 8px 24px rgba(0,0,0,0.08); z-index: 2; }

/* Section 1: Hero */
.hero { display: flex; flex-direction: column; gap: 40px; padding-top: 20px; }
.hero-left-col { max-width: 800px; }
.hero-right-col { display: none; }
.hero h1 { font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 700; color: var(--navy); margin-top: 16px; line-height: 1.2; }
.hero-sub { font-size: 1.1rem; color: var(--muted); max-width: 500px; margin-bottom: 24px; }
.eyebrow-pill { display: inline-block; background: var(--badge); color: var(--primary); font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; }

.hero-tiles { display: grid; grid-template-columns: 1.8fr 1fr 1fr; grid-template-rows: 1fr; gap: 20px; width: 100%; margin-top: 40px; }
.hero-tile-1 { grid-column: 1; grid-row: 1; background: var(--navy); border-radius: 16px; min-height: 440px; padding: 40px; position: relative; color: var(--white); overflow: hidden; }
.hero-tile-1 .badge { background: rgba(255,255,255,0.2); border-radius: 8px; padding: 6px 12px; font-size: 0.8rem; font-weight: 600; display: inline-block; margin-bottom: 12px; }
.hero-tile-1 .desc { font-size: 1.15rem; line-height: 1.5; max-width: 52%; opacity: 0.9; margin-bottom: 30px; }
.doctor-avatars { display: flex; align-items: center; margin-bottom: 24px; }
.doctor-avatars .avatar { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--navy); background: var(--pale-blue); margin-left: -12px; }
.doctor-avatars .avatar:first-child { margin-left: 0; }
.more-pill { background: var(--white); color: var(--navy); font-size: 0.75rem; font-weight: 700; border-radius: 20px; padding: 4px 10px; margin-left: -10px; z-index: 2; border: 2px solid var(--navy); }
.hero-tile-2 { grid-column: 2; grid-row: 1; border-radius: 16px; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 24px; }
.hero-tile-3 { grid-column: 3; grid-row: 1; border-radius: 16px; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 24px; }
.tile-content { background: transparent; padding: 0; border-radius: 0; backdrop-filter: none; width: 100%; box-shadow: none; z-index: 2; }
.tile-content h3 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.tile-content p { font-size: 0.95rem; color: var(--text); line-height: 1.3; }
.arrow-btn-white { width: 48px; height: 48px; background: var(--white); border-radius: 50%; color: var(--primary); display: flex; align-items: center; justify-content: center; position: absolute; bottom: 30px; right: calc(45% + 24px); z-index: 2; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.hero-tile-1 .photo-block { position: absolute; right: 0; bottom: 0; width: 45%; height: 100%; border-radius: 12px; background: var(--pale-blue); }

/* Section 2: Stats / About */
.stats-section { display: grid; grid-template-columns: 4fr 3fr; gap: 40px; padding-top: 60px; align-items: center; }
.stats-left h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin-top: 10px; margin-bottom: 32px; }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.stat-box .num { font-size: 2.4rem; font-weight: 700; color: var(--text); line-height: 1; }
.stat-box .label { font-size: 0.8rem; color: var(--muted); margin-top: 4px; }

.stats-center { position: relative; display: flex; align-items: center; justify-content: center; }
.rating-card { background: var(--white); border-radius: 12px; padding: 16px 20px; width: 180px; box-shadow: 0 8px 32px rgba(0,0,0,0.08); position: absolute; top: -20px; left: -40px; z-index: 2; }
.rating-card .title { font-size: 0.75rem; color: var(--muted); margin-bottom: 4px;}
.rating-card .stars { color: var(--primary); font-size: 1rem; margin-bottom: 4px; }
.rating-card .score { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.oval-photo { width: 280px; height: 320px; border-radius: 140px; background: var(--pale-blue); position: relative; overflow: hidden; }
.expert-badge { background: var(--white); border-radius: 8px; padding: 8px 14px; font-size: 0.8rem; font-weight: 500; color: var(--text); box-shadow: 0 4px 16px rgba(0,0,0,0.08); position: absolute; bottom: 10px; right: -20px; z-index: 2; }

/* Section 4: Doctors */
.doctors-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 40px; }
.doctors-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; max-width: 600px; margin-bottom: 10px; }
.doctors-header p { font-size: 0.88rem; color: var(--muted); max-width: 480px; }
.doc-badge { background: var(--badge); color: var(--primary); font-size: 0.75rem; font-weight: 600; padding: 6px 14px; border-radius: 20px; display: inline-flex; align-items: center; gap: 6px; }
.doctors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 30px; }
.doc-block { text-align: center; }
.doc-circle { width: 160px; height: 160px; border-radius: 50%; background: var(--pale-blue); margin: 0 auto 16px auto; position: relative; overflow: hidden; }
.doc-block h3 { font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.doc-block p { font-size: 0.8rem; color: var(--muted); }

/* Section 5: Mid CTA */
.mid-cta { display: grid; grid-template-columns: 55% 45%; min-height: 420px; }
.mid-cta-left { position: relative; background: var(--pale-blue); }
.mid-cta-badge-bottom { position: absolute; bottom: 20px; left: 20px; background: var(--white); border-radius: 10px; padding: 10px 16px; box-shadow: 0 4px 16px rgba(0,0,0,0.12); z-index: 2; }
.mid-cta-badge-bottom span { font-size: 0.78rem; font-weight: 500; display: block; margin-bottom: 6px; }
.progress-track { width: 120px; height: 6px; background: var(--badge); border-radius: 3px; }
.progress-fill { width: 70%; height: 100%; background: var(--primary); border-radius: 3px; }
.mid-cta-badge-top { position: absolute; top: 40px; right: -30px; background: var(--white); border-radius: 12px; padding: 16px 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.10); z-index: 2; }
.mid-cta-badge-top .num { font-size: 1.6rem; font-weight: 700; line-height: 1; margin-bottom: 2px; }
.mid-cta-badge-top .lbl { font-size: 0.78rem; color: var(--muted); }
.mid-cta-right { background: var(--navy); padding: 48px 40px; display: flex; flex-direction: column; justify-content: center; }
.mid-cta-right h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: var(--white); }
.mid-cta-right p { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-top: 16px; margin-bottom: 32px; }

/* Section 6: FAQ */
.faq-grid { display: grid; grid-template-columns: 55% 45%; gap: 50px; }
.faq-header { margin-bottom: 30px; }
.faq-header h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; margin-top: 10px; }
details.faq-row { border-bottom: 1px solid var(--mid-blue); padding: 18px 0; }
details.faq-row summary { font-size: 0.95rem; font-weight: 600; cursor: pointer; list-style: none; position: relative; padding-right: 30px; }
details.faq-row summary::-webkit-details-marker { display: none; }
details.faq-row summary::after { content: '+'; position: absolute; right: 0; top: 0; color: var(--primary); font-size: 1.2rem; font-weight: 400; }
details.faq-row[open] summary::after { content: '−'; }
.faq-ans { font-size: 0.875rem; color: var(--muted); padding-top: 10px; line-height: 1.6; }
.faq-photo-card { width: 340px; height: 380px; background: var(--pale-blue); border-radius: 16px; float: right; margin-top: 20px; position: relative; overflow: hidden; }

/* Section 7: Booking CTA */
.booking-grid { display: grid; grid-template-columns: 45% 55%; gap: 40px; }
.booking-grid h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700; line-height: 1.2; }
.booking-grid p.sub { font-size: 0.875rem; color: var(--muted); margin-top: 12px; margin-bottom: 24px; max-width: 340px; }
.wa-form-card { background: var(--white); border-radius: 12px; padding: 24px; border: 1px solid var(--mid-blue); }
.form-grp { margin-bottom: 16px; }
.form-grp input, .form-grp select, .form-grp textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--mid-blue); border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--navy); background-color: var(--white); box-sizing: border-box; outline: none; transition: border-color 0.2s; }
.form-grp input:focus, .form-grp select:focus, .form-grp textarea:focus { border-color: var(--primary); }
.form-grp select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23112A46' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}
/* Custom Select UI styles */
.custom-select-wrapper { position: relative; user-select: none; width: 100%; text-align: left; }
.custom-select-trigger { padding: 12px 14px; border: 1px solid var(--mid-blue); border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--navy); background-color: var(--white); cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: border-color 0.2s; min-height: 44px; }
.custom-select-wrapper.open .custom-select-trigger { border-color: var(--primary); }
.custom-select-trigger i { transition: transform 0.2s; color: var(--primary); }
.custom-select-wrapper.open .custom-select-trigger i { transform: rotate(180deg); }
.custom-options { position: absolute; display: block; top: 100%; left: 0; right: 0; background-color: var(--white); border: 1px solid var(--mid-blue); border-radius: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); margin-top: 4px; z-index: 100; opacity: 0; visibility: hidden; transition: all 0.2s; max-height: 250px; overflow-y: auto; }
.custom-select-wrapper.open .custom-options { opacity: 1; visibility: visible; }
.custom-option { padding: 12px 14px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; color: var(--navy); cursor: pointer; transition: background 0.2s; }
.custom-option:hover { background-color: var(--ice); color: var(--primary); }
.custom-option.selected { font-weight: 600; background-color: rgba(30, 91, 169, 0.05); color: var(--primary); }
/* Custom Scrollbar for options */
.custom-options::-webkit-scrollbar { width: 6px; }
.custom-options::-webkit-scrollbar-track { background: transparent; }
.custom-options::-webkit-scrollbar-thumb { background: var(--mid-blue); border-radius: 3px; }
.form-grp select option { padding: 12px; color: var(--navy); background: var(--white); }
.booking-right { position: relative; background: var(--pale-blue); border-radius: 16px; min-height: 400px; display: flex; align-items: center; justify-content: center; }
.booking-right .floating-badge { position: absolute; background: var(--white); border-radius: 12px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); padding: 12px 16px; display: flex; align-items: center; gap: 12px; }
.booking-right .fb-1 { top: 40px; left: -20px; }
.booking-right .fb-2 { top: 50%; right: -20px; transform: translateY(-50%); }
.booking-right .fb-3 { bottom: 40px; left: 20px; }
.floating-badge i { color: var(--primary); font-size: 1.2rem; }
.floating-badge h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 2px;}
.floating-badge p { font-size: 0.75rem; color: var(--muted); }

/* --- INNER PAGES SPECIFIC COMPONENTS --- */

/* Breadcrumb */
.breadcrumb-wrap { background: var(--ice); padding: 16px 0; }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; font-size: 0.9rem; color: var(--muted); }
.breadcrumb li { display: flex; align-items: center; }
.breadcrumb li a { color: var(--primary); font-weight: 500; text-decoration: none; }
.breadcrumb li a:hover { text-decoration: underline; }
.breadcrumb li + li::before { content: "/"; margin: 0 10px; color: var(--muted); }

/* About Page */
.about-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about-hero h1 { font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 20px; line-height: 1.2; }
.about-block { display: grid; grid-template-columns: 350px 1fr; gap: 60px; align-items: center; }
.about-block-img { width: 300px; height: 300px; border-radius: 50%; overflow: hidden; }
.timeline { border-left: 2px solid var(--primary); padding-left: 30px; margin-left: 20px; position: relative; display: flex; flex-direction: column; gap: 24px; }
.timeline-item { position: relative; }
.timeline-dot { width: 10px; height: 10px; background: var(--primary); border-radius: 50%; position: absolute; left: -36px; top: 10px; }
.timeline-card { background: var(--white); border-radius: 12px; border: 1px solid var(--ice); padding: 16px 20px; box-shadow: 0 4px 16px rgba(0,0,0,0.04); }
.mission-card { background: var(--navy); border-radius: 16px; padding: 40px; text-align: center; }
.mission-card p { color: var(--white); font-style: italic; font-size: 1.4rem; max-width: 800px; margin: 0 auto; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card { background: var(--white); border-radius: 12px; padding: 30px; border: 1px solid var(--ice); text-align: center; }
.value-card i { color: var(--primary); font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.gallery-grid .img-placeholder { aspect-ratio: 3 / 4; border-radius: 12px; }

/* Doctors Page */
.doc-full-block { display: flex; flex-direction: column; gap: 40px; margin-bottom: 80px; }
.doc-full-block:nth-child(even) { direction: ltr; }
.doc-full-block:nth-child(even) > * { direction: ltr; }
.doc-full-img { width: 280px; height: 280px; border-radius: 50%; overflow: hidden; background: var(--pale-blue); margin: 0 auto; }
.doc-full-info h2 { font-size: 1.8rem; font-weight: 700; margin-top: 10px; text-align: center; }
.doc-full-info .eyebrow-pill { display: table; margin: 0 auto; }
.doc-full-info p { max-width: 800px; margin-left: auto; margin-right: auto; line-height: 1.6; color: var(--text); text-align: center; }
.doc-divider { width: 60px; height: 2px; background: var(--primary); margin: 24px auto; }
.doc-expertise { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 20px; margin-bottom: 24px; text-align: center; }
.doc-expertise li { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 0.9rem; color: var(--text); }
.doc-expertise li i { color: var(--primary); }
.doc-full-info .btn { display: table; margin: 0 auto; }

/* Contact Page */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 20px; margin-bottom: 30px; font-size: 0.9rem; }
.hours-table th { background: var(--navy); color: var(--white); padding: 12px; text-align: left; }
.hours-table td { padding: 12px; border-bottom: 1px solid var(--ice); }
.hours-table tr:nth-child(even) { background: var(--ice); }
.contact-map { background: var(--pale-blue); border-radius: 16px; min-height: 360px; border: 2px solid var(--mid-blue); overflow: hidden; }

/* Service Pages */
.service-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.service-hero h1 { font-size: 2.4rem; font-weight: 700; margin-bottom: 16px; }
.types-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.type-card { background: var(--white); border-radius: 12px; padding: 24px; border: 1px solid var(--mid-blue); }
.type-card i { color: var(--primary); font-size: 1.8rem; margin-bottom: 16px; }
.process-list { display: flex; flex-direction: column; gap: 20px; position: relative; padding-left: 20px; border-left: 2px solid var(--primary); margin-left: 10px; }
.process-step { background: var(--white); border-radius: 12px; padding: 20px; box-shadow: 0 4px 16px rgba(0,0,0,0.04); position: relative; }
.process-num { position: absolute; width: 30px; height: 30px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; left: -36px; top: 16px; }
.benefits-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.benefits-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.95rem; }
.benefits-list li i { color: var(--primary); margin-top: 4px; }

/* CTA Strip */
.cta-strip { background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('/assets/images/cta_bg.png') center / cover no-repeat; padding: 80px 5%; text-align: center; color: var(--white); }
.cta-strip h2 { color: var(--white); }

@media (max-width: 1024px) {
  .hero-tiles       { grid-template-columns: 1fr 1fr; }
  .services-main    { grid-template-columns: 1fr 1fr; }
  .footer-top       { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .about-hero, .about-block, .doc-full-block, .doc-full-block:nth-child(even), .contact-grid, .service-hero { grid-template-columns: 1fr; gap: 30px; }
  .values-grid, .gallery-grid, .types-grid { grid-template-columns: 1fr; }
  .doc-expertise, .benefits-list { grid-template-columns: 1fr; }
  .about-block-img, .doc-full-img { margin: 0 auto; }
  .hero             { grid-template-columns: 1fr; }
  .hero-right-col   { display: none; }
    .hero-tiles { grid-template-columns: 1fr; grid-template-rows: auto; }
  .stats-section    { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: repeat(2,1fr); }
  .services-main    { grid-template-columns: 1fr; }
  .services-header  { grid-template-columns: 1fr; gap: 16px; }
  .doctors-grid     { grid-template-columns: repeat(2,1fr); }
  .mid-cta          { grid-template-columns: 1fr; }
  .faq-grid         { grid-template-columns: 1fr; }
  .booking-grid     { grid-template-columns: 1fr; }
  
  .nav-links, .nav-right .btn-primary { display: none; }
  .hamburger { display: block; }
  .top-ribbon { flex-direction: column; height: auto; padding: 8px 5%; gap: 4px; text-align: center; }
  .mobile-sticky-bar { display: grid; }
  .wa-fab, .back-top { bottom: 72px; }
  .mid-cta-badge-top { right: 20px; }
  /* Mobile Image Fixes */
  .mid-cta-left { min-height: 400px; border-radius: 16px 16px 0 0 !important; }
  .hero-tile-1 { padding: 20px; grid-column: auto; grid-row: auto; min-height: 300px; }

  .hero-tile-2, .hero-tile-3 { grid-column: auto; grid-row: auto; min-height: 250px; }
  .mid-cta-right { border-radius: 0 0 16px 16px !important; }
  .mid-cta-badge-top { right: 10px; top: 20px; transform: scale(0.85); transform-origin: top right; }
  .mid-cta-badge-bottom { left: 10px; bottom: 10px; transform: scale(0.85); transform-origin: bottom left; }
}
@media (max-width: 480px) {
  .doctors-grid     { grid-template-columns: 1fr; }
  /* tiles restored */
  .stats-grid       { grid-template-columns: repeat(2,1fr); }
  .footer-top       { grid-template-columns: 1fr; }
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader-logo {
    height: 200px;
    width: auto;
    border-radius: 16px;
    animation: preloaderPulse 1.5s infinite ease-in-out;
}
@keyframes preloaderPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.05);
}
.review-stars {
    color: #FABB05;
    font-size: 1.1rem;
    margin-bottom: 12px;
}
.review-text {
    color: var(--muted);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}
