/* ==========================================================================
   IRON BULL CO. - DESIGN SYSTEM & BRAND TOKENS
   ========================================================================== */
:root {
  /* Color Palette - Toxic Neon Green & Matte Charcoal Steel */
  --bg-dark-0: #07090b;         /* Deepest pitch matte black */
  --bg-dark-1: #0f1318;         /* Industrial dark metal */
  --bg-dark-2: #161c24;         /* Primary card background */
  --bg-dark-3: #1e2632;         /* Hover state / secondary dark */
  --bg-dark-glass: rgba(15, 19, 24, 0.85);

  --neon-green: #84ff00;       /* Toxic neon lime green */
  --neon-green-hover: #9cf522; /* Hover bright green */
  --neon-green-dark: #58ab00;  /* Muted dark green accent */
  --neon-green-rgb: 132, 255, 0;

  --metallic-white: #ffffff;
  --metallic-silver: #d1d7e0;
  --text-silver-muted: #8895a7;

  --border-dark: rgba(255, 255, 255, 0.08);
  --border-neon: rgba(132, 255, 0, 0.3);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.8);
  --neon-glow: 0 0 25px rgba(132, 255, 0, 0.45);
  --neon-glow-strong: 0 0 40px rgba(132, 255, 0, 0.7);

  /* Fonts */
  --font-family-display: 'Bebas Neue', sans-serif;
  --font-family-heading: 'Montserrat', sans-serif;
  --font-family-body: 'Inter', sans-serif;

  /* Layout Constants */
  --max-width: 1240px;
  --header-height: 85px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark-0);
  color: var(--metallic-white);
}

body {
  font-family: var(--font-family-body);
  background-color: var(--bg-dark-0);
  color: var(--metallic-silver);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

ul, ol {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

section {
  padding: 90px 0;
  position: relative;
}

.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

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

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

/* ==========================================================================
   TYPOGRAPHY & BRAND UTILITIES
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: 900;
  line-height: 1.1;
  color: var(--metallic-white);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.font-display {
  font-family: var(--font-family-display);
  letter-spacing: 0.05em;
}

.text-highlight {
  color: var(--neon-green);
  text-shadow: 0 0 15px rgba(132, 255, 0, 0.3);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family-heading);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--neon-green);
  background: rgba(132, 255, 0, 0.08);
  border: 1px solid rgba(132, 255, 0, 0.3);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-badge.badge-center {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 16px;
  font-weight: 900;
}

.section-divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--neon-green), transparent);
  margin-bottom: 24px;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(132, 255, 0, 0.5);
}

.section-divider.divider-center {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(90deg, transparent, var(--neon-green), transparent);
}

.section-text {
  font-size: 1.125rem;
  color: var(--text-silver-muted);
  margin-bottom: 20px;
}

/* Metallic Cards & Glassmorphism */
.dark-card {
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.dark-card:hover {
  border-color: var(--border-neon);
  box-shadow: var(--neon-glow);
  transform: translateY(-4px);
}

/* Service page collection shell */
.service-page-header { position: relative; }
.service-page-hero { padding: 86px 0; background: radial-gradient(circle at 85% 18%, rgba(132, 255, 0, 0.13), transparent 34%), var(--bg-dark-1); }
.service-page-title { font-size: clamp(3.5rem, 7vw, 6.25rem); margin-bottom: 20px; line-height: 0.9; }
.service-page-lead { max-width: 590px; margin-bottom: 30px; color: var(--metallic-silver); font-size: 1.17rem; }
.service-page-image { width: 100%; min-height: 400px; height: 100%; object-fit: cover; border: 1px solid var(--border-neon); border-radius: 16px; box-shadow: var(--shadow-lg); }
.service-page-details { background: var(--bg-dark-0); }
.service-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-page-card { padding: 30px; }
.service-page-card h3 { font-size: 1.25rem; margin-bottom: 18px; }
.service-page-card p + p { margin-top: 14px; }
.service-page-card li { color: var(--text-silver-muted); padding: 8px 0 8px 21px; position: relative; }
.service-page-card li::before { content: '✓'; position: absolute; left: 0; color: var(--neon-green); font-weight: 900; }
.service-page-link { display: inline-block; margin-top: 20px; font-family: var(--font-family-heading); font-weight: 800; letter-spacing: 0.06em; }
.service-page-footer { padding: 28px 0; }
.service-page-footer .sub-footer-container { padding: 0; border: 0; }

/* AI hauling assistant page */
.ai-widget-page { min-height: calc(100vh - var(--header-height)); background: radial-gradient(circle at 50% 0, rgba(132, 255, 0, 0.12), transparent 38%), var(--bg-dark-1); }
.ai-widget-container { max-width: 820px; }
.ai-widget-intro { margin-bottom: 32px; }
.ai-widget-intro .section-text { max-width: 620px; margin: 0 auto; }
.ai-widget-frame { min-height: 440px; padding: 28px; border-color: var(--border-neon); }
.ai-widget-fallback { margin-top: 22px; text-align: center; color: var(--text-silver-muted); }
.ai-widget-fallback a { color: var(--neon-green); font-weight: 700; }

/* ==========================================================================
   BUTTONS & CTAS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-family-heading);
  font-weight: 900;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 32px;
  border-radius: 8px;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--neon-green);
  color: var(--bg-dark-0);
  box-shadow: 0 0 20px rgba(132, 255, 0, 0.4);
}

.btn-primary:hover {
  background: var(--neon-green-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--neon-glow-strong);
  color: #000;
}

.btn-outline {
  background: transparent;
  color: var(--metallic-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--neon-green);
  color: var(--neon-green);
  box-shadow: var(--neon-glow);
  background: rgba(132, 255, 0, 0.05);
}

.btn-large {
  padding: 20px 40px;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR
   ========================================================================== */
.top-bar {
  background: #040507;
  border-bottom: 1px solid rgba(132, 255, 0, 0.2);
  padding: 10px 0;
  font-size: 0.85rem;
  font-weight: 600;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.badge-status {
  background: var(--neon-green);
  color: #000;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.badge-status::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
  100% { opacity: 1; transform: scale(1); }
}

.top-bar-text {
  color: var(--metallic-silver);
}

.top-bar-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--neon-green);
  font-weight: 800;
  font-size: 1rem;
}

.icon-phone {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   HEADER NAVIGATION
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 19, 24, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-dark);
  height: var(--header-height);
  transition: var(--transition-normal);
}

.main-header.scrolled {
  background: rgba(7, 9, 11, 0.96);
  box-shadow: 0 10px 30px rgba(0,0,0,0.8);
  border-bottom-color: rgba(132, 255, 0, 0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-badge-img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--neon-green);
  box-shadow: 0 0 12px rgba(132, 255, 0, 0.4);
}

.brand-title-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-family-display);
  font-size: 2.1rem;
  line-height: 0.9;
  letter-spacing: 0.04em;
  color: var(--metallic-white);
}

.brand-name span {
  color: var(--neon-green);
}

.brand-tagline {
  font-family: var(--font-family-heading);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--text-silver-muted);
}

/* Desktop Navigation */
.nav-desktop ul {
  display: flex;
  gap: 32px;
}

.nav-desktop a {
  font-family: var(--font-family-heading);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--metallic-silver);
  position: relative;
  padding: 8px 0;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-green);
  box-shadow: 0 0 8px var(--neon-green);
  transition: var(--transition-fast);
}

.nav-desktop a:hover {
  color: var(--neon-green);
}

.nav-desktop a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
}

.hamburger-menu .bar {
  width: 100%;
  height: 3px;
  background-color: var(--neon-green);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Mobile Drawer Menu */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--bg-dark-1);
  border-left: 2px solid var(--neon-green);
  z-index: 1100;
  padding: 30px 24px;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.9);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-dark);
  margin-bottom: 30px;
}

.close-drawer {
  font-size: 2.2rem;
  color: var(--neon-green);
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-mobile a {
  font-family: var(--font-family-heading);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--metallic-white);
}

.nav-mobile a:hover {
  color: var(--neon-green);
}

.drawer-actions {
  margin-top: 40px;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 100px 0 120px 0;
  background:
    radial-gradient(circle at 78% 26%, rgba(132, 255, 0, 0.12), transparent 30%),
    linear-gradient(112deg, rgba(132, 255, 0, 0.05) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #0c1115 0%, #07090b 100%);
  background-size: auto, 28px 28px, auto;
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(132, 255, 0, 0.1);
  border: 1px solid var(--neon-green);
  color: var(--neon-green);
  font-family: var(--font-family-heading);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 4.25rem;
  line-height: 0.95;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.hero-subtext {
  font-size: 1.25rem;
  color: var(--metallic-silver);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-service-area {
  display: inline-flex;
  align-items: center;
  margin: -14px 0 30px;
  color: var(--neon-green);
  font-family: var(--font-family-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-service-area::before {
  content: '';
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 10px rgba(132, 255, 0, 0.7);
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
}

.hero-stars {
  color: #ffc107;
  font-size: 1.3rem;
  letter-spacing: 2px;
}

.hero-trust-text {
  font-size: 0.9rem;
  color: var(--text-silver-muted);
}

.hero-visual {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  padding: 8px;
  background: linear-gradient(135deg, var(--neon-green), rgba(255,255,255,0.1) 50%, var(--border-dark));
  box-shadow: var(--shadow-lg), var(--neon-glow);
}

.hero-truck-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  object-fit: cover;
}

.hero-picture,
.fleet-picture {
  display: block;
}

/* Floating Badge */
.floating-badge {
  position: absolute;
  bottom: -25px;
  left: -25px;
  width: 130px;
  height: 130px;
  background: var(--bg-dark-1);
  border: 2px solid var(--neon-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.9), var(--neon-glow);
}

.badge-svg {
  width: 100%;
  height: 100%;
  animation: spin 20s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.badge-text {
  font-family: var(--font-family-heading);
  font-size: 8.5px;
  font-weight: 800;
  fill: var(--neon-green);
  letter-spacing: 1px;
}

.badge-center-icon {
  position: absolute;
  width: 44px;
  height: 44px;
  background: var(--neon-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-dark-0);
}

.badge-center-icon svg {
  width: 24px;
  height: 24px;
}

/* ==========================================================================
   POPULAR SERVICES HIGHLIGHT STRIP
   ========================================================================== */
.popular-bar {
  background: var(--bg-dark-1);
  border-top: 1px solid var(--border-neon);
  border-bottom: 1px solid var(--border-dark);
  padding: 30px 0;
}

.popular-title {
  font-size: 1.1rem;
  color: var(--text-silver-muted);
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}

.popular-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.popular-item {
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  width: 100%;
  padding: 16px 12px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: var(--transition-bounce);
}

.service-detail-trigger:focus-visible {
  outline: 3px solid var(--metallic-white);
  outline-offset: 3px;
  border-color: var(--neon-green);
  box-shadow: var(--neon-glow);
}

.popular-item:hover {
  border-color: var(--neon-green);
  box-shadow: var(--neon-glow);
  transform: translateY(-4px);
  background: var(--bg-dark-3);
}

.popular-svg {
  width: 28px;
  height: 28px;
  color: var(--neon-green);
}

.popular-icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 9px rgba(132, 255, 0, 0.28));
  transition: transform var(--transition-fast), filter var(--transition-fast);
}

.popular-item:hover .popular-icon {
  transform: scale(1.08);
  filter: drop-shadow(0 0 14px rgba(132, 255, 0, 0.55));
}

.popular-name {
  font-family: var(--font-family-heading);
  font-size: 0.825rem;
  font-weight: 800;
  color: var(--metallic-white);
}

/* ==========================================================================
   INTERACTIVE LOAD ESTIMATOR SECTION
   ========================================================================== */
.estimator-section {
  background: linear-gradient(180deg, var(--bg-dark-0) 0%, var(--bg-dark-1) 100%);
  position: relative;
}

.estimator-box {
  background: var(--bg-dark-2);
  border: 2px solid var(--border-neon);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-lg), var(--neon-glow);
}

.estimator-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.estimator-card {
  background: var(--bg-dark-1);
  border: 2px solid var(--border-dark);
  border-radius: 14px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-bounce);
  position: relative;
}

.estimator-card:hover, .estimator-card.active {
  border-color: var(--neon-green);
  background: rgba(132, 255, 0, 0.06);
  box-shadow: var(--neon-glow);
  transform: translateY(-4px);
}

.estimator-card.active::after {
  content: '✓ SELECTED';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--neon-green);
  color: #000;
  font-size: 0.65rem;
  font-weight: 900;
  padding: 2px 10px;
  border-radius: 20px;
}

.estimator-icon-wrap {
  width: 64px;
  height: 64px;
  background:
    radial-gradient(circle at 50% 42%, rgba(132, 255, 0, 0.16), rgba(132, 255, 0, 0.08));
  border: 1px solid rgba(132, 255, 0, 0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  color: var(--neon-green);
  box-shadow: inset 0 0 18px rgba(132, 255, 0, 0.04);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.estimator-load-icon {
  width: 40px;
  height: 40px;
  overflow: visible;
}

.estimator-load-bin {
  fill: rgba(132, 255, 0, 0.035);
}

.estimator-load-fill {
  fill: currentColor;
  fill-opacity: 0.18;
}

.estimator-card:hover .estimator-icon-wrap,
.estimator-card.active .estimator-icon-wrap {
  background:
    radial-gradient(circle at 50% 42%, rgba(132, 255, 0, 0.23), rgba(132, 255, 0, 0.1));
  box-shadow: inset 0 0 18px rgba(132, 255, 0, 0.08), 0 0 18px rgba(132, 255, 0, 0.12);
  transform: translateY(-2px);
}

.estimator-card-title {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.estimator-card-desc {
  font-size: 0.825rem;
  color: var(--text-silver-muted);
}

.estimator-result-panel {
  background: var(--bg-dark-1);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.estimate-price-val {
  font-family: var(--font-family-display);
  font-size: 3rem;
  color: var(--neon-green);
  line-height: 1;
  text-shadow: 0 0 15px rgba(132, 255, 0, 0.4);
}

.estimate-label {
  font-size: 0.9rem;
  color: var(--text-silver-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   FLEET SHOWCASE GALLERY
   ========================================================================== */
.fleet-section {
  background: var(--bg-dark-0);
  border-top: 1px solid var(--border-dark);
}

.fleet-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.fleet-tab-btn {
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  color: var(--metallic-silver);
  font-family: var(--font-family-heading);
  font-weight: 800;
  min-width: 0;
  padding: 14px 18px;
  border-radius: 10px;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
  overflow: hidden;
}

.fleet-tab-kicker,
.fleet-tab-label {
  display: block;
  max-width: 100%;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.fleet-tab-kicker {
  color: var(--neon-green);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.fleet-tab-label {
  color: var(--metallic-white);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.fleet-tab-btn.active, .fleet-tab-btn:hover {
  background: var(--neon-green);
  color: #000;
  border-color: var(--neon-green);
  box-shadow: var(--neon-glow);
}

.fleet-tab-btn.active .fleet-tab-kicker,
.fleet-tab-btn:hover .fleet-tab-kicker {
  color: rgba(0, 0, 0, 0.65);
}

.fleet-tab-btn.active .fleet-tab-label,
.fleet-tab-btn:hover .fleet-tab-label {
  color: #000;
}

.fleet-tab-btn:focus-visible {
  outline: 2px solid var(--metallic-white);
  outline-offset: 3px;
}

.fleet-display-card {
  background: var(--bg-dark-2);
  border: 1px solid var(--border-neon);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.fleet-img-frame {
  width: 100%;
  height: 480px;
  overflow: hidden;
  position: relative;
}

.fleet-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fleet-display-card:hover .fleet-img-frame img {
  transform: scale(1.04);
}

.fleet-details-bar {
  padding: 30px;
  background: var(--bg-dark-1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid var(--border-dark);
}

.fleet-spec-list {
  display: flex;
  gap: 25px;
}

.fleet-spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--metallic-silver);
}

.fleet-spec-item svg {
  color: var(--neon-green);
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   ABOUT / BRAND PROMISE SECTION
   ========================================================================== */
.about-section {
  background: var(--bg-dark-1);
}

.about-image-wrapper {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: 16px;
  border: 2px solid var(--border-dark);
}

.about-badge-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg-dark-2);
  border: 2px solid var(--neon-green);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: var(--neon-glow);
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-badge-icon {
  font-family: var(--font-family-display);
  font-size: 2.5rem;
  color: var(--neon-green);
  line-height: 1;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 24px 0 32px 0;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--metallic-white);
}

.checklist-item svg {
  color: var(--neon-green);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ==========================================================================
   SERVICES GRID SECTION
   ========================================================================== */
.services-section {
  background: var(--bg-dark-0);
}

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

.service-card {
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border-dark);
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
}

.service-card:hover {
  border-color: var(--neon-green);
  box-shadow: var(--neon-glow);
  transform: translateY(-8px);
}

.service-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-image {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7,9,11,0.2) 0%, rgba(7,9,11,0.92) 80%);
}

.service-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.service-card-title {
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--metallic-white);
}

/* ==========================================================================
   BENEFITS / WHY US GRID & CUSTOM BRANDED ICONS
   ========================================================================== */
.benefits-section {
  background: var(--bg-dark-1);
}

.benefit-card {
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  padding: 36px 24px;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition-bounce);
}

.benefit-card:hover {
  border-color: var(--neon-green);
  box-shadow: var(--neon-glow);
  transform: translateY(-6px);
}

.benefit-custom-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 20px auto;
  filter: drop-shadow(0 0 12px rgba(132, 255, 0, 0.4));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.benefit-card:hover .benefit-custom-icon {
  transform: scale(1.12) rotate(3deg);
  filter: drop-shadow(0 0 25px rgba(132, 255, 0, 0.85));
}

.benefit-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.benefit-text {
  font-size: 0.95rem;
  color: var(--text-silver-muted);
  line-height: 1.6;
}

/* ==========================================================================
   TESTIMONIALS SLIDER
   ========================================================================== */
.testimonials-section {
  background: var(--bg-dark-0);
  overflow: hidden;
}

.testimonials-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.slider-controls {
  display: flex;
  gap: 12px;
}

.slider-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  color: var(--metallic-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--neon-green);
  color: #000;
  border-color: var(--neon-green);
  box-shadow: var(--neon-glow);
}

.slider-arrow svg {
  width: 22px;
  height: 22px;
}

.testimonials-slider-container {
  overflow: hidden;
  width: 100%;
}

.testimonials-track {
  display: flex;
  gap: 30px;
  transition: transform 0.4s ease-out;
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 20px);
  min-width: 300px;
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial-card:hover {
  border-color: rgba(132, 255, 0, 0.4);
}

.quote-icon {
  font-size: 4rem;
  color: rgba(132, 255, 0, 0.2);
  line-height: 1;
  font-family: Georgia, serif;
  position: absolute;
  top: 15px;
  right: 25px;
}

.testimonial-rating {
  color: #ffc107;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--metallic-silver);
  margin-bottom: 24px;
  line-height: 1.6;
}

.author-name {
  font-family: var(--font-family-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--metallic-white);
  display: block;
}

.author-location {
  font-size: 0.8rem;
  color: var(--neon-green);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-dark-3);
  transition: var(--transition-fast);
}

.slider-dot.active {
  background: var(--neon-green);
  width: 32px;
  border-radius: 10px;
  box-shadow: var(--neon-glow);
}

/* ==========================================================================
   RUSH BANNER
   ========================================================================== */
.rush-banner {
  background: linear-gradient(135deg, rgba(132, 255, 0, 0.15) 0%, rgba(7, 9, 11, 0.95) 100%), var(--bg-dark-1);
  border-top: 2px solid var(--neon-green);
  border-bottom: 2px solid var(--neon-green);
  padding: 60px 0;
}

.rush-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.rush-title {
  font-size: 2.5rem;
  color: var(--metallic-white);
}

.rush-sub {
  font-size: 1.1rem;
  color: var(--neon-green);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.rush-actions {
  display: flex;
  gap: 15px;
}

/* ==========================================================================
   PROCESS SECTION
   ========================================================================== */
.process-section {
  background: var(--bg-dark-0);
}

.step-card {
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: var(--transition-bounce);
}

.step-card:hover {
  border-color: var(--neon-green);
  box-shadow: var(--neon-glow);
  transform: translateY(-6px);
}

.step-number-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--neon-green);
  color: #000;
  font-family: var(--font-family-display);
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  box-shadow: var(--neon-glow);
}

.step-title {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.step-text {
  font-size: 0.95rem;
  color: var(--text-silver-muted);
}

/* ==========================================================================
   HOUSTON SERVICE AREA
   ========================================================================== */
.service-area-section {
  scroll-margin-top: calc(var(--header-height) + 20px);
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 50%, rgba(var(--neon-green-rgb), 0.12), transparent 33%),
    linear-gradient(135deg, #0c1014 0%, var(--bg-dark-0) 70%);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.service-area-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 35%, #000);
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000);
}

.service-area-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(42px, 6vw, 84px);
}

.service-area-eyebrow {
  margin-bottom: 8px;
  color: var(--text-silver-muted);
  font-family: var(--font-family-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.service-area-intro .section-text {
  max-width: 500px;
}

.service-area-hub {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0 24px;
  padding: 17px 18px;
  background: linear-gradient(90deg, rgba(var(--neon-green-rgb), 0.12), rgba(22, 28, 36, 0.45));
  border: 1px solid var(--border-dark);
  border-left: 4px solid var(--neon-green);
}

.service-area-hub svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--neon-green);
  filter: drop-shadow(0 0 7px rgba(var(--neon-green-rgb), 0.5));
}

.service-area-hub span,
.service-area-hub strong {
  display: block;
}

.service-area-hub span {
  color: var(--text-silver-muted);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.service-area-hub strong {
  margin-top: 2px;
  color: var(--metallic-white);
  font-family: var(--font-family-heading);
  font-size: 1.08rem;
  text-transform: uppercase;
}

.service-area-board {
  position: relative;
  padding: 24px;
  background: rgba(12, 16, 20, 0.9);
  border: 1px solid rgba(var(--neon-green-rgb), 0.35);
  box-shadow: 0 22px 65px rgba(0, 0, 0, 0.48), inset 0 0 45px rgba(var(--neon-green-rgb), 0.025);
}

.service-area-board::before,
.service-area-board::after {
  content: '';
  position: absolute;
  width: 38px;
  height: 38px;
  pointer-events: none;
}

.service-area-board::before {
  top: -1px;
  left: -1px;
  border-top: 3px solid var(--neon-green);
  border-left: 3px solid var(--neon-green);
}

.service-area-board::after {
  right: -1px;
  bottom: -1px;
  border-right: 3px solid var(--neon-green);
  border-bottom: 3px solid var(--neon-green);
}

.service-area-board-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-dark);
}

.service-area-board-header h3 {
  margin-top: 5px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.service-area-status,
.service-area-count {
  color: var(--neon-green);
  font-family: var(--font-family-heading);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.service-area-status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 9px var(--neon-green);
}

.service-area-count {
  flex: 0 0 auto;
  padding: 6px 9px;
  color: var(--text-silver-muted);
  border: 1px solid var(--border-dark);
}

.service-area-city-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.service-area-city {
  position: relative;
  min-width: 0;
  min-height: 122px;
  padding: 17px 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(30, 38, 50, 0.86), rgba(12, 16, 20, 0.96));
  border: 1px solid var(--border-dark);
  transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.service-area-city::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 3px;
  background: var(--neon-green);
  opacity: 0.65;
}

.service-area-city:hover {
  z-index: 1;
  transform: translateY(-3px);
  background: linear-gradient(145deg, rgba(var(--neon-green-rgb), 0.12), rgba(12, 16, 20, 0.98));
  border-color: rgba(var(--neon-green-rgb), 0.65);
}

.service-area-index {
  position: absolute;
  top: 13px;
  left: 14px;
  color: rgba(var(--neon-green-rgb), 0.78);
  font-family: var(--font-family-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.service-area-city strong {
  color: var(--metallic-white);
  font-family: var(--font-family-heading);
  font-size: clamp(0.88rem, 1.25vw, 1.05rem);
  line-height: 1.15;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.service-area-city > span:last-child {
  margin-top: 5px;
  color: var(--text-silver-muted);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-area-note {
  margin-top: 17px;
  color: var(--text-silver-muted);
  font-size: 0.78rem;
  text-align: center;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-section {
  background: var(--bg-dark-0);
}

.accordion-item {
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition-fast);
}

.accordion-item.active {
  border-color: var(--neon-green);
  box-shadow: var(--neon-glow);
}

.accordion-header {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-family-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--metallic-white);
  text-align: left;
}

.accordion-icon {
  font-size: 1.5rem;
  color: var(--neon-green);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-collapse {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion-body {
  padding: 0 24px 20px 24px;
  color: var(--text-silver-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.main-footer {
  background: #040507;
  border-top: 2px solid var(--border-neon);
  padding: 80px 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-col-title {
  font-size: 1.1rem;
  color: var(--metallic-white);
  margin-bottom: 24px;
  letter-spacing: 0.08em;
}

.footer-text {
  color: var(--text-silver-muted);
  font-size: 0.9rem;
  margin-top: 15px;
}

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

.footer-links a {
  color: var(--text-silver-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--neon-green);
  padding-left: 5px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--metallic-silver);
}

.footer-contact-icon {
  width: 18px;
  height: 18px;
  color: var(--neon-green);
}

.sub-footer {
  background: #020304;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  font-size: 0.85rem;
  color: var(--text-silver-muted);
}

.sub-footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ==========================================================================
   SERVICE DETAIL + QUOTE MODALS
   ========================================================================== */
.service-detail-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(680px, calc(100% - 40px));
  max-height: calc(100dvh - 40px);
  padding: 36px;
  overflow-y: auto;
  background:
    linear-gradient(135deg, rgba(132, 255, 0, 0.08), transparent 32%),
    var(--bg-dark-1);
  border: 1px solid rgba(132, 255, 0, 0.75);
  border-top-width: 4px;
  border-radius: 6px 6px 18px 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.92), 0 0 35px rgba(132, 255, 0, 0.2);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -47%) scale(0.96);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.service-detail-modal::before {
  content: '';
  position: absolute;
  top: 15px;
  right: 74px;
  width: 72px;
  height: 4px;
  background: repeating-linear-gradient(90deg, var(--neon-green) 0 8px, transparent 8px 13px);
  opacity: 0.65;
}

.service-detail-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.service-detail-close {
  position: absolute;
  top: 12px;
  right: 17px;
  width: 44px;
  height: 44px;
  color: var(--neon-green);
  font-size: 2rem;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: 50%;
}

.service-detail-close:hover,
.service-detail-close:focus-visible {
  color: var(--metallic-white);
  border-color: var(--neon-green);
  outline: none;
}

.service-detail-header {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding-right: 42px;
}

.service-detail-icon-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  padding: 9px;
  background: var(--bg-dark-2);
  border: 1px solid var(--border-neon);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
}

.service-detail-icon-frame img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(132, 255, 0, 0.4));
}

.service-detail-kicker,
.service-detail-dispatch,
.service-detail-includes-label {
  display: block;
  color: var(--neon-green);
  font-family: var(--font-family-heading);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.service-detail-header h3 {
  margin: 4px 0 5px;
  color: var(--metallic-white);
  font-size: clamp(2rem, 6vw, 3.1rem);
  line-height: 0.95;
}

.service-detail-dispatch {
  color: var(--text-silver-muted);
  letter-spacing: 0.1em;
}

.service-detail-description {
  margin: 28px 0 22px;
  color: var(--metallic-silver);
  font-size: 1rem;
  line-height: 1.72;
}

.service-detail-includes {
  padding: 20px;
  background: #0a0e12;
  border: 1px solid var(--border-dark);
  border-left: 3px solid var(--neon-green);
}

.service-detail-includes ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin-top: 14px;
}

.service-detail-includes li {
  position: relative;
  padding-left: 22px;
  color: var(--metallic-white);
  font-size: 0.86rem;
  font-weight: 700;
}

.service-detail-includes li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--neon-green);
}

.service-detail-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.service-detail-footer p {
  color: var(--text-silver-muted);
  font-size: 0.72rem;
  line-height: 1.55;
}

.service-detail-footer strong {
  color: var(--metallic-white);
}

.service-detail-footer .btn {
  white-space: nowrap;
}

.quote-modal-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 600px;
  background: var(--bg-dark-1);
  border: 2px solid var(--neon-green);
  border-radius: 20px;
  z-index: 1200;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.9), var(--neon-glow-strong);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-bounce);
}

.quote-modal-wrapper.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  z-index: 1150;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: var(--neon-green);
}

.quote-modal-header {
  margin-bottom: 25px;
}

.quote-modal-header h3 {
  font-size: 1.8rem;
  color: var(--metallic-white);
}

.quote-modal-header p {
  color: var(--text-silver-muted);
  font-size: 0.9rem;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--metallic-white);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  background: var(--bg-dark-2);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--metallic-white);
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--neon-green);
  box-shadow: 0 0 10px rgba(132, 255, 0, 0.3);
  outline: none;
}

.form-honeypot {
  display: none;
}

.form-status {
  min-height: 1.4em;
  margin-top: 12px;
  color: #ff8e8e;
  font-size: 0.82rem;
  line-height: 1.4;
  text-align: center;
}

.quote-form .btn:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-dark-1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.form-success-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.success-icon {
  width: 70px;
  height: 70px;
  background: rgba(132, 255, 0, 0.15);
  border: 2px solid var(--neon-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  color: var(--neon-green);
}

.success-icon svg {
  width: 36px;
  height: 36px;
}

/* ==========================================================================
   FLOATING ACTION CONTACT BAR
   ========================================================================== */
.floating-call-bar {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15, 19, 24, 0.95);
  border: 2px solid var(--neon-green);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg), var(--neon-glow);
  backdrop-filter: blur(10px);
  animation: float-pulse 3s ease-in-out infinite;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.floating-call-bar.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@keyframes float-pulse {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

.floating-call-btn,
.floating-text-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--neon-green);
  font-family: var(--font-family-heading);
  font-weight: 900;
  font-size: 1.05rem;
}

.floating-call-btn svg,
.floating-text-btn svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.floating-text-btn,
.call-label-mobile {
  display: none;
}

/* ==========================================================================
   SCROLL FADE-IN ANIMATIONS
   ========================================================================== */
.fade-in-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (min-width: 1025px) and (max-width: 1280px) {
  .nav-desktop {
    margin: 0 18px;
  }

  .nav-desktop ul {
    gap: 15px;
  }

  .nav-desktop a {
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
  }

  .header-container > .brand-logo,
  .header-actions {
    flex: 0 0 auto;
  }

  .header-actions .btn {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 0.78rem;
  }
}

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .popular-grid { grid-template-columns: repeat(3, 1fr); }
  .estimator-options { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 3.25rem; }
  .nav-desktop { display: none; }
  .hamburger-menu { display: flex; }
  .service-area-shell { grid-template-columns: 1fr; }
  .service-area-intro .section-text { max-width: 680px; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .hamburger-menu { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .popular-grid { grid-template-columns: repeat(2, 1fr); }
  .estimator-options { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.6rem; }
  .hero-cta-group { flex-direction: column; }
  .floating-badge { display: none; }
  .rush-container { flex-direction: column; text-align: center; }
  .rush-actions { flex-direction: column; width: 100%; }
  .testimonials-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .testimonial-card { flex: 0 0 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-call-bar { bottom: 15px; right: 15px; padding: 8px 16px; }
  section { padding: 64px 0; }
  .hero-section { padding: 56px 0 72px; }
  .hero-section .grid-2 { gap: 48px; }
  .hero-content { min-width: 0; }
  .hero-subtext { max-width: none; }
  .hero-cta-group .btn { width: 100%; }
  .hero-trust-bar { align-items: flex-start; gap: 14px; }
  .fleet-img-frame { height: auto; aspect-ratio: 16 / 10; }
  .fleet-details-bar { align-items: flex-start; }
  .fleet-spec-list { width: 100%; flex-wrap: wrap; gap: 12px 20px; }
  .about-badge-card { right: 12px; bottom: -24px; }
  .about-content { padding-top: 22px; }
  .service-area-city { min-height: 112px; }
  .quote-modal-wrapper { max-height: calc(100dvh - 24px); overflow-y: auto; }
  .service-page-hero { padding: 58px 0; }
  .service-page-image { min-height: 280px; max-height: 430px; }
  .service-page-grid { grid-template-columns: 1fr; }
}

/* Compact mobile command bar */
@media (max-width: 640px) {
  :root {
    --header-height: 70px;
  }

  .top-bar {
    padding: 7px 0;
    font-size: 0.75rem;
  }

  .top-bar-container {
    width: calc(100% - 28px);
    gap: 12px;
  }

  .top-bar-left {
    min-width: 0;
    gap: 0;
  }

  .top-bar-text {
    display: none;
  }

  .badge-status {
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 0.67rem;
    line-height: 1;
    white-space: nowrap;
  }

  .badge-status::before {
    width: 6px;
    height: 6px;
  }

  .top-bar-phone {
    flex: 0 0 auto;
    gap: 6px;
    font-size: 0.78rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
  }

  .icon-phone {
    width: 14px;
    height: 14px;
  }

  .main-header {
    background: rgba(7, 9, 11, 0.97);
    border-bottom-color: rgba(132, 255, 0, 0.3);
    backdrop-filter: blur(18px);
  }

  .header-container {
    width: calc(100% - 28px);
    gap: 10px;
  }

  .header-container > .brand-logo {
    min-width: 0;
    gap: 8px;
  }

  .header-container .logo-badge-img {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(132, 255, 0, 0.3);
  }

  .header-container .brand-title-wrap {
    min-width: 0;
  }

  .header-container .brand-name {
    font-size: 1.65rem;
    line-height: 0.86;
    white-space: nowrap;
  }

  .header-container .brand-tagline {
    margin-top: 4px;
    font-size: 0.5rem;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 8px;
  }

  .header-actions .btn {
    min-height: 44px;
    padding: 11px 13px;
    border-radius: 5px;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: 0 0 14px rgba(132, 255, 0, 0.3);
  }

  .hamburger-menu {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    border: 1px solid rgba(132, 255, 0, 0.45);
    border-radius: 5px;
    background: rgba(132, 255, 0, 0.06);
  }

  .hamburger-menu .bar {
    width: 21px;
    height: 2px;
  }

  .hamburger-menu:focus-visible,
  .close-drawer:focus-visible {
    outline: 2px solid var(--metallic-white);
    outline-offset: 3px;
  }

  .mobile-drawer {
    width: min(88%, 360px);
    padding: 22px 20px;
  }

  .mobile-drawer-header {
    margin-bottom: 24px;
    padding-bottom: 18px;
  }

  .drawer-actions .btn {
    padding: 14px 12px;
    font-size: 0.86rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .close-drawer {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-neon);
    border-radius: 5px;
    line-height: 1;
  }

  body {
    padding-bottom: 72px;
  }

  .container {
    width: calc(100% - 32px);
  }

  h1, h2, h3, h4, h5, h6,
  .section-text,
  .footer-text,
  .contact-info p {
    overflow-wrap: anywhere;
  }

  .btn,
  .fleet-tab-btn,
  .accordion-header,
  .slider-arrow,
  .slider-dot,
  .popular-item {
    min-height: 44px;
  }

  .hero-badge {
    max-width: 100%;
    padding: 7px 12px;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    line-height: 1.45;
  }

  .hero-title {
    font-size: clamp(3.2rem, 17vw, 4.25rem);
    line-height: 0.88;
  }

  .hero-subtext {
    margin-bottom: 28px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-service-area {
    margin: -10px 0 26px;
    font-size: 0.7rem;
    line-height: 1.5;
  }

  .hero-cta-group {
    gap: 12px;
    margin-bottom: 32px;
  }

  .hero-cta-group .btn-large,
  .rush-actions .btn-large {
    padding: 16px 18px;
    font-size: 0.92rem;
  }

  .hero-stars {
    white-space: nowrap;
    font-size: 1.05rem;
  }

  .hero-truck-img {
    aspect-ratio: 4 / 3;
    object-position: 62% center;
  }

  .hero-image-wrapper {
    padding: 5px;
    border-radius: 14px;
  }

  .hero-truck-img {
    border-radius: 10px;
  }

  .popular-bar { padding: 24px 0; }
  .popular-grid { gap: 10px; }
  .popular-item { padding: 14px 8px; }
  .popular-name { font-size: 0.72rem; }

  .section-title {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .section-text {
    font-size: 1rem;
  }

  .mb-5 { margin-bottom: 2rem; }

  .estimator-box { padding: 18px; border-radius: 14px; }
  .estimator-options { gap: 14px; margin-bottom: 20px; }
  .estimator-card { padding: 18px 14px; }
  .estimator-result-panel { padding: 20px; }
  .estimator-result-panel .btn { width: 100%; }
  .estimate-price-val { font-size: 2.5rem; }

  .fleet-tabs {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 24px;
  }
  .fleet-tab-btn {
    width: 100%;
    min-height: 58px;
    padding: 11px 14px;
  }
  .fleet-tab-kicker { font-size: 0.62rem; }
  .fleet-tab-label { font-size: 0.9rem; }
  .fleet-img-frame { aspect-ratio: 4 / 3; }
  .fleet-img-frame img { object-position: center; }
  .fleet-details-bar { padding: 20px; }
  .fleet-details-bar h3 { font-size: 1.45rem !important; }
  .fleet-spec-list { flex-direction: column; gap: 10px; }

  .about-badge-card { position: relative; right: auto; bottom: auto; margin: -22px 12px 0; padding: 14px; }
  .about-badge-icon { font-size: 2rem; }

  .services-grid { gap: 18px; }
  .service-card { height: 330px; }
  .service-card-content { padding: 22px; }
  .service-card-image { object-position: center 35%; }

  .benefit-card { padding: 28px 20px; }
  .testimonials-track { gap: 16px; }
  .testimonial-card { min-width: 0; padding: 26px 22px; }
  .slider-controls { width: 100%; justify-content: flex-end; }

  .rush-banner { padding: 48px 0; }
  .rush-title { font-size: 2rem; }
  .rush-sub { font-size: 0.9rem; }
  .rush-actions .btn { width: 100%; }

  .accordion-header { padding: 18px; gap: 12px; font-size: 0.95rem; }
  .accordion-body { padding: 0 18px 18px; }

  .service-area-shell { gap: 34px; }
  .service-area-board { padding: 18px; }
  .service-area-board-header { align-items: flex-start; }
  .service-area-city-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-area-city { min-height: 102px; padding: 15px 12px; }
  .service-area-city:last-child { grid-column: 1 / -1; }
  .service-area-hub { margin-top: 23px; }

  .main-footer { padding-top: 56px; }
  .footer-grid { gap: 28px; padding-bottom: 40px; }
  .sub-footer-container { flex-direction: column; align-items: flex-start; gap: 14px; }
  .sub-footer-container a { display: inline-block; margin: 0 14px 6px 0 !important; }

  .quote-modal-wrapper { width: calc(100% - 24px); padding: 26px 20px; border-radius: 14px; }
  .quote-modal-header h3 { padding-right: 28px; }
  .form-group { margin-bottom: 15px; }

  .service-detail-modal {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
    padding: 28px 20px 22px;
    border-radius: 4px 4px 14px 14px;
  }

  .service-detail-modal::before { display: none; }
  .service-detail-header { grid-template-columns: 72px minmax(0, 1fr); gap: 15px; padding-right: 28px; }
  .service-detail-icon-frame { width: 72px; height: 72px; padding: 6px; }
  .service-detail-icon-frame img { width: 58px; height: 58px; }
  .service-detail-header h3 { font-size: clamp(1.75rem, 9vw, 2.35rem); }
  .service-detail-dispatch { display: none; }
  .service-detail-description { margin: 21px 0 17px; font-size: 0.91rem; line-height: 1.62; }
  .service-detail-includes { padding: 16px; }
  .service-detail-includes ul { grid-template-columns: 1fr; gap: 9px; }
  .service-detail-footer { grid-template-columns: 1fr; gap: 15px; }
  .service-detail-footer .btn { width: 100%; white-space: normal; }

  .floating-call-bar {
    left: 12px;
    right: 12px;
    bottom: 10px;
    gap: 8px;
    padding: 7px;
    border-radius: 18px;
  }

  .floating-call-btn,
  .floating-text-btn {
    flex: 1 1 50%;
    justify-content: center;
    min-width: 0;
    min-height: 46px;
    padding: 8px 12px;
    border-radius: 11px;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .floating-text-btn {
    display: flex;
    background: var(--neon-green);
    color: #071006;
  }

  .call-label-desktop {
    display: none;
  }

  .call-label-mobile {
    display: inline;
  }
}

@media (max-width: 360px) {
  .header-actions .open-quote-modal {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
