/* ==========================================================================
   ECLECTIC LOGISTICS V3 — CLEAN ARCHITECTURAL DESIGN SYSTEM
   Base Palette: Royal Lime Dark (Charcoal Base, Electric Lime Highlights)
   Aesthetics: GNC Project Pros inspired flat grid layouts & sharp corners
   ========================================================================== */

/* ===================================================
   LOCAL CUSTOM FONTS
   =================================================== */

/* DieselPower — Big industrial slab, used for DRIVER OF THE YEAR mega title */
@font-face {
  font-family: 'DieselPower';
  src: url('../fonts/DieselPower.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* TiresItalic — Aggressive bold italic, used for hero headline */
@font-face {
  font-family: 'TiresItalic';
  src: url('../fonts/TiresItalic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
  font-display: block;
}

/* FatBrush — Brush script, used for 'of the' decorative text */
@font-face {
  font-family: 'FatBrush';
  src: url('../fonts/FatBrush.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Gridlockd — Rough industrial stencil font, used for section titles */
@font-face {
  font-family: 'Gridlockd';
  src: url('../fonts/Gridlockd.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Broken15 — Cracked/worn letters, used for rugged tags and badges */
@font-face {
  font-family: 'Broken15';
  src: url('../fonts/Broken15.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* BoringLesson — Clean, slightly industrial font */
@font-face {
  font-family: 'BoringLesson';
  src: url('../fonts/BoringLesson.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── 1. Color System & Custom Properties ── */
:root {
  --primary: #5A9B10;
  /* Darker green for buttons and primary fills */
  --primary-rgb: 90, 155, 16;
  --primary-hover: #7EC623;
  /* Lime green */
  --accent: #7EC623;
  /* Electric lime green */
  --accent-rgb: 126, 198, 35;

  --orange: #FF6A00;
  /* DOTY Accent orange */
  --orange-glow: rgba(255, 106, 0, 0.4);

  --bg-primary: #050505;
  /* Fully dark onyx black */
  --bg-secondary: #0c0c0c;
  /* Fully dark charcoal panel */
  --bg-tertiary: #121212;
  /* Fully dark slate */
  --bg-card: rgba(12, 12, 12, 0.45);

  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-light: #ffffff;

  --border-color: rgba(255, 255, 255, 0.1);
  --border-hover: var(--accent);
  --card-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.7);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  --font-heading: 'Funnel Display', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-accent: 'Outfit', sans-serif;
  --font-hero: 'DieselPower', sans-serif;
  --font-stencil: 'Outfit', sans-serif;

  /* Diamond plate pattern — high-fidelity image texture */
  --plate-bg: url('../images/dalle_texture_1.png');

  /* Sharp corners for GNC architectural design */
  --radius-card: 0px;
  --radius-btn: 0px;
  --radius-badge: 0px;
  --safe-top: env(safe-area-inset-top, 0px);
  --nav-height-mobile: 88px;
}

/* ── 2. Reset & Global Styles ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

picture {
  display: contents;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

/* Subtle concrete tire marks background overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  opacity: 0.035;
  background-image: url('../images/concrete_tire_texture.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Subtle noise texture overlay on body */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

.container {
  width: 100;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

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

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  touch-action: manipulation;
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--accent);
  z-index: 10000;
  transition: none;
  pointer-events: none;
  box-shadow: 0 0 10px var(--accent);
}

/* ── 3. Typography & Section Headings ── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-stencil);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--label-text-color, #000) !important;
  background: none;
  padding: 1.2rem 2.4rem;
  margin-bottom: 1.5rem;
  position: relative;
  white-space: nowrap;
  isolation: isolate;
}

.section-label::before {
  content: '';
  position: absolute;
  inset: -1.05rem -2.1rem;
  z-index: -1;
  background: url('../images/green_brush_stroke.png') no-repeat center center;
  background-size: 100% 100%;
  pointer-events: none;
  filter: var(--label-brush-filter, none);
}

.section-title {
  font-family: var(--font-accent);
  /* Clean geometric Outfit font */
  font-style: italic;
  font-size: clamp(1.85rem, 3.8vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.section-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-header {
  margin-bottom: 1rem;
}

.section-header.centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}


/* ── 4. Animations Base ── */
.blur-reveal {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(22px);
  transition: none !important;
}

.hero-title>span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
}

.js .hero-title.text-split:not(.is-split-ready)>span {
  visibility: hidden;
}

/* Word mask: clips the word as it slides up */
.word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
  padding-right: 0.06em;
}

.hero-split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(105%);
  will-change: transform;
}

.hero-title.is-split-ready .hero-split-word {
  animation: heroWordReveal 0.85s var(--word-delay, 0s) cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroWordReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title-split-word {
  display: inline-block;
  will-change: transform;
}

.parallax-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.parallax-img,
.hero-parallax-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.25);
}

/* ── 5. Site Header Navigation ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
  background: transparent;
}

.site-header.scrolled {
  padding: 1rem 0;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: none;
}

.site-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 1px;
  background: rgba(142, 212, 42, 0.8);
  box-shadow: 0 1px 6px rgba(142, 212, 42, 0.6);
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.site-header.scrolled::after {
  width: 100%;
}

.site-header .container {
  max-width: 1440px;
}

.page-scroll {
  min-height: 100%;
}

.js:not(.fonts-ready) .hero-title {
  opacity: 0;
}

.js.fonts-ready .hero-title {
  opacity: 1;
  transition: opacity 0.18s ease;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  z-index: 1001;
  flex-shrink: 0;
}

.brand-logo-wrap {
  display: block;
  height: 40px;
}

.brand-logo {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.3vw, 1.8rem);
  flex-shrink: 1;
  min-width: 0;
}

.nav-link {
  font-family: var(--font-accent);
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-link.is-active {
  color: var(--text-light);
}

/* Nav Apply Link Custom Style */
.nav-link-apply {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #000;
  background-color: var(--accent);
  background-image: linear-gradient(rgba(126, 198, 35, 0.8), rgba(126, 198, 35, 0.8)), url('../images/green_texture2.png');
  background-size: cover, 220%;
  background-position: center;
  background-blend-mode: normal, multiply;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-badge);
  transition: var(--transition-smooth);
}

.nav-link-apply:hover {
  background-color: #8ED42A;
  background-image: linear-gradient(rgba(142, 212, 42, 0.8), rgba(142, 212, 42, 0.8)), url('../images/green_texture2.png');
  background-size: cover, 220%;
  background-position: center;
  background-blend-mode: normal, multiply;
  box-shadow: 0 0 14px var(--green-glow);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
}

.header-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-light);
  background: rgba(126, 198, 35, 0.08);
  border: 1px solid rgba(126, 198, 35, 0.25);
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-btn);
}

.header-call-btn:hover {
  background-color: var(--accent);
  background-image: linear-gradient(rgba(126, 198, 35, 0.8), rgba(126, 198, 35, 0.8)), url('../images/green_texture2.png');
  background-size: cover, 220%;
  background-position: center;
  background-blend-mode: normal, multiply;
  border-color: var(--accent);
  color: #000;
  box-shadow: 0 0 20px var(--green-glow);
}

/* Nav Hamburger Menu Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 1002;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition-smooth);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ── 6. Mobile Navigation Drawer ── */

/* Full-viewport overlay that sits behind the drawer and covers the site */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 320px;
  height: 100%;
  height: 100dvh;
  max-height: 100dvh;
  background: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  z-index: 1100;
  padding: calc(2.5rem + env(safe-area-inset-top)) 2.5rem calc(2.5rem + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: var(--transition-smooth);
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.nav-drawer.open {
  transform: translateX(0);
  visibility: visible;
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 0 0 auto;
}

.drawer-brand {
  height: 36px;
}

.drawer-brand .brand-logo {
  height: 100%;
}

.drawer-close {
  font-size: 1.5rem;
  color: var(--text-muted);
}

.drawer-close:hover {
  color: var(--text-light);
}

.drawer-main {
  display: flex;
  flex-direction: column;
  gap: 1.65rem;
  flex: 1 0 auto;
}

.drawer-main a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-muted);
  opacity: 0;
  filter: blur(8px);
  transform: translateX(22px);
  transition:
    color 0.25s ease,
    padding-left 0.25s ease,
    opacity 0.46s ease,
    filter 0.46s ease,
    transform 0.46s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0s, 0s, calc(var(--drawer-index, 0) * 0.055s), calc(var(--drawer-index, 0) * 0.055s), calc(var(--drawer-index, 0) * 0.055s);
}

.nav-drawer.open .drawer-main a {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

.drawer-main a:hover {
  color: var(--text-light);
  padding-left: 0.5rem;
}

.drawer-footer {
  flex: 0 0 auto;
  padding-top: 0.5rem;
}

.drawer-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  background-color: var(--accent);
  background-image: linear-gradient(rgba(126, 198, 35, 0.8), rgba(126, 198, 35, 0.8)), url('../images/green_texture2.png');
  background-size: cover, 220%;
  background-position: center;
  background-blend-mode: normal, multiply;
  color: #000;
  padding: 1rem;
  border-radius: var(--radius-btn);
  width: 100%;
}

/* ── 7. Hero Section ── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

@supports (min-height: 100dvh) {
  .hero {
    min-height: 100dvh;
  }
}

.hero-slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(5, 5, 5, 0.35) 0%, rgb(0 0 0 / 85%) 90%);
  z-index: 3;
}

.hero-embers {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(to top, rgba(255, 106, 0, 0.08) 0%, rgba(255, 140, 0, 0.02) 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  margin-top: 4rem;
  max-width: 950px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero section label gets extra visibility boost over the dark photo overlay */
.hero-content .section-label {
  font-size: 1rem;
  padding: 2.4rem 4.5rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.85));
}

.hero-title {
  font-family: var(--font-hero);
  font-style: normal;
  font-size: clamp(3.8rem, 11vw, 9.5rem);
  font-weight: normal;
  line-height: 0.85;
  margin-bottom: 2rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.95);
}

.hero-title .green-stroke,
.hero-title .green-stroke .hero-split-word {
  color: var(--accent) !important;
  text-shadow:
    3px 3px 0 var(--primary),
    0 0 30px rgba(126, 198, 35, 0.4),
    4px 4px 0px rgba(0, 0, 0, 0.95) !important;
  -webkit-text-stroke: 1px var(--accent);
}

.hero-tagline {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 720px;
  margin-bottom: 3rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: normal;
  font-size: 1.05rem;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-btn);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent);
  background-image: linear-gradient(rgba(126, 198, 35, 0.8), rgba(126, 198, 35, 0.8)), url('../images/green_texture2.png');
  background-size: cover, 220%;
  background-position: center;
  background-blend-mode: normal, multiply;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.4);
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover {
  background-color: #8ED42A;
  background-image: linear-gradient(rgba(142, 212, 42, 0.8), rgba(142, 212, 42, 0.8)), url('../images/green_texture2.png');
  background-size: cover, 220%;
  background-position: center;
  background-blend-mode: normal, multiply;
  box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.3);
  transform: translate(2px, 2px);
}

.btn-outline {
  background-color: rgba(12, 12, 12, 0.6);
  background-image: url('../images/concrete_tire_texture.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  border: 2px solid var(--text-light);
  color: var(--text-light);
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.85);
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--text-light);
  box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.85);
  transform: translate(2px, 2px);
}

/* ── Hero-specific: transparent glass "Learn More" outline btn ── */
.hero-btns .btn-outline {
  background-color: transparent;
  background-image: none;
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: var(--text-light);
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.18s ease;
}

.hero-btns .btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: none;
  transform: translate(2px, 2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  pointer-events: none;
}

@media (max-height: 720px) {
  .hero-scroll-hint {
    display: none !important;
  }
}

.scroll-mouse {
  width: 20px;
  height: 32px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  display: block;
  width: 4px;
  height: 8px;
  background-color: var(--text-light);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheelAnim 2s infinite ease-in-out;
}

@keyframes scrollWheelAnim {
  0% {
    transform: translate(-50%, 0);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 8px);
    opacity: 0;
  }
}

/* ── 8. Specialties Ticker ── */
.ticker-wrap {
  overflow: hidden;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
  white-space: nowrap;
}

.ticker-track {
  display: inline-block;
  animation: tickerAnim 35s linear infinite;
}

.ticker-content {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ticker-content span {
  display: inline-block;
}

.ticker-content span:not(.ticker-dot) {
  color: var(--text-light);
}

.ticker-dot {
  color: var(--accent);
}

@keyframes tickerAnim {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ── 9. About Section & Frame Slider ── */
.about-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-primary);
  background-image: linear-gradient(rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.96)), url('../images/dalle_texture_2.png');
  background-size: cover;
  background-position: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}

.about-showcase {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
}

.about-slider-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
}

.about-slider-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-badge);
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  z-index: 10;
}

.about-slider-stage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.about-slide.active {
  z-index: 2;
}

.about-slide .parallax-wrap {
  width: 100%;
  height: 100%;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-desc p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.about-desc p:last-child {
  margin-bottom: 0;
}

/* About Stats Grid */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-top: 3px solid rgba(126, 198, 35, 0.25);
  padding: 2.5rem;
  border-radius: var(--radius-card);
  transition: border-color 0.5s ease, border-top-color 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.stat-card:hover,
.stat-card.active-scroll {
  border-color: var(--border-hover);
  border-top-color: var(--accent);
  transform: translateY(-5px);
}

.stat-icon-wrap {
  width: 48px;
  height: 48px;
  background: rgba(126, 198, 35, 0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-badge);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(126, 198, 35, 0.22);
}

.stat-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-light);
}

.stat-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ── 10. Services Section & Spotlight Cards ── */
.services-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background-color: #000;
  background-image:
    linear-gradient(180deg, rgba(12, 12, 12, 0.95) 0%, rgba(12, 12, 12, 0.95) 100%),
    var(--plate-bg);
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.doty-giant-title {
  display: flex;
  flex-direction: column;
  line-height: 0.85;
  text-align: left;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.doty-giant-title .doty-line-driver,
.doty-giant-title .doty-line-year {
  font-family: 'DieselPower', sans-serif;
  font-size: clamp(3rem, 10vw, 7.5rem);
  text-transform: uppercase;
  color: #fff;
  text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.9);
}

.doty-giant-title .doty-line-ofthe {
  font-family: 'FatBrush', cursive;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--accent);
  text-transform: lowercase;
  margin-left: 2rem;
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.9);
}

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

.svc-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(126, 198, 35, 0.15);
  overflow: hidden;
  transition: border-color 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  box-shadow: var(--card-shadow);
}

.svc-card:hover,
.svc-card.active-scroll {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(126, 198, 35, 0.25);
}

/* Spotlight Hover Shimmer layer */
.svc-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(126, 198, 35, 0.08), transparent 40%);
  z-index: 2;
}

.svc-card:hover .svc-glow,
.svc-card.active-scroll .svc-glow {
  opacity: 1;
}

/* Featured Reward Card Glow adjustment */
.featured-reward {
  border-color: rgba(255, 106, 0, 0.2);
}

.featured-reward:hover {
  border-color: var(--orange);
}

.featured-reward .svc-glow {
  background: radial-gradient(400px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(255, 106, 0, 0.12), transparent 40%);
}

.svc-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
}

.svc-img-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgb(0 0 0 / 85%));
  z-index: 1;
}

.svc-body {
  padding: 2.25rem;
  position: relative;
  z-index: 3;
}

.svc-icon {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.svc-badge-label {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.featured-reward .svc-badge-label {
  color: var(--orange);
}

.svc-body h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
}

/* ── 10b. Driver of the Year Qualifications ── */
.qualifications-section {
  padding: clamp(5.7rem, 8vw, 7.25rem) 0 clamp(4.5rem, 6vw, 6.5rem);
  position: relative;
  overflow: hidden;
  min-height: clamp(760px, 69vw, 980px);
  background-color: #000;
  background-image: radial-gradient(circle at 72% 34%, rgba(126, 198, 35, 0.32), transparent 28%), linear-gradient(90deg, #000000 0%, #000 38%, rgb(0 0 0) 66%, rgb(0 0 0) 100%), var(--plate-bg);
  border-top: 1px solid var(--border-color);
}

.qualifications-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.13;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(126, 198, 35, 0.25) 48% 48.2%, transparent 48.2%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 12px);
  mix-blend-mode: screen;
}

/* Absolute background container — sits behind all content */
.doty-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Truck image — covers right 50% of the section */
.doty-section-truck {
  position: absolute;
  top: 5%;
  right: 0;
  width: 100%;
  height: 68%;
  object-fit: cover;
  object-position: center 38%;
  display: none;
  opacity: 1;
  filter: saturate(1.08) contrast(1.04) brightness(1.02);
  -webkit-mask-image:
    linear-gradient(90deg, #000 0%, #000 94%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 11%, #000 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, #000 0%, #000 94%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 11%, #000 88%, transparent 100%);
  mask-composite: intersect;
}

/* Gradient overlay — full width, left dark → right transparent */
.doty-section-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.2) 34%, rgba(0, 0, 0, 0) 62%, rgba(0, 0, 0, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.86) 100%);
}

/* Ensure the container and content sit above the background layers */
.qualifications-section>.container,
.qualifications-section>.qualifications-grid {
  position: relative;
  z-index: 1;
}

.qualifications-section>.container {
  max-width: 1651px;
}



.qualifications-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.qual-card {
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(126, 198, 35, 0.15);
  padding: 2rem 1rem;
  transition: border-color 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.qual-card:hover,
.qual-card.active-scroll {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(126, 198, 35, 0.25);
}

.qual-icon-wrap {
  width: 50px;
  height: 50px;
  background: rgba(126, 198, 35, 0.08);
  border: 1px solid rgba(126, 198, 35, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
  clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}

.qual-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-light);
  text-transform: uppercase;
}

.qual-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Slogan Callout */
.slogan-callout {
  background: var(--bg-secondary);
  border: 1px solid rgba(126, 198, 35, 0.22);
  padding: 1.75rem 2rem;
  margin-top: 4rem;
  text-align: center;
  clip-path: polygon(0.5% 8%, 99.5% 2%, 99% 90%, 1% 95%);
  box-shadow: var(--card-shadow);
}

.slogan-text {
  font-family: 'DieselPower', sans-serif;
  font-style: normal;
  font-size: clamp(1.1rem, 3.2vw, 2rem);
  font-weight: normal;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.9);
}

.slogan-sep {
  font-family: sans-serif;
  font-size: 0.65em;
  vertical-align: middle;
  opacity: 0.7;
  margin: 0 0.4em;
  color: var(--accent);
}

/* Rewards Panel */
.doty-rewards-panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid var(--accent);
  padding: 3.5rem 2.5rem;
  margin-top: 4rem;
  position: relative;
  box-shadow: var(--card-shadow);
}

.doty-rewards-header {
  text-align: center;
  margin-bottom: 3rem;
}

.doty-rewards-header h3 {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1.4rem, 3.2vw, 1.8rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

.doty-rewards-header h3 i {
  color: var(--accent);
  margin-right: 0.75rem;
}

.doty-rewards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.doty-reward-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.5s ease;
}

.doty-reward-item .reward-icon {
  width: 60px;
  height: 60px;
  background: rgba(126, 198, 35, 0.08);
  border: 1px solid rgba(126, 198, 35, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
  transition: background 0.5s ease, color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

.doty-reward-item:hover .reward-icon,
.doty-reward-item.active-scroll .reward-icon {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 15px var(--green-glow);
}

.doty-reward-item h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  text-transform: uppercase;
}

.doty-reward-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------------------------------------------------- */
/* Pass 2: Driver of the Year Flyer Layout & Tooltips   */
/* ---------------------------------------------------- */

.doty-flyer-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(1.5rem, 3vw, 4rem);
  align-items: start;
  min-height: clamp(430px, 42vw, 610px);
  margin-bottom: clamp(-1.75rem, -2vw, -0.5rem);
  position: relative;
  z-index: 3;
}

.doty-flyer-layout.blur-reveal {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

.doty-poster-title {
  display: none;
  position: relative;
  z-index: 5;
  margin: 0 0 clamp(-0.6rem, -1vw, -0.2rem);
  font-family: 'DieselPower', 'Impact', sans-serif;
  font-size: clamp(4.4rem, 9.25vw, 11.3rem);
  font-weight: normal;
  line-height: 0.78;
  color: #08b800;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 0 22px rgba(36, 255, 0, 0.18), 0 9px 0 rgba(0, 0, 0, 0.65);
}

.doty-flyer-left {
  display: flex;
  flex-direction: column;
  align-self: start;
  max-width: 690px;
  padding-top: clamp(0.3rem, 1.2vw, 1.1rem);
  position: relative;
  z-index: 6;
}

.qualifications-section .doty-flyer-left .section-label {
  align-self: flex-start;
  margin-bottom: 0.75rem;
  transform: none;
  filter: saturate(1.35) contrast(1.2);
}

.doty-flyer-title {
  position: static;
  width: auto;
  height: auto;
  margin: 0 0 1.5rem 0;
  overflow: visible;
  clip: auto;
  font-family: 'DieselPower', 'Impact', sans-serif;
  font-style: normal;
  font-size: clamp(3rem, 10vw, 7.5rem);
  font-weight: normal;
  line-height: 0.85;
  color: var(--text-light);
  text-transform: uppercase;
  text-shadow: 4px 4px 0px rgba(0, 0, 0, 0.9);
}

.doty-flyer-subtitle {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
  max-width: 620px;
  letter-spacing: 0.05em;
  text-shadow: none;
}

.doty-flyer-desc {
  max-width: 620px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: normal;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0;
  text-transform: none;
  letter-spacing: normal;
  text-shadow: none;
}

.doty-metallic-container {
  display: none;
}

.doty-metallic-board {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

.doty-hotspots-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.doty-hotspot {
  position: absolute;
  width: 12%;
  height: 70%;
  top: 20%;
  cursor: pointer;
  z-index: 10;
}

.doty-hotspot.hs-1 {
  left: 4%;
}

.doty-hotspot.hs-2 {
  left: 19%;
}

.doty-hotspot.hs-3 {
  left: 34%;
}

.doty-hotspot.hs-4 {
  left: 50%;
}

.doty-hotspot.hs-5 {
  left: 66%;
}

.doty-hotspot.hs-6 {
  left: 81%;
}

/* Custom CSS Tooltip Hover Elements */
.doty-hotspot::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%) scale(0.85);
  background: rgba(15, 23, 10, 0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--accent);
  color: var(--text-light);
  padding: 0.85rem 1.15rem;
  border-radius: 6px;
  font-size: 0.85rem;
  line-height: 1.45;
  width: 250px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 15px rgba(126, 198, 35, 0.2);
  z-index: 100;
  text-align: center;
  font-family: var(--font-main);
  font-weight: 500;
}

/* Tooltip Arrow */
.doty-hotspot::before {
  content: '';
  position: absolute;
  bottom: 97%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  border-width: 8px 8px 0;
  border-style: solid;
  border-color: var(--accent) transparent transparent;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 100;
}

.doty-hotspot:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

.doty-hotspot:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Right Column: truck and reward bundle layered like the flyer */
.doty-rewards-composite {
  position: relative;
  min-height: clamp(587px, 59vw, 718px);
  width: min(142%, 980px);
  margin: clamp(-3.3rem, -3.4vw, -1.5rem) -8vw 0 auto;
  isolation: isolate;
  transform: translateX(clamp(0rem, 3vw, 3.75rem));
}

.doty-rewards-composite::before {
  content: "";
  position: absolute;
  inset: 9% -4% 1% 1%;
  z-index: 0;
  background:
    radial-gradient(circle at 62% 39%, rgb(0 0 0 / 34%), transparent 33%),
    radial-gradient(circle at 82% 72%, rgba(255, 106, 0, 0.12), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.05) 46%, rgba(0, 0, 0, 0.36));
  filter: blur(20px);
  opacity: 0.95;
}

.doty-rewards-composite::after {
  content: "";
  position: absolute;
  inset: -1% -8% 3% -6%;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.44) 13%, rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.38) 0%, rgba(0, 0, 0, 0.03) 28%, rgba(0, 0, 0, 0.04) 74%, rgba(0, 0, 0, 0.34) 100%);
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 18%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 16%, #000 91%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 18%, #000 92%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 16%, #000 91%, transparent 100%);
  mask-composite: intersect;
}

.doty-composite-truck-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  opacity: 1;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.65);
}

.doty-composite-rewards-img {
  position: absolute;
  right: 131px;
  bottom: 147px;
  width: min(35%, 312px);
  z-index: 3;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.85));
  transform-origin: bottom right;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.doty-rewards-composite:hover .doty-composite-rewards-img {
  transform: translateY(-5px) scale(1.04);
}

.qualifications-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  width: 100%;
  margin: clamp(-8.5rem, -8vw, -5rem) 0 0;
  position: relative;
  z-index: 7;
  background: black;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2.25rem 1.5rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
}

.qualifications-grid .qual-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease, background-color 0.3s ease;
  height: 100%;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(10px);
}

.qualifications-grid .qual-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(24, 24, 24, 0.65);
}

.qualifications-grid .qual-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(126, 198, 35, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(126, 198, 35, 0.25);
  color: var(--accent);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.qualifications-grid .qual-card:hover .qual-icon-wrap {
  background: var(--accent);
  color: #050505;
}

.qualifications-grid .qual-icon-wrap i {
  font-size: 1.35rem;
  display: inline-block;
}

.qualifications-grid .qual-card h3 {
  font-family: 'Outfit', var(--font-heading);
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

.qualifications-grid .qual-card p {
  font-family: 'Manrope', sans-serif;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

/* ── 11. Process Section with Scroll-Driven Line ── */
.process-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 8rem 0;
  background-color: var(--bg-primary);
  background-image: linear-gradient(rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.96)), url('../images/concrete_tire_texture.png');
  background-size: cover;
  background-position: center;
  --label-text-color: #000;
  --label-brush-filter: none;
}

.process-green-bg {
  position: absolute;
  inset: 0;
  background-color: var(--accent); /* Neon green (#7EC623) */
  background-image: linear-gradient(180deg, rgba(126, 198, 35, 0.88) 0%, rgba(90, 155, 16, 0.94) 100%), url('../images/chatgpt_texture_4.png');
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
}

.process-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-top: 2.5rem;
}

.process-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--line-bg, rgba(255, 255, 255, 0.05));
  z-index: 1;
}

.process-line-fill {
  width: 100%;
  height: 0;
  background: var(--line-fill-bg, linear-gradient(to bottom, var(--accent) 0%, var(--primary) 100%));
  box-shadow: var(--line-fill-shadow, 0 0 15px var(--accent));
  transition: height 0.1s ease;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  z-index: 2;
}

.process-card {
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 4rem;
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  transition: border-color 0.5s ease, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.process-step:hover .process-card,
.process-step.active-scroll .process-card {
  border-color: var(--border-hover);
}

.process-num {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2rem;
  background-image: linear-gradient(rgba(5, 5, 5, 0.45), rgba(5, 5, 5, 0.45)), url('../images/green_texture.png');
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: var(--transition-smooth);
}

.process-step:hover .process-num,
.process-step.active-scroll .process-num {
  background-image: linear-gradient(rgba(5, 5, 5, 0.2), rgba(5, 5, 5, 0.2)), url('../images/green_texture.png');
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-card h3 {
  font-size: 1.85rem;
  margin-bottom: 1.25rem;
  color: var(--text-light);
  text-transform: uppercase;
}

.process-card p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.process-dot {
  position: absolute;
  left: 50%;
  top: 4rem;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--dot-bg, var(--bg-primary));
  border: 3px solid var(--dot-border, var(--border-color));
  z-index: 10;
  transition: var(--transition-smooth);
}

.process-step.in-view .process-dot {
  border-color: var(--dot-active-border, var(--accent));
  box-shadow: var(--dot-active-shadow, 0 0 10px var(--accent));
  background: var(--dot-active-bg, var(--accent));
}

.process-visual {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  aspect-ratio: 1 / 1;
}

.process-visual .parallax-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.visual-tag {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.8rem;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  border-radius: var(--radius-badge);
}

/* Alternate Left/Right process steps */
.process-step:nth-child(even) .process-card {
  grid-column: 2;
}

.process-step:nth-child(even) .process-visual {
  grid-column: 1;
  grid-row: 1;
}

/* ── 12. Guarantees Marquee ── */
.guarantees-marquee {
  overflow: hidden;
  padding: 1.25rem 0;
  background: var(--accent);
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  display: flex;
  align-items: center;
  white-space: nowrap;
  /* Distressed flyer paint banner clip */
  clip-path: polygon(0.5% 10%, 99.5% 2%, 99% 90%, 1% 95%);
  box-shadow: inset 0px 5px 15px rgba(0, 0, 0, 0.15);
}

.guarantees-marquee .marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marqueeTextScroll 35s linear infinite;
}

.guarantees-marquee .marquee-content {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}

.guarantees-marquee span {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #000 !important;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.guarantees-marquee span i {
  color: #000 !important;
  font-size: 1rem;
}

.guarantees-marquee .divider {
  color: #000 !important;
  font-weight: normal;
  font-size: 1.2rem;
  opacity: 0.45;
}

@keyframes marqueeTextScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* ── 13. Gallery Work Section ── */
.projects-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.projects-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
}

.projects-top h2 {
  margin-bottom: 0;
}

.gallery-pills-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.gallery-pills {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 100%;
  width: 100%;
}

.gallery-pills::-webkit-scrollbar {
  display: none;
}

.gallery-pill {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-badge);
  background: transparent;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  flex-shrink: 0;
  user-select: none;
}

.gallery-pill.active {
  color: var(--text-light);
  background: rgba(126, 198, 35, 0.12);
  border-color: rgba(126, 198, 35, 0.3);
}

.gallery-pill:hover:not(.active) {
  color: var(--text-light);
}

.gallery-controls {
  display: flex;
  gap: 0.75rem;
}

.gallery-nav {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-btn);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  color: var(--text-light);
  transition: var(--transition-smooth);
  user-select: none;
}

.gallery-nav:hover:not(:disabled) {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  box-shadow: 0 0 15px var(--green-glow);
}

.gallery-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.projects-grid {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 2rem;
}

.projects-grid::-webkit-scrollbar {
  display: none;
}

.project-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--card-shadow);
  transition: border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
}

.project-card:hover,
.project-card.active-scroll {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.project-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.project-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-photo .parallax-wrap {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-photo .parallax-wrap {
  transform: scale(1.06);
}

.project-photo-count {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(5, 5, 5, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  padding: 0.4rem 0.8rem;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  border-radius: var(--radius-badge);
}

.project-view-more {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: var(--accent);
  color: #000;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-badge);
  opacity: 0;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px var(--green-glow);
}

.project-card:hover .project-view-more {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.project-meta {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.project-meta span:first-child {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.project-meta strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.project-meta small {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.project-card.is-hidden {
  display: none !important;
}

/* ── 14. Before & After Sliders ── */
.before-after-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-secondary);
  background-image: linear-gradient(rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.94)), var(--plate-bg);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.before-after-section .section-header {
  margin-bottom: 1rem;
}

.before-after-section .section-sub {
  margin-bottom: 0;
}

.ba-card-centered {
  max-width: 800px;
  margin: 0 auto;
}

.ba-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.ba-card:hover {
  border-color: var(--border-hover);
}

.ba-media {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}

.ba-before,
.ba-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-before {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}

.ba-after {
  z-index: 1;
}

.ba-label {
  position: absolute;
  bottom: 1rem;
  background: rgba(5, 5, 5, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  padding: 0.35rem 0.75rem;
  font-family: var(--font-accent);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  border-radius: var(--radius-badge);
  z-index: 5;
  pointer-events: none;
}

.ba-label-before {
  left: 1rem;
}

.ba-label-after {
  right: 1rem;
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  z-index: 6;
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: var(--text-light);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
}

.ba-handle::before,
.ba-handle::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
}

.ba-handle::before {
  border-width: 5px 6px 5px 0;
  border-color: transparent var(--bg-primary) transparent transparent;
  left: 9px;
}

.ba-handle::after {
  border-width: 5px 0 5px 6px;
  border-color: transparent transparent transparent var(--bg-primary);
  right: 9px;
}

.ba-media input[type="range"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
  pointer-events: none;
}

.ba-body {
  padding: 2rem;
}

.ba-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.ba-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ── 15. Active Location Tracker Widget ── */
.tracker-subsection {
  padding: 4rem 0;
  background-color: transparent;
  background-image: radial-gradient(circle at 50% 50%, rgba(126, 198, 35, 0.06) 0%, transparent 70%);
  position: relative;
}

.doty-tracker-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126, 198, 35, 0.35) 50%, transparent);
  margin: 5rem auto 4.5rem;
}

.doty-tracker-section {
  position: relative;
  z-index: 10;
  width: 100%;
}

.doty-tracker-header {
  margin-bottom: 3.5rem;
  text-align: center;
  margin-top: 3.5rem;
}

.tracker-dashboard {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(126, 198, 35, 0.15);
  padding: 2rem;
  border-radius: var(--radius-card);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55);
}

.tracker-map-panel {
  position: relative;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  overflow: hidden;
  border-radius: var(--radius-card);
}

.map-wrapper {
  position: relative;
  width: 100%;
  height: 500px;
}

#dispatch-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #050505;
}

/* Custom Leaflet Controls & Overrides to match theme */
.leaflet-container {
  background-color: #050505 !important;
  font-family: var(--font-body) !important;
}

.leaflet-bar {
  border: 1px solid var(--border-color) !important;
  border-radius: 0px !important;
  box-shadow: none !important;
}

.leaflet-bar a {
  background-color: var(--bg-secondary) !important;
  color: var(--text-main) !important;
  border-bottom: 1px solid var(--border-color) !important;
  transition: var(--transition-smooth);
}

.leaflet-bar a:hover {
  background-color: var(--accent) !important;
  color: #000 !important;
}

.leaflet-control-attribution {
  background: rgba(5, 5, 5, 0.75) !important;
  color: var(--text-muted) !important;
  font-size: 8px !important;
}

.leaflet-control-attribution a {
  color: var(--accent) !important;
}

/* Leaflet Custom DivIcon Markers */
.map-hub-marker {
  background: var(--accent);
  border: 2px solid var(--bg-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  transition: var(--transition-smooth);
}

.map-hub-marker.active {
  background: #ffffff;
  box-shadow: 0 0 16px 4px var(--accent);
  border-color: var(--accent);
}

.map-truck-marker {
  background: var(--orange);
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange-glow);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.map-truck-marker:hover,
.map-truck-marker.active {
  transform: scale(1.3);
  box-shadow: 0 0 16px 4px var(--orange);
  border-color: var(--orange);
  z-index: 9999 !important;
}

/* Hub Label tooltips */
.map-hub-tooltip {
  background: rgba(12, 12, 12, 0.9) !important;
  border: 1px solid var(--border-color) !important;
  color: var(--text-main) !important;
  font-family: var(--font-accent) !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 2px 6px !important;
  border-radius: 0px !important;
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.9) !important;
}

.leaflet-tooltip-top:before {
  border-top-color: var(--border-color) !important;
}

.map-hud-panel {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 1.5rem;
  border-radius: var(--radius-card);
  z-index: 10;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.hud-tag {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.map-hud-panel h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

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

.hud-grid span {
  display: block;
  font-family: var(--font-accent);
  font-size: 0.68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.hud-grid strong {
  font-size: 0.95rem;
  color: var(--text-light);
  word-break: break-all;
}

.status-active {
  color: var(--accent) !important;
}

.score-high {
  color: var(--accent) !important;
}

.score-low {
  color: #ff6b35 !important;
}

.map-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border-color);
  background: rgba(5, 5, 5, 0.5);
}

.map-header h4 {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-accent);
  letter-spacing: 0.05em;
}

.map-header h4 i {
  color: var(--accent);
}

.pulse-indicator {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(126, 198, 35, 0.6);
  animation: pulseGlow 1.8s ease-in-out infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(126, 198, 35, 0.6);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(126, 198, 35, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(126, 198, 35, 0);
  }
}

.tracker-leader-panel {
  display: flex;
  flex-direction: column;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: var(--radius-card);
}

.leaderboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1rem;
}

.leaderboard-header h4 {
  font-size: 1.15rem;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.leaderboard-header span {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.leaderboard-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: auto;
  max-height: 320px;
}

.leaderboard-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.leaderboard-item:hover,
.leaderboard-item.active {
  border-color: var(--accent);
  background: rgba(126, 198, 35, 0.04);
}

.leader-rank-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rank-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
  width: 20px;
}

.leader-name-wrap strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-light);
}

.leader-name-wrap span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.leader-miles {
  text-align: right;
}

.leader-miles strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-light);
}

.leader-miles span {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
}

/* ── 16. Contact Section & Estimates ── */
.merged-contact-cta {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.contact-map-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.65;
}

.contact-map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, transparent 0%, rgba(8, 8, 8, 0.72) 60%, rgba(5, 5, 5, 0.92) 100%);
  z-index: 2;
  pointer-events: none;
}

.merged-contact-cta .cta-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 6rem;
  align-items: center;
}

.merged-cta-copy h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.merged-cta-copy p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.merged-cta-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ── Contact Map Wrapper (zoomed business map card) ── */
.contact-map-wrapper {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

/* Corner screw rivets inside wrapper */
.contact-map-wrapper .screw {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  z-index: 20;
  pointer-events: none;
}

.contact-map-wrapper .screw.top-left {
  top: 10px;
  left: 10px;
}

.contact-map-wrapper .screw.top-right {
  top: 10px;
  right: 10px;
}

.contact-map-wrapper .screw.bottom-left {
  bottom: 10px;
  left: 10px;
}

.contact-map-wrapper .screw.bottom-right {
  bottom: 10px;
  right: 10px;
}

#contact-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: #050505;
  display: block;
  /* iframe-specific resets */
  border: 0;
  pointer-events: none;
  /* map is decorative; overlay card handles interaction */
}

/* Floating HUD card overlaid on contact map */
.contact-map-wrapper .merged-contact-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(126, 198, 35, 0.25);
  border-radius: var(--radius-card);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-map-wrapper .merged-contact-card strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-map-wrapper .merged-contact-card a.contact-card-phone {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-map-wrapper .merged-contact-card a.contact-card-phone:hover {
  color: var(--text-light);
}

.contact-card-location {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-map-wrapper .merged-contact-card hr {
  border: none;
  border-top: 1px solid var(--border-color);
  margin: 0.5rem 0;
}

.contact-card-specialties {
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* Custom HQ Marker Pulse */
.map-hq-marker {
  position: relative;
  width: 20px;
  height: 20px;
}

.hq-marker-pulse {
  width: 14px;
  height: 14px;
  background-color: var(--accent);
  border-radius: 50%;
  border: 2px solid #000;
  position: absolute;
  top: 3px;
  left: 3px;
  box-shadow: 0 0 10px var(--accent);
}

.hq-marker-pulse::after {
  content: '';
  width: 300%;
  height: 300%;
  border: 2px solid var(--accent);
  border-radius: 50%;
  position: absolute;
  top: -100%;
  left: -100%;
  animation: hq-pulse 1.8s infinite ease-out;
  opacity: 0;
  pointer-events: none;
}

@keyframes hq-pulse {
  0% {
    transform: scale(0.3);
    opacity: 0.8;
  }

  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* ── 17. Testimonials Section ── */
.testimonials-section {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-primary);
  background-image: linear-gradient(rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.94)), var(--plate-bg);
  border-top: 1px solid var(--border-color);
}

/* Testimonials Slider Layout & Elements */
.testimonials-slider-container {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  padding: 6rem 4rem 5rem;
  box-shadow: var(--card-shadow);
}

.testimonials-bg-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}

.testimonials-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease-in-out, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials-bg-slide.active {
  opacity: 0.12;
  transform: scale(1);
}

.testimonials-bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(110%);
}

.testimonials-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 30%, var(--bg-primary) 98%);
  z-index: 1;
}

.slider_wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider_track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.slider_slide {
  flex: 0 0 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 3rem;
}

.slider_quote {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.8vw, 1.85rem);
  font-style: italic;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  position: relative;
  font-weight: 500;
  max-width: 800px;
}

.slider_quote::before {
  content: '“';
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 6rem;
  font-family: serif;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
}

.slider_author_wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.slider_avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  object-fit: cover;
  box-shadow: 0 0 15px rgba(126, 198, 35, 0.25);
}

.slider_author_meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.slider_author {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
}

.slider_role {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--accent);
}

.slider_controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 3.5rem;
  padding: 8px 0;
}

.slider_dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider_dot.active {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
  transform: scale(1.2);
}

.slider_dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

/* ── 18. Footer Block ── */
/* ── 18. Site Footer — Premium 4-Col Layout ── */

.site-footer {
  background: #020202;
  position: relative;
  overflow: hidden;
}

/* Horizontal neon accent stripe at very top of footer */
.footer-accent-bar {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
      transparent 0%,
      var(--accent) 20%,
      var(--accent) 80%,
      transparent 100%);
  opacity: 0.75;
  box-shadow: 0 0 18px 2px rgba(126, 198, 35, 0.35);
}

/* Subtle plate texture behind footer */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--plate-bg);
  opacity: 0.06;
  pointer-events: none;
}

/* 4-column main grid */
.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding: 5rem 0 4rem;
  border-bottom: 1px solid var(--border-color);
}

/* ── Col 1: Brand ── */
.footer-brand-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-logo {
  height: 44px;
  width: auto;
  align-self: flex-start;
  margin-bottom: 1.25rem;
  filter: brightness(1.05);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.75rem;
}

.footer-socials {
  display: flex;
  gap: 0.6rem;
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-color);
  border-radius: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: var(--transition-smooth);
  background: rgba(255, 255, 255, 0.02);
}

.footer-social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(126, 198, 35, 0.35);
}

/* ── Col 2 & 3: Nav blocks ── */
.footer-nav-block {
  display: flex;
  flex-direction: column;
}

.footer-nav-heading {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-nav-block nav,
.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-block nav a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.footer-nav-block nav a:hover {
  color: var(--text-light);
  padding-left: 0.35rem;
}

/* Apply link accent style in portals nav */
.footer-link-accent {
  color: var(--accent) !important;
  font-weight: 600;
}

.footer-link-accent:hover {
  color: var(--text-light) !important;
}

/* ── Col 4: Contact block ── */
.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-phone {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: -0.01em;
  line-height: 1;
  transition: var(--transition-smooth);
}

.footer-phone:hover {
  color: var(--accent);
}

.footer-address,
.footer-hours {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.footer-address i,
.footer-hours i {
  color: var(--accent);
  margin-top: 0.15rem;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.7rem 1.4rem;
  background-color: var(--accent);
  background-image: url('../images/green_texture.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  color: #000;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 0;
  transition: var(--transition-smooth);
  align-self: flex-start;
}

.footer-cta-btn:hover {
  background-color: #fff;
  background-image: url('../images/green_texture.png');
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  color: #000;
  box-shadow: 0 4px 18px rgba(126, 198, 35, 0.4);
  transform: translateY(-2px);
}

/* ── Bottom bar ── */
.footer-bottom {
  position: relative;
  z-index: 1;
  padding: 1.5rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-dot-info {
  opacity: 0.55;
  letter-spacing: 0.04em;
}



/* ── 19. Back to Call Sticky Mobile Trigger ── */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  border: 1.5px solid transparent;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  left: 5%;
  width: 90%;
  background-color: var(--accent);
  background-image: linear-gradient(rgba(126, 198, 35, 0.8), rgba(126, 198, 35, 0.8)), url('../images/green_texture2.png');
  background-size: cover, 220%;
  background-position: center;
  background-blend-mode: normal, multiply;
  color: #000;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 0;
  z-index: 999;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
  clip-path: polygon(1% 2%, 99% 0%, 98% 98%, 0% 97%);

  /* Transition state defaults */
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(100% + 2rem));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

.sticky-mobile-cta.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-mobile-cta:hover {
  background-color: #8ED42A;
  background-image: linear-gradient(rgba(142, 212, 42, 0.8), rgba(142, 212, 42, 0.8)), url('../images/green_texture2.png');
  background-size: cover, 220%;
  background-position: center;
  background-blend-mode: normal, multiply;
  box-shadow: 0 4px 15px rgba(142, 212, 42, 0.4), 0 8px 25px rgba(0, 0, 0, 0.45);
}

.sticky-mobile-cta.process-theme {
  background-color: #0c0c0c !important;
  background-image: none !important;
  color: var(--accent) !important;
  border-color: var(--accent) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 15px rgba(126, 198, 35, 0.4) !important;
}

.sticky-mobile-cta.process-theme:hover {
  background-color: #1a1a1a !important;
  color: #fff !important;
  border-color: #fff !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.9), 0 0 20px rgba(255, 255, 255, 0.3) !important;
}


/* ====================================================
   RUGGED FLYER DETAILS — SCREW HEADS & INDUSTRIAL METALLIC RIVETS
   ==================================================== */

.stat-card,
.svc-card,
.process-card,
.project-card,
.testimonials-slider-container,
.merged-contact-card,
.tracker-dashboard,
.qualifications-grid,
.doty-rewards-panel,
.apply-card,
.podium-card,
.leaderboard-panel,
.safety-rule-card,
.owner-map-panel,
.owner-roster-panel {
  position: relative;
}

.stat-card::before,
.stat-card::after,
.svc-card::before,
.svc-card::after,
.process-card::before,
.process-card::after,
.project-card::before,
.project-card::after,
.testimonials-slider-container::before,
.testimonials-slider-container::after,
.merged-contact-card::before,
.merged-contact-card::after,
.tracker-dashboard::before,
.tracker-dashboard::after,
.qualifications-grid::before,
.qualifications-grid::after,
.doty-rewards-panel::before,
.doty-rewards-panel::after,
.apply-card::before,
.apply-card::after,
.podium-card::before,
.podium-card::after,
.leaderboard-panel::before,
.leaderboard-panel::after,
.safety-rule-card::before,
.safety-rule-card::after,
.owner-map-panel::before,
.owner-map-panel::after,
.owner-roster-panel::before,
.owner-roster-panel::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #111;
  z-index: 10;
  pointer-events: none;
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.25), 1px 1px 3px rgba(0, 0, 0, 0.85);
}

/* Left screws — slotted line at 45deg */
.stat-card::before,
.svc-card::before,
.process-card::before,
.project-card::before,
.testimonials-slider-container::before,
.merged-contact-card::before,
.tracker-dashboard::before,
.qualifications-grid::before,
.doty-rewards-panel::before,
.apply-card::before,
.podium-card::before,
.leaderboard-panel::before,
.safety-rule-card::before,
.owner-map-panel::before,
.owner-roster-panel::before {
  top: 12px;
  left: 12px;
  background:
    linear-gradient(45deg, transparent 44%, #111 44%, #111 56%, transparent 56%),
    radial-gradient(circle at 35% 35%, #777 10%, #333 80%);
}

/* Right screws — slotted line at 135deg (natural variation) */
.stat-card::after,
.svc-card::after,
.process-card::after,
.project-card::after,
.testimonials-slider-container::after,
.merged-contact-card::after,
.tracker-dashboard::after,
.qualifications-grid::after,
.doty-rewards-panel::after,
.apply-card::after,
.podium-card::after,
.leaderboard-panel::after,
.safety-rule-card::after,
.owner-map-panel::after,
.owner-roster-panel::after {
  top: 12px;
  right: 12px;
  background:
    linear-gradient(135deg, transparent 44%, #111 44%, #111 56%, transparent 56%),
    radial-gradient(circle at 35% 35%, #777 10%, #333 80%);
}

/* ====================================================
   NEW PAGES CUSTOM STYLING (APPLY, OWNER DASHBOARD, LEADERBOARD)
   ==================================================== */

.small-container {
  max-width: 800px;
  margin: 0 auto;
}

.wide-container {
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
}

.inner-page .page-content {
  padding-top: 120px;
  padding-bottom: 6rem;
  background-color: var(--bg-primary);
  background-image: linear-gradient(rgba(5, 5, 5, 0.95), rgba(5, 5, 5, 0.95)), var(--plate-bg);
  min-height: 80vh;
}

/* CDL Driver Application Form Styles */
.apply-section {
  padding: 4rem 0 6rem;
}

/* Minimum Driver Hiring Requirements Card */
.requirements-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 2.25rem 2.5rem;
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.requirements-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
}

.requirements-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.requirements-icon {
  color: var(--accent);
  font-size: 1.25rem;
}

.requirements-header h3 {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin: 0;
}

.requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

@media (min-width: 600px) {
  .requirements-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.5rem;
  }

  .requirements-list li:last-child {
    grid-column: span 2;
  }
}

.requirements-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.req-check {
  color: var(--accent);
  font-size: 1rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.requirements-list span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.4;
}


.apply-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 3.5rem;
  box-shadow: var(--card-shadow);
  margin-top: 2rem;
}

.apply-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: relative;
}

.form-group label {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select {
  background: rgba(5, 5, 5, 0.75);
  border: 1px solid var(--border-color);
  color: var(--text-light);
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  width: 100%;
  outline: none;
  border-radius: 0px;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 10px rgba(126, 198, 35, 0.15);
  background: rgba(5, 5, 5, 0.9);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  background-size: 1.1em;
  padding-right: 2.75rem;
}

.form-group select option {
  background: var(--bg-secondary);
  color: var(--text-light);
}

.form-section-title {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-section-title h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
}

.form-section-title h3 i {
  color: var(--accent);
}

.form-section-title p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.upload-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.owner-op-only-upload {
  animation: fadeInUpload 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fadeInUpload {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.file-drop-zone {
  background: rgba(5, 5, 5, 0.45);
  border: 1px dashed var(--border-color);
  padding: 3rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  position: relative;
  min-height: 180px;
}

.file-drop-zone:hover {
  border-color: var(--accent);
  background: rgba(126, 198, 35, 0.04);
}

.file-drop-zone.dragover {
  border-color: var(--accent);
  background: rgba(126, 198, 35, 0.08);
  transform: scale(0.98);
}

.file-drop-zone .upload-icon {
  font-size: 2.2rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.file-drop-zone:hover .upload-icon,
.file-drop-zone.dragover .upload-icon {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(126, 198, 35, 0.3);
}

.file-drop-zone .drop-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.file-drop-zone .drop-text span {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
}

.file-drop-zone .file-info {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.5rem;
  word-break: break-all;
}

.checkbox-group {
  margin-top: 1rem;
}

.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.custom-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkbox .checkmark {
  width: 20px;
  height: 20px;
  background: rgba(5, 5, 5, 0.75);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

.custom-checkbox:hover input[type="checkbox"]~.checkmark,
.custom-checkbox input[type="checkbox"]:checked~.checkmark {
  border-color: var(--accent);
}

.custom-checkbox input[type="checkbox"]:checked~.checkmark {
  background: var(--accent);
}

.custom-checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: solid #000;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.custom-checkbox input[type="checkbox"]:checked~.checkmark::after {
  display: block;
}

.custom-checkbox .checkbox-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.error-msg {
  font-size: 0.75rem;
  color: #ff4d4d;
  margin-top: 0.35rem;
  display: none;
  font-weight: 600;
}

.form-group.is-invalid .error-msg,
.form-group.is-invalid~.error-msg {
  display: block;
}

.form-group.is-invalid input,
.form-group.is-invalid select,
.form-group.is-invalid .file-drop-zone,
.form-group.is-invalid .checkmark {
  border-color: #ff4d4d !important;
  box-shadow: 0 0 8px rgba(255, 77, 77, 0.15) !important;
}

.form-actions-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.form-success-wrapper {
  text-align: center;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.form-success-wrapper .success-icon-wrap {
  font-size: 4.5rem;
  color: var(--accent);
  text-shadow: 0 0 25px rgba(126, 198, 35, 0.45);
  margin-bottom: 0.5rem;
  animation: success-pop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes success-pop {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.form-success-wrapper h2 {
  font-size: 2.2rem;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.form-success-wrapper p {
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.6;
  font-size: 1.05rem;
}

.success-dispatch-note {
  background: rgba(5, 5, 5, 0.65);
  border: 1px solid var(--border-color);
  padding: 1.75rem;
  margin-top: 1rem;
  text-align: left;
  max-width: 540px;
  width: 100%;
}

.success-dispatch-note p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.success-dispatch-note p:last-child {
  margin-bottom: 0;
}

.success-dispatch-note a {
  color: var(--accent);
  font-weight: 700;
  text-decoration: underline;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 430px) {
  .form-success-wrapper {
    padding: 2.25rem 0.5rem;
  }

  .form-success-wrapper p {
    font-size: 1rem;
  }

  .success-dispatch-note {
    padding: 1.35rem;
  }

  .success-dispatch-note p {
    font-size: 0.88rem;
  }
}

/* Owner Telemetry Dashboard Styles */
.owner-dashboard-section {
  padding: 4rem 0 6rem;
}

.owner-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.owner-stats-grid .stat-card {
  border-top-color: rgba(126, 198, 35, 0.2);
}

.owner-stats-grid .stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-light);
  margin: 0.35rem 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.owner-stats-grid .stat-num .stat-total {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 0.35rem;
  font-family: var(--font-accent);
}

.owner-stats-grid .stat-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.owner-dashboard-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 2.5rem;
}

.owner-map-panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
}

.owner-map-wrapper {
  position: relative;
  width: 100%;
  height: 780px;
  flex-grow: 1;
}

#admin-telemetry-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #050505;
  z-index: 1;
}

.owner-roster-panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 1.75rem;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  height: 686px;
}

.roster-header {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.roster-header h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.roster-header h4 i {
  color: var(--accent);
}

.roster-search-box {
  position: relative;
  width: 100%;
}

.roster-search-box i {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.roster-search-box input {
  width: 100%;
  background: rgba(5, 5, 5, 0.75);
  border: 1px solid var(--border-color);
  color: var(--text-light);
  padding: 0.75rem 1.1rem 0.75rem 2.65rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition-smooth);
}

.roster-search-box input:focus {
  border-color: var(--accent);
}

.roster-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: auto;
  flex-grow: 1;
  padding-right: 0.5rem;
}

.roster-list::-webkit-scrollbar {
  width: 4px;
}

.roster-list::-webkit-scrollbar-track {
  background: transparent;
}

.roster-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
}

.roster-list::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

.roster-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.1rem;
  background: rgba(5, 5, 5, 0.45);
  border: 1px solid var(--border-color);
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.roster-item:hover,
.roster-item.active {
  border-color: var(--accent);
  background: rgba(126, 198, 35, 0.04);
}

.roster-avatar-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  overflow: hidden;
  background: #111;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
}

.roster-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.roster-driver-info strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text-light);
  text-transform: uppercase;
}

.roster-driver-info span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.roster-driver-meta {
  text-align: right;
}

.roster-driver-meta .roster-score {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent);
}

.roster-driver-meta .roster-score.warning {
  color: var(--orange);
}

.roster-driver-meta .roster-miles {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* Map Roster Warning marker styles */
.pulse-marker-warning {
  background: var(--orange) !important;
  box-shadow: 0 0 12px var(--orange) !important;
}

/* Driver Leaderboard Page Styles */
.leaderboard-section {
  padding: 4rem 0 6rem;
}

.podium-container {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 1.5rem;
  align-items: flex-end;
  margin: 4rem auto 5rem;
  max-width: 900px;
  width: 100%;
}

.podium-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.podium-column.gold {
  order: 2;
}

.podium-column.silver {
  order: 1;
}

.podium-column.bronze {
  order: 3;
}

.podium-rank {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.25;
}

.gold .podium-rank {
  color: #FFD700;
  opacity: 0.45;
}

.silver .podium-rank {
  color: #C0C0C0;
}

.bronze .podium-rank {
  color: #CD7F32;
}

.podium-avatar-wrap {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3.5px solid var(--accent);
  position: relative;
  margin-bottom: -20px;
  z-index: 5;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  background: #111;
}

.gold .podium-avatar-wrap {
  border-color: #FFD700;
  width: 110px;
  height: 110px;
}

.silver .podium-avatar-wrap {
  border-color: #C0C0C0;
}

.bronze .podium-avatar-wrap {
  border-color: #CD7F32;
}

.podium-avatar-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.podium-avatar-wrap .gold-crown {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%) rotate(-6deg);
  font-size: 2rem;
  color: #FFD700;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.5));
}

.podium-avatar-wrap .silver-medal {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 1.4rem;
  color: #C0C0C0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.podium-avatar-wrap .bronze-medal {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 1.4rem;
  color: #CD7F32;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.podium-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  width: 100%;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  box-shadow: var(--card-shadow);
}

.gold .podium-card {
  padding-top: 3.5rem;
  min-height: 270px;
  border-top: 3.5px solid #FFD700;
}

.silver .podium-card {
  min-height: 230px;
  border-top: 3.5px solid #C0C0C0;
}

.bronze .podium-card {
  min-height: 210px;
  border-top: 3.5px solid #CD7F32;
}

.podium-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
}

.podium-score {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.podium-score .score-lbl {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 0.35rem;
  letter-spacing: 0.05em;
}

.podium-miles {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 600;
}

.podium-reward {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  border-top: 1px solid var(--border-color);
  padding-top: 0.65rem;
  width: 100%;
}

.podium-reward.font-glow {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(126, 198, 35, 0.4);
}

.leaderboard-panel {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  margin-bottom: 5rem;
}

.leaderboard-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2.5rem;
  border-bottom: 1px solid var(--border-color);
}

.leaderboard-panel-header h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-heading);
}

.leaderboard-panel-header h3 i {
  color: var(--accent);
}

.panel-update-time {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.leaderboard-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 800px;
}

.leaderboard-table th {
  background: rgba(5, 5, 5, 0.55);
  border-bottom: 1px solid var(--border-color);
  padding: 1.25rem 2.5rem;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.leaderboard-table td {
  padding: 1.25rem 2.5rem;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-main);
  vertical-align: middle;
}

.leaderboard-table tbody tr {
  transition: var(--transition-smooth);
}

.leaderboard-table tbody tr:nth-child(even) {
  background: rgba(5, 5, 5, 0.15);
}

.leaderboard-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.015);
}

.leaderboard-table td.rank-cell {
  font-weight: 800;
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.leaderboard-table td.driver-cell {
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
}

.leaderboard-table td.reward-cell {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.leaderboard-table td.reward-cell.gold-qualified {
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.leaderboard-table td.reward-cell.silver-qualified {
  color: #C0C0C0;
}

.leaderboard-table td.reward-cell.bronze-qualified {
  color: #CD7F32;
}

.safety-rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.safety-rule-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.safety-rule-card .rule-icon {
  width: 48px;
  height: 48px;
  background: rgba(126, 198, 35, 0.08);
  border: 1px solid rgba(126, 198, 35, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.35rem;
  clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}

.safety-rule-card h4 {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--text-light);
}

.safety-rule-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===================== MOBILE RESPONSIVENESS OVERRIDES ===================== */
@media (max-width: 1240px) {
  .owner-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .owner-dashboard-grid {
    grid-template-columns: 1fr;
  }

  .owner-map-wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  #admin-telemetry-map {
    position: relative;
    height: 350px;
    flex-shrink: 0;
  }

  .owner-map-wrapper .map-hud-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 0;
    border-top: 1px solid var(--border-color);
    border-radius: 0 0 var(--radius-card) var(--radius-card);
  }

  .owner-roster-panel {
    height: 480px;
  }
}

@media (max-width: 900px) {
  .podium-container {
    grid-template-columns: 1fr;
    align-items: center;
    max-width: 340px;
    gap: 3rem;
  }

  .podium-column.gold {
    order: 1;
  }

  .podium-column.silver {
    order: 2;
  }

  .podium-column.bronze {
    order: 3;
  }

  .podium-card {
    min-height: auto !important;
    padding: 2.5rem 1.5rem 2rem !important;
  }

  .gold .podium-avatar-wrap {
    width: 96px;
    height: 96px;
  }

  .gold .podium-card {
    padding-top: 3rem;
  }
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .upload-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .apply-card {
    padding: 1.75rem 1.1rem;
  }

  .form-step-actions {
    gap: 0.85rem;
  }

  .form-step-actions .btn {
    flex: 1;
    min-width: 0;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    justify-content: center;
  }

  .form-step-actions #btn-submit-apply {
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    line-height: 1.15;
    text-align: center;
  }

  .form-step-actions #btn-submit-apply span {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .safety-rules-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 430px) {
  .form-step-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .form-step-actions .btn {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .form-step-actions .btn-prev-step,
  .form-step-actions .btn-next-step,
  .form-step-actions #btn-submit-apply {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 600px) {
  .leaderboard-panel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 1.25rem 1.5rem;
  }

  .leaderboard-table th,
  .leaderboard-table td {
    padding: 1rem 1.25rem;
  }

  .owner-stats-grid {
    grid-template-columns: 1fr;
  }
}


/* ===================== MOBILE RESPONSIVENESS ===================== */
@media (max-width: 767px) {

  html,
  body {
    background: #000;
  }

  body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: max(calc(env(safe-area-inset-top, 0px) + 1.25rem), 64px);
    background: #000;
    pointer-events: none;
    z-index: 999;
  }

  .site-header {
    padding: calc(var(--safe-top) + 1.25rem) 0 1rem;
    background:
      linear-gradient(180deg,
        #000000e6 0%,
        #000 max(calc(var(--safe-top) + 0.25rem), -7px),
        rgba(0, 0, 0, 0.18) max(calc(var(--safe-top) + -0.5rem), 70px),
        rgba(0, 0, 0, 0.06) 12%);
  }

  .site-header.scrolled {
    padding: calc(var(--safe-top) + 0.85rem) 0 0.85rem;
    background: #000;
  }

  .page-scroll {
    height: auto;
    overflow: visible;
    overscroll-behavior-y: auto;
    -webkit-overflow-scrolling: auto;
  }
}

@media (max-width: 1240px) {

  /* Navigation Drawer Toggle */
  .site-nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header {
    padding: 1.25rem 0;
  }

  .site-header.scrolled {
    padding: 0.85rem 0;
  }

  /* Hero text-shadow overrides for tablet & landscape mobile */
  .hero-title {
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.72);
  }

  .hero-title .green-stroke,
  .hero-title .green-stroke .hero-split-word {
    text-shadow:
      2px 2px 0 var(--primary),
      2px 2px 0 rgba(0, 0, 0, 0.72) !important;
    -webkit-text-stroke: 0.5px var(--accent);
  }

  /* Grid Stackings */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .qualifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .doty-rewards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .ba-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .tracker-dashboard {
    grid-template-columns: 1fr;
  }

  /* Timeline Process Step Stacking */
  .process-step {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-left: 3rem;
  }

  .process-visual {
    grid-row: 2 !important;
    grid-column: 1 !important;
    aspect-ratio: 1 / 1;
  }

  .process-visual .parallax-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .process-card {
    grid-column: 1 !important;
  }

  .process-line {
    left: 1.5rem;
  }

  .process-dot {
    left: 1.5rem;
  }

  /* Estimate CTA Stacking */
  .merged-contact-cta .cta-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .contact-map-wrapper {
    height: 380px;
  }

  /* Testimonials Slider Adjustments */
  .testimonials-slider-container {
    padding: 4.5rem 2.5rem 4rem;
  }

  .slider_slide {
    padding: 0 1rem;
  }

  /* Responsive Driver of the Year Flyer Layout */
  .qualifications-section {
    min-height: auto;
    background-image: linear-gradient(rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.94)), var(--plate-bg);
  }

  .qualifications-section::before {
    background: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 12px);
  }

  .doty-flyer-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: 0;
    margin-bottom: 0;
  }

  .doty-poster-title {
    white-space: normal;
    transform: none;
    font-size: clamp(3.4rem, 14vw, 7rem);
    line-height: 0.86;
    margin-bottom: 0.75rem;
  }

  .doty-flyer-left {
    max-width: 720px;
    padding-top: 0;
  }

  .doty-flyer-title {
    font-family: 'DieselPower', 'Impact', sans-serif;
    font-size: clamp(3rem, 10vw, 7.5rem);
    line-height: 0.85;
  }

  .doty-flyer-subtitle {
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }

  .doty-flyer-desc {
    font-size: 0.95rem;
    text-transform: none;
  }

  .qualifications-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 1rem;
    margin-top: clamp(-7rem, -6.5vw, -4rem);
  }

  .qualifications-grid .qual-card {
    padding: 1.5rem 1rem;
    gap: 0.65rem;
    height: auto;
  }

  .qualifications-grid .qual-card h3 {
    font-size: 0.95rem;
  }

  .qualifications-grid .qual-card p {
    font-size: 0.8rem;
  }

  .doty-rewards-composite {
    position: relative;
    height: auto;
    min-height: 0;
    width: 100%;
    max-width: 680px;
    margin: 0 auto 5.5rem;
    transform: none;
  }

  .doty-rewards-composite::before,
  .doty-rewards-composite::after {
    display: none;
  }

  .doty-composite-truck-img {
    position: relative;
    width: 75%;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    object-fit: cover;
    display: block;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  }

  .doty-composite-rewards-img {
    position: absolute;
    right: 0;
    bottom: -15px;
    width: 44%;
    max-width: 312px;
    height: auto;
    left: auto;
    z-index: 3;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.85));
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: calc(var(--safe-top) + 1.25rem) 0 1rem;
  }

  .site-header.scrolled {
    padding: calc(var(--safe-top) + 0.85rem) 0 0.85rem;
  }

  .hero {
    min-height: 100svh;
    align-items: center;
    padding: calc(4.75rem + env(safe-area-inset-top)) 0 calc(1.25rem + env(safe-area-inset-bottom));
  }

  .hero-content {
    margin-top: 0;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
  }

  .hero-title {
    font-size: clamp(3.25rem, 18svw, 6.25rem);
    line-height: 0.82;
    margin-bottom: 1.25rem;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.72);
  }
}


@media (max-width: 768px) {
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-btns .btn {
    width: calc(100% - 16px);
    margin: 0 auto;
  }

  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .qualifications-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 1rem;
    margin-top: -4rem;
  }

  .qualifications-grid .qual-card {
    height: auto;
  }

  .doty-rewards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .doty-section-truck {
    width: 100%;
    opacity: 0.76;
    filter: brightness(0.68) contrast(1.08) saturate(1.05);
    object-position: 62% center;
  }

  .doty-section-gradient {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.68) 42%, rgba(0, 0, 0, 0.45) 72%, rgba(0, 0, 0, 0.5) 100%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.34) 52%, rgba(0, 0, 0, 0.32) 100%);
  }

  .doty-rewards-composite {
    position: relative;
    height: auto;
    min-height: 345px;
    width: 100%;
    max-width: 540px;
    margin: 0 auto 5.5rem;
  }

  .doty-composite-truck-img {
    position: absolute;
    inset: -12% -24% 27% auto;
    width: 135%;
    height: 100%;
    object-fit: cover;
    object-position: 42% center;
    display: block;
    z-index: 1;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  }

  .doty-rewards-composite::after {
    content: "";
    position: absolute;
    inset: -12% -24% 27% auto;
    width: 135%;
    height: 100%;
    z-index: 2;
    display: block;
    pointer-events: none;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.32) 35%, rgba(0, 0, 0, 0) 70%);
  }

  .doty-composite-rewards-img {
    position: absolute;
    width: min(78%, 330px);
    right: auto;
    left: clamp(-4rem, -2.5vw, -1.5rem);
    bottom: -0.75rem;
    z-index: 3;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.85));
  }

  .section-label {
    padding: 0.8rem 1.35rem;
    font-size: 0.85rem;
  }

  .section-label::before {
    inset: -0.85rem -1.65rem;
  }

  .hero-content .section-label {
    padding: 0.75rem 1.35rem;
    font-size: 0.82rem;
    margin-bottom: -0.15rem;
    transform: translateY(0.45rem);
    filter: none;
  }

  .hero-content .section-label::before {
    inset: -0.75rem -1.45rem;
  }

  .project-card {
    flex: 0 0 290px;
  }

  /* Footer responsive */
  .site-footer {
    margin-top: 2.5rem;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding: 4rem 1.25rem 3.25rem;
  }

  .footer-bottom {
    padding: 1.5rem 1.25rem;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  /* Tracker map: stack HUD below the map, no overlap */
  .tracker-section {
    padding: 4rem 0;
    overflow-x: hidden;
  }

  .tracker-section>.container {
    width: 100%;
    max-width: none;
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }

  .tracker-section .section-header {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    margin-bottom: 2rem;
  }

  .map-wrapper,
  .owner-map-wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .tracker-map-panel {
    overflow: visible;
    border-radius: 0;
  }

  #dispatch-map,
  #admin-telemetry-map {
    position: relative;
    height: 255px;
    flex-shrink: 0;
  }

  .map-hud-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 0;
    border-top: 1px solid var(--border-color);
    border-radius: 0 0 var(--radius-card) var(--radius-card);
  }

  .hud-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .contact-map-wrapper {
    height: 450px;
  }

  /* Tracker dashboard: tighten padding so map doesn't break */
  .tracker-dashboard {
    padding: 0.5rem;
    gap: 0.75rem;
    border-radius: 0;
  }

  .tracker-leader-panel {
    padding: 1rem;
    border-radius: 0;
  }

  .map-hud-panel {
    padding: 1rem;
  }

  .leaderboard-header {
    margin-bottom: 1rem;
  }

  /* Compact header call button on mobile */
  .header-call-btn span {
    display: none;
  }

  .header-call-btn {
    padding: 0.65rem;
    width: 40px;
    height: 40px;
    justify-content: center;
    border-radius: 0px;
  }

  /* De-clutter Fleet Section Header */
  .projects-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .projects-top .section-sub {
    margin-bottom: 0;
    max-width: 100%;
  }

  .gallery-pills-wrap {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }

  .gallery-controls {
    align-self: flex-end;
  }

  /* Responsive Section Padding */
  .about-section,
  .services-section,
  .qualifications-section,
  .process-section,
  .tracker-section,
  .before-after-section,
  .projects-section,
  .testimonials-section,
  .merged-contact-cta {
    padding: 5rem 0;
  }

  /* Testimonials Slider Mobile */
  .testimonials-slider-container {
    padding: 3.5rem 1.5rem;
  }

  .slider_slide {
    padding: 0;
  }

  .slider_quote {
    font-size: 1.15rem;
    margin-bottom: 2rem;
  }

  .slider_quote::before {
    top: -2rem;
    font-size: 4rem;
  }

  .slider_controls {
    margin-top: 2.5rem;
  }

  /* Estimate CTA Mobile Action buttons stacking */
  .merged-contact-cta .cta-inner {
    gap: 3rem;
  }

  .merged-cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    width: 100%;
  }

  .merged-cta-actions .btn {
    width: calc(100% - 16px);
    margin: 0 auto;
  }

  /* Sticky call trigger active */
  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom));
  }

  .sticky-mobile-cta {
    display: block;
  }
}

@media (max-width: 768px) and (max-height: 760px) {
  .hero {
    padding-top: calc(4rem + env(safe-area-inset-top));
    padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  }

  .hero-title {
    font-size: clamp(3.25rem, 18svw, 6.25rem);
    margin-bottom: 1rem;
  }

  .hero-content .section-label {
    font-size: 0.76rem;
    margin-bottom: -0.35rem;
    transform: translateY(0.65rem);
  }

  .hero-tagline {
    font-size: 0.92rem;
    margin-bottom: 1.2rem;
  }

  .hero-btns {
    gap: 0.85rem;
  }

  .hero-btns .btn {
    padding: 0.82rem 1.4rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .process-card {
    padding: 2rem;
  }

  .merged-contact-card {
    padding: 2rem;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.25rem;
    padding: 3.5rem 1.25rem 3rem;
  }

  .footer-brand-block,
  .footer-nav-block,
  .footer-contact-block {
    padding: 0 0.25rem;
  }

  /* Tracker: strip all padding on tiny screens */
  .tracker-section {
    padding: 3.5rem 0;
  }

  .tracker-section>.container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .tracker-dashboard {
    padding: 0.35rem;
    gap: 0.5rem;
  }

  .tracker-leader-panel {
    padding: 0.9rem 0.65rem;
  }

  .map-hud-panel {
    padding: 0.85rem 0.75rem;
  }

  #dispatch-map {
    height: 220px;
  }

  .hud-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .hud-grid strong {
    font-size: 0.82rem;
  }
}

/* ============================================================
   INNER PAGE BLUR-REVEAL ANIMATION OVERRIDE
   On inner pages (apply, dashboard, leaderboard) ScrollTrigger
   is not loaded, so we animate blur-reveal via CSS keyframes.
   ============================================================ */
@keyframes blurRevealIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    filter: blur(0px);
    transform: translateY(0);
  }
}

.inner-page .blur-reveal {
  animation: blurRevealIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
  animation-delay: 0.15s !important;
  transition: none !important;
}

.inner-page .blur-reveal:nth-child(1) {
  animation-delay: 0.05s !important;
}

.inner-page .blur-reveal:nth-child(2) {
  animation-delay: 0.12s !important;
}

.inner-page .blur-reveal:nth-child(3) {
  animation-delay: 0.19s !important;
}

.inner-page .blur-reveal:nth-child(4) {
  animation-delay: 0.26s !important;
}

.inner-page .blur-reveal:nth-child(5) {
  animation-delay: 0.33s !important;
}

/* Stat cards in the owner dashboard */
.owner-stats-grid .stat-card:nth-child(1) {
  animation-delay: 0.10s !important;
}

.owner-stats-grid .stat-card:nth-child(2) {
  animation-delay: 0.20s !important;
}

.owner-stats-grid .stat-card:nth-child(3) {
  animation-delay: 0.30s !important;
}

.owner-stats-grid .stat-card:nth-child(4) {
  animation-delay: 0.40s !important;
}

/* Podium cards in leaderboard */
.podium-column.silver {
  animation-delay: 0.18s !important;
}

.podium-column.gold {
  animation-delay: 0.30s !important;
}

.podium-column.bronze {
  animation-delay: 0.42s !important;
}

/* Safety rule cards */
.safety-rule-card:nth-child(1) {
  animation-delay: 0.12s !important;
}

.safety-rule-card:nth-child(2) {
  animation-delay: 0.22s !important;
}

.safety-rule-card:nth-child(3) {
  animation-delay: 0.32s !important;
}


/* ============================================================
   ADDITIONAL DASHBOARD & LEADERBOARD TOUCHES
   ============================================================ */

/* HUD actions styling */
.hud-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0.85rem;
}

.btn-hud-action {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-light);
  padding: 0.4rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  transition: all 0.2s ease;
}

.btn-hud-action:hover {
  background: rgba(126, 198, 35, 0.15);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-hud-action.warn:hover {
  background: rgba(255, 107, 53, 0.15);
  border-color: #ff6b35;
  color: #ff6b35;
}

/* Live operations feed panel */
.live-ops-panel {
  background: rgba(20, 20, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1.25rem;
  margin-top: 1.25rem;
  position: relative;
  overflow: hidden;
}

.live-ops-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.live-ops-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.live-ops-header h5 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin: 0;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.live-ops-badge {
  font-size: 0.65rem;
  background: rgba(126, 198, 35, 0.12);
  color: var(--accent);
  border: 1px solid rgba(126, 198, 35, 0.25);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.live-ops-log {
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.85rem;
  height: 120px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  scroll-behavior: smooth;
}

.live-ops-log::-webkit-scrollbar {
  width: 4px;
}

.live-ops-log::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
}

.log-entry {
  line-height: 1.4;
  transition: opacity 0.4s ease-in;
}

.log-time {
  color: rgba(255, 255, 255, 0.35);
  margin-right: 0.4rem;
}

.log-driver {
  color: var(--text-light);
  font-weight: bold;
}

.log-score {
  color: var(--accent);
}

/* Roster sparkline wrap */
.roster-sparkline-wrap {
  opacity: 0.75;
  transition: opacity 0.2s ease;
}

.roster-item:hover .roster-sparkline-wrap,
.roster-item.active .roster-sparkline-wrap {
  opacity: 1;
}

/* Reward countdown clock */
.reward-countdown-wrap {
  background: rgba(12, 12, 12, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1.85rem 1.5rem 1.5rem 1.5rem;
  text-align: center;
  max-width: 520px;
  margin: 0 auto 2.5rem auto;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.reward-countdown-wrap .screw {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.1), 1px 1px 1px rgba(0, 0, 0, 0.4);
}

.reward-countdown-wrap .screw::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.5);
  transform: translateY(-50%) rotate(45deg);
}

.reward-countdown-wrap .screw.top-left {
  top: 10px;
  left: 10px;
}

.reward-countdown-wrap .screw.top-right {
  top: 10px;
  right: 10px;
}

.reward-countdown-wrap .screw.bottom-left {
  bottom: 10px;
  left: 10px;
}

.reward-countdown-wrap .screw.bottom-right {
  bottom: 10px;
  right: 10px;
}

.countdown-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: 0 0 8px rgba(126, 198, 35, 0.3);
  background: rgba(126, 198, 35, 0.08);
  border: 1px solid rgba(126, 198, 35, 0.25);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.time-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 76px;
  background: rgba(5, 5, 5, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 0.65rem 0.5rem;
  position: relative;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.time-block::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  pointer-events: none;
}

.time-val {
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
  line-height: 1.1;
  z-index: 2;
  letter-spacing: 0.02em;
}

.time-lbl {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.35rem;
  z-index: 2;
  font-weight: 700;
}

.time-separator {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1;
  margin-bottom: 1.15rem;
  animation: pulseSeparator 1s infinite alternate;
}

@keyframes pulseSeparator {
  from {
    opacity: 0.25;
  }

  to {
    opacity: 0.85;
  }
}

.countdown-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 560px) {
  .reward-countdown-wrap {
    padding: 1.25rem 0.75rem 1rem 0.75rem;
    margin-bottom: 2rem;
  }

  .countdown-timer {
    gap: 0.35rem;
    margin: 0.85rem 0;
  }

  .time-block {
    min-width: 58px;
    padding: 0.5rem 0.25rem;
    border-radius: 4px;
  }

  .time-val {
    font-size: 1.5rem;
  }

  .time-lbl {
    font-size: 0.5rem;
    margin-top: 0.25rem;
    letter-spacing: 0.05em;
  }

  .time-separator {
    font-size: 1.5rem;
    margin-bottom: 0.85rem;
  }
}

@media (max-width: 360px) {
  .time-block {
    min-width: 50px;
  }

  .time-val {
    font-size: 1.3rem;
  }

  .time-separator {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }
}


/* Driver achievement badges */
.podium-badges,
.driver-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.35rem 0;
}

.badge,
.badge-mini {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.badge-mini {
  font-size: 0.58rem;
  padding: 0.05rem 0.25rem;
}

.badge.safety-badge,
.badge-mini.safety-badge {
  background: rgba(126, 198, 35, 0.12);
  color: var(--accent);
  border: 1px solid rgba(126, 198, 35, 0.25);
}

.badge.streak-badge,
.badge-mini.streak-badge {
  background: rgba(255, 107, 53, 0.12);
  color: #ff6b35;
  border: 1px solid rgba(255, 107, 53, 0.25);
}

.badge.owner-badge,
.badge-mini.owner-badge {
  background: rgba(0, 180, 216, 0.12);
  color: #00b4d8;
  border: 1px solid rgba(0, 180, 216, 0.25);
}

/* Competitor Highlights Banner */
.leaderboard-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.highlight-card {
  background: rgba(20, 20, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.highlight-icon {
  background: rgba(126, 198, 35, 0.12);
  color: var(--accent);
  border: 1px solid rgba(126, 198, 35, 0.25);
  width: 36px;
  height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.highlight-info h5 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.25rem 0;
}

.highlight-info strong {
  font-size: 0.95rem;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.25rem;
}

.highlight-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .leaderboard-highlights {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   18. Multi-Step Form Progress Tracker, Panels & Trust Strip
   ========================================================================== */

/* Progress Tracker styling */
.form-progress-bar {
  position: relative;
  z-index: 10;
  width: min(100vw - 2rem, 100%);
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  margin-bottom: 2rem;
  padding: 0.55rem 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(126, 198, 35, 0.65) rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0) 2.25rem),
    linear-gradient(270deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0) 2.25rem),
    rgba(5, 5, 5, 0.78);
  background-attachment: local, local, scroll;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.form-progress-bar.is-bottom-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  width: 100vw;
  margin: 0;
  padding: 0.5rem max(1.25rem, env(safe-area-inset-left)) calc(0.5rem + env(safe-area-inset-bottom)) max(1.25rem, env(safe-area-inset-right));
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.form-progress-bar.is-bottom-dock.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.form-progress-bar::-webkit-scrollbar {
  height: 5px;
}

.form-progress-bar::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.08);
}

.form-progress-bar::-webkit-scrollbar-thumb {
  background: rgba(126, 198, 35, 0.65);
  border-radius: 999px;
}

.form-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 0 0 112px;
  scroll-snap-align: center;
}

.step-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.86rem;
  margin-bottom: 0.4rem;
  transition: all 0.4s ease;
  box-shadow: 0 0 0px rgba(126, 198, 35, 0);
}

.form-progress-step span {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.4s ease;
}

.form-progress-line {
  flex: 0 0 42px;
  height: 2px;
  background: var(--border-color);
  margin-top: -1.35rem;
  /* align with dots */
  position: relative;
  z-index: 1;
  transition: background-color 0.4s ease;
}

.form-progress-step.active .step-dot {
  border-color: var(--accent);
  color: #000;
  background: var(--accent);
  box-shadow: 0 0 15px var(--green-glow);
}

.form-progress-step.active span {
  color: var(--text-light);
}

.form-progress-step.completed .step-dot {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(126, 198, 35, 0.1);
  box-shadow: none;
}

.form-progress-step.completed span {
  color: var(--accent);
}

.form-progress-line.active {
  background: var(--accent);
  box-shadow: 0 0 8px var(--green-glow);
}

/* Form Panels */
.form-step-panel {
  display: none;
}

.form-step-panel.active {
  display: block;
}

.form-step-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  gap: 1.5rem;
}

.form-step-actions .btn-next-step,
.form-step-actions #btn-submit-apply {
  margin-left: auto;
}

.form-step-actions .btn-prev-step {
  margin-right: auto;
}

/* Form Trust Strip */
.form-trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 1.5rem 2rem;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
}

.form-trust-strip-inline {
  margin-top: 2rem;
  margin-bottom: 0;
  padding: 1rem 1.25rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.trust-item i {
  color: var(--accent);
  font-size: 1.1rem;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--border-color);
}

@media (max-width: 768px) {
  .form-progress-bar {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    gap: 0.45rem;
    padding: 0.5rem 1.25rem;
    margin-bottom: 1.5rem;
  }

  .form-progress-bar.is-bottom-dock {
    margin-left: 0;
    margin-right: 0;
  }

  .form-progress-step span {
    font-size: 0.66rem;
  }

  .form-progress-line {
    flex-basis: 34px;
  }

  .form-progress-step {
    flex-basis: 96px;
  }

  .form-trust-strip {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }

  .trust-divider {
    display: none;
  }
}

/* Floating Auto Fill Preview Button */
.btn-autofill-preview {
  position: fixed;
  right: 1.5rem;
  bottom: calc(5.25rem + env(safe-area-inset-bottom));
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background-color: var(--accent);
  background-image: linear-gradient(rgba(126, 198, 35, 0.8), rgba(126, 198, 35, 0.8)), url('../images/green_texture2.png');
  background-size: cover, 220%;
  background-position: center;
  background-blend-mode: normal, multiply;
  color: #000 !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.75rem 1.35rem;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  box-shadow: 0 4px 18px rgba(126, 198, 35, 0.45), 2px 2px 0px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.btn-autofill-preview i {
  font-size: 0.9rem;
}

.btn-autofill-preview.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.btn-autofill-preview:hover {
  background-color: #8ED42A;
  background-position: center;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(126, 198, 35, 0.55), 2px 2px 0px rgba(0, 0, 0, 0.35);
}

.btn-autofill-preview:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(126, 198, 35, 0.35), 1px 1px 0px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .btn-autofill-preview {
    right: 1rem;
    bottom: calc(4.75rem + env(safe-area-inset-bottom));
    padding: 0.65rem 1.15rem;
    font-size: 0.78rem;
  }
}

/* ── 22. Admin Dashboard Mockup Actions & Modals ── */
.btn-dispatch-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.8rem 1rem;
  margin-bottom: 1rem;
  background: rgba(126, 198, 35, 0.08);
  border: 1px dashed var(--accent);
  color: var(--accent);
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-dispatch-new:hover {
  background: var(--accent);
  color: #000;
  border-style: solid;
  box-shadow: 0 0 15px rgba(126, 198, 35, 0.4);
}

.roster-item {
  position: relative;
}

.roster-actions {
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.2s ease;
  position: absolute;
  right: 1.1rem;
  bottom: 0.6rem;
}

.roster-item:hover .roster-actions {
  opacity: 1;
}

.roster-driver-meta .roster-miles {
  transition: opacity 0.2s ease;
}

.roster-item:hover .roster-driver-meta .roster-miles {
  opacity: 0;
}

.btn-roster-action {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0.2rem;
  transition: color 0.2s ease;
}

.btn-roster-action:hover {
  color: var(--accent);
}

.btn-roster-action.delete-btn:hover {
  color: var(--orange);
}

.hud-actions {
  flex-wrap: wrap;
}

/* Modals */
.admin-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  padding: 2rem 1rem;
}

.admin-modal-overlay::-webkit-scrollbar {
  width: 4px;
}

.admin-modal-overlay::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}

.admin-modal-overlay::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

.admin-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.admin-modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  margin: auto;
}

.admin-modal-overlay.active .admin-modal {
  transform: scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.75rem;
}

.modal-header h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin: 0;
  font-size: 1.25rem;
}

.modal-close-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close-btn:hover {
  color: var(--orange);
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.modal-form-group label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 700;
}

.modal-form-group input,
.modal-form-group select {
  background: rgba(12, 12, 12, 0.7);
  border: 1px solid var(--border-color);
  color: var(--text-light);
  padding: 0.65rem 0.8rem;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.modal-form-group input:focus,
.modal-form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.modal-form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn-modal-cancel {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-light);
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
  font-weight: 600;
}

.btn-modal-cancel:hover {
  background: rgba(255, 255, 255, 0.05);
}

.btn-modal-submit {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #000;
  padding: 0.6rem 1.2rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.btn-modal-submit:hover {
  box-shadow: 0 0 15px rgba(126, 198, 35, 0.4);
}

/* Cycle Rewards Modal Custom Transitions and Styling */
#cycle-rewards-modal {
  z-index: 100000 !important;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#cycle-rewards-modal.active {
  opacity: 1;
  pointer-events: all;
}

#cycle-rewards-modal .admin-modal {
  transform: translateY(40px) scale(0.95);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s ease;
  max-width: 520px;
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 40px rgba(126, 198, 35, 0.08);
}

#cycle-rewards-modal.active .admin-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

#cycle-rewards-modal .modal-body {
  max-height: 380px;
  overflow-y: auto;
  padding-right: 0.75rem;
}

#cycle-rewards-modal .modal-body::-webkit-scrollbar {
  width: 4px;
}

#cycle-rewards-modal .modal-body::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
}

#cycle-rewards-modal .modal-body::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

/* ══════════════════════════════════════════════════════════════
   VISUAL POLISH — Green Accents, Dividers, Glows & Textures
   ══════════════════════════════════════════════════════════════ */

/* ── Section Gradient Dividers ──
   Thin neon-green gradient lines placed between major sections
   to create visual rhythm and break up the dark layout. */
.section-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(126, 198, 35, 0.08) 10%,
    rgba(126, 198, 35, 0.45) 50%,
    rgba(126, 198, 35, 0.08) 90%,
    transparent 100%);
  position: relative;
  overflow: visible;
}

/* Soft glow halo behind the divider line */
.section-divider::after {
  content: '';
  position: absolute;
  top: -8px;
  left: 15%;
  right: 15%;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(126, 198, 35, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Radial Green Glow Spots ──
   Subtle ambient glow circles positioned behind sections
   to add depth and atmosphere. Applied via ::after pseudo on sections. */
.projects-section {
  position: relative;
  background-color: #000;
  background-image:
    linear-gradient(180deg, rgba(8, 8, 8, 0.96) 0%, rgba(8, 8, 8, 0.96) 100%),
    var(--plate-bg);
  background-size: cover;
  background-position: center;
}

.projects-section::before {
  content: '';
  position: absolute;
  top: 5%;
  right: -5%;
  width: 600px;
  height: 250px;
  background: url('../images/green_brush_stroke.png') no-repeat center center;
  background-size: contain;
  opacity: 0.12;
  transform: rotate(-15deg);
  pointer-events: none;
  z-index: 0;
}

.projects-section::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -8%;
  width: 600px;
  height: 250px;
  background: url('../images/green_brush_stroke.png') no-repeat center center;
  background-size: contain;
  opacity: 0.1;
  transform: rotate(165deg);
  pointer-events: none;
  z-index: 0;
}

.projects-section > .container {
  position: relative;
  z-index: 1;
}

/* ── Testimonials Section — Radial Green Glow ── */
.testimonials-section {
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
  width: 600px;
  height: 250px;
  background: url('../images/green_brush_stroke.png') no-repeat center center;
  background-size: contain;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

/* ── CTA Section — Dramatic Green-Tinted Upgrade ── */
.merged-contact-cta {
  position: relative;
  background-color: #000;
  background-image:
    linear-gradient(180deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.92) 100%),
    var(--plate-bg);
  background-size: cover;
  background-position: center;
}

.merged-contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(126, 198, 35, 0.5) 30%,
    rgba(126, 198, 35, 0.7) 50%,
    rgba(126, 198, 35, 0.5) 70%,
    transparent 100%);
  box-shadow: 0 0 20px 2px rgba(126, 198, 35, 0.15);
}

.merged-contact-cta::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 550px;
  height: 250px;
  background: url('../images/green_brush_stroke.png') no-repeat center center;
  background-size: contain;
  opacity: 0.12;
  transform: rotate(-8deg);
  pointer-events: none;
  z-index: 0;
}

/* ── Before & After Section — Green Glow ── */
.before-after-section {
  position: relative;
}

.before-after-section::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 20%;
  width: 500px;
  height: 200px;
  background: url('../images/green_brush_stroke.png') no-repeat center center;
  background-size: contain;
  opacity: 0.1;
  transform: rotate(8deg);
  pointer-events: none;
  z-index: 0;
}

/* ── About (Why Us) Section — Ambient Glow ── */
.about-section {
  position: relative;
}

.about-section::after {
  content: '';
  position: absolute;
  top: 15%;
  left: -10%;
  width: 500px;
  height: 220px;
  background: url('../images/green_brush_stroke.png') no-repeat center center;
  background-size: contain;
  opacity: 0.1;
  transform: rotate(25deg);
  pointer-events: none;
  z-index: 0;
}

/* ── Driver Perks Section — Ambient Glow ── */
.services-section::after {
  content: '';
  position: absolute;
  bottom: 5%;
  right: -10%;
  width: 650px;
  height: 300px;
  background: url('../images/green_brush_stroke.png') no-repeat center center;
  background-size: contain;
  opacity: 0.12;
  transform: rotate(12deg);
  pointer-events: none;
  z-index: 0;
}

/* ── Footer — Enhanced Texture & Top Green Glow ── */
.site-footer::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(3deg);
  width: 700px;
  height: 200px;
  background: url('../images/green_brush_stroke.png') no-repeat center center;
  background-size: contain;
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
}

/* ── Watermark Titles for Upgraded Background Sections ── */
.perks-poster-title,
.fleet-poster-title,
.careers-poster-title {
  display: none;
  position: absolute;
  top: clamp(2rem, 5vw, 4.5rem);
  right: 5%;
  left: auto;
  z-index: 0;
  margin: 0;
  font-family: 'DieselPower', 'Impact', sans-serif;
  font-size: clamp(4.4rem, 9.25vw, 11.3rem);
  font-weight: normal;
  line-height: 0.78;
  color: rgba(126, 198, 35, 0.08);
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 0 15px rgba(126, 198, 35, 0.04);
  pointer-events: none;
  user-select: none;
  text-align: right;
}

.centered-label-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.services-section > .container,
.projects-section > .container,
.merged-contact-cta > .container {
  position: relative;
  z-index: 2;
}

/* ── Absolute Background Containers & Scanner Grids ── */
.perks-section-bg,
.fleet-section-bg,
.careers-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.perks-section-bg::before,
.fleet-section-bg::before,
.careers-section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.11;
  mix-blend-mode: screen;
}

/* Custom offsets for vertical scanner lines per section */
.perks-section-bg::before {
  background:
    linear-gradient(90deg, transparent 0 20%, rgba(126, 198, 35, 0.25) 20% 20.2%, transparent 20.2%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 12px);
}

.fleet-section-bg::before {
  background:
    linear-gradient(90deg, transparent 0 75%, rgba(126, 198, 35, 0.25) 75% 75.2%, transparent 75.2%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 12px);
}

.careers-section-bg::before {
  background:
    linear-gradient(90deg, transparent 0 35%, rgba(126, 198, 35, 0.25) 35% 35.2%, transparent 35.2%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 12px);
}