

.truck-hero {
  min-height: 88vh;
  background: var(--smoke);
  display: grid;
  grid-template-columns: 55% 45%;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}

.truck-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;
}

.truck-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;
}

.truck-hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 3.5rem 5rem 5.5rem;
  position: relative;
  z-index: 2;
}

.truck-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(43,31,14,0.38);
  margin-bottom: 1.75rem;
}
.truck-hero-breadcrumb a {
  color: rgba(43,31,14,0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.truck-hero-breadcrumb a:hover { color: var(--orange); }
.truck-hero-breadcrumb > span:last-child { color: var(--orange); }

.truck-hero-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.truck-hero-num::before {
  content: '';
  display: block;
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.truck-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4rem, 7vw, 7.5rem);
  line-height: 0.88;
  color: var(--dark);
  letter-spacing: 0.01em;
  margin-bottom: 1.75rem;
}
.truck-hero-title .accent {
  color: var(--orange);
  position: relative;
  display: inline-block;
}
.truck-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.5s ease both;
}
@keyframes expand-line {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

.truck-hero-tagline {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(43,31,14,0.52);
  font-weight: 300;
  max-width: 42ch;
  margin-bottom: 2rem;
}

.truck-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.truck-badge-pill {
  background: rgba(212,168,58,0.08);
  border: 1px solid var(--border-light);
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
}
.truck-badge-pill.orange {
  background: rgba(244,81,30,0.08);
  border-color: var(--border-orange);
  color: var(--orange);
}

.truck-hero-right {
  position: relative;
  overflow: hidden;
}
.truck-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%);
}
.truck-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;
}
.truck-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  display: block;
}



.truck-nav-bar {
  background: var(--panel);
  border-top: 1px solid rgba(43,31,14,0.06);
  border-bottom: 2px solid rgba(43,31,14,0.07);
  padding: 0 3rem;
  display: flex;
  align-items: center;
  overflow-x: auto;
  position: sticky;
  top: 64px;
  z-index: 100;
}
.truck-nav-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(43,31,14,0.35);
  padding: 0.9rem 1.5rem 0.9rem 0;
  border-right: 1px solid rgba(43,31,14,0.1);
  margin-right: 0.5rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.truck-nav-link {
  padding: 0.9rem 1.25rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(43,31,14,0.42);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.truck-nav-link:hover { color: var(--dark); }
.truck-nav-link.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}



.specs-section {
  padding: 7rem 5.5rem;
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  position: relative;
  overflow: hidden;
}
.specs-section .section-eyebrow {
  justify-content: flex-start;
  color: var(--orange);
}
.specs-section .section-eyebrow::before { display: none; }
.specs-section .section-eyebrow::after {
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: 0.5;
}
.specs-section .section-title {
  text-align: left;
  margin-bottom: 1.5rem;
}

.specs-intro {
  font-size: 0.95rem;
  line-height: 1.85;
  color: rgba(43,31,14,0.52);
  font-weight: 300;
  margin-bottom: 2rem;
}

.specs-subheading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
}

.equip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.equip-item {
  background: var(--smoke);
  border: 1px solid rgba(43,31,14,0.07);
  border-radius: 4px;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.equip-item:hover {
  border-color: var(--border-orange);
  box-shadow: 0 4px 16px rgba(244,81,30,0.08);
  transform: translateY(-1px);
}
.equip-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.equip-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.2;
}
.equip-detail {
  font-size: 0.72rem;
  color: rgba(43,31,14,0.45);
  font-weight: 300;
  margin-top: 0.15rem;
  line-height: 1.45;
}

.included-box {
  background: var(--dark);
  border-radius: 6px;
  padding: 1.75rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}
.included-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--orange), var(--gold));
}
.included-box-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.included-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.included-list li {
  font-size: 0.85rem;
  color: rgba(255,253,248,0.6);
  font-weight: 300;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.55;
}
.included-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.72rem;
}



.gallery-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  margin-bottom: 0.75rem;
  box-shadow: 0 20px 60px rgba(43,31,14,0.12);
}
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-thumb {
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 3px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.65;
  width: 100%;
  display: block;
  transition: border-color 0.2s, opacity 0.2s, transform 0.2s;
}
.gallery-thumb:hover,
.gallery-thumb.active {
  border-color: var(--orange);
  opacity: 1;
  transform: translateY(-2px);
}



.specs-detail-card {
  background: var(--smoke);
  border: 1px solid rgba(43,31,14,0.08);
  border-radius: 6px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.sdc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(43,31,14,0.08);
}
.sdc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(43,31,14,0.05);
  font-size: 0.84rem;
}
.sdc-row:last-child { border-bottom: none; }
.sdc-key { color: rgba(43,31,14,0.45); font-weight: 300; }
.sdc-val { color: var(--dark); font-weight: 600; }
.sdc-val.green  { color: #2a7a3b; }
.sdc-val.orange { color: var(--orange); }



.other-trucks-section {
  padding: 7rem 0 6rem;
  background: var(--smoke);
  position: relative;
  overflow: hidden;
}
.other-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;
}
.other-trucks-section .section-header {
  margin: 0 4rem 3rem;
}
.other-trucks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 0 4rem;
}



.truck-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
  overflow: hidden;
}

.truck-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;
}
.truck-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;
}

.truck-contact-left .section-title {
  color: #fff;
  text-align: left;
  margin-bottom: 1.5rem;
  line-height: 0.9;
}
.truck-contact-left .section-eyebrow {
  justify-content: flex-start;
  color: rgba(255,255,255,0.75);
  font-size: 0.68rem;
}
.truck-contact-left .section-eyebrow::before { display: none; }
.truck-contact-left .section-eyebrow::after  {
  background: rgba(255,255,255,0.4);
  opacity: 1;
}

.truck-contact-desc {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 3rem;
}

.truck-contact-info { display: flex; flex-direction: column; gap: 1.4rem; }

.truck-contact-info-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  position: relative;
  z-index: 1;
}
.truck-contact-info-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: background 0.2s;
}
.truck-contact-info-item:hover .truck-contact-info-icon {
  background: rgba(255,255,255,0.3);
}
.truck-contact-info-text { color: #fff; font-size: 0.95rem; }
.truck-contact-info-text a { color: #fff; text-decoration: none; }
.truck-contact-info-text a:hover { text-decoration: underline; }

.truck-contact-right {
  padding: 6rem 4.5rem;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.truck-contact-right h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.truck-contact-right .form-subtext {
  font-size: 0.84rem;
  color: rgba(43,31,14,0.42);
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.6;
}



@media (max-width: 768px) {

  .truck-hero {
    display: block;
    min-height: auto;
  }
  .truck-hero-right { display: none; }
  .truck-hero-left  { padding: 5.5rem 1.5rem 3.5rem; }
  .truck-hero-title { font-size: 3.5rem; line-height: 0.92; }
  .truck-hero-tagline { font-size: 0.95rem; max-width: 100%; }

  .truck-nav-bar { padding: 0 1rem; }

  .specs-section {
    display: block;
    padding: 3.5rem 1.5rem;
  }
  .specs-right { margin-top: 2.5rem; }
  .equip-grid  { grid-template-columns: 1fr; }

 
  .other-trucks-section { padding: 3.5rem 0; }
  .other-trucks-section .section-header { margin: 0 1.5rem 2.5rem; }
  .other-trucks-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 0 1.5rem;
  }


  .truck-contact       { display: block; }
  .truck-contact-left  { padding: 3.5rem 1.5rem; }
  .truck-contact-right { padding: 3rem 1.5rem; }

  .form-grid { display: block; }
  .form-grid .form-group { margin-bottom: 1.25rem; }
}