/*
Theme Name: Chery Dealer
Theme URI: https://www.cherybdg.com
Author: Agensi Digital
Author URI: https://www.agensidigital.com
Description: Chery Dealer theme 
Version: 1.0
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

/* ===== Font ===== */

@font-face {
  font-family: 'Conthrax';
  src: url('https://www.cherybdg.com/wp-content/themes/chery/fonts/Conthrax-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Conthrax';
  src: url('https://www.cherybdg.com/wp-content/themes/chery/fonts/Conthrax-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Exo2';
  src: url('https://www.cherybdg.com/wp-content/themes/chery/fonts/Exo2-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Exo2';
  src: url('https://www.cherybdg.com/wp-content/themes/chery/fonts/Exo2-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #000;
}

/* HEADER GRID */
.header-grid {
  margin: auto;
  padding: 30px 75px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

/* LOGO */
.logo img {
  height: 25px;
  display: block;
}

/* DESKTOP MENU */
.nav {
  display: flex;
  justify-content: center;
}

.menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-family: 'Conthrax';
}

.rank-math-breadcrumb a{
    font-family: 'Conthrax';
    color:#ffffff;
    text-decoration:none;
}

/* MEGA MENU DESKTOP */
.has-mega {
  position: relative;
}

.has-mega::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 20px;
}

.mega-menu {
  position: absolute;
  top: 200%;
  left: 0%;
  transform: translateX(-50%);
  width: 120vw;
  background: #fff;
  border-top: 1px solid #eee;
  display: none;
}

.has-mega:hover > .mega-menu,
.mega-menu:hover {
  display: block;
}

/* MEGA CONTENT */
.mega-inner {
  max-width: 1240px;
  margin: auto;
  padding: 40px 0px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 64px;
}

/* LEFT */
.mega-left h4,
.mega-right h4 {
  font-size: 14px;
  color: #777;
  padding-bottom: 12px;
  border-bottom: 1px solid #ddd;
}

.mega-left ul {
  list-style: none;
  margin-top: 20px;
}

.mega-left li {
  padding: 14px 18px;
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: 10px;
  font-family: 'Conthrax';
  font-weight: 600;
}

.mega-left li.active {
  background: #000;
  color: #fff;
  font-family: 'Conthrax';
  font-weight: 600;
}

/* RIGHT */
.cards {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}

.cards a{
  font-family: 'Conthrax';
  font-weight: 600;
  padding-top: 10px;
  color: #000;
}

.cards.active {
  display: grid;
}

.card img {
  width: 100%;
  height: auto;
}

.more {
  display: inline-block;
  margin-top: 24px;
  text-decoration: none;
  font-weight: 500;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto; /* FORCE RIGHT */
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
}

/* MOBILE */
@media (max-width: 992px) {

  .hamburger {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    border-top: 1px solid #eee;
  }

  .nav.open {
    display: block;
  }

  .menu {
    flex-direction: column;
    gap: 0;
  }

  .menu li {
    border-bottom: 1px solid #eee;
  }

  .menu a {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
    color: #000;
  }

  /* MOBILE MEGA */
  .mega-menu {
    position: static;
    transform: none;
    width: 100%;
    display: none;
  }

  .has-mega.open .mega-menu {
    display: block;
  }

  .mega-inner {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 30px;
  }

  .cards {
    color: black;
  }
}

/* ================= HERO SLIDER ================= */

.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,.65),
    rgba(0,0,0,.2),
    rgba(0,0,0,.05)
  );
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 120px 80px;
  color: #fff;
}

.hero-content span {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Conthrax';
}

.hero-content-vehicle span {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Conthrax';
}

.hero-content h1 {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content-vehicle h1 {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 20px;
}


.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  opacity: .9;
  font-family: 'Exo2';
}

.hero-content-vehicle p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  opacity: .9;
  font-family: 'Exo2';
}

.btn-primary {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 28px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Exo2';
  text-transform: uppercase;
}

/* Stats */
.hero-stats {
  position: absolute;
  left: 80px;
  bottom: 60px;
  display: flex;
  gap: 60px;
  z-index: 2;
  color: #fff;
}

.hero-stats strong {
  font-size: 32px;
  display: block;
}

.hero-stats span {
  font-size: 14px;
  opacity: .7;
}

/* Model card */
.hero-model {
  position: absolute;
  right: 100px;
  bottom: 60px;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  padding: 24px;
  max-width: 320px;
  border-radius: 12px;
  z-index: 2;
  color: #fff;
}

.hero-model h4 {
  font-size: 14px;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.hero-model span {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: .08em;
  margin-bottom: 12px;
}

.hero-model p {
  padding-top: 20px;
   font-family: 'Exo2';
}


/* Indicator */
.hero-indicator {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  color: #fff;
}

.hero-indicator .num {
  font-size: 18px;
  opacity: .4;
}

.hero-indicator .num.active {
  opacity: 1;
}

.hero-indicator .line {
  width: 2px;
  height: 48px;
  background: rgba(255,255,255,.5);
}

/* Arrows */
.hero-arrows {
  position: absolute;
  right: calc(100px + 340px); /* model width + gap */
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 3;
}

.hero-arrows button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
  background: rgba(0,0,0,.25);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 900px) {
  .hero-content {
    padding: 100px 24px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .hero-stats {
    display: none;
  }

  .hero-model {
    position: static;
    margin: 24px;
    max-width: 100%;
  }

  .hero-indicator {
    display: none;
  }
}

/* ================= HOME INTRO ================= */

.home-intro {
  padding: 80px 0;
  color: #000;
}

.intro-container {
  margin: auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* TEXT */
.intro-content h1 {
  font-size: 48px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 30px;
  font-family: 'Conthrax';
}

.intro-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #000;
  margin-bottom: 16px;
   font-family: 'Exo2';
}

.intro-content .choose {
  margin-top: 20px;
  font-style: italic;
}

/* IMAGES */
.intro-images {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.image-large {
  width: 530px;
  border-radius: 10px;
  overflow: hidden;
}

.image-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FLOATING IMAGE */
.image-small {
  position: absolute;
  left: -35px;
  bottom: -45px;
  width: 360px;
  border-radius: 10px;
  overflow: hidden;
  
}

.image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .intro-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 20px 25px;
  }

  .intro-images {
    justify-content: center;
  }

  .image-small {
    left: 50%;
    transform: translateX(-50%);
    bottom: -60px;
  }
}

@media (max-width: 600px) {
  .intro-content h1 {
    font-size: 36px;
  }

  .image-large {
    width: 100%;
  }

  .header-grid {
    margin: auto;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
}

/* ================= FEATURES ================= */

.features {
  padding:60px 80px;
  background: #1f1f1f;
}

.features-inner {
  color: #fff;
}

/* BADGE */
.badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 24px;
  font-family: 'Conthrax';
}

/* HEADER GRID */
.features-head-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}

.features h2 {
  font-size: 48px;
  line-height: 1.15;
  font-family: 'Conthrax';
}

.features-head-grid p {
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  font-family: 'Exo2';
}

/* FEATURES ROW */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* FEATURE ITEM */
.feature-item {
  text-align: center;
}

.feature-item .icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.feature-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  font-family: 'Conthrax';
}

.feature-item p {
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  font-family: 'Exo2';
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {
  .features-head-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features {
    padding: 60px 20px;
  }

  .features h2 {
    font-size: 36px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}


/* ================= EXPLORE VEHICLE ================= */

.explore-vehicle {
  background-image: linear-gradient(to bottom, #9b9a98, #ddd6d0);
  background-size: cover;
  background-position: center;
  padding: 100px 0 80px;
  color: #fff;
  text-align: center;
}

/* HEADER */
.explore-header h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 24px;
  font-family: 'Conthrax';
  text-transform: uppercase;
}

.explore-tabs {
  display: flex;
  justify-content: center;
  gap: 60px;
  border-bottom: 1px solid rgba(255,255,255,.3);
  max-width: 600px;
  margin: auto;
}

.explore-tabs .tab {
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  padding: 12px 0;
  font-size: 24px;
  cursor: pointer;
  position: relative;
  font-family: 'Conthrax';
}

.explore-tabs .tab.active {
  color: #fff;
  font-family: 'Conthrax';
  font-weight: 600;
}

.explore-tabs .tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #fff;
}

/* SLIDER */
.vehicle-slider {
  position: relative;
  margin-top: 60px;
}

.vehicle-stage {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* VEHICLES */
.vehicle img {
  max-width: 100%;
  display: block;
}

.vehicle.small img {
  width: 380px;
  opacity: .7;
}

.vehicle.main img {
  width: 525px;
}

.vehicle.main h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  background: #fff;
  display: inline-block;
  padding: 10px 24px;
  border-radius: 30px;
  font-family: 'Conthrax';
}

.vehicle-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.vehicle-link:hover h3 {
  text-decoration: underline;
}

/* ARROWS */
.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.5);
  background: transparent;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}

.nav-arrow.left {
  left: 40px;
}

.nav-arrow.right {
  right: 40px;
}

/* MOBILE FIX */
@media (max-width: 900px) {
  .vehicle-stage {
    gap: 0;
  }

  .vehicle.small {
    display: none;
  }

  .vehicle.main img {
    width: 260px;
  }

  .hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  /* KEEP ARROWS ON MOBILE */
  .nav-arrow {
    display: inline;
    width: 36px;
    height: 36px;
    font-size: 18px;
    background: rgba(0,0,0,.4);
  }

  .nav-arrow.left {
    left: 16px;
  }

  .nav-arrow.right {
    right: 16px;
  }
}

/* ===== VEHICLE TYPE EXACT ===== */

.vehicle-type-exact {
  padding: 100px 0;
  background: #000;
}

.vehicle-grid {
  margin: auto;
  padding: 0 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 40px;
}

/* BASE BLOCK */
.vehicle-block {
  border-radius: 10px;
  overflow: hidden;
}

/* FULL CARD (IMAGE + TEXT) */
.vehicle-block.full img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.vehicle-block.full .text {
  background: #f3f5f8;
  padding: 20px;
}

/* TEXT ONLY (CENTER TOP) */
.vehicle-block.text-only {
  background: #f3f5f8;
  padding: 26px;
  align-self: start;
}

/* TYPOGRAPHY */
.vehicle-block h2 {
  font-size: 18px;
  margin-bottom: 10px;
  font-family: 'Conthrax';
}

.vehicle-block p {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
  font-family: 'Exo2';
}


/* ===== RESPONSIVE ===== */

@media (max-width: 900px) {
  .vehicle-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .vehicle-block.full,
  .vehicle-block.text-only,
  .vehicle-block.image-only {
    grid-row: auto;
  }
}

/* ================= DRIVE SERVICE ================= */

.drive-service {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  min-height: 420px;
}

/* BASE COLUMN */
.drive-col {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 80px 80px;
  display: flex;
  align-items: center;
}

/* LEFT COLUMN */
.drive-col.left {
  background:#908a83;
}

/* RIGHT COLUMN */
.drive-col.right {
  background:#9e9a93;
}

/* CONTENT */
.drive-content {
  max-width: 420px;
  z-index: 2;
}

.drive-content h2 {
  font-size: 28px;
  margin-bottom: 14px;
  font-family: 'Conthrax';
}

.drive-content p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 26px;
  opacity: 0.9;
  font-family: 'Exo2';
}

/* BUTTON */
.drive-btn {
  display: inline-block;
  padding: 14px 26px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  font-family: 'Exo2';
}

.drive-btn:hover {
  background: #fff;
  color: #000;
}

/* FLOATING IMAGES */
.drive-asset {
  position: absolute;
  right: 40px;
  max-width: 400px;
  z-index: 1;
}

.drive-asset.mechanic {
  right: 30px;
  max-width: 400px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .drive-service {
    grid-template-columns: 1fr;
  }

  .drive-col {
    padding: 60px 30px;
    min-height: 360px;
  }

  .drive-asset {
    left: 200px;
  }
}


/* ================= REQUEST QUOTE ================= */
.request-quote {
  position: relative;
  width: 100%;
  background: url("https://www.cherybdg.com/wp-content/themes/chery/images/bcrq.webp") no-repeat;
  background-position: center;
  background-size: cover;
  padding: 15px 0 40px;
}

.request-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.request-inner {
  position: relative;
  margin: auto;
  display: grid;
  grid-template-columns: 730px 1fr;
  gap: 80px;
  padding: 0 80px;
}

/* ================= FORM ================= */
.quote-form {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(0,0,0,.25);
  overflow: hidden;
  transform: translateY(-60px);
}

.form-header {
  background: #000;
  padding: 24px 24px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Conthrax';
}

.form-body {
  padding: 24px;
}

.form-body h2 {
  font-size: 26px;
  margin-bottom: 6px;
  font-family: 'Conthrax';
}

.form-body p {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-body input,
.form-body textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
  margin-bottom: 14px;
}

.form-body textarea {
  min-height: 110px;
  resize: none;
}

.form-body button {
  width: 100%;
  background: #111;
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}

.form-body button:hover {
  background: #000;
  transform: translateY(-1px);
}

.form-footer {
  font-size: 12px;
  color: #777;
  text-align: center;
  padding: 14px;
}

/* ================= CONTENT RIGHT ================= */
.quote-content {
  color: #fff;
  padding-top: 20px;
}

.quote-content h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  font-family: 'Conthrax';
}

.quote-content p {
  font-size: 15px;
  max-width: 520px;
  line-height: 1.6;
  opacity: .9;
  margin-bottom: 32px;
  font-family: 'Exo2';
}

.quote-features {
  display: flex;
  gap: 40px;
}

.qf {
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 10px;
  text-align: center;
}

.qf-icon {
  width: 48px;
  height: 48px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

.qf span {
  font-size: 13px;
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {
  .request-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px;
  }

  .quote-form {
    transform: none;
  }

  .quote-content h1 {
    font-size: 32px;
  }

  .quote-features {
    flex-direction: column;
    align-items: flex-start;
  }
}

.testimonial {
  background: #fff;
  padding: 100px 0;
  overflow: hidden;
}

.testimonial-inner {
  margin: auto;
  padding-left: 80px;
}

.testimonial-title {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 60px;
  font-family: 'Conthrax';
}

/* VIEWPORT */
.testimonial-wrapper {
  overflow: hidden;
}

/* SLIDER TRACK */
.testimonial-track {
  display: flex;
  gap: 60px;
  transition: transform 0.7s cubic-bezier(.4,0,.2,1);
}

/* CARD */
.testimonial-item {
  min-width: 720px; /* important */
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 30px;
  opacity: .4;
  transform: scale(.9);
  transition: all .6s ease;
}

.testimonial-item.active {
  opacity: 1;
  transform: scale(1);
}

.testimonial-item img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 18px;
}

.testimonial-item .text p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: 'Exo2';
}

.testimonial-item strong {
  display: block;
  font-size: 16px;
}

.testimonial-item span {
  font-size: 13px;
  opacity: .6;
}

.rating {
  margin-top: 12px;
  font-size: 22px;
  font-weight: 700;
}

/* CONTROLS */
.testimonial-controls {
  margin-top: 40px;
  display: flex;
  gap: 16px;
}

.testimonial-controls button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 18px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
}

.testimonial-track {
  will-change: transform;
}

/* MOBILE */
@media (max-width: 900px) {
  .testimonial-inner{
    padding: 25px;
  }
  .testimonial-item {
    min-width: 90vw;
    grid-template-columns: 1fr;
  }

  .testimonial-title {
    font-size: 32px;
  }
}

/* HERO CAR */
.hero-car {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
  background: #000;
}

/* IMAGE */
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* TEXT */
.hero-content-vehicle {
  position: absolute;
  top: 72px;
  left: 72px;
  color: #fff;
  z-index: 2;
}

.hero-year-vehicle {
  font-size: 14px;
  letter-spacing: 2px;
  opacity: 0.85;
}

/* PRICE BAR */
.hero-price-vehicle {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 16px 40px;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  font-size: 14px;
  z-index: 2;
  font-family: 'Conthrax';
}

.hero-price-vehicle ,span {
  font-family: 'Conthrax';
}

.hero-price-vehicle .divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.4);
}

/* ================= MOBILE FIX ================= */
@media (max-width: 768px) {
  .hero-car {
    height: auto;       
  }

  .hero-bg img {
    height: auto;                 /* 🔥 allow natural height */
    aspect-ratio: 3 / 4;          /* matches mobile attachment */
    object-fit: cover;
  }

  .hero-content-vehicle {
    top: 32px;
    left: 20px;
  }

  .hero-year-vehicle {
    font-size: 12px;
  }

  .hero-model-vehicle {
    font-size: 88px;              /* 🔥 mobile-safe scale */
  }

  .hero-price-vehicle {
    position: relative;           /* 🔥 no overlay overflow */
    background: rgba(0,0,0,0.7);
    padding: 14px 20px;
    font-size: 13px;
    font-family: 'Conthrax';
  }
}

.vehicle-specs {
  width: 100%;
  background: #fff;
  padding: 80px 0;
}

.specs-inner {
  margin: auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
}

.specs-inner, p {
  font-family: 'Exo2';
}

.spec h3 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #111;
  font-family: 'Conthrax';
  text-transform: uppercase;
}
}

.spec h3 sup {
  font-size: 14px;
  vertical-align: super;
  font-family: 'Conthrax';
}
}

.spec p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  font-family: 'Exo2';
}

.spec p a {
  color: #111;
  text-decoration: underline;
  font-family: 'Exo2';
}

.spec .line {
  display: block;
  margin-top: 16px;
  height: 1px;
  width: 100%;
  background: #111;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
  .specs-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .vehicle-specs {
    padding: 60px 0;
  }

  .specs-inner {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 20px;
  }

  .spec h3 {
    font-size: 28px;
  }
}

/* Variant Vehicle */
.vehicle-variant {
  background: #e6e4df;
  padding: 80px 40px;
}

.variant-title {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px;
  font-family: 'Conthrax';
  text-transform: uppercase;
}

/* CONTROLS */
.variant-controls {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.drivetrain span,
.colors span {
  font-size: 12px;
  letter-spacing: 1px;
  margin-right: 10px;
}

.drive-btn-vehicle {
  background: none;
  border: none;
  font-size: 14px;
  margin-left: 10px;
  cursor: pointer;
  padding-bottom: 4px;
  font-family: 'Exo2';
  font-weight: bold;
  color: #000000 !important;
}

.drive-btn-vehicle.active {
  border-bottom: 2px solid #000;
  font-family: 'Exo2';
  font-weight: bold;
  color: #000000 !important;
}

.color-options {
  display: flex;
  gap: 10px;
  padding-top: 10px;
}

.color {
  width: 30px;
  height: 30px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
}

.color-name {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  text-transform: capitalize;
  color: #000;
}


.color.active {
  border-color: #000;
}

.color.greenaurora { background: #456564; }
.color.blackcarboncrystal { background: #020202; }
.color.greybambooash { background: #2d322e; }
.color.whitekhaki { background: #f6f6f6; }
.color.blackcarboncrystal { background: #070707; }
.color.universalgrey { background: #585858; }
.color.auroragreen { background: #245655; }
.color.greenjadetwotone { background: #a1bcba; }
.color.howlitetwotone { background: #f8f8f8; }
.color.whitehowlite { background: #fff; }
.color.whitehowliteblack { background: #f7f8fa; }
.color.blackplatinum { background: #000; }
.color.blackphantom { background: #373b3b;}
.color.greymorganite { background: #555; }
.color.greenemerald { background: #072b36; }
.color.gray { background: #555; }
.color.greytech { background: #3c3e3f; }
.color.redmatrix { background: #ea3540; }
.color.silver { background: #ccc; }
.color.redruby { background: #c50f2a; }
.color.silvermoonlight { background: #f9f8fa; }

/* MAIN */
.variant-main {
  display: grid;
  grid-template-columns: 240px 1fr;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.variant-info .trim {
  font-size: 24px;
  font-weight: 600;
}

.msrp {
  font-size: 12px;
  margin: 10px 0;
}

.price {
  font-size: 30px;
  font-weight: 700;
}

.variant-image img {
  width: 100%;
  max-width: 760px;
  display: block;
  margin: auto;
}

/* FEATURES */
.variant-features {
  max-width: 1000px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.variant-features p {
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
  font-family: 'Exo2';
}

/* MOBILE */
@media (max-width: 900px) {
  .variant-controls {
    flex-direction: column;
    gap: 20px;
  }

  .variant-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .variant-info {
    margin-bottom: 20px;
  }

  .variant-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.specification {
  padding: 80px 40px;
  font-family: Inter, sans-serif;
}

.spec-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  font-family: 'Conthrax';
  text-transform: uppercase;
}

/* DRIVE SWITCH */
.drive-switch {
  display: flex;
  justify-content: center;
  gap: 80px;
  position: relative;
  margin-bottom: 40px;
}

.drive {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  font-family: 'Conthrax';
  color: #000000 !important;
}

.drive.active {
  font-weight: 700;
  border-bottom: 2px solid #000;
   color: #000000 !important;
}

.drive-line {
  position: absolute;
  bottom: -10px;
  height: 2px;
  background: #1f2f4a;
  transition: transform .3s ease;
}

@media (max-width: 1024px) {
  .drive-switch {
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .drive-switch {
    justify-content: flex-start;
    overflow-x: auto;
    gap: 24px;
    padding-bottom: 6px;
    padding-left: 10px;
  }
  
  .specification{
      padding: 80px 20px !important;
  }

  .drive {
    font-size: 14px;
  }

  .drive-switch::-webkit-scrollbar {
    display: none;
  }
}

/* TABS */
.spec-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.spec-tab {
  background: #f1f1f1;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-family: 'Exo2';
}

.spec-tab.active {
  background: #000000;
  color: #fff;
  font-family: 'Exo2';
}

/* CONTENT */
.spec-drive {
  display: none;
}

.spec-drive.active {
  display: block;
}

.spec-table {
  display: none;
  background: #f4f4f4;
  padding: 40px;
  border-radius: 12px;
}

.spec-table.active {
  display: block;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 14px 0;
  border-bottom: 1px solid #ddd;
}


/* ================= MOBILE SPEC LAYOUT ================= */
@media (max-width: 768px) {

  .spec-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 10px;
    gap: 10px;
  }

  .spec-tabs::-webkit-scrollbar {
    display: none;
  }

  .spec-tab {
    flex: 0 0 auto;
    background: #f3f3f3;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 13px;
    white-space: nowrap;
  }

  .spec-tab.active {
    background: #eef1f5;
    color: #1f2f4a;
    font-weight: 600;
  }

  /* progress bar under tabs */
  .spec-progress {
    height: 6px;
    background: #e6e6e6;
    border-radius: 6px;
    margin: 14px 16px 24px;
    overflow: hidden;
  }

  .spec-progress span {
    display: block;
    height: 100%;
    width: 25%;
    background: #9aa3ad;
    border-radius: 6px;
  }

  .spec-table {
    background: #f6f6f6;
    padding: 20px;
    border-radius: 14px;
  }

  .row {
    grid-template-columns: 1fr 1fr;
    font-size: 13px;
    padding: 12px 0;
  }

  .row span:first-child {
    color: #444;
  }

  .row span:last-child {
    text-align: right;
    font-weight: 500;
  }
  
  .vehicle-features {
      padding: 0px 20px !important;
  }
}

.vehicle-features {
  padding: 0px 40px;
  background: #fff;
}

.vf-title {
  font-size: 36px;
  margin-bottom: 40px;
  font-family: 'Conthrax';
  text-transform: uppercase;
}

.vf-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.vf-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
}

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

.vf-item.large {
  height: 520px;
}

.vf-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}

.vf-right .vf-item {
  height: 250px;
}

.vf-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
}

.vf-overlay h3 {
  font-size: 24px;
  margin-bottom: 8px;
  font-family: 'Conthrax';
}

/* LIGHTBOX */
.vf-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.vf-lightbox.active {
  display: flex;
}

.vf-lightbox-content {
  max-width: 900px;
  width: 90%;
  text-align: center;
  color: #fff;
}

.vf-lightbox-content img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 20px;
}

.vf-text h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.vf-close,
.vf-prev,
.vf-next {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

.vf-close {
  top: 30px;
  right: 40px;
}

.vf-prev {
  left: 30px;
}

.vf-next {
  right: 30px;
}

/* MOBILE */
@media (max-width: 900px) {
  .vf-overlay h3{
    font-size: 14px;
  }
  .specs-inner, p {
    font-size: 12px;
  }
  .vf-grid {
    grid-template-columns: 1fr;
  }

  .vf-item.large,
  .vf-right .vf-item {
    height: 220px;
  }
}

.vehicle-feature-slider {
  background: #fff;
  padding: 80px 0;
}

/* IMAGE CONTAINER */
.slider-wrapper {
  position: relative;
  margin: auto;
  overflow: hidden;
}

.slider-wrapper img {
  width: 80%;
  height: 620px;
  object-fit: cover;
  display: block;
}

/* FLOATING PANEL */
.feature-panel {
  position: absolute;
  top: 50%;
  right: 80px;
  transform: translateY(-50%);
  width: 420px;
  background: #000;
  color: #fff;
  padding: 48px 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

/* TEXT */
.feature-tag {
  font-size: 12px;
  letter-spacing: 2px;
  opacity: .8;
}

.feature-panel h2 {
  font-size: 34px;
  margin: 20px 0;
  font-family: 'Conthrax';
}

.feature-panel p {
  font-size: 15px;
  line-height: 1.7;
  opacity: .95;
}

/* ARROWS */
.feature-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}

.feature-nav button {
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  font-family: 'Exo2';
}

/* MOBILE */
@media (max-width: 900px) {
  .slider-wrapper img {
    height: auto;
    width: 100%;
  }

  .feature-panel {
    position: static;
    transform: none;
    width: auto;
  }
}

.sliderfeature {
  padding-top: 20px;
  padding-right: 0px;
  padding-bottom: 100px;
  padding-left: 0px;
  background: #fff;
  overflow: hidden;
}

.sliderfeature-title {
  font-size: 32px;
  margin-left: 80px;
  margin-bottom: 40px;
  font-family: 'Conthrax';
  text-transform: uppercase;
}

/* VIEWPORT */
.sliderfeature-wrapper {
  overflow: hidden;
  padding-left: 80px;
}

/* TRACK */
.sliderfeature-track {
  display: flex;
  gap: 40px;
  transition: transform 0.4s ease;
}

/* CARD */
.slide {
  flex: 0 0 60%;
  max-width: 520px;
}

.slide img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 6px;
}

.slide h3 {
  font-size: 18px;
  margin: 16px 0 8px;
}

.slide p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* DOTS */
.sliderfeature-dots {
  display: flex;
  gap: 10px;
  margin-left: 80px;
  margin-top: 24px;
}

.sliderfeature-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #999;
  background: transparent;
  cursor: pointer;
}

.sliderfeature-dots button.active {
  background: #0a84ff;
  border-color: #0a84ff;
}

/* MOBILE */
@media (max-width: 768px) {
  .sliderfeature-title,
  .sliderfeature-wrapper,
  .sliderfeature-dots {
    margin-left: 20px;
    padding-left: 0px;
  }

  .slide {
    flex: 0 0 80%;
  }

  .slide img {
    height: 240px;
  }
}

.vehicle-intro {
  background: #f4efe9;
  padding: 100px 20px;
  text-align: center;
}

/* EYEBROW */
.intro-eyebrow {
  font-size: 13px;
  letter-spacing: 2px;
  color: #333;
  margin-bottom: 20px;
}

/* TITLE */
.intro-title {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #2b2b2b;
  font-family: 'Conthrax';
  text-transform: uppercase;
}

/* DESCRIPTION */
.intro-desc {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 18px;
  line-height: 1.6;
  color: #444;
}

/* BUTTON */
.intro-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border: 2px solid #000;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  color: #000;
  transition: all 0.25s ease;
  font-family: 'Conthrax';
}

.intro-btn:hover {
  background: #000;
  color: #fff;
}

.intro-btn .arrow {
  font-size: 18px;
  transition: transform 0.25s ease;
}

.intro-btn:hover .arrow {
  transform: translateX(4px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .vehicle-intro {
    padding: 70px 20px;
  }

  .intro-title {
    font-size: 32px;
  }

  .intro-desc {
    font-size: 16px;
  }
}

.site-footer {
  background: #908a83;
  color: #fff;
  padding: 80px 60px 40px;
  font-family: Inter, sans-serif;
}

/* TOP SECTION */
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}

.footer-cta h2 {
  font-size: 44px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 30px;
}

.footer-email {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.3);
  max-width: 360px;
  padding-bottom: 10px;
}

.footer-email input {
  background: none;
  border: none;
  color: #fff;
  font-size: 15px;
  flex: 1;
  outline: none;
}

.footer-email input::placeholder {
  color: rgba(255,255,255,.6);
}

.footer-email .arrow {
  font-size: 20px;
  opacity: .7;
}

/* CONTACT */
.footer-contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
}

.contact-block .label {
  font-size: 16px;
  opacity: .6;
  letter-spacing: 1px;
}

.contact-block p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
  font-family: 'Exo2';
}

/* DIVIDER */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,.15);
  margin: 60px 0 40px;
}

/* BOTTOM */
.footer-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.col-title {
  font-size: 16px;
  opacity: .6;
  margin-bottom: 10px;
}

.footer-col a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  opacity: .8;
  font-family: 'Exo2';
}

.footer-col a:hover {
  opacity: 1;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  opacity: .8;
}

.social-icons a:hover {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .footer-contact {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .site-footer {
    padding: 60px 24px;
  }

  .footer-cta h2 {
    font-size: 32px;
  }

  .footer-contact {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }
}

.vehicle-horizontal-features {
  background: #050505;
  padding: 100px 80px;
  color: #fff;
  font-family: Inter, sans-serif;
  background-image:
    linear-gradient(120deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.vhf-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* LEFT IMAGE */
.vhf-image img {
  width: 100%;
  display: block;
  border-radius: 6px;
}

/* RIGHT */
.vhf-right {
  display: flex;
  align-items: stretch;
}

.vhf-divider {
  width: 1px;
  background: #ffffff;
  margin-right: 40px;
}

/* CONTENT */
.vhf-content {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 60px;
}

/* TEXT */
.vhf-detail {
  display: none;
}

.vhf-detail.active {
  display: block;
}

.vhf-detail h3 {
  font-size: 22px;
  margin-bottom: 18px;
  font-family: 'Conthrax';
}

.vhf-detail p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  margin-bottom: 14px;
  font-family: 'Exo2';
}

/* TABS */
.vhf-tabs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vhf-tabs li {
  font-size: 15px;
  color: rgba(255,255,255,.35);
  cursor: pointer;
  margin-bottom: 22px;
  transition: color .3s;
  font-family: 'Conthrax';
}

.vhf-tabs li.active {
  color: #fff;
  font-family: 'Conthrax';
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .vhf-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .vhf-right {
    flex-direction: column;
  }

  .vhf-divider {
    display: none;
  }

  .vhf-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .vehicle-horizontal-features {
    padding: 60px 24px;
  }
}

.ctaunitvehicled {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* DARK OVERLAY */
.ctaunitvehicled-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.55)
  );
}

/* CONTENT */
.ctaunitvehicled-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 40px 24px;
  color: #fff;
}

.ctaunitvehicled-content h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: .2px;
}

.ctaunitvehicled-content p {
  font-size: 16px;
  line-height: 1.6;
  opacity: .9;
  margin-bottom: 32px;
}

/* BUTTON */
.ctaunitvehicled-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #000;
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
  font-family: 'Exo2';
}

.ctaunitvehicled-btn:hover {
  background: #000;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ctaunitvehicled {
    min-height: 420px;
  }

  .ctaunitvehicled-content h2 {
    font-size: 28px;
  }

  .ctaunitvehicled-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .ctaunitvehicled {
    min-height: 380px;
  }

  .ctaunitvehicled-btn {
    width: 100%;
    padding: 14px 0;
  }
}

.vehicle-float-bar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #000;
  padding: 5px;
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  z-index: 999;
  box-shadow: -4px 0 16px rgba(0,0,0,.25);
}

.float-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0px;
  text-decoration: none;
  color: #fff;
  text-align: center;
  gap: 10px;
  transition: background .3s ease;
}

.float-item:not(:last-child) {
  border-bottom: 1px solid rgba(255,255,255,.2);
}

.float-item:hover {
  background: #908a83;
  border-radius: 5px;
  cursor: pointer;
}

.float-item svg {
  width: 25px;
  height: 25px;
  fill: #fff;
}

.float-item span {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  padding: 5px;
  font-family: 'Exo2'
}

/* MOBILE – bottom floating bar */
@media (max-width: 768px) {
  .vehicle-float-bar {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    transform: none;
    display: flex;
    border-radius: 0;
  }

  .float-item {
    flex: 1;
    padding: 0;
    padding-top: 5px;
  }

  .float-item:not(:last-child) {
    border-bottom: none;
    border-right: 1px solid #fff;
  }

  .float-item span {
    font-size: 12px;
  }
}


