/* =========================================================
   FERTILITÉ SPERM BANK — Complete Responsive styles.css
   ========================================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:        #1a2b5e;
  --navy-deep:   #0f1a3a;
  --navy-mid:    #1e3a5f;
  --teal:        #0891b2;
  --teal-mid:    #0e7490;
  --teal-dark:   #155e75;
  --teal-light:  #e0f2fe;
  --teal-pale:   #f0f9ff;
  --cream:       #fdfaf4;
  --white:       #ffffff;
  --text-dark:   #1a2b5e;
  --text-mid:    #4a5568;
  --text-light:  #718096;
  --border:      rgba(26,43,94,0.12);
  --shadow-soft: 0 4px 24px rgba(26,43,94,0.08);
  --shadow-card: 0 8px 40px rgba(26,43,94,0.12);
  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   24px;
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
  --transition:  0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Global Overflow Protection ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  color: var(--text-mid);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
}
img, svg, video, canvas, iframe {
  max-width: 100%;
  height: auto;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; background: none; }

/* ── Utility ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 14px;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--teal-mid);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; color: var(--teal); }
.section-lead {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 580px;
  margin-top: 14px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
  justify-content: center;
}
.btn-primary:hover {
  background: var(--teal-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(8,145,178,0.35);
}
.btn-primary svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; flex-shrink: 0; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  white-space: nowrap;
  justify-content: center;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-outline svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; flex-shrink: 0; }

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.02em;
  white-space: nowrap;
  justify-content: center;
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-navy svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; flex-shrink: 0; }

/* ── Fade-up animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }


/* =========================================================
   COOKIE BANNER
   ========================================================= */
#cookieBanner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy-deep);
  border-top: 3px solid var(--teal);
  padding: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.25);
}
#cookieBanner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cookie-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: rgba(8,145,178,0.15);
  border: 1px solid rgba(8,145,178,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--teal); stroke-width: 1.8; }
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.cookie-text p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.cookie-text a { color: #67e8f9; text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn-accept {
  background: var(--teal);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  letter-spacing: 0.02em;
}
.cookie-btn-accept:hover { background: var(--teal-mid); }
.cookie-btn-decline {
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all var(--transition);
}
.cookie-btn-decline:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.cookie-btn-settings {
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cookie-btn-settings:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.cookie-btn-settings svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }

/* Cookie Settings Modal */
#cookieModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#cookieModal.open { display: flex; }
.cookie-modal-panel {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  padding: 40px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.25);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(12px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.cookie-modal-header h2 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
}
.cookie-modal-close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all var(--transition);
}
.cookie-modal-close:hover { background: var(--teal-pale); color: var(--navy); }
.cookie-modal-close svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; }
.cookie-category {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.cookie-category:last-of-type { border-bottom: none; }
.cookie-cat-info h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.cookie-cat-info p  { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.cookie-toggle { position: relative; flex-shrink: 0; }
.cookie-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.toggle-slider {
  display: block;
  width: 44px;
  height: 24px;
  background: #cbd5e0;
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition);
  position: relative;
}
.toggle-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.cookie-toggle input:checked + .toggle-slider { background: var(--teal); }
.cookie-toggle input:checked + .toggle-slider::after { transform: translateX(20px); }
.cookie-toggle input:disabled + .toggle-slider { opacity: 0.5; cursor: not-allowed; }
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.cookie-modal-actions .btn-primary { flex: 1; justify-content: center; }
.cookie-modal-actions .btn-navy    { flex: 1; justify-content: center; }


/* =========================================================
   TOP BAR
   ========================================================= */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 400;
  padding: 9px 0;
  letter-spacing: 0.02em;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-contacts { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-contacts a {
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color var(--transition);
}
.topbar-contacts a:hover { color: #fff; }
.topbar-contacts svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.8; flex-shrink: 0; }
.topbar-badge {
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  white-space: nowrap;
}


/* =========================================================
   NAVIGATION
   ========================================================= */
.site-nav {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 500;
  box-shadow: 0 2px 16px rgba(26,43,94,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark { width: 44px; height: 44px; flex-shrink: 0; }
.logo-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.2;
  display: block;
}
.logo-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links li { position: relative; }
.nav-links > li > a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { background: var(--teal-pale); color: var(--navy); }
.nav-links .dropdown-arrow { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; transition: transform var(--transition); }
.nav-links li:hover .dropdown-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  min-width: 230px;
  box-shadow: var(--shadow-card);
  z-index: 600;
  animation: dropIn 0.2s ease;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.nav-links li:hover .dropdown { display: block; }
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-mid);
  transition: all var(--transition);
}
.dropdown a:hover { background: var(--teal-pale); color: var(--navy); }
.dropdown a svg { width: 16px; height: 16px; fill: none; stroke: var(--teal-mid); stroke-width: 1.8; flex-shrink: 0; }

/* CTA nav button */
.nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 10px 20px !important;
  border-radius: 10px !important;
  transition: background var(--transition), transform var(--transition) !important;
  letter-spacing: 0.02em;
}
.nav-cta:hover { background: var(--teal-mid) !important; transform: translateY(-1px) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu – fully responsive & no cut‑offs */
.mobile-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 500;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
}
.mobile-menu.open { display: flex; flex-direction: column; }
.mobile-menu a {
  display: block;
  padding: 14px 20px;
  font-size: 16px;
  color: var(--text-mid);
  border-bottom: 1px solid #eee;
  transition: background var(--transition);
}
.mobile-menu a:hover { background: var(--teal-pale); }
.mobile-menu .mobile-cta {
  background: var(--navy);
  color: #fff !important;
  text-align: center;
  margin: 12px 20px;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
}
.mobile-parent-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-mid);
  padding: 14px 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  font-family: var(--font-body);
}
.mobile-parent-toggle:hover { background: var(--teal-pale); }
.mobile-sub-links {
  display: grid;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.mobile-sub-links a {
  padding-left: 40px;
  font-size: 14px;
}


/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #1e3a5f 55%, #083344 100%);
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 72% 38%, rgba(8,145,178,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 18% 82%, rgba(8,145,178,0.14) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 48px, rgba(255,255,255,0.6) 48px, rgba(255,255,255,0.6) 49px),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(255,255,255,0.6) 48px, rgba(255,255,255,0.6) 49px);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0 90px 80px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(8,145,178,0.14);
  border: 1px solid rgba(8,145,178,0.3);
  border-radius: 24px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #67e8f9;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.65); }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 300;
  color: #fff;
  line-height: 1.13;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: #67e8f9; }
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  font-style: italic;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.62);
  max-width: 490px;
  line-height: 1.85;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Hero visual panel */
.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 60px 60px 0;
}
.hero-card-stack { position: relative; width: 380px; height: 480px; }
.hero-main-card {
  position: absolute;
  top: 28px;
  left: 0;
  right: 56px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 32px;
  color: #fff;
}
.hero-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(8,145,178,0.18);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.hero-card-icon svg { width: 26px; height: 26px; fill: none; stroke: #67e8f9; stroke-width: 1.8; }
.hero-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 12px;
}
.hero-card-desc { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.7; margin-bottom: 22px; }
.pills { display: flex; flex-wrap: wrap; gap: 7px; }
.pill {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.hero-float-stat {
  position: absolute;
  bottom: 8px;
  right: 0;
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  width: 196px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
}
.float-label { font-size: 11px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.09em; margin-bottom: 7px; }
.float-value { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--navy); line-height: 1; margin-bottom: 3px; }
.float-sub   { font-size: 12px; color: var(--teal-mid); font-weight: 500; }
.hero-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--teal);
  border-radius: 14px;
  padding: 16px 20px;
  width: 128px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 28px rgba(8,145,178,0.4);
}
.hero-tag-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; opacity: 0.85; }


/* =========================================================
   WHY US
   ========================================================= */
.why { background: var(--cream); padding: 100px 0; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 0;
}
.why-header { margin-bottom: 48px; }
.why-features { display: flex; flex-direction: column; gap: 30px; }
.feature-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all var(--transition);
  background: transparent;
}
.feature-row:hover { background: #fff; border-color: var(--border); box-shadow: var(--shadow-soft); }
.feature-icon {
  width: 52px;
  height: 52px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
}
.feature-row:hover .feature-icon { background: var(--navy); border-color: var(--navy); }
.feature-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--navy); stroke-width: 1.8; transition: stroke var(--transition); }
.feature-row:hover .feature-icon svg { stroke: #fff; }
.feature-title { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.feature-text  { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* Why right — visual */
.why-right { position: relative; }
.why-visual-box {
  border-radius: var(--radius-lg);
  overflow: visible;
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--navy) 0%, #083344 100%);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.why-visual-art {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.2;
}
.why-visual-art svg { width: 260px; height: 260px; }
.why-visual-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}
.why-visual-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}
.why-visual-sub { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.7; }
.stat-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 16px 22px;
  box-shadow: var(--shadow-card);
  text-align: center;
}
.stat-badge-num   { font-family: var(--font-display); font-size: 32px; font-weight: 600; color: var(--teal-mid); line-height: 1; }
.stat-badge-label { font-size: 11px; color: var(--text-light); font-weight: 500; margin-top: 5px; letter-spacing: 0.04em; }
.badge-top-right { top: 28px; right: -22px; }
.badge-bottom-left {
  bottom: 32px;
  left: -22px;
  background: var(--navy);
}
.badge-bottom-left .stat-badge-num   { color: #fff; }
.badge-bottom-left .stat-badge-label { color: rgba(255,255,255,0.55); }


/* =========================================================
   SERVICES
   ========================================================= */
.services { background: #fff; padding: 100px 0; }
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 52px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition);
  max-width: 100%;
  word-break: break-word;
}
.service-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, #083344 100%);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}
.service-card:hover { border-color: transparent; transform: translateY(-5px); box-shadow: var(--shadow-card); }
.service-card:hover .service-card-bg { opacity: 1; }
.service-card-inner { position: relative; z-index: 1; }
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--teal-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: rgba(255,255,255,0.14); }
.service-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--teal-mid); stroke-width: 1.8; transition: stroke var(--transition); }
.service-card:hover .service-icon svg { stroke: #67e8f9; }
.service-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.service-card:hover .service-title { color: #fff; }
.service-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  transition: color var(--transition);
}
.service-card:hover .service-text { color: rgba(255,255,255,0.72); }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-mid);
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition);
}
.service-card:hover .service-link { color: rgba(255,255,255,0.88); gap: 10px; }
.service-link svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2.5; }
.service-card.featured {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0c4a6e 100%);
  border-color: transparent;
}
.service-card.featured .service-card-bg { display: none; }
.service-card.featured .service-title  { color: #fff; }
.service-card.featured .service-text   { color: rgba(255,255,255,0.68); }
.service-card.featured .service-icon   { background: rgba(255,255,255,0.12); }
.service-card.featured .service-icon svg { stroke: #67e8f9; }
.service-card.featured .service-link   { color: #67e8f9; }
.service-card.featured:hover           { transform: translateY(-5px); }


/* =========================================================
   DOCTOR / ABOUT (FOR DONORS)
   ========================================================= */
.doctor-section { background: var(--cream); padding: 100px 0; }
.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.doctor-photo-wrap {
  position: relative;
}
.doctor-photo-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #eef4f8 0%, var(--teal-pale) 100%);
  aspect-ratio: 3/4;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.doctor-photo-art {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.doctor-photo-art svg { opacity: 0.12; }
.doctor-name-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(26,43,94,0.08);
}
.doctor-name    { font-family: var(--font-display); font-size: 22px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.doctor-role    { font-size: 12px; font-weight: 600; color: var(--teal-mid); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px; }
.doctor-quals   { display: flex; flex-wrap: wrap; gap: 6px; }
.qual-tag {
  background: var(--teal-pale);
  color: var(--teal-dark);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.doctor-bio {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 32px;
}
.doctor-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}
.fact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.fact-icon {
  width: 38px;
  height: 38px;
  background: var(--teal-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fact-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--teal-mid); stroke-width: 1.8; }
.fact-label { font-size: 11px; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 2px; }
.fact-value { font-size: 14px; font-weight: 600; color: var(--navy); }
.doctor-actions { display: flex; gap: 14px; flex-wrap: wrap; }


/* =========================================================
   PROCESS
   ========================================================= */
.process { background: var(--navy-deep); padding: 100px 0; }
.process .section-eyebrow { color: #67e8f9; }
.process .section-eyebrow::before { background: #67e8f9; }
.process .section-title { color: #fff; }
.process .section-lead  { color: rgba(255,255,255,0.55); }
.process-head { margin-bottom: 64px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-connector {
  position: absolute;
  top: 38px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: linear-gradient(90deg, rgba(8,145,178,0.6) 0%, rgba(8,145,178,0.15) 100%);
  pointer-events: none;
}
.process-step {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  text-align: center;
}
.step-num {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(8,145,178,0.1);
  border: 1px solid rgba(8,145,178,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  color: #67e8f9;
  transition: all var(--transition);
}
.process-step:first-child .step-num {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(8,145,178,0.35);
}
.step-title { font-size: 16px; font-weight: 600; color: #fff; margin-bottom: 10px; }
.step-text  { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.7; }


/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: #fff; padding: 100px 0; }
.testimonials-head { margin-bottom: 52px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 300;
  color: var(--teal-light);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 26px;
  pointer-events: none;
}
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star  { color: #f59e0b; font-size: 14px; }
.testimonial-text {
  font-size: 15px;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  flex-shrink: 0;
}
.author-name  { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.author-label { font-size: 12px; color: var(--text-light); }


/* =========================================================
   LOCATIONS
   ========================================================= */
.locations { background: var(--teal-pale); padding: 100px 0; }
.locations-head { margin-bottom: 52px; }
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.location-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 24px;
  transition: all var(--transition);
}
.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.loc-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.loc-icon svg { width: 24px; height: 24px; fill: none; stroke: #fff; stroke-width: 1.8; }
.loc-icon.teal { background: var(--teal); }
.loc-name { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.loc-sub  { font-size: 12px; font-weight: 600; color: var(--teal-mid); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.loc-row  { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 9px; }
.loc-row svg { width: 15px; height: 15px; fill: none; stroke: var(--text-light); stroke-width: 1.8; flex-shrink: 0; margin-top: 3px; }
.loc-row-text { font-size: 14px; color: var(--text-mid); line-height: 1.5; }
.loc-row-text strong { color: var(--navy); }


/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, #0c2d3a 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 50%, rgba(8,145,178,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(8,145,178,0.12);
  border: 1px solid rgba(8,145,178,0.28);
  border-radius: 24px;
  padding: 7px 18px;
  font-size: 12px;
  font-weight: 600;
  color: #67e8f9;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 300;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.cta-title em { font-style: italic; color: #67e8f9; }
.cta-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.56);
  max-width: 520px;
  margin: 0 auto 44px;
  line-height: 1.85;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-info-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 52px;
  flex-wrap: wrap;
}
.cta-info-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 192px;
}
.cta-info-card svg { width: 24px; height: 24px; fill: none; stroke: #67e8f9; stroke-width: 1.8; flex-shrink: 0; }
.cta-info-label { font-size: 11px; color: rgba(255,255,255,0.45); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 4px; }
.cta-info-value { font-size: 15px; font-weight: 600; color: #fff; }


/* =========================================================
   CONTACT FORM STRIP
   ========================================================= */
.contact-strip { background: var(--cream); padding: 80px 0; }
.contact-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.form-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-sub { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--navy); margin-bottom: 7px; letter-spacing: 0.02em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  max-width: 100%;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8,145,178,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.services-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
  cursor: pointer;
  word-break: break-word;
}
.check-item input[type="checkbox"] { accent-color: var(--teal); width: 16px; height: 16px; flex-shrink: 0; cursor: pointer; }
.form-disclaimer { font-size: 12px; color: var(--text-light); margin-top: 8px; line-height: 1.6; }
.form-disclaimer strong { color: var(--teal-mid); }

.contact-info-side { padding-top: 8px; }
.contact-info-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-info-title em { font-style: italic; color: var(--teal); }
.contact-info-desc { font-size: 16px; color: var(--text-mid); line-height: 1.8; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all var(--transition);
}
.contact-detail-row:hover { box-shadow: var(--shadow-soft); transform: translateX(4px); }
.contact-detail-icon {
  width: 42px;
  height: 42px;
  background: var(--teal-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; fill: none; stroke: var(--teal-mid); stroke-width: 1.8; }
.contact-detail-label { font-size: 11px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 3px; }
.contact-detail-value { font-size: 15px; font-weight: 600; color: var(--navy); }
.contact-detail-value a { color: var(--navy); transition: color var(--transition); }
.contact-detail-value a:hover { color: var(--teal-mid); }

/* Form error & success */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229,62,62,0.12);
}
.form-success-msg {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--teal-pale);
  border: 1px solid rgba(8,145,178,0.3);
  border-radius: 14px;
  padding: 28px;
  animation: modalIn .4s ease;
}
.form-success-msg svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
}
.form-success-msg strong { display: block; font-size: 18px; color: var(--navy); margin-bottom: 6px; }
.form-success-msg p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }


/* =========================================================
   FOOTER
   ========================================================= */
footer { background: var(--navy-deep); padding: 72px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.48);
  line-height: 1.8;
  margin: 16px 0 24px;
  max-width: 280px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.48);
  transition: all var(--transition);
  cursor: pointer;
}
.social-btn:hover { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.35); }
.social-btn svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.48);
  transition: color var(--transition);
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-item svg { width: 15px; height: 15px; fill: none; stroke: rgba(255,255,255,0.38); stroke-width: 1.8; flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.32); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.32); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }


/* =========================================================
   WHATSAPP FLOAT
   ========================================================= */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 400;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waFloat 3.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.55); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }
.wa-tooltip {
  position: absolute;
  right: 68px;
  background: #fff;
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
  pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}


/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .hero               { grid-template-columns: 1fr; min-height: auto; }
  .hero-content       { padding: 80px 48px 64px; }
  .hero-visual        { display: none; }
  .why-grid           { grid-template-columns: 1fr; gap: 48px; }
  .why-right          { order: -1; }
  .why-visual-box     { max-width: 480px; }
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .process-grid       { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process-connector  { display: none; }
  .testimonials-grid  { grid-template-columns: repeat(2, 1fr); }
  .doctor-grid        { grid-template-columns: 1fr; gap: 48px; }
  .contact-strip-inner{ grid-template-columns: 1fr; gap: 40px; }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  section             { padding: 64px 0 !important; }
  .container          { padding: 0 20px; }
  .topbar-inner       { justify-content: center; gap: 6px; }
  .nav-links          { display: none; }
  .hamburger          { display: flex; }
  .hero-content       { padding: 64px 20px 56px; }
  .hero-stats         { gap: 20px; }
  .services-grid      { grid-template-columns: 1fr !important; }
  .process-grid       { grid-template-columns: 1fr; }
  .testimonials-grid  { grid-template-columns: 1fr; }
  .locations-grid     { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom      { flex-direction: column; text-align: center; }
  .cta-info-row       { flex-direction: column; align-items: center; }
  .form-row           { grid-template-columns: 1fr !important; }
  .services-checklist { grid-template-columns: 1fr !important; }
  .badge-top-right, .badge-bottom-left { display: none; }
  .doctor-facts       { grid-template-columns: 1fr; }
  .services-header    { flex-direction: column; align-items: flex-start; }
  .cookie-inner       { flex-direction: column; gap: 16px; text-align: center; }
  .cookie-actions     { justify-content: center; }
}
@media (max-width: 480px) {
  .hero-content {
    padding: 60px 16px 50px !important;
  }
  .hero h1 {
    font-size: 32px !important;
    line-height: 1.15;
  }
  .hero-tagline {
    font-size: 18px !important;
  }
  .hero-desc {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
    padding-top: 30px;
  }
  .hero-stat-num {
    font-size: 30px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  .wa-float {
    width: 48px;
    height: 48px;
    bottom: 16px;
    right: 16px;
  }
  .wa-float svg {
    width: 24px;
    height: 24px;
  }
}

/* Prevent cards & form elements from breaking out */
.service-card, .donor-card, .team-card {
  max-width: 100%;
  word-break: break-word;
}

input, select, textarea {
  max-width: 100%;
  box-sizing: border-box;
}

.check-item {
  word-break: break-word;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
/* =========================================================
   SERVICE PAGES (Learn More) – responsive fixes (Sperm Bank)
   ========================================================= */
@media (max-width: 768px) {
  /* Override the inline grid-template-columns */
  .doctor-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Reduce hero padding for small screens */
  .page-hero {
    padding: 60px 0 40px !important;
  }

  /* Scale down large decorative SVGs in the right panel */
  .doctor-photo-art svg {
    width: 200px !important;
    height: auto !important;
  }

  /* Ensure text wraps properly */
  .doctor-grid p,
  .doctor-grid li {
    word-break: break-word;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
    font-size: 36px !important;
    line-height: 1.2;
  }
  .page-hero p {
    font-size: 16px !important;
  }
}