.overview-vehicles{
  width:100%;
  padding:60px 6%;
  background:#181818;
  color:white;
}

.overview-container{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:40px;
  align-items:center;
}

.overview-item{
  display:flex;
  align-items:center;
  gap:20px;
}

.overview-icon{
  width:60px;
  height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0.9;
}

.overview-icon svg{
  width:48px;
  height:48px;
}

.overview-text span{
  display:block;
  font-size:13px;
  letter-spacing:3px;
  opacity:0.8;
  margin-bottom:6px;
}

.overview-text h3{
  font-size:32px;
  font-weight:500;
  margin:0;
}

@media(max-width:1024px){

  .overview-container{
    grid-template-columns: repeat(2, 1fr);
    gap:50px;
  }

}

@media(max-width:600px){

  .overview-container{
    grid-template-columns:1fr;
    gap:40px;
  }

  .overview-item{
    justify-content:flex-start;
  }

}

.vehicle-colors{
  background:#ffffff;
  padding:100px 5%;
  text-align:center;
}

/* ================= SWITCHER ================= */

.color-switcher{
  display:inline-flex;
  background:#e9e9e9;
  padding:8px;
  border-radius:50px;
  gap:10px;
  margin-bottom:80px;
}

.color-btn{
  border:none;
  background:transparent;
  padding:14px 40px;
  border-radius:40px;
  font-size:16px;
  font-weight:600;
  color:#000;
  cursor:pointer;
  transition:all .3s ease;
  text-transform: uppercase;
}

/* Hover */
.color-btn:hover{
  background:#ffffff;
  color:#111;
}

/* Active */
.color-btn.active{
  background:#ffffff;
  text-transform: uppercase;
  color:#111;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

/* ================= IMAGE ================= */

.vehicle-display{
  max-width:1100px;
  margin:0 auto;
}

.vehicle-display img{
  width:100%;
  max-width:900px;
  transition:opacity .4s ease, transform .4s ease;
}

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

@media(max-width:768px){

  .vehicle-colors{
    padding:60px 5%;
  }

  .color-switcher{
    flex-wrap:wrap;
    justify-content:center;
  }

  .color-btn{
    padding:10px 25px;
    font-size:14px;
  }

  .vehicle-display img{
    max-width:100%;
  }

}


.slider-overview-car{
  background:#181818;
  color:#fff;
  padding: 100px 8%;
  font-family: 'Helvetica Neue', sans-serif;
}

/* =========================
   TOP HEADING
========================= */

.overview-top{
  max-width:900px;
  margin-bottom:80px;
}

.overview-top h1{
  font-size:64px;
  font-weight:300;
  line-height:1.1;
  margin-bottom:30px;
}

.overview-top h2{
  font-size:64px;
  font-weight:300;
  line-height:1.1;
  margin-bottom:30px;
}

.overview-top p{
  color:#fff;
  font-size:16px;
  line-height:1.7;
  max-width:600px;
}


/* =========================
   SLIDER AREA
========================= */

.overview-slider{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap:60px;
  align-items:center;
}

/* LEFT SIDE */

.overview-caption{
  max-width:420px;
}

.overview-nav{
  display:flex;
  align-items:center;
  gap:20px;
  margin-bottom:30px;
}

.nav-arrow{
  background:none;
  border:none;
  color:#9aa3ad;
  font-size:22px;
  cursor:pointer;
  transition:0.3s;
}

.nav-arrow:hover{
  color:#fff;
}

.nav-number{
  color:#7d8794;
  cursor:pointer;
  font-size:16px;
  transition:0.3s;
}

.nav-number.active{
  color:#fff;
}

.caption-content h3{
  font-size:28px;
  margin-bottom:20px;
  font-weight:400;
}

.caption-content span{
  font-size:28px;
  margin-bottom:20px;
  font-weight:400;
}

.caption-content p{
  color:#fff;
  line-height:1.8;
  padding-top: 15px;
}

/* RIGHT IMAGE */

.overview-image img{
  width:100%;
  transition:0.4s ease;
  border-radius: 14px;
}

@media (max-width: 768px) {
  .slider-overview-car{
    padding: 100px 8%;
  }
}

@media(max-width:1024px){

  .slider-overview-car{
    padding: 100px 8%;
  }

  .overview-top h2{
    font-size:42px;
  }

  .overview-slider{
    grid-template-columns:1fr;
    gap:40px;
  }

  .overview-caption{
    order:2;
  }

  .overview-image{
    order:1;
  }
}





.tab-vehicle-overview{
  position:relative;
  width:100%;
  height:85vh;
  min-height:600px;
  overflow:hidden;
  color:#fff;
  font-family: 'Helvetica Neue', sans-serif;
}

/* BACKGROUND IMAGE */

.tab-bg{
  position:absolute;
  inset:0;
}

.tab-bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:opacity .5s ease;
}

/* DARK OVERLAY */

.tab-vehicle-overview::after{
  content:"";
  position:absolute;
  inset:0;
}

/* CONTENT */

.tab-content{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  align-items:center;
  text-align:center;
  padding-bottom:80px;
}

/* TAB NAVIGATION */

.tab-nav{
  display:flex;
  gap:40px;
  flex-wrap:wrap;
  justify-content:center;
  margin-bottom:25px;
}

.tab-btn{
  background:none;
  border:none;
  color:#ccc;
  font-size:16px;
  letter-spacing:.5px;
  cursor:pointer;
  padding-bottom:8px;
  position:relative;
  transition:.3s;
}

.tab-btn::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:#fff;
  transition:.3s ease;
}

.tab-btn:hover{
  color:#fff;
}

.tab-btn.active{
  color:#fff;
}

.tab-btn.active::after{
  width:100%;
}

/* TEXT */

.tab-text{
  max-width:800px;
}

.tab-text p{
  font-size:18px;
  line-height:1.6;
  margin-bottom:10px;
}

.tab-text small{
  opacity:.7;
  font-size:13px;
}

@media(max-width:768px){

  .tab-vehicle-overview{
    height:70vh;
  }

  .tab-nav{
    gap:20px;
  }

  .tab-text p{
    font-size:16px;
    padding:0 20px;
  }
}

.car-features-grid{
  background:#f3f3f3;
  padding:100px 8%;
  font-family:'Helvetica Neue', sans-serif;
}

.features-container{
  max-width:1200px;
  margin:0 auto;
}

/* HEADER */

.features-header{
  text-align:center;
  margin-bottom:60px;
}

.features-header h2{
  font-size:42px;
  font-weight:300;
  margin-bottom:15px;
  color: black;
}

.features-header h4{
  font-weight:600;
  margin-bottom:15px;
  color: black;
}

.features-header p{
  max-width:800px;
  margin:0 auto;
  line-height:1.6;
  color:#000;
}

/* GRID */

.features-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:25px;
}

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

.feature-item.full{
  grid-column:1 / -1;
}

.feature-item img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .5s ease;
}

.feature-item:hover img{
  transform:scale(1.05);
}

.feature-caption{
  position:absolute;
  bottom:20px;
  left:20px;
  color:#fff;
  font-weight:600;
  font-size:15px;
  text-shadow:0 2px 10px rgba(0,0,0,0.6);
}

/* LIGHTBOX */

.feature-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.85);
  display:flex;
  justify-content:center;
  align-items:center;
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:999;
}

.feature-lightbox.active{
  opacity:1;
  visibility:visible;
}

.feature-lightbox img{
  max-width:90%;
  max-height:85vh;
  border-radius:10px;
}

.lightbox-close{
  position:absolute;
  top:30px;
  right:40px;
  color:#fff;
  font-size:40px;
  cursor:pointer;
}

@media(max-width:768px){

  .features-header h2{
    font-size:28px;
  }

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

  .feature-item.full{
    grid-column:auto;
  }

}

.spec-compare{
  background:#f6f6f6;
  padding:100px 6%;
  font-family:'Inter', sans-serif;
}

.spec-container{
  max-width:1200px;
  margin:auto;
}

.spec-title{
  text-align:center;
  font-size:40px;
  margin-bottom:40px;
  color: #000;
}

/* Tabs */
.spec-tabs{
  text-align:center;
  margin-bottom:40px;
}

.spec-tab-btn{
  padding:10px 30px;
  margin:0 8px;
  border:none;
  background:#e5e5e5;
  border-radius:30px;
  cursor:pointer;
  transition:all 0.3s ease;
  font-size:14px;
  font-weight:500;
}

.spec-tab-btn:hover{
  background:#dcdcdc;
}

.spec-tab-btn.active{
  background:#111;
  color:#fff;
}

/* Table */
.spec-table-wrapper{
  width:100%;
  overflow-x:auto;

}

.spec-table{
  width:100%;
  border-collapse:collapse;
  background:#fff;
}

.spec-table th{
  padding:18px;
  background:#111;
  color:#fff;
  font-size:13px;
  text-transform:uppercase;
  text-align:left;
}

.spec-table td{
  padding:16px 18px;
  border-bottom:1px solid #eee;
  font-size:14px;
  color:#000;
}

/* Sticky first column */
.spec-table th:first-child,
.spec-table td:first-child{
  position:sticky;
  left:0;
  z-index:2;
  border-right:1px solid #eee;
  font-weight:600;
}

/* Section */
.section td{
  background:#fafafa;
  font-weight:600;
  text-transform:uppercase;
  font-size:12px;
  color:#777;
  border-bottom:2px solid #eee;
}

/* Included / Not available */
.included{
  color:#1a7f37;
  font-weight:600;
}

.not-available{
  color:#b00020;
  font-weight:600;
  background:#fff1f1;
}

/* =========================
   MOBILE CLEAN MODE
========================= */

.spec-mobile{
  display:none;
}

@media (max-width:768px){

  .spec-table thead{
    display:none;
  }

  .spec-table,
  .spec-table tbody,
  .spec-table tr,
  .spec-table td{
    display:block;
    width:100%;
    background: none;
  }

  .spec-table tr{
    margin-bottom:15px;
    border:1px solid #eee;
    border-radius:8px;
    overflow:hidden;
  }

  .spec-table td{
    display:flex;
    justify-content:space-between;
    padding:14px 16px;
    border-bottom:1px solid #eee;
    background: white;
  }

  .spec-table td:last-child{
    border-bottom:none;
  }

  .spec-table td::before{
    content:attr(data-label);
    font-weight:600;
    color:#000;
    font-size:13px;
  }

}

@media (max-width: 768px){

  .spec-tabs{
    display: none;
  }

  .spec-table-wrapper{
    display:none !important;
  }

  .spec-mobile{
    display:block;
  }

  .spec-mobile-card{
    background:#fff;
    border-radius:14px;
    padding:18px;
    margin-bottom:18px;
    box-shadow:0 6px 20px rgba(0,0,0,0.06);
  }

  .spec-mobile-title{
    font-weight:600;
    font-size:13px;
    text-transform:uppercase;
    margin-bottom:14px;
    color:#666;
    letter-spacing:.5px;
  }

  .spec-mobile-row{
    padding:10px 0;
    border-bottom:1px solid #eee;
  }

  .spec-mobile-row:last-child{
    border-bottom:none;
  }

  .spec-mobile-feature{
    font-weight:600;
    margin-bottom:6px;
    color: #000;
  }

  .spec-mobile-values{
    font-size:13px;
    display:flex;
    flex-direction:column;
    gap:4px;
    color: #000;
  }

  .spec-mobile-values span{
    display:block;
  }

}

.sales-widget{
  position:fixed;
  bottom:24px;
  right:24px;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:12px;
  z-index:9999;
}

.sales-toggle{
  width:60px;
  height:60px;
  background:#25D366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(0,0,0,0.25);
  animation:waPulse 2s infinite;
}

@keyframes waPulse{
  0%{ box-shadow:0 0 0 0 rgba(37,211,102,.7); }
  70%{ box-shadow:0 0 0 16px rgba(37,211,102,0); }
  100%{ box-shadow:0 0 0 0 rgba(37,211,102,0); }
}

.sales-card{
  width:280px;
  background:#fff;
  border-radius:18px;
  padding:20px;
  box-shadow:0 15px 40px rgba(0,0,0,.18);
  transform:translateY(20px);
  opacity:0;
  pointer-events:none;
  transition:all .35s ease;
}

.sales-widget.active .sales-card{

  transform:translateY(0);
  opacity:1;
  pointer-events:auto;

}

.sales-header span{
  font-size:13px;
  color:#777;
}

.sales-header strong{
  display:block;
  font-size:18px;
  margin-top:2px;
  color: black;
}

.sales-greeting{
  margin-top:12px;
  background:#f2f2f2;
  padding:10px 12px;
  border-radius:10px;
  font-size:14px;
  color: black;
}

.sales-actions{
  display:flex;
  gap:10px;
  margin-top:14px;
}

.btn-wa{
  flex:1;
  text-align:center;
  background:#25D366;
  color:#fff;
  padding:10px;
  border-radius:25px;
  text-decoration:none;
}

.btn-ig{
  flex:1;
  text-align:center;
  background:#111;
  color:#fff;
  padding:10px;
  border-radius:25px;
  text-decoration:none;
}

.wa-icon{
  width:28px;
  height:28px;
  fill:white;
}

@media (max-width:768px){

  .sales-widget{
    bottom:18px;
    right:18px;
  }

  .sales-card{
    width:240px;
    padding:16px;
  }

}


