/* ============================================================
   J BOYS SERVICES LLC — Main Stylesheet
   Design: Logo Black + Logo Red + Logo Steel Gray
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --black:      #0D0D0D;
  --charcoal:   #171717;
  --dark-card:  #1E1E1E;
  --border:     #2A2A2A;
  --orange:     #E8001A;
  --gold:       #C0001A;
  --white:      #EDEEF0;
  --gray:       #8A9BAA;
  --green:      #2D6A4F;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --nav-h: 72px;
  --section-pad: clamp(64px, 8vw, 120px);
  --container:   1200px;
  --radius:      6px;
  --transition:  0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section-pad { padding: var(--section-pad) 0; }
.text-orange { color: var(--orange); }
.text-gray   { color: var(--gray); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}
.display-xl {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.display-lg {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
}
.display-md {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
}
.label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.body-lg { font-size: clamp(16px, 1.2vw, 18px); line-height: 1.7; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  will-change: transform;
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }
.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--gold);
  transform: scale(1.03);
  box-shadow: 0 6px 30px rgba(232, 0, 26, 0.45);
}
.btn-primary:active { transform: scale(0.97); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(242, 240, 235, 0.35);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: scale(1.03);
}
.btn-outline:active { transform: scale(0.97); }
.btn-ghost {
  background: transparent;
  color: var(--orange);
  padding: 14px 0;
  gap: 6px;
}
.btn-ghost:hover { gap: 10px; }
.btn-ghost svg { transition: transform var(--transition); }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(17, 17, 17, 0.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(12px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color var(--transition);
}
.nav-link:hover { color: var(--white); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-phone {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--orange); }

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

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-overlay.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.nav-overlay .nav-link {
  font-size: 32px;
  color: var(--white);
  letter-spacing: 0.05em;
}
.nav-overlay .nav-link:hover { color: var(--orange); }
.nav-overlay-phone {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
}

/* ---------- Hero ---------- */
.hero {
  height: 300vh;
  position: relative;
}
/* Shared sticky base */
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
/* Video layer — sits behind everything */
.hero-video-layer {
  z-index: 0;
  margin-bottom: -100vh;
}
/* Text layer — floats on top, never moves */
.hero-text-layer {
  z-index: 1;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  pointer-events: none;
}
.hero-text-layer .container,
.hero-text-layer .btn {
  pointer-events: auto;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #0a0a0a;
  z-index: 0;
}
.hero-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Dark overlay on top of video */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.88) 0%, rgba(10,10,10,0.72) 55%, rgba(10,10,10,0.60) 100%);
  z-index: 1;
}
/* Diagonal accent line */
.hero-bg::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 160%;
  background: linear-gradient(135deg, transparent 40%, rgba(232,0,26,0.06) 100%);
  transform: skewX(-8deg);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-label { margin-bottom: 20px; }
.hero-title { margin-bottom: 24px; }
.hero-sub {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 60px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-trust-item svg { color: var(--orange); flex-shrink: 0; }

/* 3D Asset area */
.hero-3d {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.hero-3d-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border: 2px dashed rgba(232,0,26,0.3);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(232,0,26,0.5);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 40px;
}
.hero-3d-placeholder svg { opacity: 0.4; }

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}
.trust-item svg { color: var(--orange); }
.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
}

/* ---------- Stats ---------- */
.stats { background: var(--black); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  background: var(--charcoal);
  padding: clamp(32px, 4vw, 56px) clamp(24px, 3vw, 40px);
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-suffix {
  font-size: 0.6em;
  color: var(--gold);
}
.stat-label {
  font-size: 13px;
  color: var(--gray);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ---------- Services ---------- */
.services { background: var(--black); }
.section-header {
  max-width: 600px;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.section-header .label { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--gray); line-height: 1.7; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.service-card {
  background: var(--dark-card);
  padding: clamp(28px, 3vw, 44px);
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--orange);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}
.service-card:hover { background: #272727; }
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(232,0,26,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: rgba(232,0,26,0.18); }
.service-icon svg { color: var(--orange); }
.service-card h3 {
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: 12px;
  color: var(--white);
}
.service-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* ---------- About ---------- */
.about { background: var(--charcoal); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-photo {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--dark-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(232,0,26,0.4);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.about-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--orange);
  color: #fff;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  text-align: center;
  line-height: 1.1;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.about-badge .badge-num {
  font-size: 32px;
  line-height: 1;
}
.about-content .label { margin-bottom: 12px; }
.about-content h2 { margin-bottom: 20px; }
.about-content p {
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-points {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.about-point-icon {
  width: 24px;
  height: 24px;
  background: rgba(232,0,26,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-point-icon svg { color: var(--orange); }
.about-point-text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.55;
}
.about-point-text strong { color: var(--white); font-weight: 600; }

/* ---------- Fleet ---------- */
.fleet { background: var(--black); }
.fleet-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.fleet-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.fleet-card:hover {
  border-color: rgba(232,0,26,0.4);
  transform: translateY(-4px);
}
.fleet-card-img {
  aspect-ratio: 16/10;
  background: var(--charcoal);
  overflow: hidden;
}
.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fleet-card:hover .fleet-card-img img {
  transform: scale(1.05);
}
.fleet-card-body { padding: 20px 24px; }
.fleet-card-body h3 {
  font-size: 20px;
  margin-bottom: 6px;
}
.fleet-card-body p {
  font-size: 14px;
  color: var(--gray);
}

/* ---------- Testimonials ---------- */
.testimonials { background: var(--charcoal); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.star { color: var(--gold); font-size: 16px; }
.testimonial-text {
  font-size: 16px;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-text::before { content: '"'; }
.testimonial-text::after  { content: '"'; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: rgba(232,0,26,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--orange);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.testimonial-location {
  font-size: 13px;
  color: var(--gray);
}

/* ---------- Service Area ---------- */
.service-area { background: var(--black); }
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.area-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray);
}
.area-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}
.area-map {
  width: 100%;
  aspect-ratio: 1;
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.area-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---------- Contact CTA Section ---------- */
.contact-cta {
  background: linear-gradient(135deg, var(--charcoal) 0%, rgba(232,0,26,0.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contact-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.contact-info .label { margin-bottom: 12px; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { color: var(--gray); line-height: 1.7; margin-bottom: 32px; }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(232,0,26,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { color: var(--orange); }
.contact-detail-label {
  font-size: 12px;
  color: var(--gray);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.contact-detail-value {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}
.contact-detail-value a:hover { color: var(--orange); }

/* Quote Form */
.quote-form {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 44px);
}
.form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  color: var(--white);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 16px;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,0,26,0.12);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(154,154,142,0.5); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9A8E' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-select option { background: var(--charcoal); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
}
.form-note {
  font-size: 12px;
  color: var(--gray);
  text-align: center;
  margin-top: 12px;
}

/* ---------- Footer ---------- */
.footer {
  background: #0A0A0A;
  border-top: 1px solid var(--border);
  padding: clamp(48px, 6vw, 80px) 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 60px);
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-tagline {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 24px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 14px;
  color: var(--gray);
  transition: color var(--transition);
}
.footer-link:hover { color: var(--orange); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal {
  font-size: 13px;
  color: var(--gray);
}

/* ---------- Mobile Sticky CTA ---------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 12px 20px;
  gap: 12px;
}
.sticky-cta .btn { flex: 1; justify-content: center; }

/* ---------- Scroll Animations (JS-driven classes) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger children */
.stagger > * { opacity: 0; transform: translateY(24px); }
.stagger.visible > * {
  animation: fadeUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.stagger.visible > *:nth-child(1) { animation-delay: 0.05s; }
.stagger.visible > *:nth-child(2) { animation-delay: 0.15s; }
.stagger.visible > *:nth-child(3) { animation-delay: 0.25s; }
.stagger.visible > *:nth-child(4) { animation-delay: 0.35s; }
.stagger.visible > *:nth-child(5) { animation-delay: 0.45s; }
.stagger.visible > *:nth-child(6) { animation-delay: 0.55s; }

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

/* ---------- Section Divider ---------- */
.section-divider {
  height: 60px;
  position: relative;
  overflow: hidden;
}
.section-divider::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  background: var(--charcoal);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
  .stagger > * { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-3d { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { order: -1; }
  .about-badge { bottom: -16px; right: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero { height: 200vh; }
  .nav-links, .nav-actions .btn { display: none; }
  .nav-burger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .service-area-grid { grid-template-columns: 1fr; }
  .contact-cta-inner { grid-template-columns: 1fr; }
  .fleet-intro { flex-direction: column; align-items: flex-start; }
  .sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 20px; }
  .trust-divider { display: none; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
}
