/* =====================================================
   OHC — Home Page Styles
   ===================================================== */

/* ─── TOP BAR ─── */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar span { display: flex; align-items: center; gap: 6px; }
.topbar-link {
  color: #fff;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: var(--r-full);
  background: rgba(204,20,20,0.5);
  transition: var(--ease);
}
.topbar-link:hover { background: var(--accent); }
@media(max-width:768px) { .topbar { display:none; } }

/* ─── NAVBAR ─── */
.navbar {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(27,46,107,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--ease);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.navbar .container {
  width: 100%;
  overflow: visible;
}
.navbar.scrolled {
  background: rgba(17,30,74,0.98);
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
/* OHC Logo image in navbar */
.brand-logo-img {
  height: 46px;
  width: auto;
  background: white;
  border-radius: 12px;
  padding: 5px 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  flex-shrink: 0;
}
.brand-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent), #FF4444);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(204,20,20,0.4);
}
.brand-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.brand-sub {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-top: 2px;
  white-space: nowrap;
}
/* ─── MOBILE NAVBAR: prevent overlap ─── */
@media (max-width: 640px) {
  /* Hide brand text on small screens — logo only */
  .brand-text { display: none; }
  /* Hide Sign In text button — user can sign in from drawer */
  #navSignIn { display: none !important; }
  /* Shrink Book Now button */
  .nav-actions .btn-accent { font-size: 0.78rem; padding: 7px 12px; }
  .nav-actions .btn-accent i { display: none; }
}
@media (max-width: 480px) {
  .brand-logo-img { height: 36px; padding: 3px 7px; border-radius: 9px; }
  /* Even smaller Book Now on very small phones */
  .nav-actions .btn-accent { font-size: 0.74rem; padding: 6px 10px; }
}
@media (min-width: 641px) and (max-width: 900px) {
  /* Tablet: hide brand text, keep Sign In */
  .brand-text { display: none; }
  .brand-logo-img { height: 40px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-md);
  transition: var(--ease);
}
.nav-link:hover, .nav-link.active {
  color: white;
  background: rgba(255,255,255,0.1);
}

.nav-actions { align-items: center; }

.btn-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: var(--ease);
}
.btn-icon:hover { background: rgba(255,255,255,0.2); }
.btn-icon svg { width: 18px; height: 18px; }

.mobile-menu-btn { display: none; }
@media(max-width:768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(17,30,74,0.98);
    padding: var(--sp-md);
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

/* ─── ICONS ─── */
.icon-xs { width: 14px; height: 14px; display: inline-block; vertical-align: middle; }

/* ─── HERO ─── */
.hero {
  background: var(--grad-hero);
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--sp-4xl) + 20px);
  padding-bottom: 0;
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #4A6FE0, transparent);
  top: -200px; right: -100px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #CC1414, transparent);
  bottom: -100px; left: 10%;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
  padding-bottom: var(--sp-4xl);
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-lg);
  backdrop-filter: blur(8px);
}
.pulse-dot {
  width: 8px; height: 8px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.3);
  animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 2px rgba(34,197,94,0.3); }
  50%       { box-shadow: 0 0 0 6px rgba(34,197,94,0.1); }
}

.hero-title {
  color: white !important;
  line-height: 1.15 !important;
  margin-bottom: var(--sp-lg);
}
.gradient-text {
  background: linear-gradient(90deg, #FFD700, #FF6B6B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  color: rgba(255,255,255,0.75) !important;
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: var(--sp-xl);
}

/* Search */
.hero-search {
  position: relative;
  margin-bottom: var(--sp-xl);
}
.search-inner {
  display: flex;
  align-items: center;
  background: white;
  border-radius: var(--r-xl);
  padding: 6px 6px 6px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.search-icon {
  width: 20px; height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  margin-right: 8px;
}
.search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  color: var(--text);
  padding: 8px 0;
}
.search-input:focus { outline: none; }
.search-btn { border-radius: var(--r-xl) !important; }

.search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: 0; right: 0;
  background: white;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  z-index: 50;
  overflow: hidden;
  display: none;
}
.search-suggestions.show { display: block; }
.suggestion-item {
  padding: 12px 16px;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  transition: var(--ease-fast);
}
.suggestion-item:hover { background: var(--primary-xlight); }

.search-tag {
  padding: 5px 14px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--r-full);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--ease-fast);
}
.search-tag:hover { background: rgba(255,255,255,0.25); }

/* Trust */
.hero-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
}
.hero-trust .trust-item svg { width: 16px; height: 16px; color: #22C55E; }

/* Hero Card */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: white;
  border-radius: var(--r-xl);
  padding: var(--sp-lg);
  width: 340px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
  position: relative;
  z-index: 2;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  padding-bottom: var(--sp-md);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--sp-md);
}
.agent-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.agent-name { font-weight: 700; font-size: 0.9rem; color: var(--text); }
.agent-role { font-size: 0.75rem; color: var(--text-muted); }
.ml-auto { margin-left: auto; }

.booking-info { background: var(--bg); border-radius: var(--r-md); padding: var(--sp-md); }
.booking-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text);
}
.booking-row span { display: flex; align-items: center; gap: 6px; }

/* Tracker */
.booking-tracker {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: var(--sp-md) 0;
  gap: 4px;
}
.tracker-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  color: var(--text-light);
  flex: 0 0 auto;
}
.tracker-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--border);
}
.tracker-step.completed .tracker-dot { background: var(--success); border-color: var(--success); }
.tracker-step.active .tracker-dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(204,20,20,0.2);
}
.tracker-dot.pulse { animation: pulseDot 1.5s ease infinite; }
.tracker-step.completed { color: var(--success); }
.tracker-step.active { color: var(--accent); }

.tracker-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  border-radius: 2px;
  min-width: 20px;
  margin-bottom: 14px;
}
.tracker-line.completed { background: var(--success); }
.tracker-line.active {
  background: linear-gradient(90deg, var(--success), var(--accent));
}

.eta-box {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  background: var(--accent-xlight);
  border-radius: var(--r-md);
  padding: var(--sp-sm) var(--sp-md);
  margin-top: var(--sp-md);
  font-size: 0.88rem;
  color: var(--text);
}
.eta-box svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }

/* Float Cards */
.float-card {
  position: absolute;
  background: white;
  border-radius: var(--r-lg);
  padding: var(--sp-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  z-index: 3;
  animation-fill-mode: both;
}
.float-card svg { width: 22px; height: 22px; flex-shrink: 0; }
.float-card strong { font-size: 0.85rem; display: block; }
.float-card p { font-size: 0.75rem; }
.float-card-1 {
  bottom: -20px;
  left: -40px;
  animation-delay: 0.8s;
  min-width: 200px;
}
.float-card-2 {
  top: -20px;
  right: -30px;
  animation-delay: 1.2s;
  min-width: 180px;
}

@media(max-width:1024px) {
  .hero-content { grid-template-columns: 1fr; gap: var(--sp-2xl); }
  .hero-right { display: none; }
}

/* ─── STATS BAR ─── */
.stats-bar {
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: var(--sp-2xl);
  padding: var(--sp-xl) 0;
  position: relative;
  z-index: 1;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-xl);
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.stat-suffix { font-size: 1.4rem; font-weight: 700; color: var(--accent-light); margin-left: 2px; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 4px; text-align: center; }
.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }
@media(max-width:768px) { .stat-divider { display: none; } }

/* ─── TESTS GRID ─── */
.tests-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--sp-lg);
}
.test-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.test-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--primary);
}
.test-card-tag {
  position: absolute;
  top: 12px;
  right: 12px;
}
.test-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--primary-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
}
.test-icon svg { width: 24px; height: 24px; color: var(--primary); }
.test-icon.accent { background: var(--accent-xlight); }
.test-icon.accent svg { color: var(--accent); }
.test-icon.success { background: #D1FAE5; }
.test-icon.success svg { color: var(--success); }
.test-icon.warning { background: #FEF3C7; }
.test-icon.warning svg { color: var(--warning); }

.test-name { font-weight: 700; font-size: 0.95rem; color: var(--text); margin-bottom: 4px; }
.test-desc { font-size: 0.8rem; color: var(--text-muted); margin-bottom: var(--sp-md); line-height: 1.5; }
.test-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.test-price-wrap { display: flex; flex-direction: column; }
.test-price { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--primary); }
.test-mrp { font-size: 0.75rem; color: var(--text-light); text-decoration: line-through; }
.test-report { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.test-report svg { width: 12px; height: 12px; vertical-align: middle; margin-right: 3px; }

/* ─── HOW IT WORKS ─── */
.how-section { position: relative; background: var(--bg); }
.how-bg {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, var(--primary-xlight) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, var(--accent-xlight) 0%, transparent 50%);
  opacity: 0.5;
}

.steps-wrapper { position: relative; }
.steps-line {
  position: absolute;
  top: 80px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-xl);
  position: relative;
  z-index: 1;
}
.step-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--sp-xl) var(--sp-lg);
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  position: relative;
}
.step-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: var(--sp-md);
}
.step-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--primary-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-lg);
  box-shadow: 0 4px 16px rgba(27,46,107,0.15);
}
.step-icon-wrap svg { width: 32px; height: 32px; color: var(--primary); }
.step-icon-wrap.accent { background: var(--accent-xlight); }
.step-icon-wrap.accent svg { color: var(--accent); }
.step-card h4 { margin-bottom: var(--sp-sm); }
.step-chip {
  display: inline-block;
  margin-top: var(--sp-md);
  padding: 4px 14px;
  background: var(--primary-xlight);
  color: var(--primary);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
}

/* How Banner */
.how-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2xl);
  margin-top: var(--sp-3xl);
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.feature-list { list-style: none; margin-top: var(--sp-lg); display: flex; flex-direction: column; gap: var(--sp-sm); }
.feature-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 0.9rem;
  color: var(--text);
}
.feature-list li svg { width: 18px; height: 18px; color: var(--success); flex-shrink: 0; }

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-md);
}
.cert-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--ease);
}
.cert-card:hover { background: var(--surface); box-shadow: var(--shadow-md); }
.cert-icon {
  width: 48px; height: 48px;
  background: var(--primary-xlight);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-sm);
}
.cert-icon svg { width: 22px; height: 22px; color: var(--primary); }
.cert-icon.accent { background: var(--accent-xlight); }
.cert-icon.accent svg { color: var(--accent); }
.cert-card strong { font-size: 0.85rem; display: block; margin-bottom: 4px; }
.cert-card p { font-size: 0.75rem; }

@media(max-width:768px) {
  .steps-grid { grid-template-columns: 1fr; }
  .steps-line { display: none; }
  .how-banner { grid-template-columns: 1fr; }
}

/* ─── FEATURES ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--sp-lg);
}
.feature-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.feature-card-large {
  grid-column: 1;
  grid-row: 1 / 3;
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--primary-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
}
.feature-icon svg { width: 24px; height: 24px; color: var(--primary); }
.feature-icon.accent { background: var(--accent-xlight); }
.feature-icon.accent svg { color: var(--accent); }
.feature-card h4 { margin-bottom: var(--sp-sm); }
.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: var(--sp-md);
  transition: var(--ease-fast);
}
.feature-link:hover { gap: 8px; }
.feature-link svg { width: 14px; height: 14px; }

/* Chart visualization */
.feature-visual {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  margin-bottom: var(--sp-md);
  height: 120px;
  display: flex;
  align-items: flex-end;
}
.feature-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  width: 100%;
  height: 100%;
}
.chart-bar {
  flex: 1;
  background: var(--primary-xlight);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 0.5s ease;
}
.chart-bar.active { background: linear-gradient(180deg, var(--primary), var(--primary-dark)); }
.chart-bar::after {
  content: attr(data-label);
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  color: var(--text-muted);
}

.feature-card-cta { background: var(--grad-card); }
.feature-card-cta h4, .feature-card-cta p { color: white; }
.feature-icon-lg {
  width: 64px; height: 64px;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-md);
}
.feature-icon-lg svg { width: 30px; height: 30px; color: white; }

@media(max-width:1024px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-card-large { grid-column: 1 / 3; grid-row: auto; }
}
@media(max-width:768px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-large { grid-column: 1; }
}

/* ─── PACKAGES BANNER ─── */
.packages-banner { background: var(--primary-dark); }
.packages-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}
.packages-inner .section-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.9); }
.packages-inner h2 { color: white !important; }
.packages-inner p { color: rgba(255,255,255,0.7) !important; }

.pkg-highlight {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  padding: var(--sp-sm) var(--sp-md);
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
}
.pkg-highlight svg { width: 18px; height: 18px; color: var(--accent-light); }

/* Card Stack */
.pkg-card-stack { position: relative; height: 320px; display: flex; align-items: center; justify-content: center; }
.pkg-card {
  position: absolute;
  width: 280px;
  border-radius: var(--r-xl);
}
.pkg-card-back {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  height: 260px;
  transform: rotate(-6deg) translateY(10px);
}
.pkg-card-mid {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  height: 270px;
  transform: rotate(-3deg) translateY(5px);
}
.pkg-card-front {
  background: white;
  box-shadow: var(--shadow-xl);
  padding: var(--sp-lg);
  position: relative;
}
.pkg-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
}
.pkg-card-front h3 { color: var(--primary); margin-bottom: 4px; }
.pkg-tests { font-size: 0.82rem; color: var(--text-muted); margin-bottom: var(--sp-md); }
.pkg-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--sp-md);
}
.pkg-includes span {
  font-size: 0.75rem;
  background: var(--bg);
  border-radius: var(--r-full);
  padding: 3px 10px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 4px;
}
.pkg-includes span svg { width: 10px; height: 10px; color: var(--success); }
.pkg-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pkg-mrp { display: block; font-size: 0.75rem; color: var(--text-muted); text-decoration: line-through; }
.pkg-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}

@media(max-width:768px) {
  .packages-inner { grid-template-columns: 1fr; }
  .packages-right { display: none; }
}

/* ─── LABS SCROLL ─── */
.labs-scroll {
  overflow: hidden;
  position: relative;
}
.labs-scroll::before, .labs-scroll::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.labs-scroll::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.labs-scroll::after  { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }

.labs-track {
  display: flex;
  gap: var(--sp-lg);
  animation: scrollTrack 30s linear infinite;
  width: max-content;
}
.labs-track:hover { animation-play-state: paused; }
@keyframes scrollTrack {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.lab-badge {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--sp-md) var(--sp-xl);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
}
.lab-badge:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.lab-badge-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  background: var(--primary-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.lab-badge strong { font-size: 0.88rem; }
.lab-badge span { font-size: 0.72rem; color: var(--text-muted); }

/* ─── TESTIMONIALS ─── */
.testimonials-section { background: var(--bg); }
.testimonials-wrapper { overflow: hidden; position: relative; }
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--sp-xl);
  margin: 0 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.testimonial-stars { color: #F59E0B; font-size: 1rem; margin-bottom: var(--sp-sm); }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: var(--sp-lg);
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: var(--sp-sm); }
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name { font-weight: 700; font-size: 0.88rem; }
.author-city { font-size: 0.75rem; color: var(--text-muted); }

.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--ease-fast);
}
.testimonial-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

.review-summary { display: flex; align-items: center; gap: var(--sp-md); flex-wrap: wrap; justify-content: center; }
.review-stars { font-size: 1.4rem; color: #F59E0B; }
.review-score { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: var(--text); }

@media(max-width:768px) {
  .testimonial-card { flex: 0 0 calc(100% - 16px); }
}

/* ─── SERVICE CHECK ─── */
.service-check-section { background: var(--primary-dark); }
.service-check-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-xl);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: var(--sp-xl) var(--sp-2xl);
}
.service-check-left { display: flex; align-items: center; gap: var(--sp-lg); flex: 1; }
.service-icon {
  width: 60px; height: 60px;
  background: var(--accent);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-red);
}
.service-icon svg { width: 28px; height: 28px; color: white; }
.service-check-left h3 { color: white !important; margin-bottom: 4px; }
.service-check-left p { color: rgba(255,255,255,0.7) !important; }
.service-check-right { flex: 0 0 360px; }
.pincode-form { display: flex; gap: var(--sp-sm); }
.pincode-form .form-control {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: white;
}
.pincode-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
.service-result {
  margin-top: var(--sp-sm);
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--r-md);
  font-size: 0.88rem;
}
.service-result.available { background: rgba(16,185,129,0.2); color: #6EE7B7; }
.service-result.unavailable { background: rgba(239,68,68,0.2); color: #FCA5A5; }

@media(max-width:768px) {
  .service-check-card { flex-direction: column; padding: var(--sp-lg); }
  .service-check-right { flex: 1; width: 100%; }
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-3xl);
  align-items: start;
}
.contact-info .section-tag { display: inline-block; margin-bottom: var(--sp-sm); }
.contact-info h2 { margin-bottom: var(--sp-md); }

.contact-items { display: flex; flex-direction: column; gap: var(--sp-lg); }
.contact-item { display: flex; align-items: flex-start; gap: var(--sp-md); }
.contact-item-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-lg);
  background: var(--primary-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon svg { width: 22px; height: 22px; color: var(--primary); }
.contact-item-icon.accent { background: var(--accent-xlight); }
.contact-item-icon.accent svg { color: var(--accent); }
.contact-item strong { display: block; font-size: 0.88rem; margin-bottom: 2px; }
.contact-item p { font-size: 0.9rem; color: var(--text); margin: 0; }

.social-btn {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--ease);
}
.social-btn:hover { background: var(--primary); color: white; border-color: var(--primary); }
.social-btn svg { width: 18px; height: 18px; }

.contact-form-wrap {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

@media(max-width:768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ─── FOOTER ─── */
.footer { background: var(--primary-dark); color: white; }
.footer-top { padding: var(--sp-3xl) 0 var(--sp-2xl); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-2xl);
}
.footer-desc { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-top: var(--sp-md); line-height: 1.7; }

.app-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  padding: 8px 14px;
  color: white;
  transition: var(--ease);
}
.app-badge:hover { background: rgba(255,255,255,0.15); }
.app-badge svg { width: 20px; height: 20px; }
.app-badge .text-xs { font-size: 0.65rem; color: rgba(255,255,255,0.6); display: block; }
.app-badge strong { font-size: 0.82rem; display: block; }

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
  margin-bottom: var(--sp-lg);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: var(--ease-fast);
}
.footer-links a:hover { color: white; padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--sp-lg) 0;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 0.82rem; }

.cert-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-full);
  padding: 4px 10px;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
}
.cert-tag svg { width: 12px; height: 12px; }

@media(max-width:1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / 3; }
}
@media(max-width:768px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
}

/* ─── FAB ─── */
.fab-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: var(--z-toast);
  transition: var(--ease);
  animation: float 3s ease-in-out infinite;
}
.fab-whatsapp:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }

.fab-whatsapp:hover { transform: scale(1.1) translateY(-3px); box-shadow: 0 8px 30px rgba(37,211,102,0.5); }
