/* ============================================================
   ROOT & DESIGN TOKENS
   ============================================================ */
:root {
  --orange:        #FF6B00;
  --orange-light:  #FF8533;
  --dark:          #FFFFFF;       /* was #1A1A1A — now white */
  --darkest:       #F4F4F4;       /* was #0A0A0A — now light grey bg */
  --dark-card:     #FFFFFF;       /* was #141414 — now white card */
  --dark-border:   #E0E0E0;       /* was #2A2A2A — now light border */
  --text-primary:  #1A1A1A;       /* was #F0F0F0 — now near-black */
  --text-secondary:#555555;       /* was #A0A0A0 — now medium grey */
  --text-muted:    #888888;       /* was #666666 */
  --white:         #FFFFFF;

  --font:          'Public Sans', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 60px rgba(255,107,0,0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--darkest);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.section-padding { padding: 100px 0; }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.text-gradient {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.25);
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  box-shadow: 0 4px 24px rgba(255,107,0,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,107,0,0.5);
}

.btn-ghost {
  background: rgba(0,0,0,0.04);
  color: #1A1A1A;
  border: 1px solid var(--dark-border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

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

.btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--dark-border);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-img {
  height: 120px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 180px;
  margin-bottom: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--orange);
  background: rgba(255,107,0,0.06);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: 0 0 20px rgba(255,107,0,0.3);
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(255,107,0,0.5);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #FFFFFF;
  padding: 120px 0 80px;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,107,0,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,107,0,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: rgba(255,107,0,0.08);
  top: -100px; left: -200px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: rgba(255,133,51,0.06);
  bottom: -50px; right: -100px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #059669; /* Emerald 600 */
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
  animation: fadeDown 0.6s ease both;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #10b981; /* Emerald 500 */
  border-radius: 50%;
  animation: livePulse 2s infinite;
}

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

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #1A1A1A;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: #F8F8F8;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  animation: fadeUp 0.7s 0.4s ease both;
  width: fit-content;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.stat-number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat-label { color: #555; }
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--dark-border);
  flex-shrink: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s infinite;
}

.hero-google-review {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  margin-top: 32px;
  width: fit-content;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  animation: fadeUp 0.7s 0.5s ease both;
}
.hgr-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #F8F9FA;
  border-radius: 50%;
  flex-shrink: 0;
}
.hgr-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
  margin-bottom: 2px;
}
.hgr-rating {
  font-weight: 800;
  color: #1A1A1A;
  margin-right: 4px;
}
.hgr-text {
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
}

/* ============================================================
   VAN ANIMATION SCENE
   ============================================================ */
.hero-van-scene {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
/* On white bg, tint the van scene with a very light orange wash */
.hero-van-scene::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 80%, rgba(255,107,0,0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Road */
.van-road {
  position: absolute;
  bottom: 0; left: -10%; right: -10%;
  height: 40px;
  background: linear-gradient(180deg, rgba(230,230,230,0) 0%, rgba(220,220,220,0.7) 60%, rgba(210,210,210,0.9) 100%);
  border-top: 1px solid rgba(255,107,0,0.2);
  overflow: hidden;
}
.road-line {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  width: 80px;
  background: rgba(255,107,0,0.5);
  border-radius: 2px;
  animation: roadDash 0.5s linear infinite;
}
.road-line:nth-child(1) { left: 5%; animation-delay: 0s; }
.road-line:nth-child(2) { left: 38%; animation-delay: -0.17s; }
.road-line:nth-child(3) { left: 71%; animation-delay: -0.34s; }

@keyframes roadDash {
  0%   { transform: translateY(-50%) translateX(0); opacity: 1; }
  100% { transform: translateY(-50%) translateX(-33vw); opacity: 0.3; }
}

/* Speed streaks */
.speed-streaks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.streak {
  position: absolute;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,107,0,0.5), transparent);
  animation: streakMove 0.6s linear infinite;
}
.streak-1 { top: 30%; width: 200px; animation-delay: 0s;    animation-duration: 0.55s; }
.streak-2 { top: 42%; width: 140px; animation-delay: -0.12s; animation-duration: 0.45s; }
.streak-3 { top: 52%; width: 260px; animation-delay: -0.25s; animation-duration: 0.60s; }
.streak-4 { top: 60%; width: 120px; animation-delay: -0.08s; animation-duration: 0.50s; }
.streak-5 { top: 22%; width: 180px; animation-delay: -0.35s; animation-duration: 0.65s; }
.streak-6 { top: 68%; width: 90px;  animation-delay: -0.18s; animation-duration: 0.40s; }

@keyframes streakMove {
  0%   { transform: translateX(110%); opacity: 0; }
  20%  { opacity: 0.8; }
  80%  { opacity: 0.6; }
  100% { transform: translateX(-10%); opacity: 0; }
}

/* Van wrapper — smooth entrance slide-in then gentle float */
.van-wrapper {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  z-index: 4;
  animation: vanSlideIn 1s cubic-bezier(0.22, 1, 0.36, 1) both,
             vanGentleFloat 5s ease-in-out 1s infinite;
}

.van-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.18))
          drop-shadow(0 0 40px rgba(255,107,0,0.12));
}

/* Slide in from right on load */
@keyframes vanSlideIn {
  from { opacity: 0; transform: translateX(calc(-50% + 120px)); }
  to   { opacity: 1; transform: translateX(-50%); }
}

/* Gentle up-down hover once settled */
@keyframes vanGentleFloat {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

/* Ground glow under van */
.van-ground-glow {
  position: absolute;
  bottom: -12px;
  left: 15%;
  right: 15%;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(255,107,0,0.3) 0%, transparent 70%);
  filter: blur(8px);
  animation: glowBreath 5s ease-in-out 1s infinite;
}

@keyframes glowBreath {
  0%, 100% { opacity: 0.5; transform: scaleX(0.85); }
  50%       { opacity: 1;   transform: scaleX(1.1); }
}

/* Headlight beam */
.headlight-beam {
  position: absolute;
  right: 2%;
  top: 38%;
  width: 180px;
  height: 60px;
  background: linear-gradient(90deg, rgba(255,200,100,0.6) 0%, rgba(255,150,50,0.2) 40%, transparent 100%);
  clip-path: polygon(0 40%, 100% 0%, 100% 100%, 0 60%);
  filter: blur(3px);
  z-index: 3;
  animation: beamFlicker 0.2s ease-in-out infinite alternate;
}

@keyframes beamFlicker {
  from { opacity: 0.8; }
  to   { opacity: 1; }
}

/* Dust particles */
.dust-particles {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 45%;
  height: 40px;
  pointer-events: none;
  z-index: 3;
}
.dust {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,107,0,0.25);
  animation: dustFloat linear infinite;
}
.d1 { width: 6px;  height: 6px;  left: 80%; bottom: 4px;  animation-duration: 1.2s; animation-delay: 0s; }
.d2 { width: 4px;  height: 4px;  left: 70%; bottom: 10px; animation-duration: 0.9s; animation-delay: -0.3s; }
.d3 { width: 8px;  height: 8px;  left: 90%; bottom: 2px;  animation-duration: 1.5s; animation-delay: -0.5s; }
.d4 { width: 3px;  height: 3px;  left: 60%; bottom: 14px; animation-duration: 1.0s; animation-delay: -0.7s; }
.d5 { width: 5px;  height: 5px;  left: 85%; bottom: 8px;  animation-duration: 1.3s; animation-delay: -0.2s; }

@keyframes dustFloat {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.8; }
  100% { transform: translate(-80px, -30px) scale(0.2); opacity: 0; }
}

/* Live Status Pill */
.van-status-pill {
  position: absolute;
  bottom: 0px;
  left: 50%;
  background: rgba(20, 24, 28, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 30px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  transform: translateX(-50%) translateY(20px);
  animation: slideUpPill 0.6s ease forwards 1s;
  opacity: 0;
  width: max-content;
}
.status-text {
  color: #fff;
  font-size: 0.85rem;
}
.status-text strong {
  color: var(--primary);
}
.status-pulse {
  width: 10px;
  height: 10px;
  background-color: #22c55e; /* Green */
  border-radius: 50%;
  position: relative;
}
.status-pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #22c55e;
  animation: pulseRing 1.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes slideUpPill {
  to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: #FF6B00;
  border-top: none;
  border-bottom: none;
  padding: 18px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #FFFFFF;
}
.trust-icon { font-size: 1rem; }
.trust-sep { color: rgba(255,255,255,0.4); font-size: 1.2rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: #F8F8F8; }

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

.service-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  transition: var(--transition);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.service-card:hover {
  border-color: rgba(255,107,0,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,107,0,0.12);
}
.service-card:hover .card-accent-line { width: 100%; }

.card-accent-line {
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 3px 3px 0 0;
  transition: width 0.4s ease;
}

.featured-card {
  background: linear-gradient(145deg, #fff5ee, #FFFFFF);
  border-color: rgba(255,107,0,0.4);
  box-shadow: 0 4px 24px rgba(255,107,0,0.12);
}
.featured-card .card-accent-line { width: 100%; }

.featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 999px;
}

.service-icon-wrap {
  width: 56px; height: 56px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: rgba(255,107,0,0.18);
  transform: scale(1.05);
}
.service-icon { font-size: 1.5rem; }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 18px;
}
.service-features {
  margin-bottom: 20px;
}
.service-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.service-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.8rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  transition: var(--transition);
}
.card-link:hover { gap: 10px; color: var(--orange-light); }
.emergency-link { color: var(--orange-light); }

/* ============================================================
   FEATURES / WHY CHOOSE US
   ============================================================ */
.features-section { background: #FFFFFF; }

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

.features-intro {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 480px;
}

.features-list { display: flex; flex-direction: column; gap: 24px; }

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature-icon-wrap {
  width: 44px; height: 44px;
  min-width: 44px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}
.feature-item:hover .feature-icon-wrap {
  background: rgba(255,107,0,0.2);
  transform: scale(1.1);
}
.feature-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 4px;
}
.feature-text p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Features Visual */
.features-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.glass-card {
  background: #F8F8F8;
  border: 1px solid #E8E8E8;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: var(--transition);
}
.glass-card:hover {
  border-color: rgba(255,107,0,0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255,107,0,0.12);
}

.visual-card {
  grid-column: 1 / -1;
  padding: 36px 28px;
  text-align: center;
  background: linear-gradient(145deg, #fff5ee, #FFFFFF);
  border-color: rgba(255,107,0,0.2);
}
.vc-icon { font-size: 2.5rem; margin-bottom: 12px; }
.visual-card h4 {
  font-size: 1.3rem;
  font-weight: 900;
  color: #1A1A1A;
  margin-bottom: 4px;
}
.visual-card p { font-size: 0.875rem; color: var(--text-secondary); }
.stars { font-size: 1.4rem; color: var(--orange); margin: 12px 0 4px; }
.review-count { font-size: 0.75rem; color: var(--text-muted); }

.visual-stat-card {
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.vsc-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.vsc-unit { font-size: 1.2rem; }
.vsc-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
  line-height: 1.4;
}

/* ============================================================
   COVERAGE
   ============================================================ */
.coverage-section { background: #080c10; border-top: 1px solid rgba(255,255,255,0.06); }

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.coverage-map-placeholder {
  position: relative;
  height: 480px;
  background: url('map.jpg') center/cover no-repeat;
  border: 1px solid #E8E8E8;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 32px;
  padding-bottom: 48px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.map-overlay-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.map-pin-icon { font-size: 3rem; margin-bottom: 12px; }
.map-overlay-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 6px;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
}
.map-overlay-content p { 
  font-size: 1rem; 
  font-weight: 700;
  color: #000000; 
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.9);
}

.coverage-pulse {
  position: absolute;
  width: 120px; height: 120px;
  border: 2px solid rgba(255,107,0,0.4);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: ripple 2.5s ease-out infinite;
}
.coverage-pulse::before, .coverage-pulse::after {
  content: '';
  position: absolute;
  inset: -30px;
  border: 1px solid rgba(255,107,0,0.2);
  border-radius: 50%;
  animation: ripple 2.5s ease-out infinite 0.8s;
}
.coverage-pulse::after { inset: -60px; animation-delay: 1.6s; }

.coverage-areas h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 16px;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.area-tag {
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.2);
  color: var(--orange-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  transition: var(--transition);
}
.area-tag:hover {
  background: rgba(255,107,0,0.16);
  border-color: var(--orange);
  transform: scale(1.04);
}

.routes-heading { margin-top: 8px; margin-bottom: 16px; }
.routes-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.route-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.route-badge {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 6px;
  min-width: 44px;
  text-align: center;
}

.coverage-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

/* ===================== LOCAL PARTNERS ===================== */
.partners-section {
  background: var(--white);
  padding: 60px 0;
  border-top: 1px solid var(--light-border);
}
.partners-header {
  text-align: center;
  margin-bottom: 40px;
}
.partners-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 2px;
}
.partners-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.partners-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: scrollMarquee 20s linear infinite;
}
.partner-logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark-border);
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.partner-logo span {
  color: var(--primary);
}

/* ===================== GALLERY ===================== */
.gallery-section {
  background: var(--light-bg);
}
.gallery-section .section-title,
.gallery-section .section-tag {
  color: var(--dark-text);
}
.gallery-section .section-subtitle {
  color: var(--light-text);
}
.gallery-slider {
  margin-top: 40px;
  overflow: hidden;
  padding-bottom: 24px;
}
/* Custom scrollbar for gallery */
.gallery-slider::-webkit-scrollbar {
  height: 8px;
}
.gallery-slider::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
}
.gallery-slider::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}
.gallery-img {
  flex: 0 0 300px; /* Fixed width for slider items */
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  scroll-snap-align: start;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.gallery-img:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 12px 30px rgba(255,107,0,0.2);
}

.testimonials-section { background: #FFFFFF; }

.testimonials-slider {
  margin-top: 48px;
  overflow: hidden;
  padding-bottom: 24px;
}
.testimonials-slider::-webkit-scrollbar {
  height: 8px;
}
.testimonials-slider::-webkit-scrollbar-track {
  background: var(--light-bg);
  border-radius: 4px;
}
.testimonials-slider::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

.testimonial-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.testimonial-card:hover {
  border-color: rgba(255,107,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(255,107,0,0.08);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.reviewer-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: #FFFFFF;
  flex-shrink: 0;
}
.reviewer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.reviewer-info strong { font-size: 0.9rem; color: #1A1A1A; }
.reviewer-info span { font-size: 0.78rem; color: var(--text-muted); }
.review-stars-authentic {
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-top: 4px;
}
.google-review-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: auto;
}

.review-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}
.review-text::before { content: '"'; color: var(--orange); font-size: 1.2rem; }
.review-text::after { content: '"'; color: var(--orange); font-size: 1.2rem; }

.review-badge {
  display: inline-block;
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.2);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
/* ===================== BLOG / LOCAL ADVICE ===================== */
.blog-section {
  background: var(--light-bg);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.blog-category {
  display: inline-block;
  background: rgba(255,107,0,0.1);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
  align-self: flex-start;
}
.blog-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--dark-text);
  margin-bottom: 16px;
  line-height: 1.3;
}
.blog-excerpt {
  color: var(--light-text);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}
.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: gap 0.3s ease;
}
.blog-link:hover {
  gap: 12px;
}

/* ===================== AREAS WE COVER ===================== */
/* ===================== FIND A FITTER ===================== */
.finder-section {
  color: #ffffff;
  background: #080c10;
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.finder-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 28px;
  margin-top: 40px;
  backdrop-filter: blur(10px);
}
.finder-search-bar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.finder-input-wrap {
  flex: 1;
  min-width: 200px;
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 0 14px;
  transition: border-color 0.3s;
}
.finder-input-wrap:focus-within {
  border-color: var(--orange);
  background: rgba(255,107,0,0.05);
}
.finder-icon {
  width: 18px;
  height: 18px;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  margin-right: 10px;
}
.finder-input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  padding: 14px 0;
  letter-spacing: 0.04em;
}
.finder-input::placeholder { color: rgba(255,255,255,0.35); }
.finder-clear {
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px;
  transition: color 0.2s;
}
.finder-clear:hover { color: #fff; }
.finder-locate-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-family: inherit;
  padding: 14px 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s;
}
.finder-locate-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,107,0,0.08);
}
.finder-search-btn {
  background: var(--orange);
  border: none;
  border-radius: 12px;
  color: #000;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  padding: 14px 28px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.finder-search-btn:hover { background: var(--orange-light); transform: translateY(-1px); }
.finder-search-btn:disabled { opacity: 0.6; cursor: wait; }
.btn-spinner {
  width: 16px; height: 16px;
  border: 2px solid rgba(0,0,0,0.3);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

.finder-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(0,255,136,0.05);
  border: 1px solid rgba(0,255,136,0.12);
  border-radius: 10px;
}
.status-dot-green {
  width: 8px; height: 8px;
  background: #00FF88;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-green 2s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,255,136,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(0,255,136,0); }
}

.finder-prompt {
  text-align: center;
  padding: 48px 20px;
  color: rgba(255,255,255,0.4);
}
.finder-prompt-icon { font-size: 3.5rem; margin-bottom: 12px; }
.finder-prompt p { font-size: 1rem; margin-bottom: 20px; }
.finder-features {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.finder-features span {
  font-size: 0.8rem;
  padding: 6px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 999px;
  color: rgba(255,255,255,0.5);
}


.finder-steps {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.step-arrow {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: rgba(255,107,0,0.5);
}
@media (max-width: 768px) {
  .step-arrow {
    transform: rotate(90deg);
    margin: 5px 0;
  }
}
.step-card {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}
.step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,107,0,0.4);
}
.step-num {
  width: 44px;
  height: 44px;
  background: rgba(255,107,0,0.15);
  border: 2px solid var(--orange);
  color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 4px 12px rgba(255,107,0,0.2);
}
.step-card h4 {
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 8px;
}
.step-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  line-height: 1.5;
}

.finder-body {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  min-height: 440px;
  flex-wrap: wrap;
}
.fitter-map {
  flex: 2;
  min-width: 300px;
  min-height: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  z-index: 0;
}
.fitter-results {
  flex: 1;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  max-height: 440px;
}
.results-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.results-heading span { color: var(--orange); }
.result-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.25s;
}
.result-card:hover { border-color: var(--orange); background: rgba(255,107,0,0.06); transform: translateX(3px); }
.result-card.available { border-left: 3px solid #00FF88; }
.result-card.busy { border-left: 3px solid var(--orange); }
.result-rank {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}
.result-info { flex: 1; }
.result-name { font-size: 0.88rem; font-weight: 700; color: #fff; margin-bottom: 2px; }
.result-area { font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 3px; }
.result-dist { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

.result-action {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.result-select-text {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.25s;
}
.result-card:hover .result-select-text {
  opacity: 1;
  transform: translateX(0);
}
.popup-btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  background: var(--orange);
  color: #000;
  border: none;
  padding: 6px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.popup-btn:hover { background: var(--orange-light); }
.result-status-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.badge-green { background: rgba(0,255,136,0.15); color: #00FF88; border: 1px solid rgba(0,255,136,0.3); }
.badge-orange { background: rgba(255,107,0,0.15); color: var(--orange); border: 1px solid rgba(255,107,0,0.3); }

@media (max-width: 768px) {
  .finder-body { flex-direction: column; }
  .fitter-map { min-height: 280px; }
  .fitter-results { max-height: 300px; }
  .finder-search-bar { flex-direction: column; }
  .finder-input-wrap, .finder-locate-btn, .finder-search-btn { width: 100%; }
}

/* ===================== AREAS WE COVER ===================== */

/* ===================== BOOKING FORM ===================== */
.booking-form-wrap {
  margin: 24px auto;
  max-width: 600px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
  border-top: 2px solid var(--orange);
}
.booking-form-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.booking-form-title {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.booking-form-icon { font-size: 2rem; line-height: 1; }
.booking-form-title h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.booking-form-title p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.unit-badge {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.unit-badge-green { background: rgba(0,255,136,0.1); color: #00FF88; border: 1px solid rgba(0,255,136,0.25); }
.unit-badge-orange { background: rgba(255,107,0,0.1); color: var(--orange); border: 1px solid rgba(255,107,0,0.25); }

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field-full { grid-column: 1 / -1; }
.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-field .req { color: var(--orange); }
.form-field input,
.form-field textarea,
.form-field select {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  background: rgba(255,107,0,0.05);
}
.field-hint { font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 2px; }

.vehicle-type-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.vehicle-chip { cursor: pointer; }
.vehicle-chip input { display: none; }
.vehicle-chip span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.04);
  transition: all 0.2s;
  user-select: none;
}
.vehicle-chip input:checked + span {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(255,107,0,0.1);
}
.vehicle-chip:hover span { border-color: rgba(255,107,0,0.5); }

.booking-form-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.booking-submit-btn {
  background: var(--orange);
  border: none;
  border-radius: 12px;
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  padding: 15px 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  white-space: nowrap;
}
.booking-submit-btn:hover { background: var(--orange-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,0,0.35); }
.booking-submit-btn:disabled { opacity: 0.6; cursor: wait; transform: none; }
.booking-disclaimer { font-size: 0.75rem; color: rgba(255,255,255,0.3); margin: 0; }

/* SUCCESS STATE */
.booking-success {
  text-align: center;
  padding: 40px 20px;
}
.success-icon { font-size: 3.5rem; margin-bottom: 12px; }
.booking-success h3 { font-size: 1.5rem; color: #00FF88; margin: 0 0 8px; }
.booking-success > p { color: rgba(255,255,255,0.55); font-size: 0.95rem; margin-bottom: 24px; }
.success-details {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 20px;
  max-width: 480px;
  margin: 0 auto 24px;
  text-align: left;
}
.success-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.88rem;
  gap: 12px;
}
.success-row:last-child { border-bottom: none; }
.success-row span { color: rgba(255,255,255,0.45); white-space: nowrap; }
.success-row strong { color: #fff; text-align: right; }
.booking-reset-btn {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: rgba(255,255,255,0.6);
  font-family: inherit;
  font-size: 0.85rem;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.2s;
}
.booking-reset-btn:hover { border-color: var(--orange); color: var(--orange); }
/* WhatsApp Confirm Button */
.wa-confirm-btn-wrap { margin-top: 16px; }
.wa-confirm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #000;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: inherit;
  padding: 12px 22px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.wa-confirm-btn:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}


@media (max-width: 600px) {
  .booking-form-grid { grid-template-columns: 1fr; }
  .booking-form-footer { flex-direction: column; align-items: flex-start; }
  .booking-submit-btn { width: 100%; justify-content: center; }
  .vehicle-type-grid { gap: 8px; }
}

.areas-section {
  background: #0d1117;
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.areas-section .section-title,
.areas-section .section-subtitle,
.areas-section h2,
.areas-section h3 {
  color: #ffffff;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.areas-group {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 24px 20px;
  transition: border-color 0.3s;
}
.areas-group:hover {
  border-color: var(--orange);
}
.areas-group h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.areas-group a {
  display: block;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.areas-group a:hover {
  color: var(--orange);
  padding-left: 6px;
}

.cta-section {
  color: #ffffff;

  position: relative;
  background: #FF6B00;
  border-top: none;
  border-bottom: none;
  padding: 100px 0;
  overflow: hidden;
}

.cta-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 50px 50px;
}

.cta-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.tag-light { color: #000; }

.cta-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #000;
  line-height: 1.15;
  margin: 12px 0 16px;
}
.cta-text h2 em {
  font-style: normal;
  background: none;
  -webkit-text-fill-color: #000;
  color: #000;
}
.cta-text p {
  font-size: 0.95rem;
  color: #000;
  line-height: 1.7;
}

.phone-number-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  margin-bottom: 20px;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.phone-number-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,107,0,0.5);
}
.phone-icon { font-size: 1.6rem; }
.phone-label { display: block; font-size: 0.75rem; color: #555; font-weight: 600; }
.phone-number { display: block; font-size: 1.4rem; color: var(--orange); font-weight: 900; letter-spacing: 0.02em; }

.cta-divider {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 16px 0;
  position: relative;
}
.cta-divider::before, .cta-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--dark-border);
}
.cta-divider::before { left: 0; }
.cta-divider::after { right: 0; }

/* Form */
.cta-form { display: flex; flex-direction: column; gap: 12px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.cta-form input,
.cta-form textarea {
  font-family: var(--font);
  font-size: 0.9rem;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: #1A1A1A;
  transition: var(--transition);
  resize: vertical;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: #888; }
.cta-form input:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: #fff;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #1A1A1A;
  border-top: none;
  padding: 64px 0 0;
}

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

.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.875rem;
  color: #999;
  line-height: 1.7;
  max-width: 260px;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 16px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: #999;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--orange); padding-left: 4px; }

.footer-contact p {
  font-size: 0.875rem;
  color: #999;
  margin-bottom: 10px;
}
.footer-contact a:hover { color: var(--orange); }
.footer-hours {
  font-size: 0.8rem !important;
  color: var(--text-muted) !important;
  line-height: 1.6;
  margin-top: 16px;
}

.footer-seo-links {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 32px 0;
  margin-top: 24px;
}
.footer-seo-links h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}
.seo-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.seo-links-grid a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
}
.seo-links-grid a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom span {
  font-size: 0.78rem;
  color: #666;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.3); }
}
@keyframes scrollPulse {
  0%   { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
}
@keyframes ripple {
  0%   { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%,-50%) scale(2.5); opacity: 0; }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger service cards */
.service-card:nth-child(1) { transition-delay: 0s; }
.service-card:nth-child(2) { transition-delay: 0.08s; }
.service-card:nth-child(3) { transition-delay: 0.16s; }
.service-card:nth-child(4) { transition-delay: 0.24s; }
.service-card:nth-child(5) { transition-delay: 0.32s; }
.service-card:nth-child(6) { transition-delay: 0.40s; }

/* ===================== NEW SEO SECTIONS ===================== */

/* Tyre Brands Marquee */
.brands-section {
  background: var(--light-bg);
  border-bottom: 1px solid var(--dark-border);
  padding: 40px 0;
  overflow: hidden;
}
.brands-intro {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.brands-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
}
/* Gradient masks for smooth fade in/out on edges */
.brands-marquee::before, .brands-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.brands-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--light-bg) 0%, transparent 100%);
}
.brands-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--light-bg) 0%, transparent 100%);
}
.brands-track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: scrollBrands 20s linear infinite;
  padding-left: 60px;
}
.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ccc; /* Subtle grey for logos */
  text-transform: uppercase;
  letter-spacing: -0.5px;
  transition: var(--transition);
}
.brands-marquee:hover .brands-track {
  animation-play-state: paused;
}
.brand-name:hover {
  color: var(--primary);
}

@keyframes scrollBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Scrolls exactly half the width to seamlessly loop */
}

/* About Us Section */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.about-highlights {
  list-style: none;
  margin-top: 32px;
  padding: 0;
}
.about-highlights li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}
.about-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: bold;
  font-size: 1.2rem;
}
.about-highlights strong {
  color: var(--dark-bg);
}
.about-van-photo {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border: 4px solid var(--white);
  transform: rotate(2deg);
  transition: var(--transition);
}
.about-van-photo:hover {
  transform: rotate(0deg) scale(1.02);
}

/* FAQ Accordion Section */
.faq-section {
  background: var(--light-bg);
}
.faq-accordion {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--dark-border);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-question {
  padding: 24px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-bg);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Custom dropdown arrow for native summary */
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary);
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.1);
}
.faq-answer {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-container { grid-template-columns: 1fr; gap: 48px; }
  .features-visual { grid-template-columns: 1fr 1fr; }
  .visual-card { grid-column: 1 / -1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }

  /* Hero two columns collapse to single on tablet */
  .hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-van-scene { height: 260px; }
}

@media (max-width: 768px) {
  .section-padding { padding: 64px 0; }

  .nav-links { display: none; }
  .navbar .container { justify-content: space-between; }

  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 8px; padding: 20px; }
  .stat-item { padding: 0 16px; }
  /* Keep van scene visible on mobile, reduce van graphic sizes to prevent overlap */
  .hero-van-scene { 
    display: block; 
    height: 140px; 
    margin-top: 24px; 
  }
  .van-wrapper {
    width: 60%; /* Shrink hero van graphic on mobile */
    max-width: 280px;
    bottom: 20px;
  }
  .about-van-photo {
    max-width: 80%; /* Shrink the story van graphic on mobile */
    margin: 0 auto;
    display: block;
  }

  .services-grid { grid-template-columns: 1fr; }
  .about-container { grid-template-columns: 1fr; gap: 32px; }
  .brands-track { gap: 40px; padding-left: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .cta-container { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }

  .trust-inner { gap: 10px 16px; }
  .trust-sep { display: none; }
}

/* Dark section overrides for text visibility */
.finder-section,
.cta-section {
  color: #ffffff;
}

.finder-section .section-title,
.finder-section h1, .finder-section h2, .finder-section h3, .finder-section h4, .finder-section h5, .finder-section h6,
.cta-section .section-title,
.cta-section h1, .cta-section h2, .cta-section h3, .cta-section h4, .cta-section h5, .cta-section h6 {
  color: #ffffff !important;
}

.finder-section .section-subtitle,
.cta-section .section-subtitle {
  color: rgba(255,255,255,0.7) !important;
}

/* Ensure booking form labels and inputs remain dark if the form is white */
.booking-form-wrap, .booking-form-wrap * {
  color: #1A1A1A;
}
.booking-form-wrap .btn-primary { color: #fff; }
.booking-success { color: #1A1A1A; }

/* Ensure Coverage Section text is white */
.coverage-section .section-title, .coverage-section h2, .coverage-section h3, .coverage-section h4 { color: #ffffff !important; }
.coverage-section .section-subtitle, .coverage-section p { color: rgba(255,255,255,0.8) !important; }


/* Infinite Scroll Marquee */
.slider-track {
  display: flex;
  width: max-content;
  gap: 16px; /* for gallery */
  animation: infiniteScroll 25s linear infinite;
}
.testimonials-slider .slider-track {
  gap: 32px; /* for testimonials */
  animation: infiniteScroll 35s linear infinite;
}

.slider-track:hover {
  animation-play-state: paused;
}

@keyframes infiniteScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 16px)); } /* -16px for gap offset */
}
.testimonials-slider .slider-track {
  animation-name: infiniteScrollTestimonials;
}
@keyframes infiniteScrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 32px)); }
}

/* ============================================================
   LIGHT THEME FINDER SECTION & CLOCK
   ============================================================ */
.finder-section.light-theme {
  background: #f8fafc !important;
  color: #1e293b !important;
  border-top: 1px solid #cbd5e1 !important;
  border-bottom: 1px solid #cbd5e1 !important;
  position: relative;
  overflow: hidden;
  animation: bg-pulse-green 6s infinite ease-in-out;
}

@keyframes bg-pulse-green {
  0%, 100% { background: #f8fafc; box-shadow: inset 0 0 40px rgba(0, 255, 136, 0.03); }
  50% { background: #f0fdf4; box-shadow: inset 0 0 60px rgba(0, 255, 136, 0.08); }
}

.finder-section.light-theme .section-title {
  color: #0f172a !important;
}

.finder-section.light-theme .section-subtitle {
  color: #475569 !important;
}

.finder-section.light-theme .section-tag-green {
  color: #16a34a !important;
  background: #dcfce7 !important;
  padding: 6px 14px !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 0 10px rgba(22, 163, 74, 0.15) !important;
  border: 1px solid rgba(22, 163, 74, 0.2) !important;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

.finder-section.light-theme .section-tag-green::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  animation: dot-pulse 1.5s infinite;
}

@keyframes dot-pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.finder-section.light-theme .finder-card {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
}

.finder-section.light-theme .finder-input-wrap {
  background: #f8fafc !important;
  border: 1.5px solid #cbd5e1 !important;
}

.finder-section.light-theme .finder-input-wrap:focus-within {
  border-color: #22c55e !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1) !important;
}

.finder-section.light-theme .finder-icon {
  color: #64748b !important;
}

.finder-section.light-theme .finder-input {
  color: #0f172a !important;
}

.finder-section.light-theme .finder-clear {
  color: #64748b !important;
}

.finder-section.light-theme .finder-locate-btn {
  background: #f1f5f9 !important;
  border: 1.5px solid #cbd5e1 !important;
  color: #334155 !important;
}

.finder-section.light-theme .finder-locate-btn:hover {
  background: #e2e8f0 !important;
}

.finder-section.light-theme .finder-search-btn {
  background: #22c55e !important;
  color: #ffffff !important;
}

.finder-section.light-theme .finder-search-btn:hover {
  background: #16a34a !important;
}

.finder-section.light-theme .finder-status {
  background: #f0fdf4 !important;
  border: 1px solid #bbf7d0 !important;
  color: #166534 !important;
}

.finder-section.light-theme .step-card {
  background: #f8fafc !important;
  border: 1px solid #cbd5e1 !important;
}

.finder-section.light-theme .step-card h4 {
  color: #0f172a !important;
}

.finder-section.light-theme .step-card p {
  color: #64748b !important;
}

.finder-section.light-theme .step-arrow {
  color: #10b981 !important;
}

.finder-section.light-theme .booking-form-wrap {
  background: #f8fafc !important;
  border: 1px solid #cbd5e1 !important;
}

.finder-section.light-theme .form-field label {
  color: #475569 !important;
}

.finder-section.light-theme .form-field input,
.finder-section.light-theme .form-field textarea,
.finder-section.light-theme .form-field select {
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  color: #0f172a !important;
}

.finder-section.light-theme .form-field input:focus,
.finder-section.light-theme .form-field textarea:focus {
  border-color: #22c55e !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1) !important;
}

.finder-section.light-theme .field-hint {
  color: #64748b !important;
}

.finder-section.light-theme .vehicle-chip span {
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  color: #334155 !important;
}

.finder-section.light-theme .vehicle-chip input:checked + span {
  background: #dcfce7 !important;
  border-color: #22c55e !important;
  color: #15803d !important;
}

.finder-section.light-theme .booking-disclaimer {
  color: #64748b !important;
}

.finder-section.light-theme .booking-selected-unit {
  color: #0f172a !important;
}

/* Digital Clock Styling */
.digital-clock {
  font-family: monospace;
  font-size: 1.1rem;
  font-weight: 700;
  background: #0f172a;
  color: #00FF88;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: inset 0 0 6px rgba(0,255,136,0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(0,255,136,0.25);
  letter-spacing: 0.05em;
  text-shadow: 0 0 4px rgba(0,255,136,0.5);
}


/* Horizontal Blog Slider */
.blog-carousel {
  display: flex;
  overflow-x: auto;
  gap: 24px;
  padding-bottom: 24px;
  scroll-snap-type: x mandatory;
}
.blog-carousel::-webkit-scrollbar {
  height: 8px;
}
.blog-carousel::-webkit-scrollbar-track {
  background: rgba(0,0,0,0.05);
  border-radius: 4px;
}
.blog-carousel::-webkit-scrollbar-thumb {
  background: #ff6b00;
  border-radius: 4px;
}
.blog-carousel .blog-card {
  flex: 0 0 350px;
  scroll-snap-align: start;
}
