/* ==========================================================================
   DIVYA HEALTH CARE - MODERN DIAGNOSTIC LAB DESIGN SYSTEM
   Sehat • Seva • Samman | Quality Diagnostics. Made Simple.
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --primary-navy: #0b2545;
  --primary-blue: #134074;
  --primary-accent: #0284c7;
  --accent-light: #e0f2fe;
  --brand-red: #dc2626;
  --brand-red-hover: #b91c1c;
  --brand-red-light: #fee2e2;
  --whatsapp-green: #25D366;
  --whatsapp-dark: #128C7E;
  --whatsapp-light: #dcf8c6;
  
  /* Neutral Palette */
  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --bg-page: #f8fafc;
  --bg-card: #ffffff;
  --border-light: #e2e8f0;
  --border-hover: #cbd5e1;

  /* Elevation & Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 35px -5px rgba(15, 23, 42, 0.15);
  
  /* Geometry */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  /* Transitions */
  --trans-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  color: var(--text-body);
  background-color: var(--bg-page);
}

body {
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.25;
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--trans-fast);
}

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

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

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-announcement-bar {
  background: var(--primary-navy);
  color: #e2e8f0;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-item i {
  color: #38bdf8;
  font-size: 12px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.top-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-weight: 600;
  transition: var(--trans-fast);
}

.top-phone-link:hover {
  color: #38bdf8;
}

/* ==========================================================================
   HEADER & MAIN NAVIGATION
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-main-title {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary-navy);
  line-height: 1.1;
}

.brand-main-title .highlight-red {
  color: var(--brand-red);
}

.brand-motto {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary-accent);
  text-transform: uppercase;
}

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

.nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-body);
  position: relative;
  padding: 8px 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-accent);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--brand-red);
  border-radius: 2px;
  transition: width 0.25s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-right-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-contact-phones {
  display: flex;
  flex-direction: column;
  text-align: right;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dark);
}

.header-contact-phones a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  line-height: 1.3;
}

.header-contact-phones a:hover {
  color: var(--primary-accent);
}

.btn-header-book {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-red);
  color: #ffffff;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
  transition: var(--trans-fast);
}

.btn-header-book:hover {
  background: var(--brand-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.45);
}

.mobile-menu-toggle-btn {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: var(--primary-navy);
  cursor: pointer;
  padding: 6px;
}

/* ==========================================================================
   HERO SECTION - POPULATED, DYNAMIC WITH ROTATING REAL PHOTOS
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 44px 0 40px;
  background: linear-gradient(135deg, #f0fdf4 0%, #f8fafc 45%, #eff6ff 100%);
  overflow: hidden;
}

.hero-layout-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  align-items: center;
  gap: 36px;
}

/* Live Active Status Pill */
.hero-live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.pulsing-green-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulseDot 1.6s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 7px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-main-heading {
  font-size: 44px;
  font-weight: 850;
  letter-spacing: -1.2px;
  color: var(--primary-navy);
  line-height: 1.12;
  margin-bottom: 14px;
}

.hero-main-heading .highlight-sky {
  color: #0284c7;
}

.hero-subtext-bullets {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 22px;
}

.hero-subtext-bullets span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-subtext-bullets span::after {
  content: '•';
  margin-left: 10px;
  color: #94a3b8;
}

.hero-subtext-bullets span:last-child::after {
  content: '';
}

/* Hero Quick Booking Inline Widget */
.hero-quick-booking-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1.5px solid #bae6fd;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  margin-bottom: 22px;
}

.hero-quick-card-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-quick-card-title i {
  color: var(--brand-red);
}

.hero-quick-form {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr auto;
  gap: 8px;
  align-items: center;
}

.hero-quick-select,
.hero-quick-input {
  height: 44px;
  padding: 0 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: #f8fafc;
  font-size: 13.5px;
  outline: none;
  transition: var(--trans-fast);
}

.hero-quick-select:focus,
.hero-quick-input:focus {
  border-color: #0284c7;
  background: #ffffff;
}

.btn-hero-quick-submit {
  height: 44px;
  padding: 0 18px;
  background: var(--brand-red);
  color: #ffffff;
  border-radius: var(--radius-md);
  border: none;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--trans-fast);
}

.btn-hero-quick-submit:hover {
  background: var(--brand-red-hover);
}

.hero-address-group {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-address-group .hero-address-input {
  width: 100%;
  padding-right: 96px;
}

.btn-hero-locate {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  height: 32px;
  padding: 0 10px;
  background: #e0f2fe;
  color: #0284c7;
  border: 1px solid #bae6fd;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--trans-fast);
  white-space: nowrap;
}

.btn-hero-locate:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
}

.btn-hero-locate.locating,
.btn-locate-inline.locating {
  background: #f1f5f9;
  color: #64748b;
  border-color: #cbd5e1;
  cursor: wait;
}

.btn-hero-locate.located,
.btn-locate-inline.located {
  background: #ecfdf5;
  color: #059669;
  border-color: #a7f3d0;
}

.btn-locate-inline {
  background: #e0f2fe;
  color: #0284c7;
  border: 1px solid #bae6fd;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--trans-fast);
}

.btn-locate-inline:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
}


/* Hero Live Stats Row */
.hero-live-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-light);
}

.hero-stat-box h4 {
  font-size: 18px;
  font-weight: 850;
  color: var(--primary-navy);
  line-height: 1.1;
}

.hero-stat-box p {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.25;
  margin-top: 2px;
}

/* Dynamic Hero Photo Carousel (Right Column) */
.hero-slider-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: #0f172a;
  border: 4px solid #ffffff;
  height: 440px;
}

.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, transform 0.7s ease;
  transform: scale(1.02);
}

.hero-slider-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.hero-slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Slider Gradient Overlay */
.hero-slider-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 37, 69, 0.15) 0%, rgba(11, 37, 69, 0.75) 100%);
}

/* Floating Dynamic Slide Badge */
.hero-slide-badge-box {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary-navy);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-slide-badge-box i {
  color: #0284c7;
}

/* Floating Slide Caption Box at Bottom */
.hero-slide-caption-box {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  z-index: 10;
  color: #ffffff;
}

.hero-slide-caption-box h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Slider Controls */
.hero-slider-nav-btns {
  position: absolute;
  bottom: 24px;
  right: 20px;
  z-index: 15;
  display: flex;
  gap: 8px;
}

.slider-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-navy);
  font-size: 12px;
  cursor: pointer;
  transition: var(--trans-fast);
}

.slider-nav-btn:hover {
  background: #ffffff;
  transform: scale(1.08);
}

.hero-slider-dots-box {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  display: flex;
  gap: 6px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  width: 24px;
  background: #38bdf8;
}

/* ==========================================================================
   TRUST BADGES BAR
   ========================================================================== */
.trust-badges-bar {
  background: #ffffff;
  padding: 22px 0;
  border-bottom: 1px solid var(--border-light);
}

.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: center;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 10px;
}

.trust-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f0f9ff;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.trust-badge-item:nth-child(2) .trust-badge-icon {
  background: #f0fdf4;
  color: #16a34a;
}

.trust-badge-item:nth-child(3) .trust-badge-icon {
  background: #fef2f2;
  color: #dc2626;
}

.trust-badge-item:nth-child(4) .trust-badge-icon {
  background: #faf5ff;
  color: #9333ea;
}

.trust-badge-item:nth-child(5) .trust-badge-icon {
  background: #ecfdf5;
  color: #059669;
}

.trust-badge-text h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.trust-badge-text p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   POPULAR HEALTH CHECKUP PACKAGES SECTION
   ========================================================================== */
.packages-section {
  padding: 56px 0 45px;
  background: #ffffff;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
}

.section-title-wrap h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
}

.section-link-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 700;
  color: #0284c7;
  transition: var(--trans-fast);
}

.section-link-more:hover {
  gap: 9px;
  color: #0369a1;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.package-card {
  position: relative;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light);
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: var(--trans-smooth);
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: #93c5fd;
  box-shadow: var(--shadow-lg);
}

.package-card.featured {
  border-color: var(--brand-red);
  background: linear-gradient(180deg, #fffbfb 0%, #ffffff 100%);
  box-shadow: 0 8px 25px rgba(220, 38, 38, 0.1);
}

.package-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--brand-red);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 3px 10px rgba(220, 38, 38, 0.3);
}

.package-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.pkg-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #f0f9ff;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.package-card.featured .pkg-icon-wrap {
  background: #fef2f2;
  color: var(--brand-red);
}

.package-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1.25;
}

.package-test-count {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 700;
  color: #0284c7;
  background: #e0f2fe;
  padding: 2px 8px;
  border-radius: 6px;
  margin-top: 3px;
}

.package-description {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 16px;
  min-height: 40px;
}

.package-pricing {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border-light);
}

.pricing-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.current-price {
  font-size: 26px;
  font-weight: 850;
  color: var(--primary-navy);
}

.original-price {
  font-size: 15px;
  color: #94a3b8;
  text-decoration: line-through;
}

.save-badge {
  font-size: 12px;
  font-weight: 700;
  color: #15803d;
  background: #dcfce7;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.package-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  gap: 6px;
  margin-bottom: 20px;
  min-height: 64px;
  flex-grow: 1;
}

.pkg-tag {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 600;
  color: #475569;
  background: #f1f5f9;
  padding: 0 10px;
  height: 28px;
  border-radius: 6px;
  line-height: 28px;
  white-space: nowrap;
}

.package-footer-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: auto;
}

.btn-primary-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary-navy);
  color: #ffffff;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--trans-fast);
}

.btn-primary-book:hover {
  background: #0284c7;
}

.package-card.featured .btn-primary-book {
  background: var(--brand-red);
}

.package-card.featured .btn-primary-book:hover {
  background: var(--brand-red-hover);
}

.btn-outline-details {
  background: #f8fafc;
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  padding: 12px 16px;
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--trans-fast);
}

.btn-outline-details:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

/* ==========================================================================
   CATEGORY GRID
   ========================================================================== */
.category-section {
  padding: 24px 0 48px;
  background: #ffffff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.category-grid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 18px 10px;
  background: #f8fafc;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: var(--trans-smooth);
}

.category-grid-item:hover {
  background: #ffffff;
  border-color: #0284c7;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.cat-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #ffffff;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: var(--trans-fast);
}

.category-grid-item:hover .cat-icon-circle {
  background: #0284c7;
  color: #ffffff;
}

.cat-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.cat-count {
  font-size: 11.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   LIVE SEARCH FOR TESTS
   ========================================================================== */
.search-find-section {
  padding: 48px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdf4 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.search-container-box {
  background: #ffffff;
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  position: relative;
}

.search-box-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 24px;
}

.search-box-header h3 {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.search-box-header p {
  font-size: 14.5px;
  color: var(--text-muted);
}

.search-input-wrapper {
  position: relative;
  max-width: 760px;
  margin: 0 auto 18px;
}

.search-input-wrapper i.search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 18px;
}

.test-search-field {
  width: 100%;
  height: 58px;
  padding: 12px 130px 12px 52px;
  font-size: 15.5px;
  border-radius: var(--radius-full);
  border: 2px solid var(--border-light);
  background: #f8fafc;
  outline: none;
  transition: var(--trans-fast);
}

.test-search-field:focus {
  border-color: #0284c7;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
}

.btn-search-trigger {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-navy);
  color: #ffffff;
  border: none;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--trans-fast);
}

.btn-search-trigger:hover {
  background: #0284c7;
}

.live-search-results-box {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xl);
  max-height: 380px;
  overflow-y: auto;
  z-index: 50;
  display: none;
}

.live-search-results-box.active {
  display: block;
}

.search-result-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: var(--trans-fast);
}

.search-result-item:hover {
  background: #f0f9ff;
}

.result-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.result-badge {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
}

.badge-pkg {
  background: #fef2f2;
  color: var(--brand-red);
}

.badge-test {
  background: #e0f2fe;
  color: #0369a1;
}

.result-name {
  font-size: 14px;
  color: var(--text-dark);
}

.result-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.result-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-navy);
}

.btn-book-sm {
  background: var(--brand-red);
  color: #ffffff;
  border: none;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  cursor: pointer;
}

.no-search-results {
  padding: 24px;
  text-align: center;
  color: var(--text-muted);
}

.btn-ask-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  background: var(--whatsapp-green);
  color: #ffffff;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
}

.quick-tags-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
}

.quick-tag-label {
  font-weight: 700;
  color: var(--text-muted);
}

.quick-search-tag {
  background: #f1f5f9;
  color: var(--text-body);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: none;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans-fast);
}

.quick-search-tag:hover {
  background: #0284c7;
  color: #ffffff;
}

/* ==========================================================================
   DOCTOR CONSULTATION CARD
   ========================================================================== */
.doctor-consult-section {
  padding: 40px 0;
  background: #ffffff;
}

.doctor-consult-card {
  background: linear-gradient(135deg, #0b2545 0%, #134074 100%);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  color: #ffffff;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.doctor-avatar-wrap {
  position: relative;
}

.doctor-avatar-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  color: #0284c7;
  overflow: hidden;
}

.doc-online-dot {
  position: absolute;
  bottom: 4px;
  right: 6px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #ffffff;
}

.doctor-info-text h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.doctor-info-text p {
  color: #cbd5e1;
  font-size: 15px;
  max-width: 580px;
  margin-bottom: 14px;
}

.doctor-features-list {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12.5px;
  color: #e2e8f0;
}

.doctor-features-list span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.doctor-features-list i {
  color: #38bdf8;
}

.doctor-actions-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-doc-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--whatsapp-green);
  color: #ffffff;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  font-size: 14.5px;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: var(--trans-fast);
}

.btn-doc-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}

.btn-doc-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: var(--trans-fast);
}

.btn-doc-call:hover {
  background: #ffffff;
  color: var(--primary-navy);
}

/* ==========================================================================
   PRESCRIPTION UPLOAD PROMO BANNER
   ========================================================================== */
.rx-banner-section {
  padding: 30px 0 50px;
  background: #ffffff;
}

.rx-banner-card {
  background: #f0fdf4;
  border: 1.5px dashed #86efac;
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.rx-banner-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.rx-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #dcfce7;
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.rx-text-box h4 {
  font-size: 18px;
  color: #14532d;
  margin-bottom: 4px;
}

.rx-text-box p {
  font-size: 13.5px;
  color: #166534;
}

.btn-upload-rx {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #16a34a;
  color: #ffffff;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--trans-fast);
}

.btn-upload-rx:hover {
  background: #15803d;
}

/* ==========================================================================
   LOCATION STRIP & QUALITY SECTION
   ========================================================================== */
.info-strip-banner {
  background: #f8fafc;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 18px 0;
}

.info-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: center;
  gap: 20px;
}

.info-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.info-strip-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-light);
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info-strip-item:first-child .info-strip-icon {
  color: var(--brand-red);
}

.info-strip-content h5 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 2px;
}

.info-strip-content p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.3;
}

.why-us-section {
  padding: 60px 0;
  background: #ffffff;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-us-image-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
}

.why-img-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid #ffffff;
}

.why-img-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.why-us-content h2 {
  font-size: 32px;
  margin-bottom: 14px;
  color: var(--primary-navy);
}

.why-us-content p.lead {
  font-size: 15.5px;
  color: var(--text-body);
  margin-bottom: 24px;
}

.why-features-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.why-feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-feat-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 3px;
}

.why-feat-text p {
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ==========================================================================
   GOOGLE MAPS & REACH US SECTION
   ========================================================================== */
.location-section {
  padding: 60px 0;
  background: #f8fafc;
  border-top: 1px solid var(--border-light);
}

.location-layout-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: stretch;
}

.map-wrapper-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.map-iframe-container {
  height: 360px;
  width: 100%;
}

.map-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-footer-bar {
  padding: 16px 20px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.btn-open-google-maps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0284c7;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 700;
  transition: var(--trans-fast);
}

.btn-open-google-maps:hover {
  background: #0369a1;
}

.location-details-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.loc-badge {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  color: var(--brand-red);
  background: var(--brand-red-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.location-details-card h3 {
  font-size: 24px;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.loc-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.loc-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-body);
}

.loc-info-item i {
  color: #0284c7;
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.service-areas-pill-box {
  background: #f1f5f9;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 24px;
}

.service-areas-pill-box h5 {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.service-areas-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-areas-tags span {
  font-size: 11.5px;
  background: #ffffff;
  color: #334155;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--border-light);
}

.location-action-btns {
  display: flex;
  gap: 12px;
}

.btn-loc-wa {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--whatsapp-green);
  color: #ffffff;
  padding: 12px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
}

.btn-loc-call {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary-navy);
  color: #ffffff;
  padding: 12px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
}

/* ==========================================================================
   TESTIMONIALS, FAQ, & FOOTER
   ========================================================================== */
.testimonials-section {
  padding: 60px 0;
  background: #ffffff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #f8fafc;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

.review-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #bfdbfe;
  color: #1e40af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.reviewer-info h5 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-dark);
}

.reviewer-info span {
  font-size: 11.5px;
  color: var(--text-muted);
}

.faq-section {
  padding: 60px 0;
  background: #f8fafc;
  border-top: 1px solid var(--border-light);
}

.faq-max-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-accordion-item {
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: var(--trans-fast);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
}

.faq-question i {
  color: #0284c7;
  font-size: 14px;
  transition: transform 0.25s ease;
}

.faq-accordion-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 22px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

.faq-accordion-item.active .faq-answer {
  max-height: 250px;
  padding-bottom: 20px;
}

.site-footer {
  background: var(--primary-navy);
  color: #94a3b8;
  font-size: 14px;
  padding: 60px 0 24px;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 36px;
  margin-bottom: 48px;
}

.footer-brand h4 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 12px;
}

.footer-brand p {
  line-height: 1.55;
  margin-bottom: 16px;
}

.footer-col h5 {
  color: #ffffff;
  font-size: 15px;
  margin-bottom: 16px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a:hover {
  color: #38bdf8;
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact-list i {
  color: #38bdf8;
  margin-top: 4px;
}

.footer-bottom-bar {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
}

/* ==========================================================================
   PACKAGE DETAIL MODAL & BOOKING MODAL
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.pkg-detail-modal-card,
.booking-modal-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.booking-modal-card {
  max-width: 520px;
  max-height: 94vh;
}

.modal-backdrop.active .pkg-detail-modal-card,
.modal-backdrop.active .booking-modal-card {
  transform: scale(1);
}

.pkg-modal-header,
.booking-modal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 26px;
  border-bottom: 1px solid var(--border-light);
}

.pkg-modal-header h3,
.booking-modal-topbar h3 {
  font-size: 20px;
  color: var(--primary-navy);
}

.btn-close-modal {
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 16px;
  cursor: pointer;
  transition: var(--trans-fast);
}

.btn-close-modal:hover {
  background: #e2e8f0;
}

.pkg-modal-body {
  overflow-y: auto;
  padding: 24px 26px;
}

.pkg-modal-hero-split {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.pkg-modal-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 170px;
}

.pkg-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pkg-modal-hero-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pkg-modal-stat-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.stat-tag {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.stat-tag.tag-tests {
  background: #e0f2fe;
  color: #0369a1;
}

.stat-tag.tag-booked {
  background: #fef2f2;
  color: var(--brand-red);
}

.modal-price-box {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.modal-price-box .price-current {
  font-size: 28px;
  font-weight: 850;
  color: var(--primary-navy);
}

.modal-price-box .price-orig {
  font-size: 16px;
  color: #94a3b8;
  text-decoration: line-through;
}

.modal-price-box .price-save {
  font-size: 12px;
  font-weight: 700;
  color: #15803d;
  background: #dcfce7;
  padding: 3px 8px;
  border-radius: var(--radius-full);
}

.modal-nav-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-light);
  gap: 20px;
  margin-bottom: 20px;
}

.modal-tab-btn {
  background: none;
  border: none;
  padding: 10px 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
}

.modal-tab-btn.active {
  color: #0284c7;
}

.modal-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: #0284c7;
}

.tab-content-panel {
  display: none;
}

.tab-content-panel.active {
  display: block;
}

.tests-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  max-height: 260px;
  overflow-y: auto;
  padding-right: 8px;
}

.test-item-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-dark);
}

.test-item-row i {
  color: #16a34a;
  margin-top: 4px;
  font-size: 13px;
  flex-shrink: 0;
}

.pkg-quick-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.q-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  background: #f8fafc;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

.q-feature i {
  color: #0284c7;
}

.preparation-guidelines ul {
  margin-left: 20px;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13.5px;
}

.pkg-modal-footer {
  padding: 18px 26px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  background: #f8fafc;
}

.btn-modal-book-plan {
  background: var(--brand-red);
  color: #ffffff;
  border: none;
  padding: 12px 24px;
  font-size: 14.5px;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-modal-ask-doc {
  background: #ffffff;
  color: var(--text-dark);
  border: 1.5px solid var(--border-light);
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Stepper inside Booking Modal */
.booking-step-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 28px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-light);
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #64748b;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: var(--trans-fast);
}

.step-title {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
}

.step-item.active .step-circle {
  background: #0284c7;
  color: #ffffff;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.2);
}

.step-item.active .step-title {
  color: #0284c7;
  font-weight: 700;
}

.step-item.completed .step-circle {
  background: #16a34a;
  color: #ffffff;
}

.booking-wizard-body {
  overflow-y: auto;
  padding: 22px;
  flex-grow: 1;
}

.booking-step-panel {
  display: none;
}

.booking-step-panel.active {
  display: block;
}

.selected-test-summary-card {
  background: #f0f9ff;
  border: 1.5px solid #bae6fd;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
}

.selected-test-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}

.selected-test-title-row h4 {
  font-size: 17px;
  color: var(--primary-navy);
}

.selected-test-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.modal-test-price {
  font-size: 22px;
  font-weight: 850;
  color: var(--primary-navy);
}

.modal-test-original {
  font-size: 13.5px;
  color: #94a3b8;
  text-decoration: line-through;
}

.modal-test-save {
  font-size: 11px;
  font-weight: 700;
  color: #15803d;
  background: #dcfce7;
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

.change-test-field-wrap {
  margin-bottom: 20px;
}

.change-test-field-wrap label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.styled-select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  background: #f8fafc;
  font-size: 14px;
  outline: none;
}

.step-label-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.collection-options-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.collection-opt-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  border: 2px solid var(--border-light);
  background: #ffffff;
  cursor: pointer;
  transition: var(--trans-fast);
}

.collection-opt-card:hover {
  border-color: #93c5fd;
}

.collection-opt-card.selected {
  border-color: #0284c7;
  background: #f0f9ff;
}

.col-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.collection-opt-card:last-child .col-icon-box {
  background: #fef2f2;
  color: var(--brand-red);
}

.col-text-box h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.col-text-box p {
  font-size: 12.5px;
  color: var(--text-muted);
}

.btn-wizard-next {
  width: 100%;
  height: 50px;
  background: var(--primary-navy);
  color: #ffffff;
  border-radius: var(--radius-full);
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--trans-fast);
}

.btn-wizard-next:hover {
  background: #0284c7;
}

.date-selector-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.date-slot-pill {
  flex: 0 0 74px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 6px;
  background: #f8fafc;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--trans-fast);
}

.date-slot-pill:hover {
  border-color: #0284c7;
}

.date-slot-pill.selected {
  background: #0284c7;
  border-color: #0284c7;
  color: #ffffff;
}

.date-slot-pill .day-title {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 4px;
}

.date-slot-pill .day-number {
  font-size: 20px;
  font-weight: 850;
  line-height: 1;
}

.date-slot-pill .month-name {
  font-size: 11px;
  margin-top: 3px;
}

.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.time-slot-btn {
  height: 42px;
  background: #f8fafc;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--trans-fast);
}

.time-slot-btn:hover {
  border-color: #0284c7;
}

.time-slot-btn.selected {
  background: var(--primary-navy);
  border-color: var(--primary-navy);
  color: #ffffff;
}

.wizard-nav-dual-btns {
  display: flex;
  gap: 12px;
}

.btn-wizard-back {
  flex: 1;
  height: 50px;
  background: #f1f5f9;
  color: var(--text-dark);
  border-radius: var(--radius-full);
  border: none;
  font-size: 14.5px;
  font-weight: 600;
  cursor: pointer;
}

.btn-wizard-back:hover {
  background: #e2e8f0;
}

.btn-wizard-continue {
  flex: 2;
  height: 50px;
  background: var(--primary-navy);
  color: #ffffff;
  border-radius: var(--radius-full);
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.btn-wizard-continue:hover {
  background: #0284c7;
}

.booking-form-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-field-group label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-dark);
}

.form-field-group input,
.form-field-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  font-size: 14px;
  outline: none;
  background: #f8fafc;
  transition: var(--trans-fast);
}

.form-field-group input:focus,
.form-field-group textarea:focus {
  border-color: #0284c7;
  background: #ffffff;
}

.location-auto-helper {
  font-size: 12px;
  color: #0284c7;
  background: none;
  border: none;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 4px;
  font-weight: 600;
}

.consent-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
}

.consent-checkbox-row input {
  margin-top: 3px;
}

.btn-confirm-wa-submit {
  flex: 2;
  height: 52px;
  background: var(--whatsapp-green);
  color: #ffffff;
  border-radius: var(--radius-full);
  border: none;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.btn-confirm-wa-submit:hover {
  background: var(--whatsapp-dark);
}

.confirmation-content-box {
  text-align: center;
  padding: 10px 0;
}

.success-check-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 16px;
  animation: pulseSuccess 1.5s infinite;
}

@keyframes pulseSuccess {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(22, 163, 74, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.confirmation-content-box h4 {
  font-size: 22px;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.confirmation-content-box p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.whatsapp-chat-preview-card {
  background: #efeae2;
  background-image: radial-gradient(#d1d5db 1px, transparent 1px);
  background-size: 12px 12px;
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: left;
  margin-bottom: 20px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.06);
}

.whatsapp-chat-bubble {
  background: #ffffff;
  border-radius: 8px 8px 8px 2px;
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.5;
  color: #111827;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
  position: relative;
}

.whatsapp-bubble-time {
  display: block;
  text-align: right;
  font-size: 10px;
  color: #6b7280;
  margin-top: 6px;
}

.btn-open-wa-final {
  width: 100%;
  height: 52px;
  background: var(--whatsapp-green);
  color: #ffffff;
  border-radius: var(--radius-full);
  border: none;
  font-size: 15.5px;
  font-weight: 800;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.4);
  transition: var(--trans-fast);
}

.btn-open-wa-final:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
}

.rx-modal-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 460px;
  padding: 28px;
  box-shadow: var(--shadow-xl);
}

.rx-modal-card h3 {
  font-size: 20px;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.rx-modal-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ==========================================================================
   LIVE ASSISTANCE WIDGET (Bottom Right)
   ========================================================================== */
.live-assistant-wrapper {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Friendly Proactive Speech Bubble */
.assistant-greeting-bubble {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  max-width: 250px;
  margin-bottom: 12px;
  position: relative;
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.assistant-greeting-bubble.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.assistant-greeting-bubble::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 24px;
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: #ffffff transparent;
}

.close-prompt-btn {
  position: absolute;
  top: 4px;
  right: 6px;
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 12px;
  cursor: pointer;
}

/* Main Trigger Button */
.live-assistant-trigger {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border: 3px solid #ffffff;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.live-assistant-trigger:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(2, 132, 199, 0.55);
}

.assistant-online-ping {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #ffffff;
}

.assistant-open-icon,
.assistant-close-icon {
  position: absolute;
  transition: all 0.25s ease;
}

.assistant-close-icon {
  opacity: 0;
  transform: scale(0.5) rotate(-90deg);
}

.live-assistant-trigger.chat-open .assistant-open-icon {
  opacity: 0;
  transform: scale(0.5) rotate(90deg);
}

.live-assistant-trigger.chat-open .assistant-close-icon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Assistant Chat Drawer Popover */
.live-assistant-drawer {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: 340px;
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.live-assistant-drawer.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.asst-drawer-header {
  background: linear-gradient(135deg, #0b2545 0%, #134074 100%);
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.asst-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.asst-header-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 2px solid #38bdf8;
}

.asst-header-meta h4 {
  color: #ffffff;
  font-size: 14.5px;
  line-height: 1.2;
}

.asst-header-meta span {
  font-size: 11.5px;
  color: #86efac;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.asst-close-btn {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 16px;
  cursor: pointer;
}

.asst-close-btn:hover {
  color: #ffffff;
}

.asst-drawer-body {
  padding: 18px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.asst-chat-bubble-system {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.45;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.asst-quick-actions-box {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.asst-quick-action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  transition: var(--trans-fast);
}

.asst-quick-action-btn i {
  color: #0284c7;
  font-size: 15px;
}

.asst-quick-action-btn:hover {
  background: #f0f9ff;
  border-color: #0284c7;
  color: #0284c7;
}

.asst-quick-action-btn.btn-wa-action {
  background: #f0fdf4;
  border-color: #86efac;
  color: #166534;
}

.asst-quick-action-btn.btn-wa-action i {
  color: #16a34a;
}

.asst-quick-action-btn.btn-wa-action:hover {
  background: #16a34a;
  color: #ffffff;
}

.asst-quick-action-btn.btn-wa-action:hover i {
  color: #ffffff;
}

.asst-drawer-footer {
  padding: 12px 18px;
  background: #ffffff;
  border-top: 1px solid var(--border-light);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ==========================================================================
   REAL-TIME ACTIVITY TOASTER (Social Proof Corner Alert)
   ========================================================================== */
.live-activity-toaster {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 940;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  border: 1px solid #bae6fd;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.15);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 360px;
  transform: translateY(140%);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.live-activity-toaster.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e0f2fe;
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.toast-content {
  flex-grow: 1;
}

.toast-header-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.toast-title {
  font-size: 12px;
  font-weight: 700;
  color: #0284c7;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.toast-time {
  font-size: 10.5px;
  color: #94a3b8;
}

.toast-text {
  font-size: 13px;
  color: var(--text-dark);
  line-height: 1.35;
}

.toast-close-btn {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
}

.toast-close-btn:hover {
  color: var(--text-dark);
}

/* ==========================================================================
   FOOTER DEVELOPER CREDIT & OFFICIAL PRICE LIST TABLE
   ========================================================================== */
.footer-dev-credit {
  font-size: 13px;
  color: #94a3b8;
  margin-top: 4px;
}

.footer-dev-credit a {
  color: #38bdf8;
  text-decoration: none;
  font-weight: 600;
  transition: var(--trans-fast);
}

.footer-dev-credit a:hover {
  color: #7dd3fc;
  text-decoration: underline;
}

.price-list-view-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.price-list-view-toggle {
  display: inline-flex;
  background: #f1f5f9;
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 4px;
  border: 1px solid var(--border-light);
}

.view-toggle-btn {
  border: none;
  background: transparent;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--trans-fast);
}

.view-toggle-btn.active {
  background: #ffffff;
  color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
}

.official-price-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  background: #ffffff;
  box-shadow: var(--shadow-xs);
  margin-top: 12px;
}

.official-price-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13.5px;
}

.official-price-table th {
  background: var(--primary-navy);
  color: #ffffff;
  padding: 13px 16px;
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.official-price-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  vertical-align: middle;
}

.official-price-table tbody tr:last-child td {
  border-bottom: none;
}

.official-price-table tbody tr:hover {
  background: #f8fafc;
}

.price-table-sno {
  font-weight: 700;
  color: #64748b;
  font-size: 12.5px;
  text-align: center;
  width: 50px;
}

.price-table-name {
  font-weight: 700;
  color: var(--primary-navy);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.price-table-subtext {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.price-table-mrp {
  color: #94a3b8;
  text-decoration: line-through;
  font-weight: 600;
  font-size: 13.5px;
}

.price-table-offer {
  font-weight: 850;
  color: #0284c7;
  font-size: 16px;
}

.price-table-save {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: #ecfdf5;
  color: #059669;
}

.price-table-actions {
  text-align: right;
  white-space: nowrap;
}

.price-table-book-btn {
  background: #f0fdf4;
  color: #16a34a;
  border: 1.5px solid #86efac;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--trans-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.price-table-book-btn:hover {
  background: #16a34a;
  color: #ffffff;
}

.price-list-banner-ribbon {
  background: linear-gradient(135deg, #0b1f3a 0%, #0369a1 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ribbon-features {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ribbon-feat-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #e0f2fe;
}

.ribbon-feat-item i {
  color: #38bdf8;
  font-size: 15px;
}

.ribbon-cta-btn {
  background: #ffffff;
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--trans-fast);
}

.ribbon-cta-btn:hover {
  background: #f0fdf4;
  color: #16a34a;
}

