@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,900;1,400&family=Share+Tech+Mono&display=swap');

:root {
  /* Core Palette - Forged from logo */
  --void: #060606;
  --pitch: #0c0c0c;
  --carbon: #141414;
  --steel: #1e1e1e;
  --iron: #2a2a2a;
  --plate: #363636;
  --border: #2c2c2c;
  --border-focus: #ff6b00;
  --muted: #666666;
  --ghost: #8c8c8c;
  --silver: #b5b5b5;
  --snow: #e2e2e2;
  --white: #f3f3f3;

  /* Brand Accents */
  --fire: #ff6b00;       /* Primary Orange */
  --flame: #ff8c2a;      /* Hover State Light Orange */
  --ember: #cc4e00;      /* Pressed State Dark Orange */
  --spark: #ffb066;      /* Highlight Orange */
  --chrome: #f8f9fa;
  --exhaust: rgba(255, 107, 0, 0.08);
  --glow: rgba(255, 107, 0, 0.2);
  --glow-strong: rgba(255, 107, 0, 0.45);
  --glow-light: rgba(255, 107, 0, 0.04);

  /* Typography */
  --ff-head: 'Bebas Neue', sans-serif;
  --ff-body: 'Barlow', sans-serif;
  --ff-mono: 'Share Tech Mono', monospace;
  
  /* Transitions */
  --trans-fast: 0.15s ease;
  --trans-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --trans-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--fire) var(--void);
  scrollbar-width: thin;
}

body {
  background-color: var(--pitch);
  color: var(--silver);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--trans-fast);
}

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

/* Scrollbar customization */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--void);
}
::-webkit-scrollbar-thumb {
  background: var(--iron);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--fire);
}

/* Common Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

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

/* Headers & Text styles */
.section {
  padding: 100px 0;
  position: relative;
}

.section-eyebrow {
  font-family: var(--ff-mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-eyebrow::after {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background-color: var(--fire);
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(38px, 5.5vw, 68px);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.section-title span {
  color: var(--fire);
}

.section-sub {
  font-size: 17px;
  color: var(--ghost);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 50px;
}

h3 {
  font-family: var(--ff-head);
  font-size: 24px;
  color: var(--snow);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

p {
  color: var(--silver);
}

/* Background Patterns */
.grid-bg {
  background-image:
    linear-gradient(rgba(255, 107, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
}

.stripe-bg {
  background: repeating-linear-gradient(
    45deg,
    rgba(20, 20, 20, 0.7),
    rgba(20, 20, 20, 0.7) 10px,
    rgba(12, 12, 12, 0.7) 10px,
    rgba(12, 12, 12, 0.7) 20px
  );
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 3px;
  font-family: var(--ff-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--trans-normal);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--fire);
  color: var(--void);
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: 0.5s;
}

.btn-primary:hover::after {
  left: 100%;
}

.btn-primary:hover {
  background: var(--flame);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--glow);
}

.btn-primary:active {
  background: var(--ember);
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--iron);
}

.btn-outline:hover {
  border-color: var(--fire);
  color: var(--fire);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.08);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--void);
  color: var(--fire);
  border: 1px solid var(--fire);
}

.btn-dark:hover {
  background: var(--fire);
  color: var(--void);
  box-shadow: 0 6px 20px var(--glow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--carbon);
  color: var(--silver);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--steel);
  color: var(--white);
  border-color: var(--muted);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 11px;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
}

/* Nav Bar Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(6, 6, 6, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--trans-normal);
}

header.scrolled {
  padding: 5px 0;
  background: rgba(6, 6, 6, 0.96);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

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

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

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--ff-head);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white);
}

.logo-text span {
  color: var(--fire);
}

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

.nav-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ghost);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--fire);
  transition: var(--trans-normal);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link.active {
  color: var(--fire);
}

.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

.nav-btn-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: var(--white);
  border-radius: 2px;
  transition: var(--trans-normal);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  background: 
    radial-gradient(ellipse at 80% 20%, rgba(255, 107, 0, 0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(255, 107, 0, 0.03) 0%, transparent 50%),
    var(--void);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.04), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--exhaust);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: 3px;
  padding: 6px 16px;
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--fire);
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}

.hero-badge span {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--fire);
  animation: pulse 1.8s infinite;
}

.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(48px, 7vw, 90px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-title span {
  color: var(--fire);
  display: block;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: var(--ghost);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo-box {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  background: var(--carbon);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.hero-logo-box img {
  max-height: 180px;
  object-fit: contain;
  transition: var(--trans-slow);
}

.hero-logo-box:hover img {
  transform: scale(1.05);
}

.hero-logo-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--glow), transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--ff-head);
  font-size: 32px;
  color: var(--white);
  line-height: 1;
}

.stat-num span {
  color: var(--fire);
}

.stat-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* Marquee Wrap */
.marquee-section {
  background: var(--fire);
  padding: 12px 0;
  overflow: hidden;
}

.marquee-container {
  display: flex;
  white-space: nowrap;
}

.marquee-content {
  display: flex;
  animation: marquee-scroll 22s linear infinite;
  font-family: var(--ff-head);
  font-size: 16px;
  color: var(--void);
  letter-spacing: 0.12em;
  font-weight: 500;
  text-transform: uppercase;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
}

/* About / Brand Personality */
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-card {
  background: var(--carbon);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px;
  transition: var(--trans-normal);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--fire);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--trans-normal);
}

.about-card:hover {
  transform: translateY(-5px);
  border-color: var(--iron);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.about-card:hover::before {
  transform: scaleX(1);
}

.about-num {
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--fire);
  margin-bottom: 24px;
  display: block;
}

.about-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.about-card p {
  font-size: 14px;
  color: var(--ghost);
  line-height: 1.6;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--carbon);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 30px 24px;
  transition: var(--trans-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--fire);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--trans-normal);
}

.service-card:hover {
  border-color: var(--iron);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  background: var(--exhaust);
  border: 1px solid rgba(255, 107, 0, 0.15);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--trans-normal);
}

.service-card:hover .service-icon {
  background: var(--glow);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.service-card p {
  font-size: 13.5px;
  color: var(--ghost);
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 2px;
  font-family: var(--ff-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 107, 0, 0.2);
  background: rgba(255, 107, 0, 0.04);
  color: var(--fire);
}

.service-tag.neutral {
  border-color: var(--iron);
  background: var(--steel);
  color: var(--ghost);
}

.service-btn {
  font-family: var(--ff-mono);
  font-size: 11px;
  color: var(--fire);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 700;
  transition: var(--trans-fast);
}

.service-btn:hover {
  color: var(--white);
  gap: 8px;
}

/* Pulsing highlight for Pick Up & Drop Service Card */
.service-card.highlight {
  border-color: rgba(255, 107, 0, 0.25);
  background: radial-gradient(circle at 100% 0%, rgba(255, 107, 0, 0.04) 0%, var(--carbon) 70%);
  animation: subtle-pulse 4s ease-in-out infinite;
}

.service-card.highlight .service-icon {
  background: var(--glow);
  border-color: rgba(255, 107, 0, 0.3);
}

/* Booking & Estimation Section */
.booking-dashboard {
  background: var(--carbon);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}

.dashboard-form-side {
  padding: 48px;
  border-right: 1px solid var(--border);
}

.dashboard-preview-side {
  padding: 48px;
  background-color: #0d0d0d;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--ff-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ghost);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: var(--pitch);
  border: 1px solid var(--iron);
  border-radius: 3px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 14px;
  transition: var(--trans-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--fire);
  box-shadow: 0 0 8px rgba(255, 107, 0, 0.15);
}

/* Style the calendar picker icon to be visible on dark background */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
}

/* Custom selectors for vehicle types */
.vehicle-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.vehicle-option {
  border: 1px solid var(--iron);
  background: var(--pitch);
  border-radius: 4px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--trans-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.vehicle-option-icon {
  font-size: 26px;
  transition: var(--trans-normal);
}

.vehicle-option-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ghost);
}

.vehicle-option:hover {
  border-color: var(--muted);
}

.vehicle-option:hover .vehicle-option-icon {
  animation: revEngine 0.25s infinite alternate;
}

.vehicle-option.selected {
  border-color: var(--fire);
  background: var(--exhaust);
}

.vehicle-option.selected .vehicle-option-title {
  color: var(--fire);
}

/* Service checklist grid */
.service-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--pitch);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 3px;
  cursor: pointer;
  transition: var(--trans-fast);
  user-select: none;
}

.check-item:hover {
  border-color: var(--iron);
}

.check-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 1px solid var(--iron);
  border-radius: 2px;
  background: var(--void);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: var(--trans-fast);
}

.check-checkbox:checked {
  background: var(--fire);
  border-color: var(--fire);
}

.check-checkbox:checked::after {
  content: '✓';
  color: var(--void);
  font-size: 11px;
  font-weight: bold;
}

.check-label {
  font-size: 13px;
  color: var(--silver);
}

.check-item.selected {
  border-color: var(--fire);
  background: rgba(255,107,0,0.02);
}

/* Digital Job Card CSS styling */
.digital-jobcard {
  background: #fdfdfd;
  color: #111111;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  position: relative;
  font-family: var(--ff-mono);
  font-size: 11.5px;
  line-height: 1.4;
  border-top: 6px solid var(--fire);
}

.digital-jobcard::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}

.jobcard-header {
  padding: 24px;
  background: #f7f7f7;
  border-bottom: 2px dashed #cccccc;
}

.jobcard-brand {
  font-family: var(--ff-head);
  font-size: 24px;
  letter-spacing: 0.05em;
  color: #111111;
  margin-bottom: 2px;
}

.jobcard-brand span {
  color: #e65c00;
}

.jobcard-tagline {
  font-size: 8.5px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.jobcard-meta-row {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}

.jobcard-meta-label {
  color: #888888;
  font-size: 9px;
  text-transform: uppercase;
}

.jobcard-meta-val {
  font-weight: 700;
}

.jobcard-body {
  padding: 24px;
}

.jobcard-info-table {
  width: 100%;
  margin-bottom: 18px;
  border-collapse: collapse;
}

.jobcard-info-table td {
  padding: 4px 0;
  vertical-align: top;
}

.jobcard-info-table td.label-td {
  color: #888888;
  width: 100px;
  text-transform: uppercase;
  font-size: 9.5px;
}

.jobcard-info-table td.val-td {
  font-weight: bold;
  color: #222222;
}

.jobcard-divider {
  border-top: 1px dashed #dddddd;
  margin: 14px 0;
}

.jobcard-section-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #888888;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.jobcard-services-list {
  list-style: none;
  min-height: 80px;
}

.jobcard-service-item {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  border-bottom: 1px solid #eeeeee;
}

.jobcard-service-item:last-child {
  border-bottom: none;
}

.jobcard-service-name {
  color: #333333;
}

.jobcard-service-price {
  font-weight: bold;
}

.jobcard-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: bold;
  color: #111111;
  padding-top: 10px;
  border-top: 2px dashed #cccccc;
  margin-top: 12px;
}

.jobcard-footer {
  padding: 16px 24px;
  background: #f7f7f7;
  border-top: 1px dashed #cccccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jobcard-barcode {
  font-size: 24px;
  letter-spacing: 2px;
  color: #444444;
  line-height: 1;
}

.jobcard-stamp {
  font-family: var(--ff-head);
  border: 2px double #e65c00;
  color: #e65c00;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 2px;
  letter-spacing: 0.1em;
  transform: rotate(-8deg);
  text-transform: uppercase;
}

/* Spare Parts Section */
.parts-marquee {
  background: var(--void);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
}

.parts-marquee-inner {
  display: flex;
  gap: 30px;
  white-space: nowrap;
}

.parts-marquee-content {
  display: flex;
  gap: 50px;
  animation: marquee-scroll 30s linear infinite;
  align-items: center;
}

.parts-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.parts-item-icon {
  font-size: 22px;
  color: var(--fire);
}

.parts-item-name {
  font-family: var(--ff-head);
  font-size: 18px;
  color: var(--snow);
  letter-spacing: 0.05em;
}

.parts-item-detail {
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--fire);
  border: 1px solid rgba(255, 107, 0, 0.35);
  background: rgba(255, 107, 0, 0.06);
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* FAQ Accordion Section */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
  gap: 16px;
}

.faq-card {
  background: var(--carbon);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--trans-normal);
}

.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question-btn h3 {
  font-family: var(--ff-body);
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--white);
  transition: var(--trans-fast);
}

.faq-card:hover .faq-question-btn h3 {
  color: var(--fire);
}

.faq-toggle-icon {
  font-size: 16px;
  color: var(--ghost);
  transition: var(--trans-normal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 28px;
  color: var(--ghost);
  font-size: 14.5px;
  line-height: 1.7;
  transition: max-height var(--trans-normal), padding var(--trans-normal);
}

.faq-card.open {
  border-color: var(--iron);
  background: var(--steel);
}

.faq-card.open .faq-question-btn h3 {
  color: var(--fire);
}

.faq-card.open .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--fire);
}

.faq-card.open .faq-answer {
  max-height: 180px;
  padding-bottom: 24px;
}

/* Contact & Info */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background: var(--carbon);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--trans-normal);
}

.info-card:hover {
  border-color: var(--iron);
  transform: translateX(4px);
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: var(--exhaust);
  border: 1px solid rgba(255, 107, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--fire);
  flex-shrink: 0;
}

.info-details h4 {
  font-family: var(--ff-head);
  font-size: 18px;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.info-details p {
  font-size: 14px;
  color: var(--ghost);
  line-height: 1.5;
}

.info-details a:hover {
  color: var(--fire);
}

.map-card {
  background: var(--carbon);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  min-height: 350px;
  display: flex;
  flex-direction: column;
}

.map-placeholder {
  flex-grow: 1;
  background-color: var(--void);
  background-image:
    linear-gradient(rgba(255, 107, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 0, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  text-align: center;
  position: relative;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%; width: 80%; height: 80%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 107, 0, 0.03), transparent 70%);
  pointer-events: none;
}

.map-icon {
  font-size: 32px;
  color: var(--fire);
  margin-bottom: 16px;
  animation: bounce 2s infinite;
}

.map-title {
  font-family: var(--ff-head);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.map-desc {
  font-size: 13.5px;
  color: var(--ghost);
  max-width: 280px;
  margin-bottom: 20px;
}

/* Footer styling */
footer {
  background-color: var(--void);
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h2 {
  font-family: var(--ff-head);
  font-size: 28px;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand h2 span {
  color: var(--fire);
}

.footer-brand p {
  font-size: 14px;
  color: var(--ghost);
  line-height: 1.6;
  max-width: 320px;
  margin-bottom: 20px;
}

.footer-brand-meta {
  font-family: var(--ff-mono);
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col h4 {
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--ghost);
}

.footer-links a:hover {
  color: var(--fire);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 107, 0, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.copyright {
  font-size: 13px;
  color: var(--muted);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 12px;
  color: var(--muted);
}

.footer-legal a:hover {
  color: var(--fire);
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.4); }
  70% { transform: scale(1.1); opacity: 1; box-shadow: 0 0 0 6px rgba(255, 107, 0, 0); }
  100% { transform: scale(1); opacity: 0.6; box-shadow: 0 0 0 0 rgba(255, 107, 0, 0); }
}

@keyframes subtle-pulse {
  0%, 100% { border-color: rgba(255, 107, 0, 0.25); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5); }
  50% { border-color: rgba(255, 107, 0, 0.55); box-shadow: 0 12px 35px rgba(255, 107, 0, 0.06); }
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes revEngine {
  0% { transform: rotate(-3deg) translateY(0); }
  100% { transform: rotate(3deg) translateY(-2px); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* Response Breakpoints (RWD) */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-form-side {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 32px;
  }
  .dashboard-preview-side {
    padding: 32px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .section {
    padding: 70px 0;
  }
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 70px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
    gap: 30px;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--pitch);
    flex-direction: column;
    padding: 40px 20px;
    gap: 24px;
    transition: var(--trans-normal);
    z-index: 999;
    border-top: 1px solid var(--border);
  }
  .nav-menu.open {
    left: 0;
  }
  .nav-btn-container {
    display: none; /* Hide standard buttons in header on mobile */
  }
  .hamburger {
    display: flex;
    margin-left: auto;
  }
  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .grid-3, .grid-4, .services-grid {
    grid-template-columns: 1fr;
  }
  .vehicle-selector, .service-checklist, .form-group-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .form-group-row {
    margin-bottom: 0;
  }
  .dashboard-form-side, .dashboard-preview-side {
    padding: 20px;
  }
  .digital-jobcard {
    font-size: 11px;
  }
  .jobcard-header, .jobcard-body {
    padding: 16px;
  }
  .jobcard-footer {
    padding: 12px 16px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
