/* ═══════════════════════════════════════════════════
   FAST TESLA — Premium Dark Theme CSS
   Tesla-esque: Black, White, Red (#E53935)
═══════════════════════════════════════════════════ */

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

:root {
  --red:        #e53935;
  --red-dark:   #b71c1c;
  --red-glow:   rgba(229, 57, 53, 0.25);
  --white:      #ffffff;
  --off-white:  #f5f5f5;
  --grey-100:   #e5e5e5;
  --grey-300:   #9e9e9e;
  --grey-500:   #616161;
  --grey-700:   #2a2a2a;
  --grey-800:   #1a1a1a;
  --grey-900:   #111111;
  --black:      #080808;

  --font:       -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-mono:  'SF Mono', 'Fira Code', monospace;

  --radius:     8px;
  --radius-lg:  16px;
  --radius-xl:  24px;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h:      68px;
  --section-pad: 100px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--grey-700); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ── SELECTION ── */
::selection { background: var(--red); color: white; }

/* ══════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.85; }

.logo-bolt {
  font-size: 1.3rem;
  filter: drop-shadow(0 0 6px rgba(229, 57, 53, 0.6));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-link {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--grey-300);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }

.nav-cta {
  background: var(--red) !important;
  color: white !important;
  padding: 9px 20px !important;
  font-weight: 600 !important;
  letter-spacing: 0.06em !important;
  border-radius: var(--radius) !important;
  transition: background var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  box-shadow: 0 4px 20px var(--red-glow) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 40px) 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(229,57,53,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 100%, rgba(229,57,53,0.05) 0%, transparent 60%),
              linear-gradient(180deg, #0a0a0a 0%, #080808 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 0%, transparent 80%);
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
}
.hero-glow--left  { top: 10%; left: -10%;  background: radial-gradient(circle, rgba(229,57,53,0.12), transparent 70%); }
.hero-glow--right { bottom: 10%; right: -10%; background: radial-gradient(circle, rgba(229,57,53,0.08), transparent 70%); }

/* Car SVG */
.hero-car {
  width: 100%;
  max-width: 760px;
  position: relative;
  z-index: 1;
  animation: carFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 60px rgba(229,57,53,0.15));
}

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

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

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin-top: -20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(229,57,53,0.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-300);
  margin-bottom: 28px;
  background: rgba(229,57,53,0.05);
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229,57,53,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(229,57,53,0); }
}

.hero-title {
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin-bottom: 20px;
}

.title-fast {
  display: block;
  color: var(--white);
}

.title-tesla {
  display: block;
  color: var(--red);
  text-shadow: 0 0 60px rgba(229,57,53,0.4);
}

.hero-tagline {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--grey-300);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.dot { color: var(--red); font-weight: 900; }

.hero-sub {
  font-size: 1.05rem;
  color: var(--grey-500);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-500);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--grey-700);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 4px 24px rgba(229,57,53,0.3);
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 32px rgba(229,57,53,0.5);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.05);
  transform: translateY(-1px);
}

.btn--small {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn--full { width: 100%; }

/* ══════════════════════════════════════════════════
   SECTIONS — SHARED
══════════════════════════════════════════════════ */
.section {
  padding: var(--section-pad) 24px;
  position: relative;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--grey-300);
  margin-bottom: 60px;
  max-width: 560px;
}

/* Alternating backgrounds */
.rent-section     { background: var(--black); }
.repairs-section  { background: var(--grey-900); }
.lawfirms-section { background: var(--black); }
.booking-section  { background: var(--grey-900); }
.about-section    { background: var(--black); }
.contact-section  { background: var(--grey-900); }

/* ══════════════════════════════════════════════════
   RENT SECTION
══════════════════════════════════════════════════ */
.rent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}

.rent-feature-card {
  background: var(--grey-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.rent-feature-card:hover {
  border-color: rgba(229,57,53,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(229,57,53,0.1);
}

.card--glow {
  border-color: rgba(229,57,53,0.2);
  background: linear-gradient(135deg, rgba(229,57,53,0.05), var(--grey-800));
}

.feature-icon {
  width: 48px;
  height: 48px;
  color: var(--red);
  margin-bottom: 20px;
}

.rent-feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.rent-feature-card p {
  color: var(--grey-300);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Recovery Banner */
.recovery-banner {
  background: linear-gradient(135deg, rgba(229,57,53,0.1), rgba(229,57,53,0.03));
  border: 1px solid rgba(229,57,53,0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.recovery-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.recovery-content {
  flex: 1;
  min-width: 200px;
}

.recovery-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.recovery-content p {
  color: var(--grey-300);
  font-size: 0.95rem;
}

.recovery-content strong { color: var(--white); }

/* ══════════════════════════════════════════════════
   REPAIRS SECTION
══════════════════════════════════════════════════ */
.repairs-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.repair-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}

.repair-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(229,57,53,0.2);
  line-height: 1;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
  width: 52px;
}

.repair-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.repair-text p {
  color: var(--grey-300);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Colour swatches */
.colour-display {
  background: var(--grey-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 24px;
}

.colour-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-300);
  margin-bottom: 16px;
}

.colour-swatches {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.swatch {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
}

.swatch:hover {
  transform: scale(1.15);
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
}

.swatch-name {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  white-space: nowrap;
  color: var(--grey-500);
  opacity: 0;
  transition: opacity var(--transition);
}

.swatch:hover .swatch-name { opacity: 1; }

.colour-note {
  font-size: 0.82rem;
  color: var(--grey-500);
  margin-top: 16px;
}

/* Parts inventory */
.parts-visual {
  background: var(--grey-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.parts-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-300);
  margin-bottom: 20px;
}

.parts-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
}

.parts-row > span:first-child {
  width: 100px;
  color: var(--grey-300);
  flex-shrink: 0;
}

.parts-bar {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}

.parts-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  border-radius: 4px;
  width: 0;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.parts-status {
  font-size: 0.72rem;
  font-weight: 600;
  flex-shrink: 0;
}

.parts-status.in-stock {
  color: #4caf50;
}

/* ══════════════════════════════════════════════════
   LAW FIRMS SECTION
══════════════════════════════════════════════════ */
.lawfirms-section {
  position: relative;
}

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

.lf-glow {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(229,57,53,0.06), transparent 65%);
  filter: blur(60px);
}

/* Flow Diagram */
.flow-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 16px;
}

.flow-step {
  background: var(--grey-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.flow-step:hover {
  border-color: rgba(229,57,53,0.25);
  transform: translateY(-4px);
}

.flow-step--highlight {
  border-color: rgba(229,57,53,0.35);
  background: linear-gradient(135deg, rgba(229,57,53,0.08), var(--grey-800));
  box-shadow: 0 0 40px rgba(229,57,53,0.1);
}

.flow-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.flow-step-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.flow-step p {
  color: var(--grey-300);
  font-size: 0.9rem;
  line-height: 1.6;
}

.flow-arrow {
  font-size: 2rem;
  color: var(--red);
  opacity: 0.6;
  flex-shrink: 0;
  font-weight: 300;
}

/* Benefits */
.lawfirms-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.benefit-card {
  background: var(--grey-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.benefit-card:hover {
  border-color: rgba(229,57,53,0.2);
  transform: translateY(-3px);
}

.benefit-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.benefit-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-card p {
  color: var(--grey-300);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* CTA strip */
.lawfirms-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, rgba(229,57,53,0.12), rgba(229,57,53,0.04));
  border: 1px solid rgba(229,57,53,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  flex-wrap: wrap;
}

.lf-cta-text h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.lf-cta-text p {
  color: var(--grey-300);
}

/* ══════════════════════════════════════════════════
   BOOKING SECTION
══════════════════════════════════════════════════ */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Coming Soon */
.booking-coming-soon {
  background: var(--grey-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.cs-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(229,57,53,0.1);
  border: 1px solid rgba(229,57,53,0.25);
  border-radius: 100px;
  padding: 6px 18px 6px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 24px;
}

.cs-pulse {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.booking-coming-soon h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.booking-coming-soon > p {
  color: var(--grey-300);
  margin-bottom: 28px;
  line-height: 1.65;
}

.cs-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cs-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--grey-300);
}

.cs-tick {
  color: var(--red);
  font-weight: 700;
  font-size: 1rem;
}

/* Form */
.booking-form-wrap {
  background: var(--grey-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.booking-form-wrap h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.booking-form-wrap > p {
  color: var(--grey-300);
  margin-bottom: 28px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-300);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239e9e9e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(229,57,53,0.5);
  box-shadow: 0 0 0 3px rgba(229,57,53,0.1);
  background: rgba(255,255,255,0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-500);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-group select option { background: var(--grey-800); }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.3);
  border-radius: var(--radius);
  padding: 14px 18px;
  color: #81c784;
  font-size: 0.95rem;
  font-weight: 500;
}

.form-success.visible {
  display: flex;
}

/* ══════════════════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-lead {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.65;
  color: var(--grey-100);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--grey-300);
  margin-bottom: 16px;
  line-height: 1.75;
}

.about-vision {
  margin-top: 28px;
  padding: 20px 24px;
  border-left: 3px solid var(--red);
  background: rgba(229,57,53,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.vision-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }

.about-vision p {
  color: var(--grey-300) !important;
  font-style: italic;
  margin-bottom: 0 !important;
  font-size: 0.95rem;
}

/* Map */
.map-container {
  background: var(--grey-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 16px;
  align-self: flex-start;
}

.seq-map {
  width: 100%;
  max-width: 280px;
}

.map-hq-pulse {
  animation: mapPulse 2.5s ease-in-out infinite;
}

@keyframes mapPulse {
  0%, 100% { r: 8; opacity: 0.9; }
  50%       { r: 12; opacity: 0.4; }
}

.map-legend {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--grey-500);
  margin-top: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.legend-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 4px;
}
.legend-dot--red   { background: var(--red); }
.legend-dot--white { background: rgba(255,255,255,0.4); }

/* ══════════════════════════════════════════════════
   CONTACT SECTION
══════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.contact-card {
  background: var(--grey-800);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.contact-card:hover {
  border-color: rgba(229,57,53,0.3);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(229,57,53,0.1);
}

.contact-icon {
  width: 44px;
  height: 44px;
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-500);
}

.contact-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

.contact-note {
  font-size: 0.82rem;
  color: var(--grey-500);
}

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.footer-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  padding: 6px 14px;
  font-size: 0.85rem;
  color: var(--grey-500);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.footer-links a:hover { color: var(--white); background: rgba(255,255,255,0.04); }

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-legal p { font-size: 0.8rem; color: var(--grey-700); }
.footer-disclaimer { font-size: 0.72rem !important; }

/* ══════════════════════════════════════════════════
   ANIMATIONS — Reveal on scroll
══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  :root { --section-pad: 70px; }

  .repairs-layout,
  .booking-layout,
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-map { order: -1; }
  .seq-map { max-width: 220px; }

  .flow-diagram { flex-direction: column; align-items: stretch; }
  .flow-arrow { transform: rotate(90deg); text-align: center; font-size: 1.5rem; }
  .flow-step { max-width: 100%; }
}

@media (max-width: 700px) {
  :root { --section-pad: 56px; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px 16px 32px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-links.open { display: flex; }

  .nav-link {
    padding: 13px 16px;
    font-size: 1rem;
    border-radius: var(--radius);
    width: 100%;
  }

  .hero-title { font-size: clamp(3rem, 14vw, 4.5rem); }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }

  .hero-car { max-width: 100%; }

  .form-row { grid-template-columns: 1fr; }

  .recovery-banner {
    flex-direction: column;
    text-align: center;
  }

  .lawfirms-cta {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

  .rent-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
}

/* ══════════════════════════════════════════════════
   PRINT
══════════════════════════════════════════════════ */
@media print {
  .nav, .scroll-indicator, .hero-bg, .lf-glow { display: none; }
  body { background: white; color: black; }
}
