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

:root {
  /* LIGHT GREEN + ROYAL BLUE MEDICAL THEME */
  --primary-blue: #0052cc;
  --primary-blue-dark: #062356;
  --primary-blue-light: #eef4ff;
  --primary-blue-glow: rgba(0, 82, 204, 0.25);
  
  --accent-cyan: #38bdf8;
  --accent-blue-vibrant: #0066ff;
  
  /* FRESH LIGHT GREEN & MINT */
  --accent-green: #10b981;
  --accent-green-dark: #059669;
  --accent-green-light: #ecfdf5;
  --accent-green-glow: rgba(16, 185, 129, 0.35);
  --accent-mint: #34d399;
  --accent-light-green: #6ee7b7;
  --accent-teal: #0d9488;
  
  --dark-bg: #030f21;
  --dark-surface: #071a38;
  --dark-card: #0a244d;
  --surface: #ffffff;
  --surface-alt: #f4fbf8;
  --text-main: #061838;
  --text-muted: #475a7c;
  --text-light: #9bb0d3;
  --border: #d8ece8;
  --border-glow: #a7f3d0;
  
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 16px rgba(6, 24, 56, 0.06);
  --shadow-md: 0 14px 36px rgba(0, 82, 204, 0.10);
  --shadow-lg: 0 28px 60px rgba(3, 15, 33, 0.24);
  --shadow-glow: 0 0 35px rgba(16, 185, 129, 0.32);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: rgba(0,0,0,0) !important;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-touch-callout: none;
  outline: none !important;
}

/* Remove ALL browser focus outlines / blue boxes globally */
*:focus,
*:focus-within,
*:active {
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
  box-shadow: none;
}

/* Links, buttons, interactive elements - no blue highlight */
a,
a:hover,
a:active,
a:focus,
button,
button:hover,
button:active,
button:focus,
input,
input:focus,
select,
select:focus,
textarea,
textarea:focus,
[role="button"],
[role="button"]:focus,
[tabindex],
[tabindex]:focus {
  -webkit-tap-highlight-color: transparent !important;
  tap-highlight-color: transparent !important;
  outline: none !important;
}

/* Only show accessible focus for keyboard-only users (not mouse/touch) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent-green) !important;
  outline-offset: 2px;
}

html, body {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 768px) {
  body {
    padding-bottom: 0;
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.25s ease;
}

button, input, select, textarea {
  font-family: inherit;
}

/* UNIVERSAL CONTAINER SYSTEM (NEVER OVERRIDDEN BY SECTION PADDING) */
.wrap {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 24px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .wrap {
    padding-inline: 16px !important;
  }
}

/* SCROLL REVEAL & KEYFRAME ANIMATIONS */
@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-banner-copy {
  animation: heroEntrance 0.75s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-banner-visual .banner-glass-card {
  animation: heroEntrance 0.85s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}
.hero-banner-visual .banner-glass-card:nth-child(1) { animation-delay: 0.1s; }
.hero-banner-visual .banner-glass-card:nth-child(2) { animation-delay: 0.2s; }
.hero-banner-visual .banner-glass-card:nth-child(3) { animation-delay: 0.3s; }

.reveal-up, .reveal-left, .reveal-right, .reveal-scale {
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-up:not(.is-revealed) {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-left:not(.is-revealed) {
  opacity: 0;
  transform: translateX(-30px);
}

.reveal-right:not(.is-revealed) {
  opacity: 0;
  transform: translateX(30px);
}

.reveal-scale:not(.is-revealed) {
  opacity: 0;
  transform: scale(0.95);
}

.is-revealed {
  opacity: 1 !important;
  transform: translate(0, 0) scale(1) !important;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* SVG ICON UTILITIES */
.icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-md {
  width: 22px;
  height: 22px;
}

.icon-check {
  color: var(--accent-green);
}

.icon-star {
  color: #f59e0b;
  width: 18px;
  height: 18px;
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.icon-box-green {
  background: linear-gradient(135deg, var(--accent-green-light) 0%, #d1fae5 100%);
  color: var(--accent-green-dark);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.icon-box-blue {
  background: linear-gradient(135deg, #eef4ff 0%, #dbe8ff 100%);
  color: var(--primary-blue);
  border: 1px solid rgba(0, 82, 204, 0.18);
}

.icon-box-cyan {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  color: #0284c7;
  border: 1px solid rgba(56, 189, 248, 0.25);
}

/* HEADER SYSTEM - MODERN WHITE THEME */
.site-header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(20px, calc((100% - 1280px) / 2));
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: background 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header-transparent,
.site-header-solid,
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.07);
}

.site-header .brand {
  color: #0f172a;
}

.site-header .brand b {
  color: var(--primary-blue);
  font-weight: 900;
}

.site-header .brand small {
  color: #64748b;
  font-weight: 600;
}

.site-header nav a {
  color: #334155;
  font-weight: 700;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.site-header nav a:hover,
.site-header nav a.active {
  color: var(--primary-blue);
}

.site-header nav a.active::after {
  background: linear-gradient(90deg, var(--accent-green) 0%, var(--primary-blue) 100%);
}

.site-header .menu-btn {
  background: #f8fafc;
  color: #0f172a;
  border: 1px solid #cbd5e1;
}

.nav-drawer-header,
.nav-drawer-footer {
  display: none;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 82, 204, 0.2));
  transition: transform 0.3s ease;
}

.brand:hover .brand-logo-img {
  transform: scale(1.05);
}

.brand b {
  font-weight: 900;
}

.brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

nav a {
  font-size: 0.9rem;
  position: relative;
  padding: 6px 0;
}

nav a.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 4px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-blue) 100%) !important;
  color: #fff !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-full);
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  box-shadow: 0 4px 16px var(--accent-green-glow) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45) !important;
}

.menu-btn {
  display: none;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* BUTTONS & EYEBROWS */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-mint);
  background: rgba(16, 185, 129, 0.18);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  border: 1px solid rgba(52, 211, 153, 0.35);
  backdrop-filter: blur(10px);
  max-width: 100%;
}

.eyebrow .eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 8px rgba(16, 185, 129, 0.8);
  flex-shrink: 0;
}

.actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: 0 8px 24px var(--accent-green-glow);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(16, 185, 129, 0.4);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
  box-shadow: 0 8px 24px var(--accent-green-glow);
}

.button-primary:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 14px 32px rgba(16, 185, 129, 0.45);
}

.button-blue {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #003da8 100%);
  box-shadow: 0 8px 24px var(--primary-blue-glow);
}

.button-blue:hover {
  background: linear-gradient(135deg, #0047b3 0%, #002d7a 100%);
  box-shadow: 0 14px 32px rgba(0, 82, 204, 0.4);
}

.button-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: #fff;
  color: #fff;
}

/* HERO BANNER SECTION WITH PARALLAX */
.hero-banner-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: 88px 36px;
  color: #fff;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-banner-bg {
  position: absolute;
  top: -18%;
  left: 0;
  right: 0;
  bottom: -18%;
  background: linear-gradient(90deg, rgba(3, 10, 22, 0.88) 0%, rgba(3, 10, 22, 0.62) 45%, rgba(3, 10, 22, 0.28) 100%), 
              url('images/hero_poster_banner.jpg') center/cover no-repeat;
  z-index: 1;
  transform: translate3d(0, 0, 0) scale(1.08);
  will-change: transform;
  pointer-events: none;
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
  width: 100%;
}

.hero-banner-copy {
  min-width: 0;
  width: 100%;
}

.hero-banner-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.3vw, 3.2rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-banner-copy h1 span.highlight-green {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-banner-copy h1 span.highlight-blue {
  background: linear-gradient(135deg, #38bdf8 0%, #0066ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-banner-copy > p:not(.eyebrow) {
  font-size: clamp(0.9rem, 1.1vw, 1.02rem);
  color: #e2ecfd;
  line-height: 1.55;
  max-width: 530px;
  margin-bottom: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-glass-search-bar {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  padding: 5px 6px 5px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  max-width: 520px;
  width: 100%;
  box-sizing: border-box;
  min-width: 0;
  transition: all 0.3s ease;
}

.hero-glass-search-bar:focus-within {
  background: rgba(255, 255, 255, 0.28);
  border-color: var(--accent-mint);
  box-shadow: 0 0 25px rgba(52, 211, 153, 0.45);
}

.hero-glass-search-bar span {
  display: flex;
  align-items: center;
  color: var(--accent-mint);
  flex-shrink: 0;
}

.hero-glass-search-bar input {
  border: none;
  outline: none;
  width: 100%;
  min-width: 0;
  flex: 1;
  font-size: 0.9rem;
  color: #fff;
  background: transparent;
  padding: 6px 0;
}

.hero-glass-search-bar input::placeholder {
  color: #cadcfc;
}

.hero-glass-search-bar button {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-blue) 100%);
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.86rem;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.hero-glass-search-bar button:hover {
  transform: scale(1.02);
}

.banner-popular-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 0.78rem;
  color: #bad0f5;
  width: 100%;
}

.banner-popular-pills a {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  color: #fff;
  font-weight: 600;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.banner-popular-pills a:hover {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: #fff;
}

.hero-banner-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  min-width: 0;
  width: 100%;
}

.banner-glass-card {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  padding: 15px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 14px;
  box-sizing: border-box;
  min-width: 0;
  width: 100%;
  transition: transform 0.35s ease, background 0.3s ease;
}

.banner-glass-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--accent-mint);
}

.banner-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.banner-card-icon.icon-light-green {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-teal) 100%);
  box-shadow: 0 6px 16px var(--accent-green-glow);
}

.banner-card-icon.icon-blue {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-blue-vibrant) 100%);
  box-shadow: 0 6px 16px var(--primary-blue-glow);
}

.banner-card-icon.icon-mint-blue {
  background: linear-gradient(135deg, var(--accent-mint) 0%, var(--accent-cyan) 100%);
  color: #032b2e;
  box-shadow: 0 6px 16px rgba(56, 189, 248, 0.35);
}

.banner-card-text {
  min-width: 0;
  flex: 1;
}

.banner-card-text h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
  word-wrap: break-word;
}

.banner-card-text p {
  font-size: 0.82rem;
  color: #d2e2fc;
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
}

/* STATS SECTION */
.stats-section {
  position: relative;
  z-index: 10;
  margin-top: -32px;
  margin-bottom: 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  overflow: hidden;
}

.stat-card {
  padding: 24px 20px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
  min-width: 0;
}

.stat-card:last-child {
  border-right: none;
}

.stat-card:hover {
  background: var(--surface-alt);
  transform: translateY(-2px);
}

.stat-info {
  min-width: 0;
}

.stat-info b {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.stat-info span {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* POPULAR PACKAGES SECTION */
.packages-section {
  padding-block: 50px;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 36px;
  padding-inline: 12px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3vw, 2.7rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-top: 8px;
  margin-bottom: 10px;
  word-wrap: break-word;
}

.section-header p {
  font-size: 0.98rem;
  color: var(--text-muted);
  word-wrap: break-word;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.package-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 0;
}

.package-card.featured {
  border-color: var(--accent-green);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #f4fbf8 100%);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-glow);
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  min-width: 0;
}

.package-header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0;
  line-height: 1.25;
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
}

.package-tag {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  white-space: nowrap;
}

.package-tag.popular {
  background: var(--accent-green-light);
  color: var(--accent-green-dark);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.package-tag.trending {
  background: #e0e7ff;
  color: #4338ca;
  border: 1px solid rgba(67, 56, 202, 0.2);
}

.package-tag.best-value {
  background: #dcfce7;
  color: #15803d;
  border: 1px solid rgba(21, 128, 61, 0.2);
}

.package-price {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--accent-green-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.package-price small {
  font-size: 0.86rem;
  color: var(--text-muted);
  font-weight: 500;
  text-decoration: line-through;
}

.package-features {
  list-style: none;
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* 581+ TESTS REPORT PDF & CATALOGUE BAR */
.package-catalogue-bar {
  background: #ffffff;
  border: 1.5px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.package-catalogue-bar:hover {
  border-color: var(--accent-green);
  box-shadow: var(--shadow-md);
}

.catalogue-bar-text {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.catalogue-bar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* INFOGRAPHIC & TECHNOLOGY SECTION (CLEAN WHITE THEME) */
.infographic-tech-section {
  padding-block: 60px;
  background: #ffffff;
  color: var(--text-main);
  position: relative;
}

.infographic-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.infographic-intro {
  max-width: 540px;
  min-width: 0;
}

.infographic-intro .eyebrow {
  background: var(--accent-green-light);
  color: var(--accent-green-dark);
  border-color: rgba(16, 185, 129, 0.3);
}

.infographic-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.7vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 14px;
  word-wrap: break-word;
}

.infographic-intro p {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 22px;
  word-wrap: break-word;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.process-step-item {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #ffffff;
  border: 1.5px solid var(--border);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  min-width: 0;
}

.process-step-item:hover {
  background: #f0fdf9;
  border-color: var(--accent-green);
  transform: translateX(4px);
}

.process-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-green-light) 0%, #d1fae5 100%);
  color: var(--accent-green-dark);
  border: 1px solid rgba(16, 185, 129, 0.25);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.process-info {
  min-width: 0;
  flex: 1;
}

.process-info h3 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 2px;
  word-wrap: break-word;
}

.process-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
  word-wrap: break-word;
}

.infographic-showcase-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.infographic-main-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border);
  aspect-ratio: 16 / 9;
}

.infographic-main-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.infographic-main-banner:hover img {
  transform: scale(1.03);
}

.infographic-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(6, 24, 56, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: var(--radius-md);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
}

.infographic-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.infographic-mini-card {
  background: #f8fafc;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  min-width: 0;
}

.infographic-mini-card:hover {
  background: #ffffff;
  border-color: var(--accent-green);
  transform: translateY(-2px);
}

.mini-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-green-light) 0%, #d1fae5 100%);
  color: var(--accent-green-dark);
  border: 1px solid rgba(16, 185, 129, 0.25);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.mini-card-text {
  min-width: 0;
  flex: 1;
}

.mini-card-text h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 2px;
  word-wrap: break-word;
}

.mini-card-text p {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin: 0;
  word-wrap: break-word;
}

/* SERVICES SECTION */
.section {
  padding-block: 60px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.service-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--accent-green);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-glow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.service-arrow {
  color: var(--accent-green-dark);
  display: flex;
  align-items: center;
  transition: transform 0.25s ease;
}

.service-card:hover .service-arrow {
  transform: translate(3px, -3px);
  color: var(--accent-green);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
  word-wrap: break-word;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  word-wrap: break-word;
}

/* REVIEWS SECTION & AUTO-SLIDING CAROUSEL (CLEAN WHITE THEME) */
.reviews-section {
  padding-block: 60px;
  background: #ffffff;
}

.reviews-slider-wrap {
  max-width: 780px;
  margin-inline: auto;
  position: relative;
  min-width: 0;
}

.reviews-track {
  position: relative;
  min-height: 240px;
}

.review-slide {
  display: none;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1), transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-slide.active {
  display: block;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.review-card-single {
  background: linear-gradient(180deg, #ffffff 0%, #f4fbf8 100%);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 36px 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  text-align: center;
  transition: all 0.3s ease;
}

.review-card-single:hover {
  border-color: var(--accent-green);
  box-shadow: var(--shadow-lg);
}

.review-quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-mint);
  opacity: 0.45;
  margin-bottom: -15px;
  user-select: none;
}

.review-card-single .review-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px;
}

.review-card-single .review-text {
  font-size: 1.08rem;
  color: var(--text-main);
  line-height: 1.68;
  margin-bottom: 22px;
  font-style: normal;
  font-weight: 500;
  max-width: 640px;
  margin-inline: auto;
}

.review-author-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-blue) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px var(--accent-green-glow);
}

.author-details {
  text-align: left;
}

.author-details b {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.author-details span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* CAROUSEL CONTROLS */
.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

.review-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid var(--border);
  color: var(--text-main);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.review-nav-btn:hover {
  background: var(--accent-green);
  color: #ffffff;
  border-color: var(--accent-green);
  transform: scale(1.08);
}

.review-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.review-dots .dot.active {
  width: 26px;
  background: var(--accent-green);
  box-shadow: 0 0 10px var(--accent-green-glow);
}

/* BOOKING BANNER */
.booking-banner {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #042533 100%);
  border-radius: var(--radius-lg);
  padding: 45px 50px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 40px;
  margin-bottom: 60px;
  box-sizing: border-box;
}

.booking-banner::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, transparent 70%);
  right: -80px;
  bottom: -80px;
  pointer-events: none;
}

.booking-banner-copy {
  max-width: 620px;
  min-width: 0;
}

.booking-banner .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent-mint);
  border-color: rgba(255, 255, 255, 0.25);
}

.booking-banner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 10px;
  word-wrap: break-word;
}

.booking-banner p:not(.eyebrow) {
  font-size: 1rem;
  color: #c4f0e6;
  word-wrap: break-word;
}

/* PAGE HERO (FOR INNER PAGES) */
.page-hero {
  padding-block: 110px 45px;
  background: linear-gradient(180deg, #eef8f6 0%, #ffffff 100%);
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  word-wrap: break-word;
}

.page-hero h1 em {
  font-style: normal;
  color: var(--accent-green-dark);
}

.page-hero p:not(.eyebrow) {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 660px;
  margin-inline: auto;
  word-wrap: break-word;
}

/* ABOUT PAGE SPECIFIC STYLES */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
  padding-block: 20px 60px;
}

.about-panel h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 16px;
  word-wrap: break-word;
}

.about-panel p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 16px;
  word-wrap: break-word;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.value-card {
  background: var(--surface-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.value-card dt {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--accent-green-dark);
  line-height: 1.1;
  margin-bottom: 4px;
}

.value-card dd {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
  word-wrap: break-word;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid #fff;
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SERVICES & CATALOGUE SPECIFIC STYLES */
.search-box-wrap {
  max-width: 640px;
  margin: 24px auto 0;
  position: relative;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 2px solid var(--border-glow);
  border-radius: var(--radius-full);
  padding: 6px 12px 6px 22px;
  box-shadow: var(--shadow-md);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  min-width: 0;
}

.search-box:focus-within {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 4px var(--accent-green-glow);
}

.search-box span {
  display: flex;
  align-items: center;
  color: var(--accent-green-dark);
  flex-shrink: 0;
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
  min-width: 0;
  flex: 1;
  font-size: 1rem;
  color: var(--text-main);
  background: transparent;
  padding: 10px 0;
}

/* ========================================================
   SERVICES & TEST CATALOGUE STYLES
   ======================================================== */

.catalogue-search-container {
  max-width: 640px;
  margin: 24px auto 0;
  position: relative;
}

.catalogue-search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.catalogue-search-icon {
  position: absolute;
  left: 16px;
  color: var(--text-muted);
  width: 20px;
  height: 20px;
  pointer-events: none;
}

.catalogue-search-box input {
  width: 100%;
  padding: 14px 44px 14px 48px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: #ffffff;
  font-size: 0.95rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: all 0.25s ease;
  margin-top: 0;
  box-sizing: border-box;
}

.catalogue-search-box input:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 4px var(--accent-green-glow);
  outline: none;
}

.clear-catalogue-btn {
  position: absolute;
  right: 14px;
  background: #e2e8f0;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.8rem;
  cursor: pointer;
  display: none;
  place-items: center;
  color: var(--text-main);
  transition: all 0.2s ease;
}

.clear-catalogue-btn:hover {
  background: #cbd5e1;
}

/* CATEGORY FILTER PILLS ON SERVICES PAGE */
.catalogue-filter-bar {
  max-width: 900px;
  margin: 18px auto 0;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.catalogue-filter-bar::-webkit-scrollbar {
  height: 4px;
}

.catalogue-filter-bar::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.catalogue-pills-list {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: nowrap;
}

@media (max-width: 768px) {
  .catalogue-pills-list {
    justify-content: flex-start;
  }
}

.catalogue-grid {
  padding-block: 28px 60px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(460px, 1fr));
  gap: 24px;
}

.category-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  min-width: 0;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(16, 185, 129, 0.4);
}

.category-header {
  padding: 16px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.category-header-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.category-icon-emoji {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.category-header-title h2 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
  line-height: 1.25;
}

.category-tag-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
}

.category-badge {
  font-size: 0.76rem;
  font-weight: 800;
  color: var(--accent-green-dark);
  background: var(--accent-green-light);
  border: 1px solid var(--border-glow);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  flex-shrink: 0;
  white-space: nowrap;
}

.category-body {
  display: flex;
  flex-direction: column;
}

.test-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.18s ease;
  min-width: 0;
}

.test-row:last-child {
  border-bottom: none;
}

.test-row:hover {
  background: #f8fafc;
}

.test-name-wrap {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 6px;
}

.test-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-main);
  display: block;
  line-height: 1.35;
  word-break: break-word;
}

.test-cat-hint {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 600;
  display: block;
  margin-top: 2px;
}

.test-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.price-tag {
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--accent-green-dark);
  background: var(--accent-green-light);
  border: 1px solid var(--border-glow);
  padding: 4px 9px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.book-mini-btn {
  font-weight: 800;
  font-size: 0.78rem;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
  padding: 5px 11px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px var(--accent-green-glow);
  text-decoration: none;
  white-space: nowrap;
}

.book-mini-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px var(--accent-green-glow);
  color: #ffffff;
}

.empty-catalogue-box {
  padding: 48px 20px;
  text-align: center;
  color: var(--text-muted);
  background: #ffffff;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius-lg);
  max-width: 580px;
  margin: 20px auto;
}

.empty-catalogue-box .icon {
  width: 42px;
  height: 42px;
  color: #94a3b8;
  margin-bottom: 12px;
}

.empty-catalogue-box h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 6px;
}

.empty-catalogue-box p {
  font-size: 0.86rem;
  margin: 0;
}

/* BOOKING PAGE FORM STYLES */
.booking-page {
  padding-block: 110px 60px;
}

.booking-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 30px;
  padding-inline: 12px;
}

.booking-intro h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 900;
  margin-bottom: 12px;
  word-wrap: break-word;
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
}

/* ========================================================
   BOOKING PAGE - RESPONSIVE & MOBILE-OPTIMIZED STYLES
   ======================================================== */

.booking-intro {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 36px;
}

.booking-intro h1 {
  font-size: 2.3rem;
  line-height: 1.2;
  margin-top: 10px;
  margin-bottom: 12px;
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--text-muted);
}

.step-item.active {
  color: var(--accent-green-dark);
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-alt);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 800;
  transition: all 0.2s ease;
}

.step-item.active .step-num {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: #fff;
  box-shadow: 0 4px 10px var(--accent-green-glow);
}

.step-line {
  height: 2px;
  width: 24px;
  background: var(--border);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

form.styled-form {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

form fieldset {
  border: none;
  padding: 0;
  margin: 0 0 28px;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

form legend {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 18px;
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
}

.legend-num {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: var(--accent-green-light);
  color: var(--accent-green-dark);
  font-size: 0.85rem;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

form label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-main);
  margin-bottom: 14px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

form label strong {
  color: #ef4444;
}

/* INPUTS WITH ICONS */
.input-with-icon {
  position: relative;
  margin-top: 6px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  pointer-events: none;
}

.textarea-icon-wrap .input-icon {
  top: 18px;
  transform: none;
}

.input-with-icon input,
.input-with-icon textarea {
  padding-left: 42px;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 0.94rem;
  display: block;
  width: 100%;
  max-width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  margin-top: 6px;
  color: var(--text-main);
  background: #ffffff;
  transition: all 0.22s ease;
  box-sizing: border-box;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--accent-green);
  outline: none;
  box-shadow: 0 0 0 4px var(--accent-green-glow);
  background: #fff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* CATEGORY FILTER PILLS */
.category-pills-wrap {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 14px;
  box-sizing: border-box;
}

.filter-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.category-filter-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.category-filter-pills::-webkit-scrollbar {
  height: 4px;
}

.category-filter-pills::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

.filter-pill {
  flex-shrink: 0;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  color: var(--text-main);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-pill:hover {
  background: #ffffff;
  border-color: var(--accent-green);
  color: var(--accent-green-dark);
}

.filter-pill.active {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: #ffffff;
  box-shadow: 0 3px 10px var(--accent-green-glow);
}

/* SEARCH INPUT BOX */
.search-input-box {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-bottom: 12px;
  box-sizing: border-box;
}

.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-muted);
}

.search-input-box input {
  width: 100%;
  max-width: 100%;
  padding: 12px 38px 12px 42px;
  margin-top: 0;
  border-radius: var(--radius-md);
  font-size: 0.94rem;
  box-sizing: border-box;
}

.clear-search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: #e2e8f0;
  border: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.75rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--text-main);
  transition: all 0.2s ease;
}

.clear-search-btn:hover {
  background: #cbd5e1;
}

/* SELECTED TESTS CART & LIVE SUMMARY */
.selected-chips {
  margin-bottom: 14px;
}

.selected-summary-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(0, 82, 204, 0.08) 100%);
  border: 1.5px solid var(--border-glow);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  gap: 10px;
  flex-wrap: wrap;
}

.summary-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  color: var(--text-main);
}

.count-badge {
  background: var(--accent-green);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

.summary-total {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.total-amount {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--accent-green-dark);
}

.clear-all-btn {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  margin-left: auto;
}

.selected-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  color: var(--accent-green-dark);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  border: 1px solid var(--accent-green);
  box-shadow: 0 2px 6px rgba(16, 185, 129, 0.12);
}

.chip b {
  color: var(--text-main);
  font-weight: 600;
}

.chip button {
  border: none;
  background: #ecfdf5;
  color: var(--accent-green-dark);
  font-size: 0.95rem;
  cursor: pointer;
  line-height: 1;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
}

.chip button:hover {
  background: #ef4444;
  color: #ffffff;
}

.no-selection-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--surface-alt);
  border: 1px dashed var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  color: var(--text-muted);
}

/* TEST OPTIONS LIST */
.test-options-box {
  max-height: 320px;
  overflow-y: auto;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.test-option-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: all 0.18s ease;
  margin-bottom: 0;
  width: 100%;
  box-sizing: border-box;
}

.test-option-item:last-child {
  border-bottom: none;
}

.test-option-item:hover {
  background: #f8fafc;
}

.test-option-item.is-selected {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
}

.test-option-check {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.test-option-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-green);
  cursor: pointer;
  margin: 0;
}

.test-option-info {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 6px;
}

.test-option-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.35;
  word-break: break-word;
}

.test-option-category {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 2px;
}

.test-option-price {
  flex-shrink: 0;
  background: var(--accent-green-light);
  color: var(--accent-green-dark);
  border: 1px solid var(--border-glow);
  padding: 4px 9px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
  margin-left: auto;
}

.empty-search-box {
  padding: 36px 16px;
  text-align: center;
  color: var(--text-muted);
}

.empty-search-box .icon {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
  color: #94a3b8;
}

.empty-search-box p {
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--text-main);
}

.empty-search-box small {
  font-size: 0.78rem;
}

.btn-submit-booking {
  width: 100%;
  padding: 15px 24px;
  font-size: 1.02rem;
  border-radius: var(--radius-md);
  margin-top: 10px;
}

/* SIDEBAR HOW IT WORKS CARD */
.booking-sidebar-card {
  background: linear-gradient(180deg, #f0fdf9 0%, #ffffff 100%);
  border: 1.5px solid var(--border-glow);
  padding: 28px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  min-width: 0;
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.sidebar-icon {
  font-size: 1.6rem;
}

.booking-sidebar-card h2 {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  margin: 0;
  color: var(--text-main);
}

.booking-steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-steps-list li b {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 3px;
}

.booking-steps-list li p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.sidebar-badge-box {
  margin-top: 20px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-md);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* REVIEW MODAL SUMMARY CARD */
.summary-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 18px;
}

.summary-section-title {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-green-dark);
  margin-bottom: 8px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
  padding: 6px 0;
  border-bottom: 1px dashed #e2e8f0;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row span {
  color: var(--text-muted);
}

.summary-row b {
  color: var(--text-main);
  font-weight: 700;
}

.summary-tests-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.summary-test-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.86rem;
  background: #ffffff;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.summary-test-row span {
  font-weight: 600;
  color: var(--text-main);
}

.summary-test-row b {
  color: var(--accent-green-dark);
}

.summary-total-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--accent-green-light);
  border: 1px solid var(--border-glow);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-top: 10px;
  font-size: 0.92rem;
  color: var(--text-main);
}

.grand-total {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--accent-green-dark);
}

.booking-sidebar-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 14px;
  word-wrap: break-word;
}

/* ========================================================
   CONTACT PAGE - REDESIGNED MODERN STYLES
   ======================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  padding-block: 40px 60px;
  align-items: start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-main-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.contact-header-card {
  background: linear-gradient(135deg, #f0fdf9 0%, #ffffff 100%);
  border: 1.5px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-header-card h2 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
}

.contact-header-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 4px 0 0;
}

.live-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.live-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.35);
  animation: pulse-green 2s infinite ease-in-out;
}

@keyframes pulse-green {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* INTERACTIVE CONTACT ACTION CARDS */
.contact-action-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-action-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.25s ease;
  position: relative;
  min-width: 0;
}

.contact-action-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-green);
  box-shadow: var(--shadow-md);
}

.contact-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.contact-card-icon.icon-green {
  background: var(--accent-green-light);
  color: var(--accent-green-dark);
}

.contact-card-icon.icon-blue {
  background: rgba(0, 82, 204, 0.1);
  color: var(--primary-blue);
}

.contact-card-icon.icon-wa {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
}

.contact-card-icon.icon-amber {
  background: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

.contact-card-details h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 4px;
}

.contact-card-details p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.contact-phone-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}

.contact-phone-links a {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease;
}

.contact-phone-links a:hover {
  color: var(--accent-green-dark);
}

.contact-card-action {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.btn-card-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 800;
  transition: all 0.2s ease;
  box-sizing: border-box;
  text-align: center;
}

.btn-card-call {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 12px var(--accent-green-glow);
}

.btn-card-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--accent-green-glow);
}

.btn-card-wa {
  background: #25d366;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-card-wa:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

.btn-card-map {
  background: var(--surface-alt);
  border: 1.5px solid var(--border);
  color: var(--text-main) !important;
}

.btn-card-map:hover {
  background: #ffffff;
  border-color: var(--primary-blue);
  color: var(--primary-blue) !important;
}

/* RIGHT SIDEBAR MAP & QUICK BOOKING */
.contact-side-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.contact-map-card {
  background: #ffffff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-map-header {
  padding: 16px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.contact-map-header h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0;
}

.contact-map-header span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.contact-map-frame {
  width: 100%;
  height: 320px;
  border: none;
  display: block;
}

.contact-quick-book-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(0, 82, 204, 0.08) 100%);
  border: 1.5px solid var(--border-glow);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}

.contact-quick-book-box h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
  margin: 0 0 6px;
}

.contact-quick-book-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0 0 16px;
  line-height: 1.45;
}

.contact-quick-book-box .button {
  width: 100%;
  padding: 12px 18px;
  font-size: 0.94rem;
  justify-content: center;
  border-radius: var(--radius-md);
}

/* MODAL STYLES */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 18, 38, 0.78);
  backdrop-filter: blur(8px);
  place-items: center;
  padding: 20px;
}

.modal.open {
  display: grid;
}

.modal-box {
  background: #fff;
  max-width: 540px;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  box-sizing: border-box;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: var(--surface-alt);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-muted);
  display: grid;
  place-items: center;
}

.summary-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}

.summary-row b {
  color: var(--text-muted);
  font-weight: 600;
}

/* MOBILE STICKY BOTTOM ACTION BAR - WHITE THEME */
.mobile-sticky-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid #e2e8f0;
    z-index: 999;
    padding: 8px 14px;
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
  }

  .mobile-sticky-bar .btn-sticky-call {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #f1f5f9;
    color: #0f172a;
    border: 1.5px solid #cbd5e1;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 0.86rem;
    transition: all 0.2s ease;
  }

  .mobile-sticky-bar .btn-sticky-call:hover {
    background: #e2e8f0;
    color: #0f172a;
  }

  .mobile-sticky-bar .btn-sticky-book {
    flex: 1.35;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
    color: #ffffff;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 0.86rem;
    box-shadow: 0 4px 14px var(--accent-green-glow);
    transition: all 0.2s ease;
  }

  .mobile-sticky-bar .btn-sticky-book:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px var(--accent-green-glow);
    color: #ffffff;
  }
}

/* ==========================================================================
   ADVANCED MOBILE VIEWPORT STYLING (PROPER MOBILE GUTTERS & ZERO EDGE-TOUCHING)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-banner-section {
    min-height: auto;
    padding-block: 84px 36px;
  }

  .hero-banner-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .hero-banner-copy > p:not(.eyebrow) {
    margin-inline: auto;
  }

  .hero-glass-search-bar {
    margin-inline: auto;
  }

  .banner-popular-pills {
    justify-content: center;
  }
  
  .actions {
    justify-content: center;
  }

  .hero-banner-visual {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .banner-glass-card {
    padding: 12px 14px;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .infographic-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .infographic-intro {
    max-width: 100%;
    text-align: center;
  }

  .infographic-intro .eyebrow {
    margin-inline: auto;
  }

  .about-grid, .contact-grid, .booking-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .booking-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
  }
}

@media (max-width: 768px) {
  /* MOBILE HEADER & RIGHT-SIDE SLIDE DRAWER */
  .site-header {
    height: 62px;
    padding: 0 16px;
    z-index: 1050;
  }

  /* MOBILE SITE HEADER - WHITE THEME */
  .site-header {
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05) !important;
  }

  .brand-logo-img {
    height: 38px;
  }

  .brand {
    font-size: 1.05rem;
    gap: 8px;
    color: #0f172a !important;
  }

  .brand b {
    color: var(--primary-blue) !important;
    font-weight: 800;
  }

  .brand small {
    font-size: 0.65rem;
    color: #64748b !important;
  }

  .menu-btn {
    display: flex;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #f1f5f9 !important;
    border: 1px solid #cbd5e1 !important;
    color: #0f172a !important;
    z-index: 1070;
    position: relative;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.2s ease;
  }

  .menu-btn:hover {
    background: #e2e8f0 !important;
  }

  /* 100% CLEAR TRANSPARENT BACKDROP (TOUCH DISMISSAL, ZERO BLUR) */
  .nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: transparent;
    z-index: 1040;
    pointer-events: none; /* NEVER intercept taps when closed */
  }

  .nav-backdrop.open {
    display: block;
    pointer-events: auto; /* Only active when nav drawer is open */
  }

  /* MODERN FLOATING CARD NAVIGATION MENU - WHITE THEME */
  nav {
    display: flex;
    position: fixed;
    top: 68px;
    right: 12px;
    width: calc(100vw - 24px);
    max-width: 310px;
    height: auto;
    max-height: calc(100vh - 84px);
    max-height: calc(100dvh - 84px);
    background: #ffffff;
    flex-direction: column;
    padding: 14px;
    gap: 7px;
    border-radius: 18px;
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
    z-index: 1060;
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
    pointer-events: none;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }

  nav.open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  /* DRAWER LINKS - WHITE THEME */
  nav a {
    width: 100%;
    padding: 11px 14px;
    border-radius: 10px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #0f172a !important;
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.2s ease;
    box-sizing: border-box;
    position: relative;
    z-index: 1065;
    cursor: pointer;
    pointer-events: auto;
  }

  nav a:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    color: var(--primary-blue) !important;
    transform: translateX(-2px);
  }

  nav a.active {
    background: #ecfdf5 !important;
    color: var(--accent-green-dark) !important;
    border-color: var(--accent-green) !important;
    border-left: 3px solid var(--accent-green) !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.12);
  }

  nav a::after,
  nav a.active::after {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    height: auto !important;
    background: none !important;
    border-radius: 0 !important;
  }

  nav a.active::after {
    content: "●";
    color: var(--accent-green);
    font-size: 0.82rem;
    text-shadow: none;
  }

  nav a:not(.active):not(.nav-cta)::after {
    content: "›";
    color: #94a3b8;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.2s ease, color 0.2s ease;
  }

  nav a:hover::after {
    color: var(--primary-blue);
    transform: translateX(3px);
  }

  nav .nav-cta {
    margin-top: 4px;
    background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%) !important;
    color: #ffffff !important;
    padding: 12px 16px !important;
    border-radius: 10px !important;
    font-size: 0.94rem !important;
    font-weight: 800 !important;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 14px var(--accent-green-glow) !important;
    border: none !important;
  }

  nav .nav-cta::after {
    display: none !important;
  }

  /* DRAWER FOOTER QUICK ACTIONS - WHITE THEME */
  .nav-drawer-footer {
    margin-top: 6px;
    padding-top: 8px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .nav-drawer-wa-btn {
    width: 100%;
    padding: 10px 14px;
    border-radius: 10px;
    background: #25d366 !important;
    color: #ffffff !important;
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
    border: none !important;
    transition: all 0.2s ease;
  }

  .nav-drawer-wa-btn:hover {
    background: #20ba5a !important;
    transform: translateY(-2px);
  }

  .nav-drawer-location {
    text-align: center;
    padding-top: 2px;
  }

  .nav-drawer-location span {
    display: block;
    font-size: 0.74rem;
    color: #64748b;
    font-weight: 600;
  }

  .nav-drawer-location small {
    display: block;
    font-size: 0.68rem;
    color: var(--accent-green-dark);
    font-weight: 700;
    margin-top: 2px;
  }

  /* MOBILE HERO BANNER */
  .hero-banner-section {
    min-height: auto;
    padding-block: 76px 24px;
  }

  .hero-banner-bg {
    top: -10%;
    bottom: -10%;
  }

  .hero-banner-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .eyebrow {
    font-size: 0.72rem;
    padding: 4px 12px;
    margin-bottom: 10px;
    display: inline-flex;
    margin-inline: auto;
  }

  .hero-banner-copy h1 {
    font-size: clamp(1.65rem, 6.2vw, 2.2rem);
    line-height: 1.2;
    margin-bottom: 10px;
    letter-spacing: -0.025em;
  }

  .hero-banner-copy > p:not(.eyebrow) {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 16px;
    color: #d8e7fc;
  }

  .hero-glass-search-bar {
    width: 100%;
    border-radius: var(--radius-full);
    padding: 4px 5px 4px 14px;
    gap: 8px;
    box-sizing: border-box;
    margin-bottom: 12px;
  }

  .hero-glass-search-bar input {
    font-size: 0.86rem;
    padding: 8px 0;
  }

  .hero-glass-search-bar button {
    padding: 8px 16px;
    font-size: 0.82rem;
    border-radius: var(--radius-full);
  }

  .banner-popular-pills {
    justify-content: center;
    gap: 6px;
    margin-bottom: 18px;
  }

  .banner-popular-pills span {
    width: 100%;
    text-align: center;
    font-size: 0.74rem;
    margin-bottom: 2px;
  }

  .banner-popular-pills a {
    font-size: 0.74rem;
    padding: 4px 11px;
  }

  .actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .actions .button {
    width: 100%;
    padding: 13px 20px;
    font-size: 0.92rem;
    box-sizing: border-box;
    border-radius: var(--radius-md);
  }

  /* MOBILE HERO FEATURE CARDS */
  .hero-banner-visual {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
  }

  .banner-glass-card {
    flex-direction: row;
    text-align: left;
    padding: 12px 14px;
    gap: 12px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
  }

  .banner-card-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .banner-card-text h3 {
    font-size: 0.94rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
  }

  .banner-card-text p {
    font-size: 0.78rem;
    line-height: 1.35;
    color: #d2e2fc;
  }

  /* MOBILE STATS SECTION */
  .stats-section {
    margin-top: 16px;
    margin-bottom: 40px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
  }

  .stat-card {
    background: #ffffff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 16px 14px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .stat-card .icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
  }

  .stat-info b {
    font-size: 1.45rem;
    line-height: 1.05;
    color: var(--text-main);
  }

  .stat-info span {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
  }

  /* MOBILE PACKAGES SECTION (PROPER GUTTERS & NO EDGE-TOUCHING) */
  .packages-section {
    padding-block: 40px;
  }

  .section-header {
    margin-bottom: 24px;
    padding-inline: 0;
  }

  .section-header h2 {
    font-size: 1.65rem;
    line-height: 1.2;
    margin-bottom: 8px;
  }

  .section-header p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .packages-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    width: 100%;
  }

  .package-card {
    padding: 20px 18px;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    box-shadow: 0 4px 18px rgba(6, 24, 56, 0.07);
    margin-inline: 0;
  }

  .package-card.featured {
    transform: none;
    border-color: var(--accent-green);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
  }

  .package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
  }

  .package-header h3 {
    font-size: 1.15rem;
    line-height: 1.25;
  }

  .package-price {
    font-size: 1.65rem;
    margin-bottom: 10px;
  }

  .package-features {
    gap: 7px;
    font-size: 0.84rem;
    margin-bottom: 16px;
  }

  .package-card .button {
    width: 100%;
    padding: 12px;
  }

  /* MOBILE 581+ TESTS REPORT PDF & CATALOGUE BAR */
  .package-catalogue-bar {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
    gap: 16px;
    border-radius: var(--radius-lg);
    margin-top: 24px !important;
  }

  .catalogue-bar-text {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .catalogue-bar-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }

  .catalogue-bar-actions .button {
    width: 100%;
    padding: 12px;
  }

  /* MOBILE 3D INFOGRAPHIC & TECH SECTION */
  .infographic-tech-section {
    padding-block: 40px;
  }

  .infographic-container {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .infographic-intro h2 {
    font-size: 1.6rem;
    line-height: 1.2;
    text-align: center;
  }

  .infographic-intro p {
    font-size: 0.88rem;
    line-height: 1.5;
    text-align: center;
    margin-bottom: 18px;
  }

  .process-steps {
    gap: 8px;
  }

  .process-step-item {
    padding: 10px 12px;
    gap: 12px;
  }

  .process-icon-box {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .process-info h3 {
    font-size: 0.92rem;
  }

  .process-info p {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .infographic-main-banner {
    border-radius: var(--radius-md);
  }

  .infographic-mini-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .infographic-mini-card {
    padding: 10px 12px;
    gap: 10px;
  }

  .mini-card-icon {
    width: 32px;
    height: 32px;
  }

  .mini-card-text h4 {
    font-size: 0.86rem;
  }

  .mini-card-text p {
    font-size: 0.72rem;
  }

  /* MOBILE CATEGORIES & SERVICES (SIDE-BY-SIDE 2-COLUMN GRID) */
  .section {
    padding-block: 45px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .service-card {
    padding: 16px 14px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 185px;
  }

  .service-card-top {
    margin-bottom: 10px;
  }

  .service-card .icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .service-card h3 {
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 4px;
  }

  .service-card p {
    font-size: 0.74rem;
    line-height: 1.38;
    color: var(--text-muted);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* MOBILE REVIEWS CAROUSEL */
  .reviews-section {
    padding-block: 40px;
  }

  .review-card-single {
    padding: 24px 18px 20px;
    border-radius: var(--radius-lg);
  }

  .review-quote-mark {
    font-size: 3rem;
    margin-bottom: -10px;
  }

  .review-card-single .review-text {
    font-size: 0.94rem;
    line-height: 1.55;
    margin-bottom: 16px;
  }

  .review-avatar {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .author-details b {
    font-size: 0.95rem;
  }

  .author-details span {
    font-size: 0.74rem;
  }

  .reviews-controls {
    gap: 12px;
    margin-top: 18px;
  }

  .review-nav-btn {
    width: 36px;
    height: 36px;
  }

  /* MOBILE BOOKING CTA BANNER */
  .booking-banner {
    padding: 30px 18px;
    border-radius: var(--radius-lg);
    text-align: center;
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 40px;
  }

  .booking-banner h2 {
    font-size: 1.6rem;
    line-height: 1.25;
  }

  .booking-banner p:not(.eyebrow) {
    font-size: 0.9rem;
  }

  .booking-banner .button {
    width: 100%;
    padding: 13px 20px;
  }

  /* SUBPAGES MOBILE ADAPTATIONS */
  .booking-page {
    padding-top: 84px;
    padding-bottom: 100px;
    padding-inline: 14px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .booking-intro h1 {
    font-size: 1.65rem;
    line-height: 1.25;
  }

  .booking-intro p {
    font-size: 0.86rem;
  }

  .step-indicator {
    gap: 6px;
    margin-top: 16px;
  }

  .step-item span:not(.step-num) {
    font-size: 0.74rem;
  }

  .step-num {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
  }

  .step-line {
    width: 12px;
  }

  .booking-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  form.styled-form {
    padding: 18px 14px;
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .form-row {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .test-options-box {
    max-height: 280px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .test-option-item {
    padding: 10px 12px;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .test-option-title {
    font-size: 0.88rem;
  }

  .test-option-price {
    font-size: 0.78rem;
    padding: 3px 8px;
  }

  .selected-summary-bar {
    padding: 8px 10px;
    font-size: 0.8rem;
  }

  .total-amount {
    font-size: 0.96rem;
  }

  .catalogue-grid {
    grid-template-columns: 1fr;
  }

  /* CONTACT PAGE MOBILE STYLES */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-block: 20px 40px;
  }

  .contact-header-card {
    padding: 18px 16px;
  }

  .contact-header-card h2 {
    font-size: 1.3rem;
  }

  .contact-action-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-action-card {
    padding: 18px 16px;
  }

  .contact-map-frame {
    height: 260px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .page-hero {
    padding-block: 90px 35px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* FOOTER */
footer {
  background: var(--dark-bg);
  color: var(--text-light);
  padding-block: 45px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  footer {
    padding-block: 40px 105px !important;
    background: #030f24;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    text-align: left;
  }

  .footer-brand .brand {
    margin-bottom: 10px;
  }

  .footer-brand p {
    font-size: 0.86rem;
    color: #9bb0d3;
    line-height: 1.6;
    max-width: 100%;
  }

  .footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.96rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.02em;
  }

  .footer-col h4::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 14px;
    background: var(--accent-mint);
    border-radius: 2px;
  }

  .footer-col ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .footer-col ul li a {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.84rem;
    color: #e2ecfd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    transition: all 0.2s ease;
  }

  .footer-col ul li a::after {
    content: "›";
    color: rgba(255, 255, 255, 0.35);
    font-size: 1.15rem;
    line-height: 1;
  }

  .footer-col ul li a:hover {
    background: rgba(16, 185, 129, 0.18);
    color: var(--accent-mint);
    border-color: rgba(16, 185, 129, 0.35);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 6px;
    font-size: 0.76rem;
    color: #7d93b8;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

.footer-brand .brand {
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-light);
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col a {
  color: var(--text-light);
  font-size: 0.86rem;
}

.footer-col a:hover {
  color: var(--accent-mint);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 8px;
}

.dev-link {
  color: var(--accent-mint);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dev-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

