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

: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: 'Segoe UI', sans-serif;
  --font-body: 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  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: 'Segoe UI', sans-serif; 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 { display: flex; }
.dropdown-menu a {
  padding: 10px 14px !important;
  border-radius: 8px !important;
  font-size: 0.875rem !important;
  color: var(--text) !important;
  background: transparent !important;
  border: none !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.dropdown-menu a:hover { background: var(--gray-100) !important; }
.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: 107px;
  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: 'Segoe UI', sans-serif;
  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: 'Segoe UI', sans-serif;
  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: 'Segoe UI', sans-serif;
  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: 'Segoe UI', sans-serif; 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: 'Segoe UI', sans-serif;
  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: 'Segoe UI', sans-serif; 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: 'Segoe UI', sans-serif; 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: 'Segoe UI', sans-serif;
  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: 'Segoe UI', sans-serif; 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;
}