@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

:root {
  --ink: #0e0f10;
  --ink-soft: #1b1c1e;
  --line: rgba(255, 255, 255, 0.16);
  --line-dark: rgba(0, 0, 0, 0.1);
  --gold: #b69960;
  --paper: #f5f3ef;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Jost", sans-serif;
  background: #ffffff;
  color: #fff;
  font-family: "Jost", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
.brand-word {
  font-family: "Bebas Neue", sans-serif !important;

}
h1,
h2 {
  font-size: clamp(2.4rem, 5.2vw, 4.4rem) !important;
}

p {
  font-size: 17px !important;
}

.custom-btn {
  background: #f2efe9;
  color: var(--ink);
  border: none;
  padding: 0.85rem 2.1rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  /* border-radius: 2px; */
  transition: 0.25s ease;
  text-decoration: none !important;
}
.custom-btn:hover {
  background: var(--gold);
  color: #fff;
}
/* ================================
   HERO SLIDER
================================ */
.car-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  overflow: hidden;
  background: #0d0e10;
  color: #fff;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition:
    opacity 1s ease,
    transform 1.2s ease,
    visibility 1s ease;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.35) 38%,
      transparent 58%
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, transparent 22%);
}

.slide-content {
  position: relative;
  z-index: 3;
  width: min(1200px, 90%);
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 80px;
  padding-top: 80px;
}

.eyebrow {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.slide-title {
  max-width: 650px;
  font-size: clamp(42px, 5.5vw, 82px);
  line-height: 0.98;
  /* font-weight: 600; */
  letter-spacing: 2px;
  margin-bottom: 25px;
  color: #fff;
}

.slide-description {
  max-width: 480px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 30px;
}

.slide-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  height: 48px;
  padding: 0 24px;
  /* border-radius: 3px; */
  text-decoration: none;
  border: none;

  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  /* border-radius: 2px; */
  transition: 0.25s ease;
}

.btn-primary-custom {
  background: var(--gold);
  color: #000;
}

.btn-primary-custom:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

.btn-secondary-custom {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(5px);
}

.btn-secondary-custom:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

/* Bottom UI */
.slider-ui {
  position: absolute;
  z-index: 10;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 90%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slide-counter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  min-width: 90px;
}

.current-slide {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.counter-line {
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.thumbnails {
  display: flex;
  align-items: center;
  gap: 8px;
}

.thumbnail {
  position: relative;
  width: 62px;
  height: 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  opacity: 0.55;
  transition: 0.3s ease;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail:hover,
.thumbnail.active {
  opacity: 1;
  border-color: var(--gold);
}

.thumbnail.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
}

.progress-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 90px;
  justify-content: flex-end;
}

.progress {
  width: 70px;
  height: 2px !important;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.progress-bar-inner {
  width: 0%;
  height: 100%;
  background: var(--gold);
  transition: width 0.1s linear;
}

.progress-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
}

.slider-arrow {
  position: absolute;
  z-index: 20;
  top: 50%;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.3s ease;
  /* border-radius: 100px */
}

.slider-arrow:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

/* Text Animations */
.slide.active .eyebrow {
  animation: fadeUp 0.8s 0.15s both;
}

.slide.active .slide-title {
  animation: fadeUp 0.8s 0.25s both;
}

.slide.active .slide-description {
  animation: fadeUp 0.8s 0.4s both;
}

.slide.active .slide-buttons {
  animation: fadeUp 0.8s 0.5s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sticky Navigation Bar */
.sticky-subnav {
  position: sticky !important;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sticky-subnav-links {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  white-space: nowrap;
  padding: 12px 0;
  margin: 0;
  list-style: none;
  justify-content: center;
}

.sticky-subnav-links a {
  color: #555;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.sticky-subnav-links a:hover,
.sticky-subnav-links a.active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 4px;
}

/* Light Theme Theme Section */
.bg-light-theme {
  background-color: var(--paper);
  color: #1a1a1a;
}

.bg-light-theme h2,
.bg-light-theme h3,
.bg-light-theme h4 {
  color: #0e0f10;
}

/* Media Queries */
@media (max-width: 900px) {
  .car-slider {
    min-height: 600px;
  }

  .slide-content {
    width: 85%;
    padding-bottom: 120px;
  }

  .slider-ui {
    width: 85%;
  }

  .thumbnail {
    width: 52px;
    height: 32px;
  }

  .prev {
    left: 15px;
  }

  .next {
    right: 15px;
  }
}

@media (max-width: 600px) {
  .slide-bg {
    object-position: 62% center;
  }

  .slide-content {
    width: 88%;
    justify-content: flex-end;
    padding-bottom: 150px;
  }

  .eyebrow {
    font-size: 10px;
    margin-bottom: 10px;
  }

  .slide-title {
    font-size: clamp(38px, 11vw, 58px);
    margin-bottom: 15px;
  }

  .slide-description {
    font-size: 13px;
    margin-bottom: 20px;
    display: none;
  }

  .slider-ui {
    bottom: 22px;
    width: 88%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .thumbnails {
    justify-content: center;
  }

  .progress-wrapper {
    justify-content: flex-start;
  }

  .slider-arrow {
    display: none;
  }
}

/* Section 2 overview */

.overview-section {
  width: 100%;
  background-color: #ffffff;
  padding-block: 70px;
  color: #0e0f10;
  font-family: "Jost", sans-serif;
}

.overview-container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Image Wrapper */
.overview-image-col {
  width: 100%;
}

.overview-image-wrapper {
  width: 100%;
  background-color: #e5e5e5;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.overview-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Content Styling */
.overview-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.overview-title {
  font-family: "Bebas Neue", sans-serif !important;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: 1px;
  color: #0e0f10;
  margin-bottom: 20px;
}

.overview-description {
  font-size: 15px;
  line-height: 1.65;
  color: #555555;
  max-width: 480px;
}


/* ================================================
   RESPONSIVE BREAKPOINTS
================================================ */

/* Tablet & Mobile Layout */
@media (max-width: 992px) {
  .overview-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .overview-section {
    padding: 50px 20px;
  }

  .overview-description {
    max-width: 100%;
  }
}


/* section 3 Dimensions  */

/* Base Section Styling */
.dimensions-section {
  width: 100%;
  background-color: #f2f2f2;
  /* Off-white paper background */
  padding-block: 70px;
  color: #0e0f10;
  font-family: "Jost", sans-serif;
}

.dimensions-container {
  max-width: 1140px;
  margin: 0 auto;
}

/* Header */
.dimensions-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 50px auto;
}

.dimensions-title {
  font-family: "Bebas Neue", sans-serif !important;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: 1.5px;
  color: #0e0f10;
  margin-bottom: 16px;
}

.dimensions-description {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
}

/* Stat Cards Grid */
.dimensions-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.dim-stat-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  /* border-radius: 4px; */
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.dim-stat-card:hover {
  transform: translateY(-3px);
  border-color: #b69960;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #777777;
  display: block;
  margin-bottom: 8px;
}

.stat-value {
  font-family: "Bebas Neue", sans-serif !important;
  font-size: 2.8rem;
  line-height: 1;
  color: #0e0f10;
  margin: 0;
}

.stat-unit {
  font-size: 1.1rem;
  color: #b69960;
  font-weight: 400;
}

/* Details 2-Column Grid */
.dimensions-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* Table Wrapper */
.dim-table-wrapper {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  /* border-radius: 4px; */
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.table-heading {
  font-family: "Bebas Neue", sans-serif !important;
  font-size: 24px;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #0e0f10;
}

.tech-spec-table {
  width: 100%;
  border-collapse: collapse;
}

.tech-spec-table tr {
  border-bottom: 1px solid #e8e6e1;
}

.tech-spec-table tr:last-child {
  border-bottom: none;
}

.tech-spec-table td {
  padding: 14px 0;
  font-size: 14px;
}

.tech-spec-table td:first-child {
  color: #666666;
  font-weight: 400;
  width: 48%;
}

.tech-spec-table td:last-child {
  color: #111111;
  font-weight: 600;
  text-align: right;
}

/* Diagram Image Wrapper */
.dim-blueprint-wrapper {
  position: relative;
  background: #111111;
  /* border-radius: 4px; */
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.dim-blueprint-wrapper img {
  width: 100%;
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  display: block;
  opacity: 0.9;
}

.blueprint-overlay-tag {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(14, 15, 16, 0.85);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  /* border-radius: 3px; */
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}

/* ================================================
   RESPONSIVE BREAKPOINTS
================================================ */

/* Tablet (max-width: 992px) */
@media (max-width: 992px) {
  .dimensions-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dimensions-details-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
  .dimensions-section {
    padding: 60px 16px;
  }

  .dimensions-stats-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dim-table-wrapper {
    padding: 20px 16px;
  }

  .tech-spec-table td {
    font-size: 13px;
    padding: 10px 0;
  }
}

/* section 4 materials */

/* =========================================================
   RESET / SECTION
========================================================= */

.gallery-showcase-section {
  width: 100%;
  background: #ffffff;
  padding: 70px 20px;
  font-family: "Jost", Arial, sans-serif;
  color: #111111;
  overflow: hidden;
}
.gallery-showcase-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 130px;
  gap: 30px;
  align-items: center;
}

/* =========================================================
   LEFT TEXT
========================================================= */

.gallery-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.gallery-eyebrow {
  display: block;
  margin-bottom: 12px;
  color: #b69960;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
}


.gallery-description {
  max-width: 250px;
  margin: 0 !important;
  padding: 0 !important;
  color: #555555;
  font-family: "Jost", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

/* =========================================================
   CENTER MAIN IMAGE
========================================================= */

.gallery-main-col {
  width: 100%;
  min-width: 0;
}
.gallery-main-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  /* border-radius: 10px; */
  background: #eeeeee;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
#mainGalleryImage {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transition:
    opacity 0.3s ease,
    transform 0.6s ease;
  will-change: opacity, transform;
}
.gallery-main-wrapper:hover #mainGalleryImage {
  transform: scale(1.015);
}
/* =========================================================
   RIGHT THUMBNAILS
========================================================= */

.gallery-thumbs-col {
  position: relative;
  z-index: 20;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.gallery-thumb-item {
  position: relative;
  z-index: 21;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  pointer-events: auto;
  user-select: none;
  -webkit-user-select: none;
  transition: transform 0.25s ease;
}
.gallery-thumb-item:hover {
  transform: translateY(-2px);
}
.gallery-thumb-item:focus {
  outline: none;
}
.gallery-thumb-item:focus-visible .gallery-thumb-img {
  outline: 2px solid #b69960;
  outline-offset: 2px;
}

/* =========================================================
   THUMB IMAGE
========================================================= */

.gallery-thumb-img {
  position: relative;
  z-index: 22;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 2px solid transparent;
  /* border-radius: 7px; */
  background: #eeeeee;
  opacity: 0.58;
  transition:
    opacity 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.gallery-thumb-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

/* =========================================================
   ACTIVE THUMB
========================================================= */

.gallery-thumb-item.active .gallery-thumb-img {
  opacity: 1;
  border-color: #b69960;
  box-shadow: 0 4px 12px rgba(183, 154, 93, 0.28);
}
.gallery-thumb-item.active .gallery-thumb-label {
  color: #b69960;
}

/* =========================================================
   THUMB LABEL
========================================================= */

.gallery-thumb-label {
  display: block;
  margin-top: 6px;
  color: #333333;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: color 0.3s ease;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {
  .gallery-showcase-section {
    padding: 60px 25px;
  }
  .gallery-showcase-container {
    grid-template-columns: 230px minmax(0, 1fr) 115px;
    gap: 20px;
  }
  .gallery-heading {
    font-size: 45px !important;
  }
  .gallery-description {
    max-width: 220px;
    font-size: 13px;
  }
  .gallery-thumbs-col {
    gap: 12px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {
  .gallery-showcase-section {
    padding: 50px 16px;
  }
  .gallery-showcase-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
  }
  /* Text */
  .gallery-text-col {
    width: 100%;
    text-align: left;
  }
  .gallery-heading {
    font-size: 48px !important;
  }
  .gallery-description {
    max-width: 500px;
  }

  /* Main image */
  .gallery-main-wrapper {
    aspect-ratio: 16 / 10;
  }

  /* Thumbnails */
  .gallery-thumbs-col {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
  }
  .gallery-thumb-label {
    font-size: 9px;
    margin-top: 5px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 450px) {
  .gallery-showcase-section {
    padding: 40px 12px;
  }
  .gallery-heading {
    font-size: 42px !important;
  }
  .gallery-description {
    font-size: 16px;
  }
  .gallery-thumbs-col {
    gap: 6px;
  }
  .gallery-thumb-label {
    font-size: 8px;
  }
}

/* Section 5 compatable chassis */

/* Light Section Theme (#f2f2f2 Background) */
.chassis-blueprint-section {
  width: 100%;
  background-color: #f2f2f2;
  background-size: 40px 40px;
  padding-block: 70px;
  color: #0e0f10;
}

/* Header Section */
.blueprint-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 50px;
}

.header-left {
  flex: 1;
}

.blueprint-title {
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: 0.95;
  letter-spacing: 1.5px;
  color: #0e0f10;
  margin: 0;
}

.header-right {
  max-width: 420px;
  padding-top: 10px;
}

.counter-badge {
  font-size: 11px;
  letter-spacing: 2px;
  color: #b69960;
  display: block;
  margin-bottom: 16px;
  font-weight: 600;
}

.header-description {
  font-size: 13.5px;
  line-height: 1.65;
  color: #555555;
  margin: 0;
}

/* Cards Grid & White Cards */
.chassis-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.chassis-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  /* border-radius: 6px; */
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition:
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.chassis-card:hover {
  border-color: #b69960;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Card Top Controls */
.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.card-num {
  font-family: "Bebas Neue", sans-serif !important;
  font-size: 38px;
  color: #e0e0e0;
  line-height: 1;
}

.pill-badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #b69960;
  border: 1px solid rgba(183, 154, 93, 0.4);
  background-color: rgba(183, 154, 93, 0.05);
  padding: 4px 10px;
  /* border-radius: 2px; */
  text-transform: uppercase;
}


.card-title {
  font-size: clamp(1.4rem, 2.2vw, 2.4rem);
  line-height: 1;
  letter-spacing: 1px;
  color: #0e0f10;
  margin-bottom: 16px;
}

.card-body {
  font-size: 13px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 30px;
  min-height: 60px;
}

/* Compatibility Bar */
.card-compatibility-row {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

.comp-label {
  color: #888888;
}

.comp-val {
  color: #b69960;
}

.comp-bar-wrapper {
  width: 100%;
  height: 2px;
  background: #e8e8e8;
  margin-bottom: 25px;
  overflow: hidden;
}

.comp-bar-fill {
  height: 100%;
  background: #b69960;
}

/* Specification List */
.card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.card-list li {
  font-size: 15px;
  color: #222222;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.list-num {
  font-size: 10px;
  color: #999999;
  font-weight: 600;
}


/* Responsive Media Queries */
@media (max-width: 992px) {
  .blueprint-header {
    flex-direction: column;
    gap: 20px;
  }

  .header-right {
    max-width: 100%;
  }

  .chassis-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .card-body {
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .chassis-blueprint-section {
    padding: 50px 16px;
  }

  .blueprint-title {
    font-size: 44px;
  }
}


/* Shipping Section (#ffffff White Background) */
.shipping-section {
  width: 100%;
  background-color: #ffffff;
  padding-block: 70px;
  font-family: "Jost", sans-serif;
  color: #0e0f10;
}

.shipping-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Left Image Column */
.shipping-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.shipping-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shipping-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(14, 15, 16, 0.9);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 10px 16px;
  /* border-radius: 4px; */
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(183, 154, 93, 0.4);
}

.shipping-badge i {
  color: #b69960;
  font-size: 14px;
}

.shipping-badge span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Right Content Column */
.shipping-content-col {
  display: flex;
  flex-direction: column;
}

.shipping-title {
  font-family: "Bebas Neue", sans-serif !important;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 0.95;
  letter-spacing: 1.5px;
  color: #0e0f10;
  margin-bottom: 16px;
}

.shipping-description {
  font-size: 14px;
  line-height: 1.65;
  color: #555555;
  margin-bottom: 30px;
}

/* Features List */
.shipping-features-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.shipping-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  background-color: rgba(183, 154, 93, 0.08);
  border: 1px solid rgba(183, 154, 93, 0.25);
  /* border-radius: 6px; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #b69960;
  /* #b79a5d */
  font-size: 16px;
}

.feature-text h4 {
  font-size: clamp(1.4rem, 1.2vw, 2.4rem);
  color: #0e0f10;
  margin: 0 0 4px 0;
}

.feature-text p {
  font-size: 13px;
  line-height: 1.5;
  color: #666666;
  margin: 0;
}


/* Responsive Rules */
@media (max-width: 992px) {
  .shipping-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .shipping-image-wrapper {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 576px) {
  .shipping-section {
    padding: 50px 16px;
  }
}


/* section 9 faq  */
.faq-section {
  width: 100%;
  background-color: #f2f2f2;
  padding-block: 70px;
  font-family: "Jost", sans-serif;
  color: #0e0f10;
}

.faq-container {
  max-width: 960px;
  margin: 0 auto;
}

/* Header Text - Centered Alignment */
.faq-header-left {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 45px auto; /* Centers the block within the container */
}

.faq-heading {
  font-family: "Bebas Neue", sans-serif !important;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 0.95;
  letter-spacing: 1.5px;
  color: #0e0f10;
  margin-bottom: 14px;
}

.faq-description {
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
  margin: 0 auto;
}

/* Accordion Container */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Accordion Item */
.faq-item {
  background: #f9f9f9;
  border: 1px solid rgba(0, 0, 0, 0.08);
  /* border-radius: 6px; */
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.faq-item:hover,
.faq-item.active {
  border-color: rgba(183, 154, 93, 0.6);
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

/* Question Button */
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  color: #0e0f10;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question {
  color: #b79a5d;
}

/* Toggle Icon */
.faq-icon {
  font-size: 14px;
  color: #b79a5d;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Collapsible Answer Box */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  opacity: 1;
}

.faq-answer p {
  padding: 0 24px 22px 24px;
  font-size: 14px;
  line-height: 1.65;
  color: #555555;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .faq-section {
    padding: 60px 16px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 15px;
  }

  .faq-answer p {
    padding: 0 18px 18px 18px;
    font-size: 13.5px;
  }
}
