/* ═══════════════════════════════════════════════════════
   CarpoolPK Landing Page — Stylesheet
   ═══════════════════════════════════════════════════════ */

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

:root {
  --primary-50:  #eef9ff;
  --primary-100: #d1edff;
  --primary-200: #a8dbff;
  --primary-300: #6ec3ff;
  --primary-400: #2aa6ff;
  --primary-500: #0d8fee;
  --primary-600: #0d6fe1;
  --primary-700: #0a59b8;
  --primary-800: #144c8f;
  --primary-900: #0f3a6e;

  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  --green: #10b981;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 50px -8px rgba(0,0,0,0.12);
  --shadow-xl: 0 25px 60px -12px rgba(0,0,0,0.18);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

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

/* ── Gradient Text ─────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
  color: #fff;
  box-shadow: 0 4px 14px rgba(42, 166, 255, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 166, 255, 0.45);
}

.btn-outline {
  border-color: var(--gray-200);
  color: var(--gray-700);
  background: #fff;
}
.btn-outline:hover {
  border-color: var(--primary-400);
  color: var(--primary-600);
  background: var(--primary-50);
}

.btn-ghost {
  color: var(--gray-600);
  background: transparent;
}
.btn-ghost:hover { color: var(--primary-600); }

.btn-lg {
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-block { width: 100%; justify-content: center; }

/* ── Navbar ────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  border-bottom-color: var(--gray-100);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
}

.logo-icon { width: 36px; height: 36px; }

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-500);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--primary-600); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--primary-50) 0%, #fff 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.shape-1 {
  width: 600px; height: 600px;
  background: var(--primary-100);
  top: -200px; right: -100px;
}
.shape-2 {
  width: 400px; height: 400px;
  background: #d1fae5;
  bottom: -100px; left: -100px;
}
.shape-3 {
  width: 300px; height: 300px;
  background: var(--primary-200);
  top: 50%; left: 40%;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: var(--gray-900);
}
.stat-suffix {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-400);
}
.stat-label {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* ── Hero Phone Mockup ─────────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  z-index: 2;
}

.phone-frame {
  width: 300px;
  background: var(--gray-900);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.1) inset;
}

.phone-screen {
  background: #fff;
  border-radius: 26px;
  padding: 24px 16px;
  min-height: 500px;
}

.app-header {
  margin-bottom: 20px;
}
.app-greeting {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
}
.app-subtitle {
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 4px;
}

.app-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--gray-50);
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid var(--gray-100);
}
.search-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.search-dot.green { background: var(--green); }
.search-input {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}

.app-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 10px;
  transition: all 0.2s;
}
.app-card:hover {
  border-color: var(--primary-200);
  background: var(--primary-50);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.driver-avatar {
  width: 40px; height: 40px;
  background: var(--primary-400);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.driver-info { flex: 1; }
.driver-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
}
.driver-rating {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 2px;
}

.ride-price {
  font-size: 16px;
  font-weight: 700;
  color: var(--green);
}

.card-route { margin-top: 8px; }
.route-time {
  font-size: 12px;
  color: var(--gray-500);
}

/* ── Floating Cards ────────────────────────────────── */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  border: 1px solid var(--gray-100);
}
.fc-label {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
}
.fc-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
}

.card-savings {
  bottom: 120px;
  left: -20px;
  animation: floatCard 4s ease-in-out infinite;
}
.card-co2 {
  top: 80px;
  right: -20px;
  animation: floatCard 4s ease-in-out infinite 1s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Trusted By ────────────────────────────────────── */
.trusted-by {
  padding: 48px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}

.trusted-label {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.city-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.city-tag {
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: all 0.2s;
}
.city-tag:hover {
  border-color: var(--primary-300);
  background: var(--primary-50);
  color: var(--primary-600);
}

/* ── Section Header ────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--primary-50);
  color: var(--primary-600);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── Features ──────────────────────────────────────── */
.features {
  padding: 100px 0;
}

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

.feature-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  background: #fff;
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── How It Works ──────────────────────────────────── */
.how-it-works {
  padding: 100px 0;
  background: var(--gray-50);
}

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

.step {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
  color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.6;
}

.step-visual {
  display: flex;
  justify-content: center;
}

.step-connector {
  display: flex;
  justify-content: center;
  padding: 16px 0;
  opacity: 0.4;
}

/* Step mini-visuals */
.mini-form, .mini-map, .mini-receipt {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  width: 100%;
  max-width: 240px;
}

.form-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: var(--gray-50);
  border-radius: 8px;
  font-size: 14px;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.field-icon { font-size: 16px; }
.form-check {
  text-align: center;
  color: var(--green);
  font-weight: 700;
  font-size: 14px;
  padding-top: 4px;
}

.map-route {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 12px;
}
.map-pin {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.map-pin.start { background: var(--green); }
.map-pin.end { background: var(--primary-400); }
.map-line {
  flex: 1;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--primary-400));
  border-radius: 3px;
}
.map-label { font-size: 14px; font-weight: 600; color: var(--gray-800); }
.map-detail { font-size: 12px; color: var(--gray-400); margin-top: 4px; }

.receipt-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--gray-600);
  padding: 4px 0;
}
.receipt-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 8px 0;
}
.receipt-total { font-weight: 700; color: var(--gray-900); }
.text-green { color: var(--green); font-weight: 700; }
.receipt-savings {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-600);
  background: var(--primary-50);
  padding: 8px;
  border-radius: 8px;
  margin-top: 10px;
}

/* ── Safety ────────────────────────────────────────── */
.safety {
  padding: 100px 0;
}

.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.safety-content .section-tag { margin-bottom: 16px; }
.safety-content h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 16px;
}
.safety-content > p {
  font-size: 17px;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.safety-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.safety-item {
  display: flex;
  gap: 14px;
}

.safety-check {
  width: 36px; height: 36px;
  background: #ecfdf5;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.safety-item strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 4px;
}
.safety-item p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
}

.safety-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.shield-container {
  width: 280px;
  animation: floatShield 5s ease-in-out infinite;
}

@keyframes floatShield {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.shield-svg { width: 100%; height: auto; }

/* ── Testimonials ──────────────────────────────────── */
.testimonials {
  padding: 100px 0;
  background: var(--gray-50);
}

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

.testimonial-card {
  background: #fff;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card > p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px; height: 44px;
  background: var(--primary-400);
  color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}

.testimonial-author strong {
  display: block;
  font-size: 15px;
  color: var(--gray-800);
}
.testimonial-author span {
  font-size: 13px;
  color: var(--gray-400);
}

/* ── Pricing ───────────────────────────────────────── */
.pricing {
  padding: 100px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 750px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-featured {
  border-color: var(--primary-400);
  box-shadow: 0 0 0 1px var(--primary-400), var(--shadow-md);
  background: linear-gradient(180deg, var(--primary-50) 0%, #fff 40%);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
  color: #fff;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
}

.pricing-header {
  margin-bottom: 20px;
}
.pricing-header h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
}
.pricing-header p {
  font-size: 14px;
  color: var(--gray-400);
  margin-top: 4px;
}

.pricing-price {
  margin-bottom: 28px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--gray-500);
}
.price-amount {
  font-size: 52px;
  font-weight: 900;
  color: var(--gray-900);
  line-height: 1;
}
.price-period {
  font-size: 15px;
  color: var(--gray-400);
  margin-left: 4px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--gray-600);
}

/* ── Download CTA ──────────────────────────────────── */
.download-cta {
  padding: 100px 0;
  background: var(--gray-50);
}

.cta-card {
  background: linear-gradient(135deg, var(--gray-900) 0%, #1a2744 100%);
  border-radius: var(--radius-xl);
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-content .gradient-text {
  background: linear-gradient(135deg, #60cdff, var(--primary-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-content p {
  font-size: 17px;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: #fff;
  transition: all 0.25s;
}
.store-btn:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.store-label {
  font-size: 11px;
  opacity: 0.7;
  display: block;
}
.store-name {
  font-size: 17px;
  font-weight: 700;
  display: block;
}

.cta-visual {
  display: flex;
  justify-content: center;
}

.cta-phone {
  width: 280px;
  background: var(--gray-800);
  border-radius: 28px;
  padding: 10px;
  box-shadow: var(--shadow-xl);
}
.cta-screen {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}

.cta-notification {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--gray-50);
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid var(--gray-100);
  transition: all 0.2s;
}
.cta-notification:hover {
  background: var(--primary-50);
  border-color: var(--primary-200);
}
.notif-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.cta-notification strong {
  font-size: 14px;
  color: var(--gray-800);
  display: block;
}
.cta-notification p {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}

/* ── Footer ────────────────────────────────────────── */
.footer {
  padding: 64px 0 0;
  background: var(--gray-900);
  color: var(--gray-300);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 16px;
}
.footer-brand > p {
  font-size: 15px;
  color: var(--gray-400);
  line-height: 1.6;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-links a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-400);
  transition: all 0.2s;
}
.social-links a:hover {
  background: var(--primary-600);
  color: #fff;
}

.footer-links h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 14px;
  color: var(--gray-400);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary-400); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 14px;
  color: var(--gray-500);
}

/* ═══════════════════════════════════════════════════════
   Animations
   ═══════════════════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="fade-left"] {
  transform: translateX(30px);
}
[data-animate].visible {
  opacity: 1;
  transform: translate(0);
}

/* ═══════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 44px; }
  .section-header h2, .safety-content h2, .cta-content h2 { font-size: 36px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .safety-grid { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0; right: 0;
    background: #fff;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    gap: 16px;
  }

  .nav-actions.active {
    display: flex;
    position: absolute;
    top: calc(72px + var(--nav-links-height, 200px));
    left: 0; right: 0;
    background: #fff;
    padding: 0 24px 20px;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
  }

  .hero { padding: 120px 0 60px; }
  .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content h1 { font-size: 38px; }
  .hero-subtitle { margin: 0 auto 32px; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }

  .hero-visual { margin-top: 20px; }
  .floating-card { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .step {
    grid-template-columns: auto 1fr;
    gap: 16px;
  }
  .step-visual { display: none; }

  .safety-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .safety-visual { order: -1; }
  .shield-container { width: 200px; }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .cta-card {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    text-align: center;
  }
  .cta-buttons { justify-content: center; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 32px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { width: 40px; height: 1px; }
  .phone-frame { width: 260px; }
  .section-header h2, .safety-content h2, .cta-content h2 { font-size: 30px; }
  .cta-card { padding: 32px 20px; }
  .store-btn { padding: 10px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .search-widget { flex-direction: column; }
  .sw-divider { width: 100%; height: 1px; }
}

/* ═══════════ ROUTE SEARCH WIDGET ═══════════ */
.hero-search-widget {
  margin-top: 32px;
}

.search-widget {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.sw-field {
  flex: 1;
  padding: 14px 20px;
}

.sw-field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  margin-bottom: 4px;
}

.sw-select, .sw-input {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-900);
  outline: none;
  font-family: inherit;
  cursor: pointer;
}

.sw-divider {
  width: 1px;
  background: var(--gray-200);
}

.sw-btn {
  white-space: nowrap;
  border-radius: 0 14px 14px 0;
  padding: 14px 28px;
}

/* ═══════════ TRUST BADGES ═══════════ */
.trust-badges {
  padding: 64px 0;
  background: var(--gray-50);
}

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

.trust-badge {
  padding: 24px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--gray-200);
  transition: transform 0.2s, box-shadow 0.2s;
}

.trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.badge-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.trust-badge h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--gray-900);
}

.trust-badge p {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .badges-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════ FAQ ═══════════ */
.faq {
  padding: 96px 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  text-align: left;
}

.faq-question:hover {
  color: var(--primary-400);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--gray-400);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary-400);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ═══════════ RTL / URDU ═══════════ */
html[dir="rtl"] {
  font-family: 'Noto Nastaliq Urdu', serif;
}

html[dir="rtl"] .nav-links,
html[dir="rtl"] .hero-cta,
html[dir="rtl"] .nav-actions {
  flex-direction: row-reverse;
}

.lang-toggle {
  font-weight: 600;
  padding: 6px 12px;
}
