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

:root {
  --orange: #F4511E;
  --orange-bright: #FF6B35;
  --orange-deep: #C73D12;
  --cream: #FFFDF8;
  --cream-warm: #F7EFD8;
  --dark: #2B1F0E;
  --dark-2: #3D2E14;
  --mid: #5C4520;
  --gold: #D4A83A;
  --gold-light: #E8C15A;
  --smoke: #F5F0E6;
  --panel: #EDE5D4;
  --panel-mid: #E4DAC8;
  --border-light: rgba(212,168,58,0.2);
  --border-orange: rgba(244,81,30,0.2);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  width: 100%;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  height: 64px;
  background: rgba(255,253,248,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(43,31,14,0.1);
}
nav::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange) 30%, var(--gold) 70%, transparent);
  opacity: 0.6;
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--dark);
  letter-spacing: 0.1em;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 0; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(43,31,14,0.55);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.85rem;
  border-radius: 2px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover { color: var(--dark); }
.nav-cta {
  background: var(--orange) !important;
  color: #fff !important;
  padding: 0.45rem 1.1rem !important;
  border-radius: 2px;
  font-weight: 700 !important;
  margin-left: 0.5rem;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--orange-bright) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0; z-index: 199;
  background: rgba(255,253,248,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--orange);
  padding: 1.25rem 1.5rem 1.5rem;
  flex-direction: column; gap: 0.25rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  color: rgba(43,31,14,0.65);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.8rem 0.5rem;
  border-bottom: 1px solid rgba(43,31,14,0.07);
  transition: color 0.2s;
}
.nav-drawer a:hover { color: var(--orange); }
.nav-drawer a:last-child {
  border-bottom: none; margin-top: 0.5rem;
  background: var(--orange); color: #fff; text-align: center;
  border-radius: 2px; padding: 0.85rem; font-weight: 700;
}
.nav-drawer a:last-child:hover { background: var(--orange-bright); color: #fff; }

.hero {
  min-height: 100vh;
  background: var(--smoke);
  display: grid;
  grid-template-columns: 55% 45%;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image: repeating-linear-gradient(
    -55deg, transparent, transparent 2px,
    rgba(43,31,14,0.018) 2px, rgba(43,31,14,0.018) 4px
  );
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -20%; left: -10%;
  width: 70%; height: 120%;
  background: radial-gradient(ellipse at 30% 50%, rgba(244,81,30,0.07) 0%, transparent 65%);
  z-index: 1; pointer-events: none;
}
.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 3.5rem 5rem 5.5rem;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 1.75rem;
  display: flex; align-items: center; gap: 1rem;
  animation: fade-in-up 0.8s ease both;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 3rem; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 8vw, 8.5rem);
  line-height: 0.88;
  color: var(--dark);
  letter-spacing: 0.01em;
  margin-bottom: 2rem;
  animation: fade-in-up 0.8s 0.1s ease both;
}
.hero-title .accent {
  color: var(--orange);
  position: relative; display: inline-block;
}
.hero-title .accent::after {
  content: '';
  position: absolute; bottom: 4px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transform-origin: left;
  animation: expand-line 0.6s 0.6s ease both;
}
@keyframes expand-line {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.hero-subtitle {
  font-size: 1.1rem; line-height: 1.7;
  color: rgba(43,31,14,0.52);
  max-width: 40ch; margin-bottom: 2.75rem; font-weight: 300;
  animation: fade-in-up 0.8s 0.2s ease both;
}
.hero-actions {
  display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap;
  animation: fade-in-up 0.8s 0.3s ease both;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 1rem 2.4rem;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-block; position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
}
.btn-primary:hover {
  background: var(--orange-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(244,81,30,0.35);
}
.btn-secondary {
  color: rgba(43,31,14,0.55);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  display: flex; align-items: center; gap: 0.6rem;
  transition: color 0.2s, gap 0.2s;
}
.btn-secondary::after { content: '→'; transition: transform 0.2s; }
.btn-secondary:hover { color: var(--dark); gap: 0.9rem; }
.hero-phone {
  margin-top: 3.5rem;
  color: var(--orange-deep);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.35rem; font-weight: 600; letter-spacing: 0.1em;
  text-decoration: none;
  display: flex; align-items: center; gap: 0.8rem;
  transition: color 0.2s;
  animation: fade-in-up 0.8s 0.4s ease both;
}
.hero-phone:hover { color: var(--orange); }
.hero-right { position: relative; overflow: hidden; }
.hero-right::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, var(--smoke) 0%, transparent 45%),
    linear-gradient(0deg, var(--smoke) 0%, transparent 30%),
    linear-gradient(180deg, var(--smoke) 0%, transparent 15%);
}
.hero-right::after {
  content: ''; position: absolute;
  top: 10%; right: 0;
  width: 3px; height: 40%;
  background: linear-gradient(to bottom, transparent, var(--orange), var(--gold), transparent);
  z-index: 3;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.75;
  animation: slow-zoom 25s ease-in-out infinite alternate;
}
@keyframes slow-zoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}
.hero-badge {
  position: absolute; bottom: 3.5rem; right: 4rem; z-index: 4;
  width: 130px; height: 130px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1px solid var(--gold); border-radius: 50%;
  background: rgba(255,253,248,0.75);
  backdrop-filter: blur(12px);
  animation: spin-slow 25s linear infinite;
}
.hero-badge-text { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; color: var(--orange); line-height: 1; }
.hero-badge-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(43,31,14,0.55); text-align: center; font-weight: 600;
}
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.stats-bar {
  display: flex; overflow: hidden;
  background: var(--panel);
  border-top: 1px solid rgba(244,81,30,0.15);
  border-bottom: 1px solid rgba(244,81,30,0.15);
  position: relative;
}
.stats-bar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(244,81,30,0.04) 0%, transparent 50%, rgba(212,168,58,0.03) 100%);
  pointer-events: none;
}
.stat-item {
  flex: 1; padding: 2.25rem 2rem; text-align: center;
  border-right: 1px solid rgba(43,31,14,0.08);
  position: relative; transition: background 0.3s; overflow: hidden;
}
.stat-item:last-child { border-right: none; }
.stat-item::after {
  content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 0; height: 2px; background: var(--orange);
  transition: width 0.4s ease;
}
.stat-item:hover::after { width: 60%; }
.stat-item:hover { background: rgba(244,81,30,0.04); }
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; letter-spacing: 0.02em;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(43,31,14,0.45); font-weight: 600; margin-top: 0.4rem;
}

.section-header { text-align: center; margin-bottom: 4rem; }
.section-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--orange); font-weight: 700; margin-bottom: 1rem;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; display: block; width: 2.5rem; height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange)); opacity: 0.5;
}
.section-eyebrow::after { background: linear-gradient(90deg, var(--orange), transparent); }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  letter-spacing: 0.02em; color: var(--dark); line-height: 0.95;
}
.section-title .accent { color: var(--orange); }

.tape {
  background: var(--gold); padding: 0.85rem 0;
  overflow: hidden; white-space: nowrap; position: relative;
}
.tape::before, .tape::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 4rem; z-index: 2;
}
.tape::before { left: 0; background: linear-gradient(90deg, var(--gold), transparent); }
.tape::after  { right: 0; background: linear-gradient(270deg, var(--gold), transparent); }
.tape-track { display: inline-block; animation: tape-scroll 22s linear infinite; }
.tape-text {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--dark); padding: 0 2.5rem;
}
.tape-sep { color: var(--orange-deep); }
@keyframes tape-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.trucks-section {
  padding: 7rem 0 6rem; background: var(--smoke);
  position: relative; overflow: hidden;
}
.trucks-section::before {
  content: 'FLEET';
  position: absolute; right: -2rem; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12rem; color: rgba(43,31,14,0.04);
  letter-spacing: 0.1em; pointer-events: none; white-space: nowrap;
}
.trucks-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem; margin: 0 4rem;
}
.truck-card {
  background: #fff; position: relative; overflow: hidden; cursor: pointer;
  border-radius: 4px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  box-shadow: 0 2px 20px rgba(43,31,14,0.07);
}
.truck-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(43,31,14,0.14), 0 0 0 1px rgba(244,81,30,0.12);
}
.truck-card:hover .truck-overlay { opacity: 1; }
.truck-card:hover .truck-img { transform: scale(1.07); }
.truck-img-wrap { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.truck-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.truck-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(244,81,30,0.92), rgba(43,31,14,0.6));
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s;
}
.truck-overlay-link {
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.7);
  padding: 0.8rem 2rem; border-radius: 2px;
  transition: background 0.2s, border-color 0.2s;
}
.truck-overlay-link:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.truck-info { padding: 1.5rem 1.75rem; border-top: 2px solid var(--smoke); position: relative; }
.truck-info::before {
  content: ''; position: absolute; top: -2px; left: 0;
  width: 3rem; height: 2px; background: var(--orange);
}
.truck-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 0.05em; color: var(--dark); margin-bottom: 0.85rem;
}
.truck-specs {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0.35rem;
}
.truck-specs li {
  font-size: 0.78rem; color: #777; font-weight: 300;
  padding-left: 1rem; position: relative;
}
.truck-specs li::before {
  content: '▸'; position: absolute; left: 0;
  color: var(--orange); font-size: 0.65rem; top: 1px;
}
.truck-permit-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.1rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: #4a9d5b; background: rgba(74,157,91,0.08);
  border: 1px solid rgba(74,157,91,0.25);
  padding: 0.3rem 0.75rem; border-radius: 2px; font-weight: 700;
}

.services-section {
  padding: 7rem 5rem; background: var(--panel);
  display: grid; grid-template-columns: 1fr 2.2fr;
  gap: 6rem; align-items: start;
  position: relative; overflow: hidden;
}
.services-section::before {
  content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(212,168,58,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.services-left { position: sticky; top: 6rem; }
.services-left .section-title { color: var(--dark); text-align: left; }
.services-left .section-eyebrow { justify-content: flex-start; color: var(--orange); }
.services-left .section-eyebrow::before { display: none; }
.services-left .section-eyebrow::after { background: var(--orange); opacity: 0.4; }
.services-desc {
  margin-top: 1.75rem; color: rgba(43,31,14,0.5);
  line-height: 1.75; font-size: 0.92rem; font-weight: 300;
}
.services-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(43,31,14,0.08);
  border: 1px solid rgba(43,31,14,0.08); border-radius: 4px; overflow: hidden;
}
.service-card {
  background: var(--cream); padding: 2.75rem 2.5rem;
  border: 1px solid rgba(43,31,14,0.06);
  transition: border-color 0.3s, background 0.3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(to bottom, var(--orange), var(--gold));
  transition: height 0.4s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { border-color: rgba(244,81,30,0.15); background: rgba(244,81,30,0.025); }
.service-icon { font-size: 2rem; margin-bottom: 1.25rem; display: block; }
.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--dark); margin-bottom: 0.85rem;
}
.service-desc { font-size: 0.84rem; color: rgba(43,31,14,0.5); line-height: 1.75; font-weight: 300; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  margin-top: 1.25rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); text-decoration: none;
  opacity: 0; transform: translateX(-6px);
  transition: opacity 0.25s, transform 0.25s;
  font-weight: 700;
}
.service-link::after { content: '→'; }
.service-card:hover .service-link { opacity: 1; transform: translateX(0); }

.clients-section {
  padding: 5rem 5rem; background: var(--cream);
  position: relative; overflow: hidden;
}
.clients-track-wrap {
  overflow: hidden; margin-top: 3rem; position: relative;
}
.clients-track-wrap::before, .clients-track-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 8rem; z-index: 2;
}
.clients-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--cream), transparent); }
.clients-track-wrap::after  { right: 0; background: linear-gradient(270deg, var(--cream), transparent); }
.clients-track {
  display: flex; gap: 5rem; align-items: center;
  animation: scroll-track 22s linear infinite;
  white-space: nowrap; width: max-content;
}
@keyframes scroll-track { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.client-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: 0.1em;
  color: rgba(43,31,14,0.16); flex-shrink: 0;
  transition: color 0.3s; cursor: default;
}
.client-name:hover { color: var(--orange); }
.client-dot { width: 4px; height: 4px; background: var(--orange); border-radius: 50%; flex-shrink: 0; opacity: 0.3; }

.about-section {
  padding: 7rem 5rem; background: var(--smoke);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.about-img-collage { position: relative; height: 520px; min-width: 0; }
.about-img-1 {
  position: absolute; top: 0; left: 0;
  width: calc(100% - 4rem); height: calc(100% - 4rem);
  object-fit: cover; border-radius: 4px;
  box-shadow: 0 30px 80px rgba(43,31,14,0.15); display: block;
  transition: transform 0.6s ease;
}
.about-img-collage:hover .about-img-1 { transform: scale(1.02); }
.about-img-2 {
  position: absolute; bottom: 0; right: 0;
  width: 52%; height: 52%; object-fit: cover;
  border: 4px solid var(--smoke); border-radius: 4px;
  box-shadow: 0 15px 40px rgba(43,31,14,0.12); display: block;
  transition: transform 0.6s ease;
}
.about-img-collage:hover .about-img-2 { transform: scale(1.03) translateY(-4px); }
.about-accent-block {
  position: absolute; top: 2rem; left: -1.5rem;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  width: 3.5rem; height: 3.5rem; z-index: 0; border-radius: 2px;
  box-shadow: 0 8px 25px rgba(244,81,30,0.3);
}
.about-text .section-eyebrow { justify-content: flex-start; }
.about-text .section-eyebrow::before { display: none; }
.about-text .section-title { text-align: left; margin-bottom: 1.5rem; }
.about-body {
  font-size: 0.95rem; line-height: 1.85;
  color: rgba(43,31,14,0.55); font-weight: 300; margin-bottom: 2rem;
}
.about-list { list-style: none; margin-bottom: 2.5rem; }
.about-list li {
  padding: 0.8rem 0; border-bottom: 1px solid rgba(43,31,14,0.07);
  font-size: 0.9rem; color: var(--mid);
  display: flex; align-items: flex-start; gap: 0.85rem;
  transition: padding-left 0.2s;
}
.about-list li:hover { padding-left: 0.5rem; }
.about-list li strong { color: var(--dark); font-weight: 600; }
.about-list li::before { content: '▸'; color: var(--orange); flex-shrink: 0; margin-top: 2px; font-size: 0.75rem; }
.about-years { display: inline-flex; align-items: baseline; gap: 0.5rem; margin-bottom: 1.25rem; }
.about-years-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 5.5rem;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.about-years-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(43,31,14,0.45); font-weight: 600; max-width: 9ch; line-height: 1.3;
}

.faq-section {
  padding: 7rem 5rem; background: var(--cream);
  max-width: 900px; margin: 0 auto; position: relative;
}
.faq-section::before {
  content: '?'; position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif; font-size: 18rem;
  color: rgba(43,31,14,0.03); line-height: 1; pointer-events: none;
}
.faq-item { border-bottom: 1px solid rgba(43,31,14,0.09); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 1.6rem 0;
  font-family: 'Barlow', sans-serif; font-size: 1rem; font-weight: 500; color: var(--dark);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--orange); }
.faq-arrow {
  flex-shrink: 0; width: 28px; height: 28px;
  border: 1.5px solid rgba(43,31,14,0.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--dark);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), background 0.2s, border-color 0.2s, color 0.2s;
}
.faq-item.open .faq-arrow {
  transform: rotate(45deg);
  background: var(--orange); border-color: var(--orange); color: #fff;
  box-shadow: 0 4px 12px rgba(244,81,30,0.3);
}
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s ease, padding 0.35s;
  font-size: 0.9rem; line-height: 1.85; color: rgba(43,31,14,0.55); font-weight: 300;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.75rem; }

.contact-section {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 80vh; overflow: hidden;
}
.contact-left {
  padding: 6rem 4.5rem;
  background: linear-gradient(145deg, var(--orange-deep) 0%, var(--orange) 60%, var(--orange-bright) 100%);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.contact-left::before {
  content: ''; position: absolute; top: -30%; right: -20%;
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.contact-left .section-title { color: #fff; text-align: left; margin-bottom: 1.5rem; line-height: 0.9; }
.contact-left .section-eyebrow {
  justify-content: flex-start; color: rgba(255,255,255,0.75); font-size: 0.95rem;
}
.contact-left .section-eyebrow::before { display: none; }
.contact-left .section-eyebrow::after { background: rgba(255,255,255,0.4); }
.contact-desc {
  color: rgba(255,255,255,0.75); font-size: 0.95rem;
  line-height: 1.75; font-weight: 300; margin-bottom: 3rem;
}
.contact-info-item {
  display: flex; align-items: center; gap: 1.1rem;
  margin-bottom: 1.4rem; position: relative; z-index: 1;
}
.contact-info-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.2); border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0; transition: background 0.2s;
}
.contact-info-item:hover .contact-info-icon { background: rgba(255,255,255,0.3); }
.contact-info-text { color: #fff; font-size: 0.95rem; }
.contact-info-text a { color: #fff; text-decoration: none; }
.contact-info-text a:hover { text-decoration: underline; }
.contact-right {
  padding: 6rem 4.5rem; background: var(--panel);
  display: flex; flex-direction: column; justify-content: center;
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(43,31,14,0.45); margin-bottom: 0.55rem; font-weight: 700;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.8); border: 1px solid rgba(43,31,14,0.14);
  color: var(--dark); padding: 0.95rem 1.1rem;
  font-family: 'Barlow', sans-serif; font-size: 0.92rem; border-radius: 2px;
  outline: none; transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(43,31,14,0.28); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(244,81,30,0.1);
}
.form-select { cursor: pointer; }
.form-select option { background: var(--cream); color: var(--dark); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.form-submit {
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  color: #fff; border: none;
  padding: 1.1rem 2.75rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 0.75rem; position: relative; overflow: hidden;
}
.form-submit::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%);
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(244,81,30,0.35); }

footer {
  background: var(--panel-mid); padding: 3rem 5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
  border-top: 1px solid rgba(43,31,14,0.1);
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem;
  color: rgba(43,31,14,0.45); letter-spacing: 0.1em; text-decoration: none;
  transition: color 0.2s;
}
.footer-logo:hover { color: var(--dark); }
.footer-logo span { color: var(--orange); }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a {
  color: rgba(43,31,14,0.35); text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-copy { font-size: 0.72rem; color: rgba(43,31,14,0.28); letter-spacing: 0.06em; }

.feature-section { padding: 7rem 5rem; }
.bg-dark  { background: var(--panel); }
.bg-smoke { background: var(--smoke); }
.feature-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.feature-inner.reverse { direction: rtl; }
.feature-inner.reverse > * { direction: ltr; }
.section-eyebrow.eyebrow-light { color: var(--orange); }
.section-eyebrow.eyebrow-light::before,
.section-eyebrow.eyebrow-light::after { background: var(--orange); opacity: 0.35; }
.section-title.light { color: var(--dark); }
.feature-body {
  font-size: 0.95rem; line-height: 1.85; color: rgba(43,31,14,0.55); margin-bottom: 1rem;
}
.feature-body.light, .bg-dark .feature-body { color: rgba(43,31,14,0.5); font-weight: 300; }
.feature-list {
  list-style: none; margin-top: 1.75rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.feature-list li {
  font-size: 0.9rem; color: var(--mid);
  padding-left: 1.5rem; position: relative; line-height: 1.55;
}
.feature-list li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--orange); font-weight: 700; font-size: 0.82rem;
}
.feature-list.light li, .bg-dark .feature-list li { color: var(--mid); }
.bg-dark .feature-list li::before { color: var(--orange); }

.feature-stat-stack { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.fss-card {
  border-radius: 6px; padding: 1.6rem 2rem;
  display: flex; align-items: center; gap: 1.5rem;
}
.accent-orange { background: linear-gradient(135deg, var(--orange), var(--orange-deep)); }
.accent-gold   { background: linear-gradient(135deg, var(--gold), #b88c2a); }
.accent-dark   { background: rgba(43,31,14,0.06); border: 1px solid rgba(43,31,14,0.12); }
.fss-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 3rem;
  color: #fff; line-height: 1; letter-spacing: 0.03em; flex-shrink: 0;
}
.accent-dark .fss-num { color: var(--orange); }
.fss-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}
.accent-dark .fss-label { color: rgba(43,31,14,0.5); }
.feature-process {
  background: rgba(43,31,14,0.04); border: 1px solid rgba(43,31,14,0.1);
  border-radius: 6px; padding: 1.75rem;
}
.feature-process-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.25rem;
}
.fp-step { display: flex; align-items: flex-start; gap: 0.9rem; margin-bottom: 0.9rem; }
.fp-step:last-child { margin-bottom: 0; }
.fp-n {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  border-radius: 50%; font-size: 0.7rem; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px;
}
.fp-text { font-size: 0.85rem; color: rgba(43,31,14,0.5); line-height: 1.55; font-weight: 300; }

.builds-img-wrap {
  position: relative; border-radius: 6px; overflow: hidden; margin-bottom: 1.25rem;
  background: var(--panel);
}
.builds-img { width: 100%; display: block; object-fit: cover; max-height: 240px; }
.builds-img-label {
  position: absolute; bottom: 0.75rem; left: 0.75rem;
  background: rgba(43,31,14,0.75); color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.35rem 0.8rem; border-radius: 2px; backdrop-filter: blur(4px);
}
.builds-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.bo-item {
  background: var(--cream); border: 1px solid rgba(43,31,14,0.09); border-radius: 6px;
  padding: 1.1rem; display: flex; gap: 0.85rem; align-items: flex-start;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.bo-item:hover {
  border-color: var(--orange);
  box-shadow: 0 6px 20px rgba(244,81,30,0.1);
  transform: translateY(-2px);
}
.bo-icon { font-size: 1.4rem; flex-shrink: 0; }
.bo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--dark); margin-bottom: 0.25rem;
}
.bo-desc { font-size: 0.72rem; color: rgba(43,31,14,0.5); line-height: 1.45; font-weight: 300; }

.consult-cards { display: flex; flex-direction: column; gap: 0.85rem; }
.cc-card {
  background: rgba(255,255,255,0.55); border: 1px solid rgba(43,31,14,0.1);
  border-radius: 6px; padding: 1.6rem;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}
.cc-card:hover {
  border-color: rgba(244,81,30,0.35); background: rgba(244,81,30,0.03);
  transform: translateX(4px);
}
.cc-step {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.5rem;
}
.cc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--dark); margin-bottom: 0.5rem;
}
.cc-body { font-size: 0.84rem; color: rgba(43,31,14,0.5); line-height: 1.65; font-weight: 300; }
.cc-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  border-radius: 6px; padding: 1.4rem 1.75rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-top: 1rem;
  position: relative; overflow: hidden;
}
.cc-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%);
}
.cc-cta p { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.9); position: relative; z-index: 1; }
.cc-cta a {
  color: #fff; font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; white-space: nowrap; position: relative; z-index: 1;
}
.cc-cta a:hover { text-decoration: underline; }

.fade-up {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.25,0.46,0.45,0.94),
              transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1024px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero { display: block; min-height: auto; }
  .hero-right { display: none; }
  .hero-left { padding: 5.5rem 1.5rem 3rem; }
  .hero-title { font-size: 3.5rem; line-height: 0.92; }
  .hero-subtitle { font-size: 0.95rem; max-width: 100%; }
  .hero-phone { font-size: 1.1rem; margin-top: 1.75rem; }
  .btn-primary, .btn-secondary { font-size: 0.82rem; }
  .stats-bar { display: grid; grid-template-columns: 1fr 1fr; }
  .stat-item { flex: none; border-right: none; border-bottom: 1px solid rgba(43,31,14,0.08); padding: 1.5rem 1rem; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(43,31,14,0.08); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }
  .tape-text { font-size: 0.82rem; padding: 0 1rem; }
  .trucks-section { padding: 3.5rem 0; }
  .section-header { padding: 0 1.5rem; margin-bottom: 2.5rem; }
  .trucks-grid { display: block; margin: 0 1.5rem; }
  .truck-card { margin-bottom: 1.25rem; }
  .services-section { display: block; padding: 3.5rem 1.5rem; }
  .services-left { position: static; margin-bottom: 2.5rem; }
  .services-left .section-eyebrow::after { display: none; }
  .services-grid { display: block; background: none; }
  .service-card { margin-bottom: 1px; }
  .clients-section { padding: 3rem 1.5rem; }
  .about-section { display: block; padding: 3.5rem 1.5rem; }
  .about-img-collage { height: 280px; margin-bottom: 4rem; }
  .about-img-1 { width: calc(100% - 3rem); height: calc(100% - 3rem); }
  .about-img-2 { width: 48%; height: 48%; }
  .about-accent-block { display: none; }
  .faq-section { padding: 3.5rem 1.5rem; max-width: 100%; }
  .contact-section { display: block; }
  .contact-left { padding: 3.5rem 1.5rem; }
  .contact-right { padding: 3rem 1.5rem; }
  .form-grid { display: block; }
  .form-grid .form-group { margin-bottom: 1.25rem; }
  .feature-section { padding: 3.5rem 1.5rem; }
  .feature-inner, .feature-inner.reverse { display: block; direction: ltr; }
  .feature-inner.reverse .feature-visual { margin-bottom: 2rem; }
  .feature-inner .feature-text { margin-top: 2.5rem; }
  .feature-stat-stack { flex-direction: row; flex-wrap: wrap; }
  .fss-card { flex: 1 1 40%; padding: 1.1rem 1.25rem; }
  .builds-options { grid-template-columns: 1fr; }
  .feature-process { margin-top: 1.5rem; }
  footer { display: block; padding: 2.5rem 1.5rem; }
  .footer-logo { display: block; margin-bottom: 1.5rem; }
  .footer-links { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 1.5rem; }
  .footer-copy { display: block; }
}

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

.next-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.next-card:hover {
  transform: translateY(-4px);
}

.next-card-img-wrap {
  width: 100%;
  height: 180px; 
  overflow: hidden;
  position: relative;
  background-color: #f5f5f5;
}

.next-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
}

.next-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.next-card-title {
  font-size: 1.15rem;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.next-card-excerpt {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 16px 0;
  line-height: 1.5;
}

.next-card-link {
  font-size: 0.85rem;
  font-weight: bold;
  color: #000;
  margin-top: auto; 
}


.bo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(249, 115, 22, 0.1); 
  border-radius: 50%;
  color: #f97316; 
  flex-shrink: 0; 
}

.bo-icon svg {
  width: 22px;
  height: 22px;
}

.bo-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.bo-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 4px;
}

.bo-desc {
  font-size: 0.975rem;
  color: #555555;
  line-height: 1.5;
}