/* ============================================================
   TopRank Healthcare — Design System
   Authorized Partner of Agilus Diagnostics (formerly SRL)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Nunito:wght@400;500;600;700;800&display=swap');

/* ── CSS Variables ── */
:root {
  --primary: #1565C0;
  --primary-dark: #0D47A1;
  --primary-light: #1976D2;
  --secondary: #2196F3;
  --secondary-light: #64B5F6;
  --accent: #FF6B35;
  --accent-dark: #E64A19;
  --warning: #FFA726;
  --danger: #EF4444;
  --white: #FFFFFF;
  --bg: #F0F6FF;
  --bg-card: #FFFFFF;
  --surface: #E3F2FD;
  --border: #BBDEFB;
  --text-dark: #0D1B2A;
  --text-body: #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(21,101,192,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(21,101,192,0.12), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 24px 60px rgba(21,101,192,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', system-ui, sans-serif;
  --font-secondary: 'Nunito', system-ui, sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-primary);
  background: var(--white);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { color: var(--text-body); }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: var(--radius-full);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
}
.badge-primary { background: var(--surface); color: var(--primary); border: 1px solid var(--border); }
.badge-success { background: #ECFDF5; color: var(--accent-dark); border: 1px solid #A7F3D0; }
.badge-warning { background: #FFFBEB; color: #B45309; border: 1px solid #FDE68A; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #EFF6FF, #E0F2FE);
  color: var(--primary); border: 1px solid var(--border);
  padding: 6px 16px; border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.section-title { margin-bottom: 12px; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-full);
  font-size: 0.95rem; font-weight: 600;
  transition: var(--transition); cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white); box-shadow: 0 4px 20px rgba(27,63,166,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  box-shadow: 0 8px 30px rgba(27,63,166,0.45); transform: translateY(-2px);
}
.btn-secondary {
  background: var(--white); color: var(--primary); border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.btn-accent {
  background: linear-gradient(135deg, var(--accent), #059669);
  color: var(--white); box-shadow: 0 4px 20px rgba(16,185,129,0.35);
}
.btn-accent:hover { box-shadow: 0 8px 30px rgba(16,185,129,0.45); transform: translateY(-2px); }
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white); box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { box-shadow: 0 8px 30px rgba(37,211,102,0.45); transform: translateY(-2px); }
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; }

/* ── Header / Navbar ── */
.top-bar {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: rgba(255,255,255,0.9); padding: 8px 0; font-size: 0.82rem;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: rgba(255,255,255,0.9); transition: var(--transition); }
.top-bar a:hover { color: var(--secondary-light); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item svg { flex-shrink: 0; }

.navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 1000;
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; padding-bottom: 12px; gap: 16px; }
.navbar-brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.navbar-logo-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(27,63,166,0.3);
}
.navbar-logo-icon svg { color: white; }
.navbar-logo-text .brand-name { font-size: 1.1rem; font-weight: 800; color: var(--primary); line-height: 1.1; }
.navbar-logo-text .brand-tagline { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.02em; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.88rem; font-weight: 500; color: var(--text-body);
  transition: var(--transition); position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--surface); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 2px; background: var(--primary); border-radius: 2px;
}

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  min-width: 220px; padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--transition);
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-item {
  display: block; padding: 9px 14px; border-radius: var(--radius-sm);
  font-size: 0.87rem; color: var(--text-body); transition: var(--transition);
}
.nav-dropdown-item:hover { background: var(--surface); color: var(--primary); }

.navbar-actions { display: flex; align-items: center; gap: 10px; }
.nav-report-btn {
  padding: 8px 16px; border-radius: var(--radius-full); font-size: 0.83rem; font-weight: 600;
  color: var(--primary); border: 1.5px solid var(--border); transition: var(--transition);
}
.nav-report-btn:hover { border-color: var(--primary); background: var(--surface); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Partner Banner ── */
.partner-banner {
  background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
  border-bottom: 1px solid #FDE68A; padding: 10px 0;
}
.partner-banner .container { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; text-align: center; }
.partner-banner-text { font-size: 0.85rem; font-weight: 600; color: #92400E; }
.partner-banner-text span { color: var(--primary); font-weight: 700; }
.partner-badge { background: #FCD34D; color: #78350F; padding: 3px 12px; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.04em; }

/* ── Hero Section ── */
.hero {
  background: linear-gradient(140deg, #0D47A1 0%, #1565C0 50%, #1976D2 100%);
  position: relative; overflow: visible; padding: 64px 0 0;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/* Aligned to start (top) so the form / search card aligns with the hero text */
.hero .container {
  position: relative; z-index: 1; display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: flex-start;
  padding-bottom: 56px;
}
.hero-wave { position: relative; z-index: 2; margin-top: -2px; line-height: 0; }
.hero-wave svg { display: block; width: 100%; height: 72px; }

/* ── Hero: Offer Strip ── */
.hero-offer-strip {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #FF6B35, #E64A19);
  color: white; padding: 6px 16px; border-radius: var(--radius-full);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.03em;
  margin-bottom: 14px;
  box-shadow: 0 4px 18px rgba(255,107,53,0.45);
  animation: offer-glow 2.5s ease infinite;
}
@keyframes offer-glow {
  0%,100% { box-shadow: 0 4px 16px rgba(255,107,53,0.40); }
  50%      { box-shadow: 0 4px 28px rgba(255,107,53,0.70); }
}
.offer-fire { display: inline-block; animation: fire-rock 0.9s ease infinite; }
@keyframes fire-rock { 0%,100%{transform:rotate(-8deg)} 50%{transform:rotate(8deg)} }

/* ── Hero: Content ── */
.hero-content { color: white; padding-top: 2px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 5px 14px; border-radius: var(--radius-full);
  font-size: 0.76rem; font-weight: 600; color: rgba(255,255,255,0.95);
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px;
}
.hero-tag-dot {
  width: 7px; height: 7px; background: #4ADE80; border-radius: 50%;
  box-shadow: 0 0 10px #4ADE80; flex-shrink: 0;
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.5)} }

.hero h1 {
  font-size: clamp(1.85rem, 3.6vw, 2.75rem); font-weight: 900;
  line-height: 1.18; margin-bottom: 16px; color: white;
  letter-spacing: -0.02em;
}
.hero h1 .h1-solution { color: #86EFAC; }
.hero h1 em { font-style: normal; color: #93C5FD; }

.hero-desc {
  font-size: 0.98rem; color: rgba(255,255,255,0.85);
  margin-bottom: 18px; max-width: 520px; line-height: 1.7;
}

/* ── Hero: Social Proof Row ── */
.hero-social-proof {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 24px; flex-wrap: wrap;
}
.hero-stars { display: flex; align-items: center; gap: 6px; }
.hero-stars .stars { color: #FCD34D; font-size: 1rem; letter-spacing: 1px; }
.hero-stars .rating-num { font-size: 1rem; font-weight: 800; color: white; }
.hero-stars .rating-count { font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.hero-proof-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.25); flex-shrink: 0; }
.hero-proof-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; color: rgba(255,255,255,0.85); font-weight: 500;
}
.hero-proof-item .proof-dot {
  width: 7px; height: 7px; background: #4ADE80; border-radius: 50%; flex-shrink: 0;
}

/* ── Hero: CTAs ── */
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }

.hero-cta-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; padding: 14px 26px; border-radius: var(--radius-full);
  font-size: 0.95rem; font-weight: 800; text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition); white-space: nowrap;
  border: 2px solid rgba(255,255,255,0.15);
}
.hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.60);
}
.hero-cta-primary .cta-free-badge {
  background: rgba(255,255,255,0.25); font-size: 0.68rem; font-weight: 800;
  padding: 2px 8px; border-radius: 999px; letter-spacing: 0.06em;
  white-space: nowrap;
}

.hero-cta-secondary {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.35);
  color: white; padding: 14px 24px; border-radius: var(--radius-full);
  font-size: 0.92rem; font-weight: 600; text-decoration: none;
  transition: var(--transition); white-space: nowrap;
  backdrop-filter: blur(8px);
}
.hero-cta-secondary:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

/* ── Hero: Micro-trust ── */
.hero-micro-trust {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; margin-bottom: 26px;
}
.hero-micro-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.78rem; color: rgba(255,255,255,0.75);
}
.hero-micro-item svg { color: #4ADE80; flex-shrink: 0; }

/* ── Hero: Stats Bar ── */
.hero-stats {
  display: flex; gap: 0;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md); overflow: hidden; flex-wrap: wrap;
}
.hero-stat {
  flex: 1; padding: 12px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12); min-width: 75px;
}
.hero-stat:last-child { border-right: none; }
.hero-stat .number { font-size: 1.45rem; font-weight: 900; color: white; line-height: 1; }
.hero-stat .label { font-size: 0.68rem; color: rgba(255,255,255,0.65); margin-top: 4px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }

/* ── Enhanced Hero Search & Booking Card ── */
.hero-search-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 24px 22px;
  box-shadow: 0 20px 50px -10px rgba(13, 71, 161, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.8);
  position: relative;
  transition: box-shadow 0.3s ease;
}
.hero-search-card::before {
  content: ''; position: absolute; inset: -2px; border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(147,197,253,0.4));
  z-index: -1;
}

/* Card Header Status */
.hero-card-topbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; gap: 8px; flex-wrap: wrap;
}
.hero-live-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: #ECFDF5; color: #065F46;
  border: 1px solid #A7F3D0;
  padding: 4px 10px; border-radius: 999px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.02em;
}
.live-pulse-dot {
  width: 7px; height: 7px; background: #10B981; border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
  animation: pulse-dot 1.8s ease infinite;
}
.hero-franchise-pill {
  font-size: 0.72rem; font-weight: 700; color: #1E40AF;
  background: #EFF6FF; border: 1px solid #BFDBFE;
  padding: 4px 10px; border-radius: 999px;
}

/* Hero Segmented Tabs */
.hero-card-tabs {
  display: grid; grid-template-columns: 1fr 1fr;
  background: #F1F5F9; padding: 4px; border-radius: 12px;
  margin-bottom: 18px; gap: 4px;
}
.hero-tab-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 12px; border: none; background: transparent;
  border-radius: 9px; font-size: 0.83rem; font-weight: 700;
  color: #64748B; cursor: pointer; transition: all 0.2s ease;
}
.hero-tab-btn:hover { color: var(--primary); }
.hero-tab-btn.active {
  background: #ffffff; color: var(--primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.hero-tab-pane { display: none; }
.hero-tab-pane.active { display: block; animation: heroFadeIn 0.25s ease forwards; }
@keyframes heroFadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }

/* Search Tab Elements */
.search-card-title {
  font-size: 0.95rem; font-weight: 800; color: var(--text-dark);
  margin-bottom: 12px; display: flex; align-items: center; gap: 6px;
}
.search-input-wrap { position: relative; margin-bottom: 12px; }
.search-input-wrap svg {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: #64748B; pointer-events: none;
}
.search-input {
  width: 100%; padding: 12px 14px 12px 42px;
  border: 1.5px solid #CBD5E1; border-radius: 12px;
  font-size: 0.92rem; color: var(--text-dark); transition: all 0.2s ease;
  background: #F8FAFC;
}
.search-input:focus {
  outline: none; border-color: #2563EB; background: #ffffff;
  box-shadow: 0 0 0 3.5px rgba(37,99,235,0.12);
}
.search-suggestions {
  position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: white; border: 1px solid #E2E8F0; border-radius: 12px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.12); z-index: 100;
  max-height: 260px; overflow-y: auto; display: none;
}
.search-suggestions.visible { display: block; }
.suggestion-item {
  padding: 10px 14px; cursor: pointer; display: flex; align-items: center;
  gap: 10px; transition: background 0.15s ease; border-bottom: 1px solid #F1F5F9;
}
.suggestion-item:last-child { border-bottom: none; }
.suggestion-item:hover { background: #F0FDF4; color: #166534; }
.suggestion-icon {
  width: 26px; height: 26px; background: #F8FAFC; border-radius: 6px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem;
}
.suggestion-name { font-size: 0.85rem; font-weight: 600; }
.suggestion-price {
  font-size: 0.82rem; font-weight: 800; color: #16A34A;
  margin-left: auto; background: #DCFCE7; padding: 2px 8px; border-radius: 6px;
}

.quick-tests-label {
  font-size: 0.74rem; color: #64748B; margin-bottom: 8px; font-weight: 600;
  display: flex; align-items: center; gap: 4px;
}
.quick-tests { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.quick-test-tag {
  padding: 5px 12px; background: #F8FAFC; border: 1px solid #E2E8F0;
  border-radius: 999px; font-size: 0.77rem; font-weight: 600; color: #1E293B;
  cursor: pointer; transition: all 0.2s ease;
}
.quick-test-tag:hover {
  background: #EFF6FF; color: #1D4ED8; border-color: #93C5FD;
  transform: translateY(-1px);
}
.quick-test-tag.highlight {
  background: #FEF3C7; color: #92400E; border-color: #FCD34D; font-weight: 700;
}

/* Quick Booking Form Tab */
.hero-form-group { margin-bottom: 12px; }
.hero-form-label {
  display: block; font-size: 0.76rem; font-weight: 700; color: #334155;
  margin-bottom: 5px;
}
.hero-input-wrap { position: relative; }
.hero-input-wrap svg {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: #94A3B8; pointer-events: none;
}
.hero-form-input {
  width: 100%; padding: 10px 12px 10px 38px;
  border: 1.5px solid #CBD5E1; border-radius: 10px;
  font-size: 0.88rem; color: var(--text-dark); background: #F8FAFC;
  transition: all 0.2s ease;
}
.hero-form-input:focus {
  outline: none; border-color: #2563EB; background: #ffffff;
  box-shadow: 0 0 0 3.5px rgba(37,99,235,0.12);
}
select.hero-form-input {
  appearance: auto; padding-left: 38px; cursor: pointer;
}
.hero-form-submit-btn {
  width: 100%; padding: 13px 18px;
  background: linear-gradient(135deg, #25D366 0%, #15803D 100%);
  color: white; border: none; border-radius: 12px;
  font-size: 0.92rem; font-weight: 800; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(37,211,102,0.38);
  transition: all 0.2s ease;
}
.hero-form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
}

/* Trust list inside hero card */
.hero-trust {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid #F1F5F9;
}
.trust-item { display: flex; align-items: center; gap: 9px; }
.trust-icon {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-icon-green { background: #ECFDF5; color: #059669; }
.trust-icon-blue { background: #EFF6FF; color: #2563EB; }
.trust-icon-orange { background: #FFFBEB; color: #D97706; }
.trust-text { font-size: 0.8rem; font-weight: 700; color: #1E293B; line-height: 1.25; }
.trust-subtext { font-size: 0.72rem; color: #64748B; }

.hero-card-whatsapp-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; margin-top: 14px; padding: 12px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white; border-radius: 12px; font-size: 0.88rem; font-weight: 800;
  text-decoration: none; box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: all 0.2s ease;
}
.hero-card-whatsapp-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.48);
}
.hero-card-subtext {
  font-size: 0.7rem; color: #64748B; text-align: center; margin-top: 7px;
}

/* ── Trust Bar ── */
.trust-bar { padding: 28px 0; border-bottom: 1px solid var(--border); }
.trust-bar .container { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 20px; }
.trust-bar-item { display: flex; align-items: center; gap: 12px; }
.trust-bar-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.trust-bar-icon-blue { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); color: var(--primary); }
.trust-bar-icon-green { background: linear-gradient(135deg, #ECFDF5, #D1FAE5); color: var(--accent-dark); }
.trust-bar-icon-teal { background: linear-gradient(135deg, #ECFEFF, #CFFAFE); color: #0E7490; }
.trust-bar-icon-orange { background: linear-gradient(135deg, #FFFBEB, #FEF3C7); color: #D97706; }
.trust-bar-text .title { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
.trust-bar-text .sub { font-size: 0.78rem; color: var(--text-muted); }
.trust-bar-divider { width: 1px; height: 40px; background: var(--border); }

/* ── Section Common ── */
.section { padding: 80px 0; }
.section-alt { background: linear-gradient(180deg, #F8FAFF 0%, #EFF6FF 100%); }
.section-dark { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); color: white; }
.section-header { text-align: center; margin-bottom: 48px; }

/* ── Packages Section ── */
.packages-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.pkg-tab {
  padding: 9px 22px; border-radius: var(--radius-full); font-size: 0.87rem; font-weight: 600;
  color: var(--text-muted); background: var(--bg-card); border: 1.5px solid var(--border);
  cursor: pointer; transition: var(--transition);
}
.pkg-tab.active, .pkg-tab:hover { background: var(--primary); color: white; border-color: var(--primary); box-shadow: 0 4px 15px rgba(27,63,166,0.3); }
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.package-card {
  background: white; border-radius: var(--radius-lg); border: 1.5px solid var(--border);
  padding: 28px; position: relative; overflow: hidden;
  transition: var(--transition); cursor: pointer;
}
.package-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(27,63,166,0.2); }
.package-card.popular { border-color: var(--primary); }
.popular-label {
  position: absolute; top: 12px; right: -24px;
  background: var(--warning); color: white; font-size: 0.7rem; font-weight: 700;
  padding: 4px 32px; transform: rotate(35deg); letter-spacing: 0.05em; text-transform: uppercase;
}
.package-icon { width: 52px; height: 52px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.package-icon-blue { background: linear-gradient(135deg, #EFF6FF, #DBEAFE); }
.package-icon-green { background: linear-gradient(135deg, #ECFDF5, #D1FAE5); }
.package-icon-purple { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); }
.package-icon-teal { background: linear-gradient(135deg, #ECFEFF, #CFFAFE); }
.package-icon-orange { background: linear-gradient(135deg, #FFFBEB, #FEF3C7); }
.package-icon-red { background: linear-gradient(135deg, #FFF1F2, #FFE4E6); }
.package-name { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.package-tests { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 14px; }
.package-tests span { background: var(--surface); color: var(--primary); padding: 2px 10px; border-radius: 20px; font-weight: 600; font-size: 0.78rem; }
.package-params { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.package-param { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-muted); }
.package-param svg { color: var(--accent); flex-shrink: 0; }
.package-pricing { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.package-price { font-size: 1.6rem; font-weight: 800; color: var(--primary); }
.package-price-original { font-size: 0.9rem; color: var(--text-light); text-decoration: line-through; }
.package-discount { font-size: 0.78rem; font-weight: 700; color: var(--accent-dark); background: #ECFDF5; padding: 2px 8px; border-radius: var(--radius-full); }
.package-actions { display: flex; gap: 8px; }
.package-actions .btn { flex: 1; font-size: 0.85rem; padding: 10px 16px; }

/* ── Popular Tests Grid ── */
.tests-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.test-card {
  background: white; border: 1.5px solid var(--border); border-radius: var(--radius-md);
  padding: 20px; display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center; transition: var(--transition); cursor: pointer;
}
.test-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(27,63,166,0.25); }
.test-card-icon { width: 52px; height: 52px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.test-card-name { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
.test-card-price { font-size: 0.82rem; color: var(--primary); font-weight: 600; }
.test-card-time { font-size: 0.75rem; color: var(--text-muted); }

/* ── Why Choose Us (Enhanced Premium UI & UX) ── */
.why-section {
  position: relative;
  background: linear-gradient(180deg, #F8FAFC 0%, #EFF6FF 100%);
  padding: 80px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
}
.why-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1.5px solid #E2E8F0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5px;
  background: linear-gradient(90deg, #1565C0, #22C55E);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: #93C5FD;
  box-shadow: 0 16px 36px rgba(21, 101, 192, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
}
.why-card:hover::before {
  opacity: 1;
}

.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.why-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.why-card:hover .why-icon-box {
  transform: scale(1.08) rotate(3deg);
}
.why-icon-box svg {
  width: 26px;
  height: 26px;
}

.why-badge-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.why-badge-blue { background: #EFF6FF; color: #1D4ED8; border: 1px solid #BFDBFE; }
.why-badge-green { background: #ECFDF5; color: #047857; border: 1px solid #A7F3D0; }
.why-badge-amber { background: #FFFBEB; color: #B45309; border: 1px solid #FDE68A; }
.why-badge-purple { background: #F5F3FF; color: #6D28D9; border: 1px solid #DDD6FE; }
.why-badge-rose { background: #FFF1F2; color: #BE123C; border: 1px solid #FECDD3; }
.why-badge-cyan { background: #ECFEFF; color: #0E7490; border: 1px solid #A5F3FC; }

.why-title {
  font-size: 1.12rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 10px;
  line-height: 1.35;
}
.why-desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

.why-feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1E293B;
  background: #F8FAFC;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #E2E8F0;
  margin-top: auto;
}
.why-feature-tag svg {
  color: #16A34A;
  flex-shrink: 0;
}

/* ── Why Trust Stats Bar ── */
.why-stats-bar {
  margin-top: 48px;
  background: #FFFFFF;
  border-radius: 20px;
  border: 1.5px solid #E2E8F0;
  padding: 24px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.why-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.why-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: #E2E8F0;
}
.why-stat-num {
  font-size: 1.75rem;
  font-weight: 900;
  color: #0D47A1;
  line-height: 1.1;
  margin-bottom: 4px;
}
.why-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .why-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .why-stat-item:nth-child(2)::after {
    display: none;
  }
}
@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .why-stats-bar {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
  }
  .why-stat-item::after {
    display: none !important;
  }
}

/* ── Google Business Profile (GMB) Location Cards ── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.gmb-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #dadce0;
  box-shadow: 0 4px 24px rgba(60, 64, 67, 0.08), 0 1px 3px rgba(60, 64, 67, 0.05);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.gmb-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(60, 64, 67, 0.16), 0 2px 6px rgba(60, 64, 67, 0.08);
  border-color: #1a73e8;
}

.gmb-map-wrap {
  height: 220px;
  width: 100%;
  background: #e8eaed;
  position: relative;
  overflow: hidden;
}

.gmb-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.gmb-verified-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(26, 115, 232, 0.25);
  padding: 5px 12px;
  border-radius: 99px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #1a73e8;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.gmb-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.gmb-category {
  font-size: 0.78rem;
  font-weight: 600;
  color: #5f6368;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.gmb-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #202124;
  line-height: 1.35;
  margin-bottom: 8px;
}

.gmb-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.gmb-score {
  font-size: 1.05rem;
  font-weight: 800;
  color: #e37400;
}

.gmb-stars {
  display: flex;
  gap: 2px;
  color: #fbbc04;
  font-size: 0.95rem;
}

.gmb-reviews-count {
  font-size: 0.83rem;
  color: #1a73e8;
  font-weight: 600;
  text-decoration: none;
}

.gmb-actions-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid #f1f3f4;
  border-bottom: 1px solid #f1f3f4;
  margin-bottom: 18px;
}

.gmb-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #1a73e8;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 8px 4px;
  border-radius: 10px;
  transition: background 0.15s ease, transform 0.15s ease;
}

.gmb-action-btn:hover {
  background: #f0f4f9;
  transform: translateY(-2px);
}

.gmb-action-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8f0fe;
  color: #1a73e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.gmb-action-btn.whatsapp-action {
  color: #15803d;
}
.gmb-action-btn.whatsapp-action .gmb-action-icon {
  background: #dcfce7;
  color: #16a34a;
}

/* GMB NAP Info List */
.gmb-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  flex: 1;
}

.gmb-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: #3c4043;
  line-height: 1.45;
}

.gmb-info-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #5f6368;
  margin-top: 2px;
}

.gmb-hours-status {
  color: #188038;
  font-weight: 700;
}

.gmb-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.gmb-tag {
  background: #f1f3f4;
  color: #3c4043;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}

.gmb-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f3f4;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gmb-footer-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a73e8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
}

.gmb-footer-link:hover {
  text-decoration: underline;
}

/* ── Home Collection (High-Converting Premium UI) ── */
.home-collection {
  background: radial-gradient(circle at 85% 15%, #1E40AF 0%, #0F2770 50%, #0A1628 100%);
  border-radius: 28px;
  padding: 56px 48px;
  color: white;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(10, 22, 40, 0.28);
}
.home-collection::before {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.12) 0%, transparent 70%);
  pointer-events: none;
}
.home-collection-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Left Content */
.home-col-header .section-tag {
  background: rgba(255, 255, 255, 0.12);
  color: #93C5FD;
  border-color: rgba(255, 255, 255, 0.2);
  margin-bottom: 16px;
}
.home-collection h2 {
  color: #FFFFFF;
  font-size: clamp(1.6rem, 3.2vw, 2.3rem);
  line-height: 1.25;
  margin-bottom: 14px;
}
.home-collection-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

/* Trust Perks Row */
.home-perks-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.home-perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #FFFFFF;
}
.home-perk-item svg {
  color: #4ADE80;
  flex-shrink: 0;
}

/* Step Timeline */
.collection-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.collection-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #1D4ED8);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.4);
}
.step-content .title {
  font-size: 0.92rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}
.step-content .desc {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Sector Chips */
.home-areas-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 18px;
}
.home-areas-title {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.home-areas-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.home-area-chip {
  background: rgba(255, 255, 255, 0.1);
  color: #E0F2FE;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.2s ease;
}
.home-area-chip:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

/* Right Column: High-Converting White Form Card */
.collection-form-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 34px 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  color: #0F172A;
  border: 1px solid #E2E8F0;
}
.col-form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #F1F5F9;
}
.col-form-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.col-instant-badge {
  font-size: 0.7rem;
  font-weight: 700;
  background: #ECFDF5;
  color: #047857;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid #A7F3D0;
}

.form-group {
  margin-bottom: 14px;
}
.form-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 5px;
  display: block;
}
.form-input-white {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  background: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  color: #0F172A;
  font-size: 0.9rem;
  font-family: inherit;
  transition: all 0.2s ease;
}
.form-input-white::placeholder {
  color: #94A3B8;
}
.form-input-white:focus {
  outline: none;
  border-color: #2563EB;
  background: #FFFFFF;
  box-shadow: 0 0 0 3.5px rgba(37, 99, 235, 0.12);
}
select.form-input-white {
  cursor: pointer;
}

.btn-book-home-wa {
  width: 100%;
  background: linear-gradient(135deg, #25D366 0%, #16A34A 100%);
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 13px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: all 0.2s ease;
  margin-top: 16px;
  cursor: pointer;
  border: none;
}
.btn-book-home-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  background: linear-gradient(135deg, #22C55E 0%, #15803D 100%);
}
.col-form-privacy {
  text-align: center;
  font-size: 0.74rem;
  color: #64748B;
  margin-top: 10px;
}

@media (max-width: 960px) {
  .home-collection-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .home-collection {
    padding: 40px 24px;
  }
}
@media (max-width: 600px) {
  .home-perks-row {
    grid-template-columns: 1fr;
  }
  .collection-form-card {
    padding: 24px 18px;
  }
}

/* ── Reviews / Testimonials ── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.review-card {
  background: white; border-radius: var(--radius-lg); padding: 28px; border: 1.5px solid var(--border);
  transition: var(--transition); position: relative;
}
.review-card::before { content: '"'; position: absolute; top: 16px; right: 20px; font-size: 4rem; color: var(--border); line-height: 1; font-family: Georgia, serif; }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review-stars .star { color: #F59E0B; font-size: 1rem; }
.review-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.reviewer-name { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }
.reviewer-meta { font-size: 0.75rem; color: var(--text-muted); }
.google-badge { display: flex; align-items: center; gap: 4px; font-size: 0.72rem; color: var(--text-light); margin-top: 2px; }
.rating-summary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: var(--radius-xl); padding: 40px; color: white; text-align: center;
}
.rating-big { font-size: 5rem; font-weight: 900; line-height: 1; }
.rating-stars { display: flex; justify-content: center; gap: 6px; font-size: 1.5rem; margin: 8px 0; }
.rating-label { font-size: 0.9rem; color: rgba(255,255,255,0.8); }
.rating-bars { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.rating-bar-row { display: flex; align-items: center; gap: 10px; }
.rating-bar-label { font-size: 0.8rem; color: rgba(255,255,255,0.75); min-width: 30px; text-align: right; }
.rating-bar-track { flex: 1; height: 6px; background: rgba(255,255,255,0.2); border-radius: 3px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: rgba(255,255,255,0.9); border-radius: 3px; }
.rating-bar-count { font-size: 0.78rem; color: rgba(255,255,255,0.6); min-width: 24px; }

/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.blog-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  border: 1.5px solid var(--border); transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-img { height: 200px; overflow: hidden; position: relative; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-category {
  position: absolute; top: 14px; left: 14px;
  background: var(--primary); color: white; padding: 4px 12px;
  border-radius: var(--radius-full); font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
}
.blog-body { padding: 24px; }
.blog-date { font-size: 0.77rem; color: var(--text-muted); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.blog-title { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.blog-title:hover { color: var(--primary); }
.blog-excerpt { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.blog-read-more { font-size: 0.83rem; font-weight: 600; color: var(--primary); display: flex; align-items: center; gap: 5px; }
.blog-read-more:hover { gap: 10px; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: white; border: 1.5px solid var(--border); border-radius: var(--radius-md); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--primary); }
.faq-question {
  padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; gap: 16px;
}
.faq-q-text { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--surface);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: var(--transition); color: var(--primary);
}
.faq-item.open .faq-icon { background: var(--primary); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ── CTA Strip ── */
.cta-strip {
  background: linear-gradient(135deg, #0F2770, #1B3FA6);
  padding: 60px 0; text-align: center;
}
.cta-strip h2 { color: white; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,0.75); margin-bottom: 32px; font-size: 1.05rem; }
.cta-strip-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ── */
.footer {
  background: #0A1628; color: rgba(255,255,255,0.7); padding-top: 60px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .logo-wrap { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-name { font-size: 1.15rem; font-weight: 800; color: white; }
.footer-brand-tagline { font-size: 0.72rem; color: rgba(255,255,255,0.45); }
.footer-desc { font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; max-width: 300px; }
.footer-partner {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 16px; border-radius: var(--radius-md); font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.8);
}
.footer-heading { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: white; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-link:hover { color: white; padding-left: 4px; }
.footer-nap { font-style: normal; }
.footer-nap-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-nap-item svg { color: var(--secondary); margin-top: 2px; flex-shrink: 0; }
.footer-nap-text { font-size: 0.84rem; line-height: 1.6; }
.footer-nap-text strong { color: white; display: block; font-size: 0.78rem; margin-bottom: 2px; }
.footer-bottom {
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 0.8rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-link { color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-bottom-link:hover { color: white; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); transition: var(--transition); font-size: 0.85rem;
}
.social-btn:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-2px); }

/* ── Floating WhatsApp ── */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 25px rgba(37,211,102,0.45);
  animation: fab-bounce 3s ease infinite;
  transition: var(--transition);
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(37,211,102,0.55); animation: none; }
.whatsapp-fab svg { color: white; width: 30px; height: 30px; }
.whatsapp-tooltip {
  position: absolute; right: 68px; white-space: nowrap;
  background: var(--text-dark); color: white; padding: 6px 14px;
  border-radius: var(--radius-sm); font-size: 0.8rem; font-weight: 600;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.whatsapp-fab:hover .whatsapp-tooltip { opacity: 1; visibility: visible; }
@keyframes fab-bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ── Scroll To Top ── */
.scroll-top {
  position: fixed; bottom: 96px; right: 28px; z-index: 998;
  width: 44px; height: 44px; border-radius: 50%;
  background: white; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); color: var(--primary);
  opacity: 0; visibility: hidden; transition: var(--transition); cursor: pointer;
}
.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-2px); }

/* ── Animations ── */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.6s ease; }
.fade-in.visible { opacity: 1; }

/* ── Notification Bar ── */
.notification-bar {
  background: linear-gradient(90deg, #22C55E, #16A34A);
  color: white; text-align: center; padding: 10px;
  font-size: 0.85rem; font-weight: 500; position: relative;
}
.notification-bar a { color: white; font-weight: 700; text-decoration: underline; margin-left: 6px; }
.notification-close { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); background: none; border: none; color: white; font-size: 1.2rem; cursor: pointer; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; gap: 40px; }
  .hero-search-card { max-width: 600px; }
  .home-collection-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-story-grid { grid-template-columns: 1fr !important; }
  .about-facts-card { max-width: 100% !important; }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  .partner-banner .partner-banner-text { font-size: 0.78rem; }
  .nav-menu { display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: white; flex-direction: column; align-items: flex-start; padding: 20px; gap: 4px; z-index: 999; overflow-y: auto; border-top: 1px solid var(--border); }
  .nav-menu.open { display: flex; }
  .hamburger { display: flex; }
  .hero { padding: 50px 0 50px; }
  .hero-stats { gap: 20px; }
  .section { padding: 56px 0; }
  .home-collection { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar-divider { display: none; }
  .trust-bar .container { justify-content: center; }
  .about-hero { padding: 48px 0 40px !important; }
  .about-stats-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .process-steps-grid { grid-template-columns: 1fr !important; }
  .compare-table-wrap { overflow-x: auto; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 16px; }
  .hero-stat .number { font-size: 1.4rem; }
  .packages-tabs { gap: 6px; }
  .cta-strip-actions { flex-direction: column; align-items: center; }
  .whatsapp-fab { bottom: 16px; right: 16px; }
  .scroll-top { bottom: 84px; right: 16px; }
  .about-stats-grid { grid-template-columns: 1fr !important; }
}

/* ══════════════════════════════════════════════
   ABOUT US PAGE STYLES
   ══════════════════════════════════════════════ */
.about-hero {
  background: linear-gradient(135deg, #071630 0%, #0D3278 50%, #1565C0 100%);
  color: white;
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.25) 0%, rgba(33, 150, 243, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.about-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}
.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}
.about-breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}
.about-breadcrumb a:hover {
  color: var(--secondary-light);
}
.about-hero-title {
  color: white;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  max-width: 900px;
}
.about-hero-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 780px;
  margin-bottom: 36px;
}
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.about-stat-box {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}
.about-stat-box:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.3);
}
.about-stat-num {
  font-size: 2rem;
  font-weight: 900;
  color: #64B5F6;
  line-height: 1.1;
  margin-bottom: 4px;
}
.about-stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* ── Story Section ── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}
.about-card-narrative {
  background: white;
  border-radius: var(--radius-xl);
  padding: 36px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.about-facts-card {
  background: linear-gradient(145deg, #0A1E42, #12377A);
  color: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.about-facts-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.25), transparent 70%);
  border-radius: 50%;
}
.about-fact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.about-fact-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.about-fact-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #64B5F6;
}

/* ── Feature Cards Grid ── */
.about-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.about-feature-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.about-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.about-feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}
.about-feature-card:hover .about-feature-icon-wrap {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  box-shadow: 0 6px 18px rgba(21, 101, 192, 0.3);
}

/* ── Process Steps Timeline ── */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.process-step-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.process-step-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.process-step-badge {
  position: absolute;
  top: -14px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
  box-shadow: 0 3px 10px rgba(21, 101, 192, 0.3);
}
.process-step-icon {
  font-size: 2rem;
  margin: 10px 0 12px;
  display: inline-block;
}

/* ── Accreditations Grid ── */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.cert-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
  transition: var(--transition);
}
.cert-card:hover {
  transform: translateY(-4px);
  border-color: #22C55E;
  box-shadow: var(--shadow-md);
}
.cert-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #ECFDF5;
  color: #15803D;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  border: 1px solid #BBF7D0;
}

/* ── Comparison Table ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border);
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.compare-table th {
  background: var(--surface);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.95rem;
}
.compare-table tr:last-child td {
  border-bottom: none;
}
.compare-table tr:hover td {
  background: rgba(227, 242, 253, 0.4);
}
.check-yes {
  color: #16A34A;
  font-weight: 800;
}
.check-no {
  color: #DC2626;
  font-weight: 800;
}

/* ── FAQ Accordion ── */
.about-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.about-faq-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.about-faq-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.about-faq-q {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.about-faq-q span {
  color: var(--primary);
  font-weight: 800;
}
.about-faq-a {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
}
