/* ===== MOTA911 — PROFESSIONAL CLEAN STYLESHEET ===== */

:root {
  --primary: #D4220A;
  --primary-dark: #A81B08;
  --primary-light: #FEF2F0;
  --dark: #0F1117;
  --dark-2: #1A1D27;
  --mid: #3D4152;
  --muted: #6B7280;
  --border: #E5E7EB;
  --bg: #FFFFFF;
  --bg-light: #F9FAFB;
  --bg-dark: #0F1117;
  --accent: #F97316;
  --green: #16A34A;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Manrope', sans-serif;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--muted); line-height: 1.75; }

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-light { background: var(--bg-light); }
.section-dark { background: var(--bg-dark); }
.section-accent { background: var(--primary-light); border-top: 1px solid #FECACA; border-bottom: 1px solid #FECACA; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { color: var(--dark); }
.section-header p { max-width: 600px; margin: 12px auto 0; }
.section-header.light h2 { color: #fff; }
.section-header.light p { color: rgba(255,255,255,0.7); }
.section-header.light .section-eyebrow { color: var(--primary); }

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(212,34,10,0.3); }
.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: 12px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  color: var(--dark);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.logo span { color: var(--primary); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--primary); }
.nav-cta { margin-left: 16px; padding: 10px 20px; font-size: 14px; }
.hamburger { display: none; background: none; border: none; font-size: 22px; cursor: pointer; color: var(--dark); margin-left: auto; }
.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 12px 24px 16px; border-top: 1px solid var(--border); background: #fff; }
.mobile-menu a { padding: 10px 0; font-size: 15px; font-weight: 500; color: var(--mid); text-decoration: none; border-bottom: 1px solid var(--border); }
.mobile-menu a:last-child { border: none; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero { padding: 80px 0 90px; background: linear-gradient(160deg, #fff 60%, #FEF2F0 100%); }
.hero-inner { max-width: 760px; }
.hero-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid #FECACA;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.hero-title { color: var(--dark); margin-bottom: 20px; }
.hero-title span { color: var(--primary); }
.hero-sub { font-size: 18px; max-width: 600px; margin-bottom: 36px; color: var(--mid); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--mid);
}

/* ===== PAGE HEROES ===== */
.page-hero {
  padding: 60px 0 56px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { margin: 12px 0 16px; }
.page-hero p { font-size: 17px; max-width: 560px; }
.page-hero.urgent { background: linear-gradient(135deg, #1a0505 0%, #3d0c0c 100%); }
.page-hero.urgent h1 { color: #fff; }
.page-hero.urgent p { color: rgba(255,255,255,0.75); }
.page-hero.urgent .section-eyebrow { color: #F87171; }
.page-hero.mechanic-hero { background: linear-gradient(135deg, #0f1117 0%, #1a2035 100%); }
.page-hero.mechanic-hero h1 { color: #fff; }
.page-hero.mechanic-hero p { color: rgba(255,255,255,0.75); }
.page-hero.mechanic-hero .section-eyebrow { color: var(--accent); }

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
}
.step-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
  margin-bottom: 16px;
  -webkit-text-stroke: 2px var(--primary);
  color: transparent;
}
.step-card h3 { margin-bottom: 8px; color: var(--dark); }

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon { font-size: 28px; margin-bottom: 16px; }
.feature-card h3 { margin-bottom: 8px; color: var(--dark); }

/* ===== ZONES ===== */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}
.zone-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}
.zone-soon {
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  font-size: 14px;
}

/* ===== MECHANIC CTA SPLIT ===== */
.split-cta { display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center; }
.split-text h2 { margin-bottom: 12px; }
.split-text p { margin-bottom: 20px; }
.mechanic-perks { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.mechanic-perks li { font-size: 15px; font-weight: 500; color: var(--mid); }

/* ===== FORMS ===== */
.form-container { max-width: 720px; margin: 0 auto; }
.rescue-form { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); }
.form-section-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 28px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.form-section-title:first-child { margin-top: 0; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: var(--bg);
  transition: border-color 0.15s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(212,34,10,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field-note { font-size: 13px; color: var(--muted); margin-top: 6px; }
.form-note { font-size: 13px; color: var(--muted); text-align: center; margin-top: 12px; }
.location-btn { width: 100%; justify-content: center; margin-top: 4px; }

.urgency-options { display: flex; gap: 12px; flex-wrap: wrap; }
.urgency-option {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s;
}
.urgency-option:has(input:checked) { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }
.urgency-option input { display: none; }

.checkbox-group { display: flex; flex-wrap: wrap; gap: 10px; }
.check-option {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s;
}
.check-option:has(input:checked) { border-color: var(--primary); background: var(--primary-light); color: var(--primary); }
.check-option input { display: none; }

/* ===== EMERGENCY BAR ===== */
.emergency-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  background: #FFF7ED;
  border: 1px solid #FED7AA;
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-bottom: 28px;
  font-size: 14px;
  font-weight: 500;
  color: #92400E;
}
.emergency-bar a { color: var(--primary); font-weight: 700; text-decoration: none; }

/* ===== TIMELINE ===== */
.timeline { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.timeline-item:last-child { border-bottom: none; }
.timeline-num {
  font-size: 28px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px var(--primary);
  line-height: 1.1;
  padding-top: 4px;
}
.timeline-content h3 { color: var(--dark); margin-bottom: 8px; font-size: 1.15rem; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
}
.pricing-card h3 { margin-bottom: 12px; color: var(--dark); }
.price { font-size: 1.8rem; font-weight: 800; color: var(--primary); margin-bottom: 12px; }
.pricing-card p { font-size: 14px; }

/* ===== CONTACT ===== */
.contact-grid { max-width: 900px; margin: 0 auto; }
.contact-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.contact-card {
  display: block;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.contact-icon { font-size: 28px; margin-bottom: 14px; }
.contact-card h3 { color: var(--dark); margin-bottom: 8px; }
.contact-card p { font-size: 14px; margin-bottom: 12px; }
.contact-link { font-size: 14px; font-weight: 600; color: var(--primary); }

/* ===== CENTER CTA ===== */
.center-cta { text-align: center; }
.cta-section { background: var(--bg-light); }
.cta-section h2 { margin-bottom: 12px; }
.cta-section p { margin-bottom: 28px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr 2fr; gap: 64px; padding-bottom: 48px; }
.footer-brand .logo { color: #fff; }
.footer-brand p { margin-top: 12px; font-size: 14px; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,0.55); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); margin: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: block; }
  .hero { padding: 48px 0 60px; }
  .section { padding: 56px 0; }
  .split-cta { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .rescue-form { padding: 24px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .urgency-options { flex-direction: column; }
}

@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
  .timeline-item { grid-template-columns: 48px 1fr; gap: 16px; }
}

/* ===== PWA ===== */
body { padding-bottom: 80px; }
@media (display-mode: standalone) {
  body { padding-bottom: 0; }
  #pwa-install-banner { display: none !important; }
}

/* ===== HERO CAROUSEL ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.hero-bg-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.35) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  padding: 100px 24px 80px;
}
.hero-badge {
  display: inline-block;
  background: rgba(212,34,10,0.25);
  color: #FCA5A5;
  border: 1px solid rgba(212,34,10,0.5);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.hero-title { color: #fff; margin-bottom: 20px; }
.hero-title span { color: #FF6B6B; }
.hero-sub { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 560px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-glass {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-glass:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.5); color: #fff; }
.pulse-btn { animation: pulse 2.5s infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(212,34,10,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(212,34,10,0); }
}
.carousel-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.dot.active { background: #fff; width: 24px; border-radius: 4px; }

/* ===== ETA CARD ===== */
.eta-card {
  background: rgba(255,255,255,0.97);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
}
.eta-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
  font-weight: 600;
  color: var(--mid);
}
.eta-live-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: livePulse 1.5s infinite;
}
@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.25); }
  50% { box-shadow: 0 0 0 7px rgba(34,197,94,0.08); }
}
.eta-mechanic-list { padding: 8px 0; }
.eta-mechanic {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.15s;
  cursor: pointer;
}
.eta-mechanic:last-child { border-bottom: none; }
.eta-mechanic:hover { background: #fafafa; }
.active-mechanic { background: #fff8f8; }
.mech-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
  position: relative; flex-shrink: 0;
}
.verified-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid #22c55e;
}
.mech-info { flex: 1; min-width: 0; }
.mech-info strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); }
.mech-info span { font-size: 12px; color: var(--muted); }
.mech-eta { text-align: center; flex-shrink: 0; }
.eta-mins {
  font-size: 26px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  transition: all 0.4s ease;
}
.eta-label { font-size: 11px; color: var(--muted); font-weight: 500; }
.eta-cta-btn {
  display: block;
  text-align: center;
  padding: 16px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: background 0.15s;
}
.eta-cta-btn:hover { background: var(--primary-dark); }

/* ===== TRACKING SECTION ===== */
.tracking-section { background: var(--bg); }
.tracking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.tracking-text h2 { margin-bottom: 16px; }
.tracking-text p { margin-bottom: 28px; }
.tracking-features { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.tracking-features li { display: flex; gap: 16px; align-items: flex-start; }
.tf-icon {
  width: 40px; height: 40px;
  background: var(--primary-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.tracking-features strong { display: block; font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.tracking-features span { font-size: 13px; color: var(--muted); }

/* ===== MOCK MAP ===== */
.mock-map-container { position: relative; }
.mock-map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.15);
  position: relative;
  background: #e8ede0;
}
.map-grid { width: 100%; display: block; }
.map-eta-pill {
  position: absolute;
  top: 16px; left: 16px; right: 16px;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.map-eta-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 12px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.map-eta-info { flex: 1; }
.map-eta-info strong { display: block; font-size: 13px; font-weight: 700; color: var(--dark); }
.map-eta-info span { font-size: 12px; color: var(--primary); font-weight: 600; }
.map-eta-ring { position: relative; width: 40px; height: 40px; flex-shrink: 0; }
.ring-svg { width: 40px; height: 40px; }
#ringNum {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: var(--primary);
}
.map-mechanic-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: white;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f0f0f0;
}
.mmb-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #1a3a2a;
  color: white;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mmb-info { flex: 1; }
.mmb-name { font-size: 13px; font-weight: 700; color: var(--dark); display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.verified-badge {
  font-size: 11px; font-weight: 600;
  background: #dcfce7; color: #15803d;
  padding: 2px 8px; border-radius: 20px;
}
.mmb-stars { font-size: 12px; color: #f59e0b; }
.mmb-stars span { color: var(--muted); margin-left: 4px; }
.mmb-call {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #dcfce7;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; text-decoration: none;
  flex-shrink: 0;
}

/* ===== VISUAL PHOTO CAROUSEL ===== */
.visual-carousel-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.visual-carousel-track { position: relative; height: 480px; }
.vis-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.vis-slide.active { opacity: 1; }
.vis-img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
}
.vis-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
}
.vis-tag {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.vis-caption p { color: #fff; font-size: 16px; font-weight: 600; margin: 0; line-height: 1.4; }
.carousel-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: all 0.2s;
  z-index: 5;
  color: var(--dark);
}
.carousel-nav:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.carousel-nav.prev { left: 16px; }
.carousel-nav.next { right: 16px; }
.vis-dots {
  position: absolute;
  bottom: 16px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px;
  z-index: 5;
}
.vis-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none; cursor: pointer;
  transition: all 0.3s; padding: 0;
}
.vis-dot.active { background: #fff; width: 20px; border-radius: 3px; }

/* ===== ZONES GRID (10 areas) ===== */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.zone-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: background 0.2s, transform 0.2s;
  cursor: default;
}
.zone-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.zone-icon { font-size: 20px; margin-bottom: 8px; }
.zone-name { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.zone-stat { font-size: 12px; color: rgba(255,255,255,0.45); font-weight: 500; }

/* ===== RESPONSIVE UPDATES ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 80px 24px 60px; }
  .eta-card { max-width: 480px; }
  .tracking-grid { grid-template-columns: 1fr; gap: 40px; }
  .zones-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hero { min-height: 100svh; }
  .hero-inner { padding: 80px 20px 60px; }
  .visual-carousel-track { height: 320px; }
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .map-grid { height: 260px; }
}
@media (max-width: 480px) {
  .zones-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
}
