/* ============================================
   THEOS MEDICAL DIAGNOSTICS – MAIN STYLESHEET
   ============================================ */

@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-variable.woff2') format('woff2-variations');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #0B1F4E;
  --navy-light: #132770;
  --red: #C8102E;
  --red-dark: #a00d24;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --gray-100: #F1F3F8;
  --gray-200: #E2E6F0;
  --gray-400: #9BA5BF;
  --gray-600: #6B7494;
  --gray-800: #2D3454;
  --text: #1A2040;
  --shadow-sm: 0 2px 12px rgba(11,31,78,0.08);
  --shadow-md: 0 8px 32px rgba(11,31,78,0.14);
  --shadow-lg: 0 20px 60px rgba(11,31,78,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --header-h: 120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* ---- TOPBAR ---- */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 7px 0;
}
.topbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-right { display: flex; align-items: center; gap: 1.5rem; }
.wa-badge {
  background: #25D366;
  color: white;
  padding: 3px 12px;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.76rem;
  transition: opacity .2s;
}
.wa-badge:hover { opacity: 0.9; }

/* ---- NAV ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  height: 84px;
  gap: 2rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-theos { font-family: var(--font-body); font-weight: 900; font-size: 1.6rem; color: var(--navy); letter-spacing: 0.05em; }
.logo-sub { font-size: 0.72rem; font-weight: 700; color: var(--red); letter-spacing: 0.1em; text-transform: uppercase; }
.logo-tagline { font-size: 0.68rem; color: var(--gray-600); font-style: italic; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray-800);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all .2s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--gray-100); }
.nav-links a.active { color: var(--red); background: transparent; border-bottom: 2px solid var(--red); border-radius: 0; }

.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  min-width: 220px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: flex; }
.nav-dropdown .dropdown-menu a {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  color: var(--text);
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-dropdown .dropdown-menu a:hover { background: var(--gray-100); }
.chevron { font-size: 0.7rem; }

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
}
.btn-book {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--navy);
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all .2s;
  white-space: nowrap;
}
.btn-book:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow-sm); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: white;
  border-bottom: 1px solid var(--gray-200);
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 999;
  padding: 1rem 2rem;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px; border-radius: 8px; text-decoration: none; color: var(--text); font-weight: 500; }
.mobile-nav a:hover { background: var(--gray-100); }
.mobile-nav .mobile-book { background: var(--navy); color: white; text-align: center; margin-top: 8px; }

/* ---- HERO ---- */
.hero {
  background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 60%, #fff5f5 100%);
  padding: 80px 2rem 60px;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-bg-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.deco-arc {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: transparent;
  border: 80px solid var(--red);
  opacity: 0.9;
  z-index: 0;
}
.deco-dots {
  position: absolute;
  left: 60%;
  top: 30%;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, rgba(11,31,78,0.12) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: 0.5;
}
.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,16,46,0.08);
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(200,16,46,0.2);
}
.hero-title { line-height: 1.05; margin-bottom: 1.2rem; }
.because {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.matters {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--red);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-sub {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--navy);
  font-weight: 500;
}
.red-text { color: var(--red); }
.hero-desc { color: var(--gray-600); font-size: 1rem; margin-bottom: 2rem; max-width: 460px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all .25s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,31,78,0.25); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid var(--navy);
  transition: all .25s;
}
.btn-outline:hover { background: var(--navy); color: white; transform: translateY(-2px); }
.btn-primary.large { padding: 16px 36px; font-size: 1.05rem; }

/* Trust badges */
.trust-badges {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.4s both;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  flex: 1;
  min-width: 140px;
}
.trust-item div { display: flex; flex-direction: column; }
.trust-item strong { font-size: 0.82rem; color: var(--navy); }
.trust-item small { font-size: 0.72rem; color: var(--gray-600); }
.trust-icon { font-size: 1.4rem; }
.trust-divider { width: 1px; background: var(--gray-200); margin: 10px 0; }

/* Hero visual */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-img-wrap { position: relative; width: 100%; max-width: 500px; }
.hero-img-placeholder {
  border-radius: var(--radius-lg);
  height: 420px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(11,31,78,0.25);
}
.lab-scene { text-align: center; color: white; }
.microscope-icon { font-size: 6rem; display: block; margin-bottom: 1rem; animation: float 3s ease-in-out infinite; }
.lab-scene p { font-size: 1.2rem; font-weight: 600; opacity: 0.9; }

.hero-discount-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 180px;
}
.discount-icon {
  width: 44px;
  height: 44px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  flex-shrink: 0;
}
.discount-text { display: flex; flex-direction: column; gap: 2px; }
.discount-num { font-size: 1.5rem; font-weight: 900; color: var(--navy); line-height: 1; }
.discount-num sup { font-size: 0.8rem; vertical-align: super; }
.off { font-size: 0.9rem; color: var(--red); }
.discount-text span { font-size: 0.72rem; color: var(--gray-600); }
.discount-text a { color: var(--red); text-decoration: none; font-size: 0.75rem; font-weight: 700; margin-top: 4px; }

/* ---- PILLARS STRIP ---- */
.pillars-strip {
  background: var(--navy);
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 28px 3rem;
  flex: 1;
  max-width: 400px;
  cursor: default;
  transition: background .2s;
}
.pillar:hover { background: rgba(255,255,255,0.05); }
.pillar-icon { font-size: 2.2rem; }
.pillar-text { display: flex; flex-direction: column; gap: 4px; }
.pillar-text strong { color: white; font-size: 1rem; font-weight: 700; letter-spacing: 0.03em; }
.pillar-text span { color: rgba(255,255,255,0.65); font-size: 0.82rem; }
.pillar-sep { width: 1px; background: rgba(255,255,255,0.15); margin: 20px 0; }

/* ---- SECTIONS ---- */
.services-section, .why-section, .testimonials-section, .locations-section {
  padding: 80px 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.section-label.light { color: rgba(255,255,255,0.7); }
.section-header h2 {
  font-family: var(--font-body);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.section-header p { color: var(--gray-600); font-size: 1rem; max-width: 560px; margin: 0 auto; }
.header-line { width: 56px; height: 3px; background: var(--red); margin: 1rem auto 0; border-radius: 2px; }

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all .3s;
  position: relative;
  animation: fadeUp 0.6s ease both;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(200,16,46,0.2); }
.service-img {
  height: 180px;
  overflow: hidden;
}
.lab-img { background: #e8f0ff; }
.imaging-img { background: #e8f8e8; }
.mobile-img { background: #fff5e8; }
.corporate-img { background: #f5e8ff; }
.service-cat-icon {
  width: 42px;
  height: 42px;
  background: var(--off-white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 1px solid var(--gray-200);
  margin: 16px 20px 0;
  flex-shrink: 0;
}
.service-card > h3 { padding: 10px 20px 8px; font-size: 1rem; color: var(--navy); font-weight: 700; }
.service-card > p { padding: 0 20px 12px; font-size: 0.85rem; color: var(--gray-600); line-height: 1.55; }
.service-link { display: block; padding: 14px 20px; color: var(--red); font-weight: 700; font-size: 0.85rem; text-decoration: none; border-top: 1px solid var(--gray-100); }
.service-link:hover { color: var(--red-dark); }

/* MOBILE HIGHLIGHT */
.mobile-highlight {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a8a 100%);
  padding: 80px 2rem;
  position: relative;
  overflow: hidden;
}
.mobile-highlight::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(200,16,46,0.1);
}
.mobile-hl-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.mobile-hl-text .section-label { color: rgba(255,255,255,0.6); }
.mobile-hl-text h2 { font-family: var(--font-body); font-size: clamp(2rem, 3.5vw, 3rem); color: white; margin-bottom: 1.2rem; }
.mobile-hl-text p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.mobile-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 2rem; }
.mobile-features li { color: rgba(255,255,255,0.9); font-size: 0.95rem; }
.mobile-hl-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  backdrop-filter: blur(10px);
}
.hl-step { display: flex; align-items: center; gap: 1.2rem; }
.step-num {
  width: 44px;
  height: 44px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.step-info { display: flex; flex-direction: column; }
.step-info strong { color: white; font-size: 0.95rem; }
.step-info span { color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* WHY GRID */
.why-section { background: var(--off-white); max-width: 100%; padding: 80px 2rem; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.why-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  transition: all .3s;
  box-shadow: var(--shadow-sm);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(200,16,46,0.2); }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-card h3 { font-size: 1.05rem; color: var(--navy); font-weight: 700; margin-bottom: 0.6rem; }
.why-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

/* STATS */
.stats-section {
  background: var(--red);
  padding: 60px 2rem;
}
.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 60px;
  gap: 6px;
  flex: 1;
  min-width: 160px;
}
.stat-num {
  font-family: var(--font-body);
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  line-height: 1;
}
.stat-plus { font-size: 2rem; font-weight: 900; color: rgba(255,255,255,0.7); }
.stat-label { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; text-align: center; }
.stat-sep { width: 1px; height: 60px; background: rgba(255,255,255,0.2); margin: 0 0; }

/* TESTIMONIALS */
.testimonials-section { background: var(--off-white); max-width: 100%; padding: 80px 2rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: all .3s;
}
.testimonial-card.featured {
  background: var(--navy);
  border-color: var(--navy);
  transform: scale(1.03);
}
.testimonial-card.featured p, .testimonial-card.featured .testimonial-author strong { color: white; }
.testimonial-card.featured .testimonial-author span { color: rgba(255,255,255,0.6); }
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.stars { color: #F5A623; font-size: 1.1rem; margin-bottom: 1rem; }
.testimonial-card p { font-size: 0.9rem; color: var(--gray-800); line-height: 1.65; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.testimonial-card.featured .author-avatar { background: white; color: var(--navy); }
.testimonial-author div { display: flex; flex-direction: column; }
.testimonial-author strong { font-size: 0.875rem; color: var(--navy); }
.testimonial-author span { font-size: 0.77rem; color: var(--gray-600); }

/* BOOKING CTA */
.booking-cta {
  background: linear-gradient(135deg, #0B1F4E 0%, #132770 100%);
  padding: 70px 2rem;
  position: relative;
  overflow: hidden;
}
.booking-cta::before {
  content: '';
  position: absolute;
  left: -50px;
  top: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(200,16,46,0.15);
}
.booking-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-text h2 { font-family: var(--font-body); font-size: clamp(1.5rem, 3vw, 2.2rem); color: white; margin-bottom: 0.5rem; }
.cta-text p { color: rgba(255,255,255,0.7); }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 16px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all .25s;
}
.btn-whatsapp:hover { background: #1db858; transform: translateY(-2px); }

/* LOCATIONS */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 900px; margin: 0 auto; }
.location-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }
.loc-header { background: var(--navy); padding: 1.5rem; display: flex; align-items: center; gap: 10px; }
.loc-header h3 { color: white; font-size: 1.1rem; flex: 1; }
.loc-icon { font-size: 1.4rem; }
.loc-badge { background: var(--red); color: white; font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; white-space: nowrap; }
.loc-badge.secondary { background: rgba(255,255,255,0.2); }
.loc-details { padding: 1.5rem; display: flex; flex-direction: column; gap: 10px; }
.loc-row { display: flex; gap: 8px; font-size: 0.875rem; }
.loc-label { font-weight: 700; color: var(--navy); min-width: 70px; }
.loc-row a { color: var(--red); text-decoration: none; }
.loc-map-placeholder {
  height: 140px;
  background: linear-gradient(135deg, #e8f0ff 0%, #d0e0ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  font-weight: 600;
}
.map-pin-anim { animation: pulse 2s ease-in-out infinite; }
.full-w { display: block; text-align: center; margin: 1.5rem; }

/* FOOTER */
.footer { background: var(--navy); padding: 60px 2rem 0; }
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }
.footer-logo div { display: flex; flex-direction: column; }
.footer-logo strong { color: white; font-size: 0.9rem; font-weight: 700; }
.footer-logo small { color: rgba(255,255,255,0.5); font-size: 0.72rem; font-style: italic; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.5rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { font-size: 1.3rem; text-decoration: none; transition: opacity .2s; }
.footer-social a:hover { opacity: 0.7; }
.footer-links h4 { color: white; font-size: 0.875rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 1rem; text-transform: uppercase; }
.footer-links { display: flex; flex-direction: column; gap: 4px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.875rem; padding: 5px 0; transition: color .2s; }
.footer-links a:hover { color: white; }
.footer-contact h4 { color: white; font-size: 0.875rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 1rem; text-transform: uppercase; }
.footer-contact p { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-bottom: 6px; }
.footer-contact p a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-contact p a:hover { color: white; }
.footer-book { margin-top: 1rem; background: var(--red); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.8rem; }

/* FLOATING WHATSAPP */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  text-decoration: none;
  z-index: 9999;
  transition: all .3s;
  animation: floatIn 1s ease 1s both;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37,211,102,0.6); }

/* ---- BOOKING PAGE ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a8a 100%);
  padding: 80px 2rem 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -100px;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(200,16,46,0.1);
}
.page-hero h1 { font-family: var(--font-body); font-size: clamp(2rem, 4vw, 3rem); color: white; margin-bottom: 0.75rem; position: relative; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; font-size: 1.05rem; position: relative; }

.booking-section {
  padding: 60px 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.booking-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.booking-info h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 1.5rem; font-weight: 700; }
.booking-info-items { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.booking-info-item { display: flex; gap: 12px; align-items: flex-start; }
.bi-icon { font-size: 1.5rem; flex-shrink: 0; }
.bi-text { display: flex; flex-direction: column; }
.bi-text strong { color: var(--navy); font-size: 0.9rem; }
.bi-text span { color: var(--gray-600); font-size: 0.82rem; }

.booking-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.booking-form h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 1.8rem; font-weight: 700; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.82rem; font-weight: 700; color: var(--navy); }
.form-field input,
.form-field select,
.form-field textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.9rem;
  color: var(--text);
  font-family: var(--font-body);
  transition: border-color .2s;
  background: var(--gray-100);
  outline: none;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--navy); background: white; }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-submit { margin-top: 1.5rem; width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success .success-icon { font-size: 4rem; margin-bottom: 1rem; }
.form-success h3 { color: var(--navy); margin-bottom: 0.5rem; }
.form-success p { color: var(--gray-600); }

/* ABOUT, SERVICES, CONTACT PAGES */
.about-section, .services-detail, .contact-section {
  padding: 80px 2rem;
  max-width: 1280px;
  margin: 0 auto;
}
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col-text h2 { font-family: var(--font-body); font-size: clamp(1.8rem, 3vw, 2.5rem); color: var(--navy); margin-bottom: 1.2rem; }
.two-col-text p { color: var(--gray-600); line-height: 1.7; margin-bottom: 1rem; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
.value-item { background: var(--gray-100); border-radius: var(--radius); padding: 1.2rem; }
.value-item strong { display: block; color: var(--navy); font-size: 0.9rem; margin-bottom: 4px; }
.value-item span { color: var(--gray-600); font-size: 0.82rem; }

.services-list { display: flex; flex-direction: column; gap: 2rem; }
.service-detail-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sdc-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
  cursor: pointer;
}
.sdc-icon { font-size: 2rem; }
.sdc-title { flex: 1; }
.sdc-title h3 { font-size: 1.15rem; color: var(--navy); font-weight: 700; }
.sdc-title span { font-size: 0.82rem; color: var(--gray-600); }
.sdc-toggle { color: var(--gray-400); font-size: 1.2rem; transition: transform .3s; }
.sdc-body { padding: 2rem; display: none; }
.sdc-body.open { display: block; }
.tests-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.test-tag {
  background: var(--gray-100);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.82rem;
  color: var(--navy);
  font-weight: 500;
  text-align: center;
}

.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-info-card { background: white; border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.contact-info-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 1rem; }
.contact-detail { display: flex; gap: 12px; margin-bottom: 10px; align-items: flex-start; }
.contact-detail-icon { font-size: 1.2rem; flex-shrink: 0; }
.contact-detail-text strong { display: block; font-size: 0.85rem; color: var(--navy); }
.contact-detail-text span, .contact-detail-text a { font-size: 0.82rem; color: var(--gray-600); text-decoration: none; }
.contact-form { background: white; border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.team-card { background: white; border-radius: var(--radius-lg); padding: 1.5rem; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-200); }
.team-avatar { width: 70px; height: 70px; border-radius: 50%; background: var(--gray-200); display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 1rem; }
.team-card h4 { font-size: 0.9rem; color: var(--navy); margin-bottom: 4px; }
.team-card span { font-size: 0.8rem; color: var(--gray-600); }

/* BRANCHES PAGE */
.branches-section { padding: 80px 2rem; max-width: 1280px; margin: 0 auto; }
.branches-big-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.branch-big-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }
.branch-map { height: 220px; background: linear-gradient(135deg, #e8f0ff 0%, #d0e0ff 100%); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--navy); font-weight: 600; }
.branch-info { padding: 2rem; }
.branch-info h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; font-weight: 700; }
.branch-badge { display: inline-block; background: var(--red); color: white; font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 100px; margin-bottom: 1.2rem; }
.branch-details { display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.5rem; }
.branch-row { display: flex; gap: 8px; font-size: 0.875rem; }
.branch-label { font-weight: 700; color: var(--navy); min-width: 70px; }
.branch-row a { color: var(--red); text-decoration: none; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes floatIn {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

.hero-text { animation: fadeUp 0.7s ease both; }
.hero-visual { animation: fadeUp 0.7s ease 0.2s both; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .hero-content { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .mobile-hl-inner { grid-template-columns: 1fr; gap: 2rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { transform: none; }
  .booking-cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .branches-big-grid { grid-template-columns: 1fr; }
  .booking-form-wrap { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .tests-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .topbar-inner { flex-direction: column; gap: 4px; text-align: center; }
  .pillars-strip { flex-direction: column; }
  .pillar-sep { height: 1px; width: 80%; background: rgba(255,255,255,0.15); margin: 0 auto; }
  .pillar { justify-content: center; padding: 20px 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; gap: 0; }
  .stat-sep { width: 80px; height: 1px; background: rgba(255,255,255,0.2); }
  .stat-item { padding: 20px; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-badges { flex-direction: column; }
  .trust-divider { width: 80%; height: 1px; margin: 0 auto; }
}

/* Logo image */
.logo-icon img {
  display: block;
}

/* Hero scientist image */
.hero-scientist-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Service card images (replaces inline style="width:100%;height:100%;object-fit:cover") */
.service-img-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---- SKIP LINK ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--navy);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ---- TOAST NOTIFICATION ---- */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: white;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  text-align: center;
  max-width: 320px;
  box-shadow: var(--shadow-md);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---- HOVER CARDS (replaces onmouseover/onmouseout handlers) ---- */
.nav-quick-card {
  text-decoration: none;
  background: white;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all .25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.nav-quick-card:hover {
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(11,31,78,0.15);
}
.nav-quick-card.accent:hover {
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(200,16,46,0.15);
}
.nav-quick-card-icon { font-size: 2.2rem; }
.nav-quick-card strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}
.nav-quick-card span {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.value-hover-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.2rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(11,31,78,0.06);
  transition: transform .3s;
}
.value-hover-card:hover { transform: translateY(-4px); }
.value-hover-card-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.value-hover-card strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.value-hover-card span {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ---- SERVICES PAGE LAYOUT CLASSES ---- */
.services-quick-nav {
  background: var(--off-white);
  border-bottom: 1px solid var(--gray-200);
  padding: 2rem;
}
.services-quick-nav-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.svc-section-wrap { max-width: 900px; margin: 0 auto; padding: 60px 2rem; }
.svc-anchor-block { margin-bottom: 3rem; }
.svc-anchor-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gray-200);
}
.svc-anchor-icon { font-size: 2.5rem; }
.svc-anchor-title h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--navy);
}
.svc-anchor-title p { color: var(--gray-600); font-size: 0.9rem; }
.sdc-body-desc { color: var(--gray-600); margin-bottom: 1.2rem; }
.sdc-book-link { margin-top: 1.5rem; display: inline-flex; }

.imaging-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.imaging-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}
.imaging-card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.imaging-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.75rem; }
.imaging-card p { color: var(--gray-600); font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.2rem; }
.imaging-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-bottom: 1.5rem; }
.imaging-card ul li { font-size: 0.82rem; color: var(--gray-800); }

.mobile-cta-block {
  background: linear-gradient(135deg, var(--navy), #132770);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: white;
}
.mobile-cta-block h3 { font-size: 1.5rem; margin-bottom: 1rem; font-family: var(--font-display); }
.mobile-cta-block > p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; }
.mobile-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.mobile-feature-item {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.2rem;
}
.mobile-feature-item-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.mobile-feature-item strong { display: block; margin-bottom: 0.3rem; }
.mobile-feature-item span { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.mobile-cta-btn { background: var(--red); }

.corporate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.corporate-offers { color: var(--gray-600); line-height: 1.7; margin-bottom: 1.5rem; }
.corporate-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 2rem;
}
.corporate-list li { display: flex; gap: 10px; font-size: 0.9rem; }
.corporate-packages { background: var(--gray-100); border-radius: var(--radius-lg); padding: 2rem; }
.corporate-packages h4 { color: var(--navy); margin-bottom: 1.2rem; }
.corporate-packages-list { display: flex; flex-direction: column; gap: 1rem; }
.pkg-card { background: white; border-radius: 12px; padding: 1.2rem; }
.pkg-card.pkg-navy { border-left: 4px solid var(--navy); }
.pkg-card.pkg-red { border-left: 4px solid var(--red); }
.pkg-card.pkg-green { border-left: 4px solid #25D366; }
.pkg-card strong { color: var(--navy); display: block; margin-bottom: 4px; }
.pkg-card span { font-size: 0.82rem; color: var(--gray-600); }
.corporate-offers-heading { color: var(--navy); margin-bottom: 1rem; }

/* ---- ABOUT PAGE LAYOUT CLASSES ---- */
.about-content-wrap { padding: 80px 2rem; max-width: 1280px; margin: 0 auto; }
.about-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
.about-img-wrap { border-radius: 20px; overflow: hidden; height: 420px; box-shadow: 0 20px 60px rgba(11,31,78,0.15); }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-who-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--navy);
  margin: 0.5rem 0 1.2rem;
  font-weight: 700;
}
.about-who-p { color: var(--gray-600); line-height: 1.8; margin-bottom: 1rem; }
.about-who-btn { display: inline-flex; }
.mvp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}
.mvp-card { border-radius: 20px; padding: 2.5rem; color: white; }
.mvp-card.mvp-navy { background: var(--navy); }
.mvp-card.mvp-red { background: var(--red); }
.mvp-card.mvp-light { background: var(--off-white); border: 1px solid var(--gray-200); color: var(--text); }
.mvp-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.mvp-card.mvp-light .mvp-icon { background: var(--navy); }
.mvp-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.mvp-card.mvp-light h3 { color: var(--navy); }
.mvp-card p { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.8); }
.mvp-card.mvp-red p { color: rgba(255,255,255,0.85); }
.mvp-card.mvp-light p { color: var(--gray-600); }
.core-values-wrap { margin-bottom: 5rem; }
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.team-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.team-info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(11,31,78,0.06);
}
.team-info-card-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.team-info-card h4 { color: var(--navy); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.team-info-card span { font-size: 0.82rem; color: var(--gray-600); }

/* ---- RESOURCES PAGE LAYOUT CLASSES ---- */
.resources-content-wrap { padding: 80px 2rem; max-width: 1100px; margin: 0 auto; }
.resources-quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 5rem;
}
.res-anchor-block { margin-bottom: 4rem; }
.res-anchor-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gray-200);
}
.res-anchor-icon { font-size: 2.5rem; }
.res-anchor-title h2 { color: var(--navy); font-size: 1.8rem; font-weight: 700; }
.res-anchor-title p { color: var(--gray-600); font-size: 0.9rem; }
.prep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.prep-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(11,31,78,0.06);
}
.prep-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 1rem; }
.prep-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.prep-card-icon.icon-navy { background: var(--navy); }
.prep-card-icon.icon-red { background: var(--red); }
.prep-card h3 { color: var(--navy); font-size: 1.05rem; font-weight: 700; }
.prep-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.prep-list li { display: flex; gap: 8px; font-size: 0.875rem; color: var(--gray-800); }
.prep-list-check { color: var(--red); font-weight: 700; }
.bring-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.bring-card { border-radius: var(--radius-lg); padding: 2rem; text-align: center; }
.bring-card.bring-navy { background: var(--navy); color: white; }
.bring-card.bring-red { background: var(--red); color: white; }
.bring-card.bring-white {
  background: white;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(11,31,78,0.06);
}
.bring-card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.bring-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.bring-card.bring-white h4 { color: var(--navy); }
.bring-card p { font-size: 0.85rem; line-height: 1.6; }
.bring-card.bring-navy p { color: rgba(255,255,255,0.75); }
.bring-card.bring-red p { color: rgba(255,255,255,0.85); }
.bring-card.bring-white p { color: var(--gray-600); }
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.results-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(11,31,78,0.06);
  text-align: center;
}
.results-card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.results-card h4 { color: var(--navy); font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.results-card p { color: var(--gray-600); font-size: 0.85rem; line-height: 1.6; }
.results-popular-badge {
  margin-top: 1rem;
  background: var(--gray-100);
  border-radius: 8px;
  padding: 8px;
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 600;
}
.faq-list { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: white; border-radius: var(--radius-lg); border: 1px solid var(--gray-200); box-shadow: 0 2px 12px rgba(11,31,78,0.06); overflow: hidden; }
.faq-trigger { padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center; cursor: pointer; }
.faq-trigger strong { color: var(--navy); font-size: 0.95rem; }
.faq-trigger-arrow { color: var(--red); font-size: 1.2rem; transition: transform .3s; }
.faq-body { display: none; padding: 0 2rem 1.5rem; color: var(--gray-600); font-size: 0.875rem; line-height: 1.7; }
.still-questions-cta {
  background: linear-gradient(135deg, var(--navy), #1a3a8a);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.still-questions-deco {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(200,16,46,0.15);
  pointer-events: none;
}
.still-questions-inner { position: relative; z-index: 1; }
.still-questions-icon { font-size: 3rem; margin-bottom: 1rem; }
.still-questions-cta h2 { color: white; font-size: 1.8rem; font-weight: 700; margin-bottom: 0.75rem; }
.still-questions-cta p { color: rgba(255,255,255,0.75); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.still-questions-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary.btn-on-dark { background: white; color: var(--navy); }

/* ---- UTILITY CLASSES (replaces inline styles) ---- */
.promo-banner {
  background: var(--red);
  color: white;
  text-align: center;
  padding: 14px 2rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.call-box {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1rem;
}
.call-box p { font-size: 0.85rem; color: var(--gray-800); margin-bottom: 0.75rem; }
.call-box a { font-size: 1.1rem; font-weight: 700; color: var(--navy); text-decoration: none; display: block; }
.call-box small { font-size: 0.8rem; color: var(--gray-600); margin-top: 4px; display: block; }

.contact-form h3 { font-size: 1.3rem; color: var(--navy); margin-bottom: 1.8rem; font-weight: 700; }

.btn-whatsapp.btn-sm { font-size: 0.875rem; padding: 12px 20px; margin-top: 1rem; }

.btn-outline.btn-light { color: white; border-color: rgba(255,255,255,0.5); }
.btn-outline.btn-light:hover { background: rgba(255,255,255,0.15); color: white; }

/* ---- FOCUS VISIBLE (accessibility) ---- */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 3px;
}
:focus:not(:focus-visible) {
  outline: none;
}

/* ---- SCROLL ANIMATION CLASSES ---- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PACKAGES PAGE ──────────────────────────────────────────────────────── */
.packages-section { padding: 60px 0; }
.packages-content-wrap { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.pkg-category-block { margin-bottom: 5rem; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.packages-grid-2 { grid-template-columns: repeat(2, 1fr); }
.packages-grid-3 { grid-template-columns: repeat(3, 1fr); }
.packages-grid-1 { grid-template-columns: 1fr; }

.package-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(11,31,78,0.10);
  display: flex;
  flex-direction: column;
  background: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.package-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(11,31,78,0.15);
}
.package-card-wide { max-width: 640px; margin-left: auto; margin-right: auto; }

.package-card-header {
  padding: 1.25rem 1.5rem;
  color: white;
}
.package-card-tier {
  font-size: 0.62rem;
  letter-spacing: 1.8px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 0.2rem;
}
.package-card-name {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}
.package-card-count {
  font-size: 0.72rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.package-card-body {
  padding: 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-test-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  flex: 1;
}
.package-test-list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid #f0f2f8;
  font-size: 0.83rem;
  color: var(--gray-800);
}
.package-test-list li:last-child { border-bottom: none; }
.package-test-list li::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 0.8rem;
}
.package-test-list-cols {
  columns: 2;
  column-gap: 2rem;
}
.package-test-list-cols li {
  break-inside: avoid;
}

.pkg-note {
  font-size: 0.78rem;
  color: var(--gray-600);
  font-style: italic;
  background: #f5f7fb;
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  margin-bottom: 1rem;
}
.pkg-cta {
  display: inline-flex;
  margin-top: auto;
  align-self: flex-start;
}

/* Tier header colours */
.pkg-silver   { background: linear-gradient(135deg, #607d8b 0%, #455a64 100%); }
.pkg-gold     { background: linear-gradient(135deg, #a0760f 0%, #7a570a 100%); }
.pkg-platinum { background: linear-gradient(135deg, #4a4a6a 0%, #2c2c4a 100%); }
.pkg-emerald  { background: linear-gradient(135deg, #1a7a4a 0%, #135c37 100%); }
.pkg-ruby     { background: linear-gradient(135deg, #c0392b 0%, #922b21 100%); }
.pkg-sapphire { background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%); }
.pkg-diamond  { background: linear-gradient(135deg, var(--navy) 0%, #060f26 100%); }
.pkg-employment { background: linear-gradient(135deg, #546e7a 0%, #37474f 100%); }
.pkg-antenatal  { background: linear-gradient(135deg, #7b1fa2 0%, #4a148c 100%); }

@media (max-width: 1100px) {
  .packages-grid,
  .packages-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .packages-grid,
  .packages-grid-2,
  .packages-grid-3 { grid-template-columns: 1fr; }
  .package-test-list-cols { columns: 1; }
}

/* ── MOBILE OPTIMISATION ─────────────────────────────────────────────────── */

/* 768px — grids not covered by the 900px breakpoint */
@media (max-width: 768px) {
  .imaging-grid         { grid-template-columns: 1fr; }
  .mobile-features-grid { grid-template-columns: 1fr; }
  .svc-section-wrap     { padding: 40px 1.25rem; }
  .tests-grid           { grid-template-columns: 1fr; }
}

/* 640px — additional rules beyond what already exists above */
@media (max-width: 640px) {
  /* Navigation: minimum 44px tap targets */
  .mobile-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Quick nav (services + packages pages): 2 columns instead of 4 */
  .services-quick-nav-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .nav-quick-card { padding: 1rem 0.75rem; }
  .nav-quick-card-icon { font-size: 1.5rem; }

  /* Booking info list: icon stacks above text */
  .booking-info-item { flex-direction: column; gap: 0.35rem; }
  .booking-info-icon { font-size: 1.25rem; }

  /* Packages page: tighter spacing on phone */
  .packages-section      { padding: 32px 0; }
  .packages-content-wrap { padding: 0 1rem; }
  .pkg-category-block    { margin-bottom: 3rem; }

  /* Page hero sections */
  .page-hero    { padding: 2.5rem 1rem 2rem; }
  .page-hero h1 { font-size: 1.6rem; }
  .page-hero p  { font-size: 0.95rem; }

  /* CTA banner */
  .booking-cta { padding: 2.5rem 1rem; }

  /* Footer gap tightening */
  .footer-inner { gap: 2rem; }

  /* Booking section padding */
  .booking-section { padding: 2rem 0; }
  .booking-form-inner { padding: 1.25rem 1rem; }
}

/* ---- REDUCED MOTION ---- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .animate-on-scroll,
  .animate-on-scroll.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
}