/* ============================================================
   GOD'S COVENANT HOSPITAL — Modern Website Stylesheet v2.0
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* === CSS Variables === */
:root {
  --orange: #E8722A;
  --orange-dark: #C85F1A;
  --orange-hover: #F08040;
  --orange-light: #FFF4EE;
  --orange-mid: #FDDCC7;
  --navy: #1E2D40;
  --navy-mid: #2D4159;
  --navy-light: #3D5470;
  --teal: #4DC8C0;
  --teal-dark: #3AADA6;
  --teal-light: #EAF9F8;
  --sand: #F5EDE4;
  --white: #FFFFFF;
  --bg-light: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-600: #475569;
  --text: #1E293B;
  --text-light: #64748B;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 25px 60px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* === Utilities === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-sm { padding: 64px 0; }
.text-orange { color: var(--orange); }
.text-center { text-align: center; }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; transition: var(--transition); cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--orange); color: white; border: 2px solid var(--orange); }
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,114,42,0.35); }
.btn-outline { border: 2px solid var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: white; transform: translateY(-2px); }
.btn-outline-white { border: 2px solid rgba(255,255,255,0.6); color: white; background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-white { background: white; color: var(--orange); border: 2px solid white; }
.btn-white:hover { background: var(--orange-light); transform: translateY(-2px); }
.btn-navy { background: var(--navy); color: white; border: 2px solid var(--navy); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,45,64,0.3); }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-wa { background: #25D366; color: white; border: 2px solid #25D366; }
.btn-wa:hover { background: #1EB857; border-color: #1EB857; transform: translateY(-2px); }

/* === Label Tags === */
.label-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange-light); color: var(--orange);
  padding: 6px 14px; border-radius: 50px; font-size: 0.78rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.label-tag.teal { background: var(--teal-light); color: var(--teal-dark); }
.label-tag.navy { background: rgba(30,45,64,0.08); color: var(--navy); }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.96); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.navbar.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.navbar-logo { display: flex; align-items: center; gap: 10px; }
.navbar-logo img { height: 54px; width: auto; object-fit: contain; }
.navbar-logo-text { line-height: 1.2; }
.navbar-logo-text strong { display: block; font-size: 0.9rem; font-weight: 800; color: var(--navy); }
.navbar-logo-text span { font-size: 0.72rem; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.navbar-links { display: flex; align-items: center; gap: 4px; }
.navbar-links a { padding: 8px 14px; border-radius: 8px; font-weight: 500; font-size: 0.92rem; color: var(--text); transition: var(--transition); }
.navbar-links a:hover, .navbar-links a.active { color: var(--orange); background: var(--orange-light); }
.navbar-right { display: flex; align-items: center; gap: 16px; }
.navbar-phone-link { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.88rem; color: var(--navy); transition: var(--transition); }
.navbar-phone-link:hover { color: var(--orange); }
.navbar-phone-icon { width: 32px; height: 32px; background: var(--orange-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 0.85rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; flex-direction: column; padding: 16px 24px 24px; background: white; border-top: 1px solid var(--border); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 0; font-weight: 500; color: var(--text); border-bottom: 1px solid var(--gray-100); transition: var(--transition); }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--orange); }
.mobile-menu .btn { margin-top: 16px; justify-content: center; }

/* =============================================
   HERO
   ============================================= */
.hero {
  padding-top: 72px; min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(140deg, #FFFAF7 0%, #F0F9FF 50%, #EAF9F8 100%);
  position: relative; overflow: hidden;
}
.hero-decor-1 { position: absolute; top: -80px; right: -80px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(232,114,42,0.07) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero-decor-2 { position: absolute; bottom: -80px; left: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(77,200,192,0.08) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 1; padding-top: 40px; padding-bottom: 40px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--orange-light); color: var(--orange); padding: 8px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 24px; }
.hero-badge-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:0.6} }
.hero-title { font-size: clamp(2.2rem, 4vw, 3.6rem); font-family: var(--font-heading); line-height: 1.1; color: var(--navy); margin-bottom: 20px; }
.hero-title .highlight { color: var(--orange); }
.hero-text { font-size: 1.05rem; color: var(--text-light); line-height: 1.75; margin-bottom: 32px; max-width: 520px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--border); }
.stat-item {}
.stat-num { font-size: 1.9rem; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-light); margin-top: 4px; }
.hero-image { position: relative; }
.hero-img-main { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-float-card { position: absolute; background: white; border-radius: var(--radius); padding: 14px 18px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; }
.hero-float-card.card-rating { bottom: 32px; left: -28px; }
.hero-float-card.card-emergency { top: 32px; right: -20px; }
.float-icon { width: 42px; height: 42px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.float-icon.orange { background: var(--orange-light); color: var(--orange); }
.float-icon.teal { background: var(--teal-light); color: var(--teal-dark); }
.float-icon.green { background: #DCFCE7; color: #16A34A; }
.float-text strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--navy); }
.float-text span { font-size: 0.78rem; color: var(--text-light); }
.hero-stars { color: #F59E0B; font-size: 0.88rem; letter-spacing: 2px; }

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar { background: var(--navy); padding: 20px 0; }
.trust-bar .container { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 500; }
.trust-icon { color: var(--orange); font-size: 1rem; }
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.15); }

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrapper { position: relative; }
.about-img-main { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-lg); }
.about-img-accent { position: absolute; bottom: -24px; right: -24px; width: 170px; height: 170px; object-fit: cover; border-radius: var(--radius); border: 5px solid white; box-shadow: var(--shadow-md); }
.about-years-badge { position: absolute; top: 32px; left: -20px; background: var(--orange); color: white; padding: 18px 22px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-md); }
.about-years-badge .years-num { font-size: 2rem; font-weight: 800; line-height: 1; display: block; }
.about-years-badge .years-label { font-size: 0.75rem; opacity: 0.9; margin-top: 4px; }
.about-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 16px; }
.about-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; font-size: 0.97rem; }
.about-features { margin: 28px 0; display: flex; flex-direction: column; gap: 14px; }
.about-feature { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--text); }
.check-circle { width: 22px; height: 22px; background: var(--orange-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 0.7rem; flex-shrink: 0; font-weight: 700; }

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section { background: var(--teal-light); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header h2 { color: var(--navy); margin-bottom: 12px; font-size: clamp(1.8rem, 3vw, 2.4rem); }
.services-header p { color: var(--text-light); font-size: 1rem; max-width: 580px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
.services-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.service-card { background: white; border-radius: var(--radius-lg); padding: 32px; border: 1.5px solid transparent; transition: var(--transition); position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), var(--teal)); transform: scaleX(0); transition: var(--transition); transform-origin: left; border-radius: 0 0 4px 4px; }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--border); }
.service-num { font-size: 2.2rem; font-weight: 800; color: var(--teal); opacity: 0.35; line-height: 1; margin-bottom: 16px; font-family: var(--font-heading); }
.service-card h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 10px; font-weight: 700; }
.service-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; }
.service-card ul { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.service-card ul li { color: var(--text-light); font-size: 0.85rem; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.service-card ul li::before { content: ''; width: 6px; height: 6px; background: var(--orange); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }

/* =============================================
   CONSULTATION FEES
   ============================================= */
.fees-section { background: var(--navy); color: white; }
.fees-header { text-align: center; margin-bottom: 56px; }
.fees-header h2 { color: white; font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 12px; }
.fees-header p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; }
.fees-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 48px; }
.fee-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 24px 20px; text-align: center; transition: var(--transition); }
.fee-card:hover { background: rgba(232,114,42,0.15); border-color: rgba(232,114,42,0.4); transform: translateY(-4px); }
.fee-icon { font-size: 1.6rem; margin-bottom: 12px; }
.fee-type { font-size: 0.8rem; color: rgba(255,255,255,0.55); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.fee-amount { font-size: 1.4rem; font-weight: 800; color: var(--orange); margin-bottom: 4px; }
.fee-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.fees-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 40px 0; }
.reg-title { text-align: center; font-size: 1.1rem; font-weight: 700; color: white; margin-bottom: 24px; }
.reg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.reg-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 20px; text-align: center; transition: var(--transition); }
.reg-card:hover { background: rgba(77,200,192,0.12); border-color: rgba(77,200,192,0.3); }
.reg-type { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 8px; font-weight: 500; }
.reg-fee { font-size: 1.3rem; font-weight: 800; color: var(--teal); }

/* =============================================
   ANTENATAL SECTION
   ============================================= */
.antenatal-section { background: var(--orange-light); }
.antenatal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.antenatal-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 12px; }
.antenatal-content p { color: var(--text-light); line-height: 1.75; margin-bottom: 24px; }
.antenatal-schedule-box { display: flex; align-items: center; gap: 16px; background: white; border-radius: var(--radius); padding: 20px 24px; margin-bottom: 28px; box-shadow: var(--shadow); border-left: 4px solid var(--orange); }
.sched-icon { width: 48px; height: 48px; background: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.3rem; flex-shrink: 0; }
.sched-text strong { display: block; font-size: 0.95rem; font-weight: 700; color: var(--navy); }
.sched-text span { font-size: 0.85rem; color: var(--text-light); }
.antenatal-features { display: flex; flex-direction: column; gap: 12px; }
.ante-feature { display: flex; align-items: flex-start; gap: 12px; font-size: 0.92rem; color: var(--text); }
.ante-dot { width: 8px; height: 8px; background: var(--orange); border-radius: 50%; flex-shrink: 0; margin-top: 6px; }
.antenatal-image-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.antenatal-image-wrapper img { width: 100%; height: 480px; object-fit: cover; }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section { background: var(--bg-light); }
.why-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.why-content h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 14px; }
.why-content p { color: var(--text-light); line-height: 1.75; margin-bottom: 32px; }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-card { background: white; border-radius: var(--radius); padding: 28px 24px; border: 1.5px solid var(--border); transition: var(--transition); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange-mid); }
.why-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; }
.why-icon.orange { background: var(--orange-light); color: var(--orange); }
.why-icon.teal { background: var(--teal-light); color: var(--teal-dark); }
.why-icon.navy { background: rgba(30,45,64,0.07); color: var(--navy); }
.why-icon.green { background: #DCFCE7; color: #16A34A; }
.why-card h4 { font-size: 0.97rem; color: var(--navy); margin-bottom: 8px; font-weight: 700; }
.why-card p { color: var(--text-light); font-size: 0.85rem; line-height: 1.5; }
.why-img-wrapper { position: relative; }
.why-img-main { width: 100%; height: 520px; object-fit: cover; border-radius: var(--radius-lg); }
.why-img-badge { position: absolute; bottom: 24px; right: 24px; background: var(--orange); color: white; padding: 16px 20px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow-md); }
.why-img-badge strong { display: block; font-size: 1.5rem; font-weight: 800; }
.why-img-badge span { font-size: 0.75rem; opacity: 0.9; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section { background: var(--sand); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.testimonials-header h2 { color: var(--navy); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 12px; }
.testimonials-header p { color: var(--text-light); max-width: 560px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* Testimonial Slider */
.testimonials-slider-wrap { overflow: hidden; position: relative; }
.testimonials-slider-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testimonials-slider-track .testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
}
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  background: white;
  color: var(--orange);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.slider-btn:hover { background: var(--orange); color: white; }
.slider-dots { display: flex; gap: 8px; align-items: center; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: #d1c4b8;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.slider-dot.active { background: var(--orange); width: 24px; border-radius: 4px; }
@media (max-width: 1023px) {
  .testimonials-slider-track .testimonial-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 639px) {
  .testimonials-slider-track .testimonial-card { flex: 0 0 100%; }
}
.testimonial-card { background: white; border-radius: var(--radius-lg); padding: 36px; position: relative; box-shadow: var(--shadow); }
.testimonial-card::before { content: '\201C'; position: absolute; top: 16px; right: 24px; font-size: 5rem; color: var(--orange); opacity: 0.12; line-height: 1; font-family: Georgia, serif; }
.t-stars { color: #F59E0B; font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 16px; }
.t-text { color: var(--text); line-height: 1.75; font-style: italic; font-size: 0.92rem; margin-bottom: 24px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.t-avatar-placeholder { width: 48px; height: 48px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1.1rem; flex-shrink: 0; }
.t-author-info strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.t-author-info span { font-size: 0.78rem; color: var(--text-light); }

/* =============================================
   LEADERSHIP
   ============================================= */
.leadership-section { background: var(--teal-light); }
.leadership-header { text-align: center; margin-bottom: 56px; }
.leadership-header h2 { color: var(--navy); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 12px; }
.leadership-header p { color: var(--text-light); max-width: 540px; margin: 0 auto; }
.leadership-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.leader-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); }
.leader-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.leader-img { height: 320px; overflow: hidden; background: var(--gray-100); }
.leader-img img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; transition: var(--transition); }
.leader-card:hover .leader-img img { transform: scale(1.05); }
.leader-info { padding: 24px; text-align: center; }
.leader-info h3 { font-size: 1rem; color: var(--navy); font-weight: 700; margin-bottom: 4px; }
.leader-role { color: var(--orange); font-size: 0.82rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; }
.leader-bio { color: var(--text-light); font-size: 0.84rem; line-height: 1.5; }

/* =============================================
   FEEL HEALTHY SHOWCASE
   ============================================= */
.healthy-section { background: linear-gradient(160deg, #f0f9f8 0%, #ffffff 60%); }
.healthy-header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.healthy-header h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--navy); margin-bottom: 10px; }
.healthy-header p { color: var(--text-light); font-size: 1.05rem; line-height: 1.7; }

/* Top row: hero card + stacked pair */
.healthy-showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.healthy-hero-card,
.healthy-small-card,
.healthy-wide-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: default;
}
.healthy-hero-card img,
.healthy-small-card img,
.healthy-wide-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.healthy-hero-card:hover img,
.healthy-small-card:hover img,
.healthy-wide-card:hover img { transform: scale(1.04); }

.healthy-hero-card { height: 380px; }
.healthy-stack { display: flex; flex-direction: column; gap: 16px; }
.healthy-small-card { height: 180px; }

/* Bottom row: 3 equal cards */
.healthy-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.healthy-bottom-row .healthy-wide-card { height: 220px; }

.healthy-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(30,45,64,0.78));
  padding: 20px 20px 16px;
}
.healthy-label {
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}
.healthy-label i { color: var(--teal); font-size: 0.95rem; }

.healthy-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.healthy-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: white;
  border-radius: var(--radius);
  padding: 20px 32px;
  box-shadow: var(--shadow);
  min-width: 140px;
  text-align: center;
  border-top: 3px solid var(--teal);
}
.healthy-stat i { font-size: 1.5rem; color: var(--teal-dark); }
.healthy-stat strong { font-size: 1.5rem; color: var(--navy); font-weight: 800; line-height: 1; }
.healthy-stat span { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; }

/* News Ticker */
.news-ticker-wrap {
  background: var(--navy); display: flex; align-items: center;
  height: 44px; overflow: hidden; position: relative; z-index: 80;
}
.news-ticker-label {
  background: var(--orange); padding: 0 18px; height: 100%;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: white; white-space: nowrap; flex-shrink: 0;
}
.news-ticker-mask { flex: 1; overflow: hidden; height: 100%; position: relative; }
.news-ticker-track {
  display: flex; align-items: center; height: 100%; white-space: nowrap;
  animation: tickerScroll 60s linear infinite;
}
.news-ticker-track:hover { animation-play-state: paused; }
.news-ticker-item {
  padding: 0 48px 0 0; font-size: 0.83rem; color: rgba(255,255,255,0.8);
  cursor: pointer; transition: color 0.2s; text-decoration: none; display: inline-block;
}
.news-ticker-item:hover { color: var(--orange); }
.news-ticker-item::before { content: '◆'; margin-right: 12px; color: var(--orange); font-size: 0.5rem; vertical-align: middle; }
.news-ticker-cta {
  padding: 0 18px; background: rgba(255,255,255,0.08); color: var(--orange);
  height: 100%; display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 700; white-space: nowrap;
  text-decoration: none; flex-shrink: 0; transition: background 0.2s;
  border-left: 1px solid rgba(255,255,255,0.1);
}
.news-ticker-cta:hover { background: rgba(255,255,255,0.15); }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Homepage News Preview */
.news-preview-section { background: white; }
.news-preview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 32px; }
.news-preview-card {
  border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition); display: flex; flex-direction: column;
}
.news-preview-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.news-preview-img { width: 100%; height: 160px; object-fit: cover; background: var(--gray-100); display: block; }
.news-preview-img-placeholder {
  width: 100%; height: 160px; background: linear-gradient(135deg,var(--navy),var(--teal));
  display: flex; align-items: center; justify-content: center;
}
.news-preview-img-placeholder i { font-size: 2rem; color: rgba(255,255,255,0.3); }
.news-preview-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.news-preview-meta { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; flex-wrap: wrap; }
.news-preview-badge { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; padding: 2px 8px; border-radius: 50px; }
.badge-nga { background: #e8f5e9; color: #1a6b2f; }
.news-preview-date { font-size: 0.75rem; color: var(--text-light); }
.news-preview-title { font-size: 0.92rem; font-weight: 700; color: var(--navy); line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; margin-bottom: 12px; }
.news-preview-link { font-size: 0.82rem; font-weight: 600; color: var(--orange); text-decoration: none; }
@media (max-width: 900px) { .news-preview-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .news-preview-grid { grid-template-columns: 1fr; } }

/* Medical Director section */
.director-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) {
  .director-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .director-grid > div:first-child {
    order: -1;
  }
}

@media (max-width: 768px) {
  .healthy-showcase-grid { grid-template-columns: 1fr; }
  .healthy-hero-card { height: 240px; }
  .healthy-small-card { height: 160px; }
  .healthy-stack { flex-direction: row; }
  .healthy-bottom-row { grid-template-columns: 1fr; }
  .healthy-bottom-row .healthy-wide-card { height: 180px; }
  .healthy-stats { gap: 12px; }
  .healthy-stat { padding: 16px 20px; min-width: 110px; }
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-section { background: var(--white); }
.gallery-header { text-align: center; margin-bottom: 40px; }
.gallery-header h2 { color: var(--navy); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 12px; }

/* ── Photo Card Grid — full image, no head cutoff ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.photo-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  height: 280px; cursor: pointer; box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.photo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Blurred background so full image fits without letterboxing bars */
.photo-card-bg {
  position: absolute; inset: -10px;
  background-size: cover; background-position: center;
  filter: blur(14px) brightness(0.45);
  transform: scale(1.05);
}
/* Actual image — contained so nothing gets cropped */
.photo-card > img {
  position: relative; width: 100%; height: 100%;
  object-fit: contain; display: block;
  transition: transform 0.4s ease;
}
.photo-card:hover > img { transform: scale(1.04); }
.photo-card-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 16px 14px;
  background: linear-gradient(transparent, rgba(30,45,64,0.75));
  color: white; font-size: 0.84rem; font-weight: 600;
  transform: translateY(4px); transition: transform 0.3s ease;
}
.photo-card:hover .photo-card-caption { transform: translateY(0); }

@media (max-width: 900px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .photo-grid { grid-template-columns: 1fr; }
  .photo-card { height: 240px; }
}

/* =============================================
   ACCREDITATIONS & HMO
   ============================================= */
.accred-section { background: var(--bg-light); }
.accred-header { text-align: center; margin-bottom: 56px; }
.accred-header h2 { color: var(--navy); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 12px; }
.accred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.accred-card { background: white; border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border); }
.accred-card-title { display: flex; align-items: center; gap: 12px; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; padding-bottom: 16px; border-bottom: 2px solid var(--orange); }
.accred-card-icon { width: 36px; height: 36px; background: var(--orange-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1rem; flex-shrink: 0; }
.accred-list { display: flex; flex-direction: column; gap: 12px; }
.accred-item { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; background: var(--bg-light); border-radius: 8px; }
.accred-num { width: 26px; height: 26px; background: var(--orange); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
.accred-text { font-size: 0.9rem; color: var(--text); line-height: 1.4; }
.hmo-list { display: flex; flex-direction: column; gap: 10px; }
.hmo-item { display: flex; align-items: center; gap: 10px; padding: 11px 14px; background: var(--teal-light); border-radius: 8px; font-size: 0.9rem; color: var(--navy); font-weight: 500; transition: var(--transition); }
.hmo-item:hover { background: var(--teal); color: white; }
.hmo-check { width: 20px; height: 20px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.65rem; flex-shrink: 0; transition: var(--transition); }
.hmo-item:hover .hmo-check { background: white; color: var(--teal); }

/* =============================================
   ACCESS SECTION
   ============================================= */
.access-section { background: var(--orange); color: white; padding: 60px 0; }
.access-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.access-left h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.access-left p { opacity: 0.85; font-size: 0.95rem; }
.access-methods { display: flex; gap: 16px; flex-wrap: wrap; }
.access-tag { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.3); color: white; padding: 8px 18px; border-radius: 50px; font-size: 0.88rem; font-weight: 600; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner { position: relative; overflow: hidden; }
.cta-banner-bg { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.cta-banner-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(30,45,64,0.88) 0%, rgba(30,45,64,0.75) 100%); }
.cta-banner .container { position: relative; z-index: 1; padding-top: 88px; padding-bottom: 88px; text-align: center; }
.cta-banner h2 { color: white; font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.78); font-size: 1.05rem; max-width: 580px; margin: 0 auto 36px; line-height: 1.75; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
.footer { background: var(--navy); color: white; padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 56px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.footer-logo-wrap img { height: 50px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-logo-wrap span { color: white; font-weight: 700; font-size: 0.9rem; line-height: 1.3; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.75; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-btn { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); font-size: 0.88rem; transition: var(--transition); }
.social-btn:hover { background: var(--orange); color: white; transform: translateY(-2px); }
.footer-col h4 { color: white; font-size: 0.92rem; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.86rem; display: flex; align-items: center; gap: 6px; transition: var(--transition); }
.footer-links a::before { content: '›'; color: var(--orange); font-size: 1rem; line-height: 1; }
.footer-links a:hover { color: white; transform: translateX(4px); }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; }
.f-contact-icon { color: var(--orange); flex-shrink: 0; margin-top: 2px; font-size: 0.9rem; }
.f-contact-text { color: rgba(255,255,255,0.6); font-size: 0.86rem; line-height: 1.6; }
.f-contact-text a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.f-contact-text a:hover { color: var(--orange); }
.footer-hours { background: rgba(255,255,255,0.05); border-radius: 10px; padding: 16px; margin-top: 8px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.82rem; color: rgba(255,255,255,0.6); padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hours-row:last-child { border-bottom: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.footer-bottom a { color: var(--orange); }

/* =============================================
   CHATBOT WIDGET
   ============================================= */
.chatbot-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 9998;
  height: 54px; padding: 0 22px 0 16px;
  background: var(--orange); border-radius: 50px;
  display: flex; align-items: center; gap: 10px; color: white;
  font-size: 1.3rem; box-shadow: 0 8px 28px rgba(232,114,42,0.45);
  transition: var(--transition); cursor: pointer; border: none;
  white-space: nowrap;
}
.fab-label {
  font-size: 0.9rem; font-weight: 700;
  font-family: var(--font-body); letter-spacing: 0.01em;
}
.chatbot-fab:hover { transform: scale(1.1); box-shadow: 0 12px 36px rgba(232,114,42,0.55); }
.chatbot-fab-pulse { animation: fab-pulse 3s infinite; }
@keyframes fab-pulse { 0%,100%{box-shadow:0 8px 28px rgba(232,114,42,0.45)} 50%{box-shadow:0 8px 40px rgba(232,114,42,0.7)} }
.fab-notif { position: absolute; top: -3px; right: -3px; width: 19px; height: 19px; background: #EF4444; border-radius: 50%; border: 2.5px solid white; font-size: 0.62rem; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; }
.chatbot-panel {
  position: fixed; bottom: 100px; right: 28px; width: 440px;
  max-height: calc(100vh - 120px);
  background: white; border-radius: 20px; box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  z-index: 9999; overflow: hidden; display: flex; flex-direction: column;
  transform: scale(0.85) translateY(20px); opacity: 0; pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: bottom right;
}
.chatbot-panel.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chat-header { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: white; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; }
.chat-header-left { display: flex; align-items: center; gap: 12px; }
.chat-avatar-circle { width: 40px; height: 40px; border-radius: 50%; background: var(--orange); display: flex; align-items: center; justify-content: center; font-size: 1rem; font-weight: 700; flex-shrink: 0; }
.chat-header-text strong { display: block; font-size: 0.9rem; }
.chat-header-text span { font-size: 0.75rem; opacity: 0.7; }
.chat-online { display: flex; align-items: center; gap: 5px; font-size: 0.72rem; opacity: 0.7; }
.chat-online-dot { width: 7px; height: 7px; background: #4ADE80; border-radius: 50%; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.chat-close-btn { color: white; opacity: 0.6; font-size: 1.1rem; cursor: pointer; background: none; border: none; padding: 4px; transition: var(--transition); }
.chat-close-btn:hover { opacity: 1; }
/* Welcome screen — first thing user sees */
.chat-welcome-screen {
  padding: 28px 20px 24px;
  text-align: center;
  background: linear-gradient(160deg, #FFFAF7 0%, #EAF9F8 100%);
  border-top: 1px solid var(--border);
}
.chat-welcome-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--orange-light); color: var(--orange);
  font-size: 1.6rem; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.chat-welcome-screen strong { display: block; font-size: 0.95rem; color: var(--navy); margin-bottom: 8px; }
.chat-welcome-screen p { font-size: 0.82rem; color: var(--text-light); line-height: 1.6; margin-bottom: 18px; }
.chat-start-btn {
  width: 100%; padding: 12px; background: var(--orange); color: white;
  border: none; border-radius: 12px; font-size: 0.9rem; font-weight: 700;
  cursor: pointer; font-family: var(--font-body); transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.chat-start-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* Chat body — messages + form + live input */
.chat-body { display: flex; flex-direction: column; overflow: hidden; }
.chat-messages { padding: 14px; height: 320px; overflow-y: auto; display: flex; flex-direction: column; gap: 12px; background: #F1F5F9; }
.chat-messages::-webkit-scrollbar { width: 4px; }
.chat-messages::-webkit-scrollbar-track { background: transparent; }
.chat-messages::-webkit-scrollbar-thumb { background: var(--gray-200); border-radius: 4px; }
.chat-msg { max-width: 88%; animation: msg-pop 0.3s ease; }
@keyframes msg-pop { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-bubble { padding: 12px 16px; border-radius: 14px; font-size: 0.95rem; line-height: 1.6; }
.chat-msg.bot .chat-bubble { background: white; color: var(--text); border-bottom-left-radius: 3px; box-shadow: var(--shadow-sm); }
.chat-msg.user .chat-bubble { background: var(--orange); color: white; border-bottom-right-radius: 3px; }
.chat-msg-time { font-size: 0.68rem; color: var(--text-light); margin-top: 3px; padding: 0 4px; }
.chat-msg.user .chat-msg-time { text-align: right; }
.chat-form-area {
  padding: 16px 16px 14px;
  border-top: 1px solid var(--border);
  background: white;
  overflow-y: auto;
  max-height: 370px;
}
.chat-form-area h4 {
  text-align: center; font-size: 0.88rem; color: var(--navy);
  margin-bottom: 14px; font-weight: 700; letter-spacing: 0.01em;
}
.chat-field-group {
  margin-bottom: 10px;
}
.chat-field-label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--navy); margin-bottom: 4px; font-family: var(--font-body);
}
.chat-field-label .req { color: var(--orange); margin-left: 2px; }
.chat-field-label .opt { font-weight: 400; color: var(--text-light); font-size: 0.72rem; margin-left: 3px; }
.chat-field {
  width: 100%; padding: 9px 12px;
  border: 1.5px solid #D1D5DB;
  border-radius: 10px; font-size: 0.875rem;
  font-family: var(--font-body); color: var(--text);
  transition: var(--transition); background: #FAFAFA;
  box-sizing: border-box; display: block;
}
.chat-field:focus {
  outline: none; border-color: var(--orange);
  background: white; box-shadow: 0 0 0 3px rgba(232,114,42,0.12);
}
.chat-field::placeholder { color: #A0AEC0; font-size: 0.84rem; }
textarea.chat-field { resize: none; height: 70px; }
select.chat-field {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236B7280' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 36px;
}
.chat-send-btn {
  width: 100%; padding: 11px;
  background: var(--orange); color: white;
  border: none; border-radius: 10px;
  font-size: 0.9rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  font-family: var(--font-body); margin-top: 6px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  letter-spacing: 0.01em;
}
.chat-send-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }
.chat-send-btn:active { transform: translateY(0); }
/* Live chat input bar (shown after form submitted) */
.chat-live-area {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1.5px solid var(--border);
  background: white;
}
.chat-live-field {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg-light);
  outline: none;
  transition: var(--transition);
}
.chat-live-field:focus { border-color: var(--orange); background: white; }
.chat-live-send {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--orange); color: white;
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; cursor: pointer; transition: var(--transition);
}
.chat-live-send:hover { background: var(--orange-dark); transform: scale(1.08); }
.chat-live-send:disabled { opacity: 0.5; cursor: default; transform: none; }

/* Typing indicator — three bouncing dots */
.chat-typing { display: flex; align-items: center; gap: 5px; padding: 10px 14px !important; min-width: 56px; }
.chat-typing span {
  width: 8px; height: 8px; background: var(--orange);
  border-radius: 50%; display: inline-block;
  animation: chatDotBounce 1.2s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes chatDotBounce {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.5; }
  40%           { transform: scale(1);   opacity: 1;   }
}

/* =============================================
   INNER PAGE HERO
   ============================================= */
.page-hero { padding: 140px 0 72px; background: linear-gradient(140deg, #FFFAF7 0%, #EAF9F8 100%); text-align: center; position: relative; overflow: hidden; }
.page-hero-deco { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.page-hero-deco::before { content: ''; position: absolute; top: -60px; right: -60px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(232,114,42,0.07) 0%, transparent 70%); border-radius: 50%; }
.page-hero-deco::after { content: ''; position: absolute; bottom: -40px; left: -40px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(77,200,192,0.07) 0%, transparent 70%); border-radius: 50%; }
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb { display: flex; justify-content: center; align-items: center; gap: 6px; margin-bottom: 16px; font-size: 0.82rem; color: var(--text-light); }
.breadcrumb a { color: var(--orange); font-weight: 500; }
.breadcrumb-sep { color: var(--gray-400); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); margin-bottom: 16px; }
.page-hero p { color: var(--text-light); font-size: 1.05rem; max-width: 580px; margin: 0 auto; line-height: 1.7; }

/* ── Hero Slideshow (shared across all page heroes) ── */
.page-hero.hero-slides-active { background: none; padding: 160px 0 90px; }
.gallery-hero.hero-slides-active { background: none; padding: 160px 0 90px; }
.hero-slideshow-wrap { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero-slide-bg { position: absolute; inset: 0; background-size: cover; background-position: top center; opacity: 0; transition: opacity 1.4s ease-in-out; transform: scale(1.04); animation: heroZoom 8s ease-in-out infinite alternate; }
.hero-slide-bg.active { opacity: 1; }
@keyframes heroZoom { from { transform: scale(1.04); } to { transform: scale(1.00); } }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to bottom, rgba(15,25,40,0.62) 0%, rgba(15,25,40,0.70) 60%, rgba(15,25,40,0.55) 100%); }
.hero-logo-watermark { position: absolute; bottom: 28px; right: 36px; z-index: 3; display: flex; align-items: center; gap: 10px; opacity: 0.55; pointer-events: none; }
.hero-logo-watermark img { width: 48px; height: 48px; object-fit: contain; filter: brightness(0) invert(1); }
.hero-logo-watermark span { color: white; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.3; }
.hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; gap: 8px; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); cursor: pointer; transition: background 0.3s, transform 0.3s; border: none; padding: 0; }
.hero-dot.active { background: var(--orange); transform: scale(1.35); }
.page-hero.hero-slides-active h1, .gallery-hero.hero-slides-active h1 { color: #ffffff; }
.page-hero.hero-slides-active p, .gallery-hero.hero-slides-active p { color: rgba(255,255,255,0.88); }
.page-hero.hero-slides-active .breadcrumb, .gallery-hero.hero-slides-active .breadcrumb { color: rgba(255,255,255,0.65); }
.page-hero.hero-slides-active .breadcrumb a, .gallery-hero.hero-slides-active .breadcrumb a { color: rgba(255,255,255,0.9); }
.page-hero.hero-slides-active .label-tag, .gallery-hero.hero-slides-active .label-tag { background: rgba(255,255,255,0.15); color: white; border-color: rgba(255,255,255,0.25); backdrop-filter: blur(4px); }
.page-hero.hero-slides-active .page-hero-deco { display: none; }
.page-hero.hero-slides-active .container, .gallery-hero.hero-slides-active .container { position: relative; z-index: 2; }

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 56px; align-items: start; }
.contact-info-panel { background: var(--navy); border-radius: var(--radius-lg); padding: 44px; color: white; }
.contact-info-panel h3 { color: white; font-size: 1.5rem; margin-bottom: 8px; }
.contact-info-panel > p { color: rgba(255,255,255,0.6); margin-bottom: 36px; line-height: 1.65; font-size: 0.95rem; }
.contact-detail-row { display: flex; gap: 16px; margin-bottom: 24px; }
.cd-icon { width: 42px; height: 42px; background: rgba(255,255,255,0.09); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 1rem; flex-shrink: 0; }
.cd-text strong { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.cd-text p { color: rgba(255,255,255,0.85); font-size: 0.92rem; line-height: 1.5; }
.cd-text a { color: rgba(255,255,255,0.85); transition: var(--transition); }
.cd-text a:hover { color: var(--orange); }
.contact-hours-box { background: rgba(255,255,255,0.07); border-radius: var(--radius); padding: 18px; margin-top: 28px; }
.contact-hours-box h4 { color: var(--orange); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.ch-row { display: flex; justify-content: space-between; font-size: 0.85rem; color: rgba(255,255,255,0.65); padding: 5px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ch-row:last-child { border-bottom: none; }
.contact-form-panel { background: white; border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-md); }
.contact-form-panel h3 { color: var(--navy); font-size: 1.4rem; margin-bottom: 8px; }
.contact-form-panel > p { color: var(--text-light); margin-bottom: 32px; font-size: 0.95rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grp { margin-bottom: 18px; }
.form-grp label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.04em; }
.form-input { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 0.95rem; font-family: var(--font-body); color: var(--text); transition: var(--transition); background: var(--bg-light); }
.form-input:focus { outline: none; border-color: var(--orange); background: white; box-shadow: 0 0 0 3px rgba(232,114,42,0.1); }
textarea.form-input { height: 120px; resize: vertical; }
select.form-input { appearance: none; cursor: pointer; }
.form-submit-btn { width: 100%; padding: 14px; background: var(--orange); color: white; border: none; border-radius: 10px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: var(--transition); font-family: var(--font-body); margin-top: 4px; }
.form-submit-btn:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,114,42,0.3); }
.map-section { padding: 0 0 88px; }
.map-title { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); height: 420px; }
.map-frame iframe { width: 100%; height: 100%; border: none; }

/* =============================================
   SERVICES PAGE
   ============================================= */
.care-options-section { background: var(--navy); color: white; }
.care-header { text-align: center; margin-bottom: 52px; }
.care-header h2 { color: white; font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 12px; }
.care-header p { color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; }
.care-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 18px; }
.care-item { display: flex; gap: 14px; padding: 20px 22px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius); align-items: flex-start; transition: var(--transition); }
.care-item:hover { background: rgba(232,114,42,0.12); border-color: rgba(232,114,42,0.3); }
.care-check-icon { width: 28px; height: 28px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.8rem; flex-shrink: 0; margin-top: 2px; }
.care-item-text strong { display: block; color: white; margin-bottom: 4px; font-size: 0.95rem; }
.care-item-text span { color: rgba(255,255,255,0.58); font-size: 0.84rem; line-height: 1.4; }
.general-medical-section { background: var(--orange-light); }
.gm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.gm-content h2 { color: var(--navy); font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 16px; }
.gm-content p { color: var(--text-light); line-height: 1.75; margin-bottom: 20px; }
.gm-detail-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.gm-detail-item { display: flex; align-items: flex-start; gap: 14px; padding: 14px 16px; background: white; border-radius: 10px; box-shadow: var(--shadow-sm); }
.gm-det-icon { color: var(--orange); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.gm-det-text strong { display: block; color: var(--navy); font-size: 0.92rem; margin-bottom: 2px; }
.gm-det-text span { color: var(--text-light); font-size: 0.84rem; }
.gm-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.gm-image img { width: 100%; height: 400px; object-fit: cover; }

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-story-section { background: var(--white); }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-story-content h2 { color: var(--navy); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 16px; }
.about-story-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; font-size: 0.97rem; }
.about-story-content p strong { color: var(--navy); }
.about-story-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-story-img img { width: 100%; height: 480px; object-fit: cover; }
.mission-vision-section { background: var(--teal-light); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card { background: white; border-radius: var(--radius-lg); padding: 40px; border-top: 4px solid var(--orange); }
.mv-card.teal-top { border-top-color: var(--teal); }
.mv-label { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 16px; display: block; }
.mv-label.teal { color: var(--teal-dark); }
.mv-card p { color: var(--text); font-size: 1.05rem; line-height: 1.8; }
.doctor-feature-section { background: var(--bg-light); }
.df-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.df-card { background: white; border-radius: var(--radius-lg); padding: 40px 32px; border: 1px solid var(--border); text-align: center; transition: var(--transition); position: relative; }
.df-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.df-img-wrap { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; margin: 0 auto 20px; background: var(--gray-100); border: 3px solid var(--orange-mid); }
.df-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.df-card h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 4px; }
.df-card .df-role { color: var(--orange); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; display: block; }
.df-card .df-quote { font-style: italic; color: var(--text-light); font-size: 0.88rem; line-height: 1.55; margin-bottom: 14px; }
.df-card p { color: var(--text-light); font-size: 0.84rem; line-height: 1.5; }

/* =============================================
   REVIEW PAGE
   ============================================= */
.review-page-section { background: var(--white); }
.review-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.review-info h2 { color: var(--navy); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 14px; }
.review-info p { color: var(--text-light); line-height: 1.75; margin-bottom: 28px; font-size: 0.97rem; }
.review-existing { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.review-existing-item { background: var(--bg-light); border-radius: var(--radius); padding: 20px; border-left: 3px solid var(--orange); }
.review-existing-item .t-stars { font-size: 0.8rem; margin-bottom: 8px; }
.review-existing-item p { font-style: italic; color: var(--text); font-size: 0.88rem; line-height: 1.6; margin-bottom: 10px; }
.review-existing-item strong { font-size: 0.82rem; color: var(--navy); }
.review-form-panel { background: white; border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-md); }
.review-form-panel h3 { color: var(--navy); font-size: 1.3rem; margin-bottom: 8px; }
.review-form-panel > p { color: var(--text-light); margin-bottom: 28px; font-size: 0.92rem; }
.star-rating-input { display: flex; gap: 6px; margin-bottom: 4px; }
.star-btn { font-size: 1.8rem; color: var(--gray-200); cursor: pointer; transition: var(--transition); background: none; border: none; padding: 2px; line-height: 1; }
.star-btn:hover, .star-btn.active { color: #F59E0B; }
.star-label { font-size: 0.8rem; color: var(--text-light); margin-bottom: 16px; display: block; }

/* =============================================
   ADMIN PAGE
   ============================================= */
.admin-page { min-height: 100vh; background: var(--bg-light); font-family: var(--font-body); }
.admin-header { background: var(--navy); color: white; padding: 20px 32px; display: flex; align-items: center; justify-content: space-between; }
.admin-header h1 { font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.admin-body { padding: 32px; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.admin-stat-card { background: white; border-radius: var(--radius); padding: 24px; border: 1px solid var(--border); text-align: center; }
.admin-stat-card .num { font-size: 2rem; font-weight: 800; color: var(--orange); }
.admin-stat-card .lbl { font-size: 0.82rem; color: var(--text-light); margin-top: 4px; }
.admin-card { background: white; border-radius: var(--radius-lg); border: 1px solid var(--border); overflow: hidden; }
.admin-card-header { padding: 20px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.admin-card-header h2 { font-size: 1rem; font-weight: 700; color: var(--navy); }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; }
.admin-table th { background: var(--bg-light); padding: 12px 16px; text-align: left; font-size: 0.75rem; font-weight: 700; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; border-bottom: 1px solid var(--border); white-space: nowrap; }
.admin-table td { padding: 12px 16px; border-bottom: 1px solid var(--gray-100); color: var(--text); vertical-align: top; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--bg-light); }
.admin-login { max-width: 400px; margin: 80px auto; background: white; border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-lg); text-align: center; }
.admin-login h2 { color: var(--navy); margin-bottom: 8px; }
.admin-login p { color: var(--text-light); margin-bottom: 28px; font-size: 0.92rem; }

/* =============================================
   FADE-UP ANIMATIONS
   ============================================= */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .fees-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid, .why-grid { gap: 48px; }
}
@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { display: none; }
  .about-grid, .antenatal-grid, .why-grid, .gm-grid, .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-years-badge { display: none; }
  .about-img-accent { display: none; }
  .why-img-wrapper { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .accred-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .review-layout { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .df-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar .container { gap: 24px; }
  .trust-divider { display: none; }
}
@media (max-width: 768px) {
  .navbar-links, .navbar-phone-link, .navbar-right > .btn { display: none; }
  .hamburger { display: flex; }
  .section { padding: 60px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-2 { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .fees-grid { grid-template-columns: repeat(2, 1fr); }
  .reg-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .chatbot-panel { width: calc(100vw - 24px); right: 12px; bottom: 86px; }
  .hero-stats { gap: 20px; }
  .why-cards { grid-template-columns: 1fr; }
  .care-grid { grid-template-columns: 1fr; }
  .df-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { flex-direction: column; align-items: center; }
  .access-inner { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .fees-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 16px; }
  .container { padding: 0 16px; }
}
