/* ═══════════════════════════════════════
   AR AUTO CARE CO — Dark Bold Automotive
   Black / Yellow / Bebas Neue + Barlow
   Mobile Mechanic — West Orange, NJ
   ═══════════════════════════════════════ */

:root {
  --black: #0D0D0D;
  --surface: #1A1A1A;
  --surface-2: #252525;
  --surface-3: #2E2E2E;
  --border: #333333;
  --border-light: #444444;
  --yellow: #FFD100;
  --yellow-dim: rgba(255, 209, 0, 0.15);
  --yellow-glow: rgba(255, 209, 0, 0.3);
  --white: #FFFFFF;
  --gray: #AAAAAA;
  --gray-light: #CCCCCC;
  --gray-dark: #777777;
  --success: #22c55e;
  --error: #ef4444;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --max-width: 1200px;
  --gutter: 3vw;
  --section-pad: 120px;
  --radius: 6px;
  --transition: 0.3s ease;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--yellow);
  text-decoration: none;
  transition: opacity var(--transition);
}

a:hover { opacity: 0.8; }

/* ─── SVG ICONS ─── */
.icon, .icon-sm, .icon-lg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon { width: 20px; height: 20px; }
.icon-sm { width: 16px; height: 16px; }
.icon-lg { width: 32px; height: 32px; }

/* ─── SHARED ─── */
.section-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--section-pad) var(--gutter);
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 20px;
}

.heading-lg.centered { text-align: center; }

.text-accent { color: var(--yellow); }

.section-sub {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 60px;
}

.section-sub.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ─── FADE-IN ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow var(--transition), background var(--transition);
}

nav.scrolled {
  box-shadow: 0 1px 0 var(--border);
  background: rgba(13, 13, 13, 0.98);
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  border-radius: 4px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}

.logo-accent {
  color: var(--yellow);
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gray-light);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--yellow);
  opacity: 1;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta::after {
  display: none;
}

.nav-cta {
  background: var(--yellow) !important;
  color: var(--black) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: transform var(--transition), opacity var(--transition) !important;
}

.nav-cta:hover {
  transform: scale(1.03);
  opacity: 0.9 !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  padding: 16px 36px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 2px solid var(--yellow);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  text-align: center;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--yellow-glow);
  opacity: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 2px solid var(--border-light);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  opacity: 1;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 16px 36px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
  text-decoration: none;
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
  opacity: 1;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px var(--gutter) 80px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, var(--yellow-dim) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 209, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,209,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,209,0,0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── TRUST BAR ─── */
#trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px var(--gutter);
}

.trust-items {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-light);
  font-size: 0.85rem;
  font-weight: 600;
}

.trust-item .icon {
  stroke: var(--yellow);
  width: 18px;
  height: 18px;
}

/* ─── ABOUT ─── */
#about {
  background: var(--black);
}

.about-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.about-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  border: 2px solid var(--border);
}

.about-ig-link {
  margin-top: 16px;
  text-align: center;
}

.about-ig-link a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--yellow);
}

.about-story p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--yellow);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--yellow);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-dark);
  font-weight: 500;
  margin-top: 4px;
}

/* ─── SERVICES ─── */
#services {
  background: var(--surface);
}

.services-featured {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 40px;
}

.service-featured-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.service-featured-card:hover {
  border-color: var(--yellow-glow);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(255, 209, 0, 0.08);
}

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--yellow-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-featured-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.service-featured-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* Services compact list */
.services-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}

.services-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--gray-light);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  transition: color var(--transition), background var(--transition);
}

.services-list-item:hover {
  color: var(--yellow);
  background: rgba(255, 209, 0, 0.03);
}

.services-list-item:nth-child(4n) {
  border-right: none;
}

.services-list-item:nth-last-child(-n+4) {
  border-bottom: none;
}

.services-list-item .icon-sm {
  stroke: var(--yellow);
  flex-shrink: 0;
}

.services-note {
  font-size: 0.95rem;
  color: var(--gray);
  text-align: center;
}

.services-note a {
  color: var(--yellow);
  font-weight: 600;
}

/* ─── HOW IT WORKS ─── */
#process {
  background: var(--black);
}

.process-timeline {
  margin-top: 48px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.timeline-step:last-child {
  border-bottom: none;
}

.timeline-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--yellow);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}

.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ─── CTA BAND ─── */
#cta-band {
  background: var(--yellow);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding-top: 48px !important;
  padding-bottom: 48px !important;
  flex-wrap: wrap;
  text-align: center;
}

#cta-band h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--black);
  letter-spacing: 0.02em;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

#cta-band .btn-primary {
  background: var(--black);
  color: var(--yellow);
  border-color: var(--black);
}

#cta-band .btn-primary:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

#cta-band .btn-outline-light {
  color: var(--black);
  border-color: rgba(0,0,0,0.3);
}

#cta-band .btn-outline-light:hover {
  border-color: var(--black);
  background: rgba(0,0,0,0.05);
  color: var(--black);
}

/* ─── RECENT WORK ─── */
#work {
  background: var(--surface);
}

.job-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.job-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: border-color var(--transition);
}

.job-card:hover {
  border-color: var(--yellow-glow);
}

.job-video {
  width: 100%;
  height: 280px;
  background: var(--black);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  position: relative;
}

.job-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-ig {
  text-align: center;
  margin-top: 32px;
}

.job-vehicle {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 2px;
  line-height: 1.2;
}

.job-service {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--yellow);
  line-height: 1.4;
}

.work-more {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.work-tag {
  display: inline-block;
  background: var(--surface-3);
  border: 1px solid var(--border);
  color: var(--gray-light);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  transition: border-color var(--transition), color var(--transition);
}

.work-tag:hover {
  border-color: var(--yellow-glow);
  color: var(--yellow);
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--yellow);
}

.ig-link:hover { opacity: 0.8; }

/* ─── VEHICLES ─── */
#vehicles {
  background: var(--black);
}

.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.vehicle-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}

.vehicle-card:hover {
  border-color: var(--yellow-glow);
  transform: translateY(-3px);
}

.vehicle-icon {
  margin-bottom: 16px;
}

.vehicle-icon span {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--yellow);
  letter-spacing: 0.05em;
}

.vehicle-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ─── FAQ ─── */
#faq {
  background: var(--surface);
}

.faq-list {
  max-width: 740px;
  margin-top: 48px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--yellow);
}

.faq-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--gray);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.3s ease, stroke 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  stroke: var(--yellow);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ─── BOOKING FORM ─── */
#book {
  background: var(--black);
  position: relative;
}

#book::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 40%, rgba(255, 209, 0, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(255, 209, 0, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.booking-container {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

/* Progress Bar */
.booking-progress {
  height: 4px;
  background: var(--surface-3);
}

.progress-bar {
  height: 100%;
  width: 16.66%;
  background: var(--yellow);
  transition: width 0.4s ease;
}

/* Step Indicators */
.booking-steps-indicator {
  display: flex;
  padding: 20px 28px;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gray-dark);
  white-space: nowrap;
  transition: color var(--transition);
}

.step-indicator span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface-3);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--gray-dark);
  transition: background var(--transition), color var(--transition);
}

.step-indicator.active {
  color: var(--yellow);
}

.step-indicator.active span {
  background: var(--yellow);
  color: var(--black);
}

.step-indicator.completed span {
  background: var(--yellow-dim);
  color: var(--yellow);
}

.step-indicator.completed {
  color: var(--gray);
}

/* Form Steps */
#bookingForm {
  padding: 36px 28px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: stepFadeIn 0.3s ease;
}

@keyframes stepFadeIn {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-row-3 {
  grid-template-columns: 100px 1fr 1fr;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23777' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group select option {
  background: var(--surface);
  color: var(--white);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Review Summary */
.review-summary {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}

.review-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.review-row:last-child {
  border-bottom: none;
}

.review-label {
  color: var(--gray);
  font-weight: 500;
}

.review-value {
  color: var(--white);
  font-weight: 600;
  text-align: right;
  max-width: 60%;
}

.review-note {
  font-size: 0.85rem;
  color: var(--gray);
  text-align: center;
}

/* Form Navigation */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.btn-back {
  background: transparent;
  color: var(--gray);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: color var(--transition), border-color var(--transition);
}

.btn-back:hover {
  color: var(--white);
  border-color: var(--white);
}

.btn-next,
.btn-submit {
  margin-left: auto;
}

.form-status {
  margin-top: 16px;
  text-align: center;
  font-size: 0.9rem;
}

.form-status.success { color: var(--success); }
.form-status.error { color: var(--error); }

/* ─── FOOTER ─── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px var(--gutter) 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.footer-logo {
  height: 60px;
  width: auto;
  border-radius: 4px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--yellow);
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--gray);
}

.footer-contact-item .icon-sm {
  stroke: var(--yellow);
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray-dark);
}

.footer-credit a {
  color: var(--yellow);
  font-weight: 600;
}

.footer-credit a:hover { opacity: 0.8; }

/* ─── FLOATING MOBILE CTA ─── */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  background: var(--yellow);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
}

.floating-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--black);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
}

.floating-cta-btn .icon-sm {
  stroke: var(--black);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }
  .services-featured { grid-template-columns: repeat(3, 1fr); }
  .services-list { grid-template-columns: repeat(2, 1fr); }
  .services-list-item:nth-child(4n) { border-right: 1px solid var(--border); }
  .services-list-item:nth-child(2n) { border-right: none; }
  .services-list-item:nth-last-child(-n+4) { border-bottom: 1px solid var(--border); }
  .services-list-item:nth-last-child(-n+2) { border-bottom: none; }
  .job-cards { grid-template-columns: repeat(2, 1fr); }
  .job-video { height: 240px; }
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; --gutter: 6vw; }

  nav { padding: 14px var(--gutter); }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 999;
  }

  .nav-links.active { display: flex; }

  .nav-links a {
    font-size: 1.2rem;
    color: var(--white);
  }

  .nav-hamburger { display: flex; z-index: 1001; }

  #hero {
    min-height: 85vh;
    padding: 120px var(--gutter) 60px;
  }

  .hero-headline {
    font-size: clamp(2.8rem, 10vw, 4.5rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .trust-items { gap: 20px; }
  .trust-item { font-size: 0.78rem; }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-photo {
    max-width: 240px;
    margin: 0 auto;
  }

  .about-stats {
    gap: 24px;
  }

  .services-featured {
    grid-template-columns: 1fr;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .services-list-item {
    border-right: none !important;
  }

  .services-list-item:nth-last-child(-n+4) { border-bottom: 1px solid var(--border); }
  .services-list-item:last-child { border-bottom: none; }

  .cta-inner {
    flex-direction: column;
    gap: 20px;
  }

  .job-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .job-video {
    height: 220px;
  }

  .vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Booking Form */
  .booking-steps-indicator {
    padding: 16px 20px;
    gap: 12px;
  }

  #bookingForm {
    padding: 28px 20px;
  }

  .form-row,
  .form-row-3 {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  /* Show floating CTA on mobile */
  .floating-cta { display: block; }

  /* Add padding at bottom for floating CTA */
  footer { padding-bottom: 60px; }
}

@media (max-width: 480px) {
  .job-cards { grid-template-columns: 1fr; }
  .job-video { height: 260px; }

  .vehicles-grid {
    grid-template-columns: 1fr;
  }

  .btn-primary,
  .btn-outline,
  .btn-outline-light {
    width: 100%;
    justify-content: center;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn-primary,
  .cta-actions .btn-outline-light {
    width: 100%;
    justify-content: center;
  }

  .booking-steps-indicator {
    gap: 6px;
  }

  .step-indicator {
    font-size: 0;
  }

  .step-indicator span {
    font-size: 0.65rem;
  }
}
