/* ============================================
   THE CENTRAL HONDA - Main Stylesheet
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&family=Barlow+Condensed:wght@400;500;600;700;800&display=swap");

:root {
  --honda-red: #cc0000;
  --honda-dark-red: #990000;
  --honda-black: #111111;
  --honda-dark: #1a1a1a;
  --honda-gray: #2d2d2d;
  --honda-mid-gray: #555555;
  --honda-light-gray: #f4f4f4;
  --honda-silver: #e8e8e8;
  --honda-white: #ffffff;
  --honda-gold: #c9a84c;
  --font-display:  sans-serif;
  --font-body:  sans-serif;
  --font-condensed:  sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--honda-black);
  background: var(--honda-white);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--honda-red);
  border-radius: 3px;
}

/* ============================================
   TOPBAR
   ============================================ */
.topbar {
  background: var(--honda-black);
  padding: 8px 0;
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 0.5px;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.topbar-left {
  display: flex;
  gap: 24px;
  color: #aaa;
}
.topbar-left a {
  color: #aaa;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.topbar-left a:hover {
  color: var(--honda-red);
}
.topbar-right {
  display: flex;
  gap: 16px;
  align-items: center;
}
.topbar-right a {
  color: #aaa;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  font-size: 12px;
}
.topbar-right a:hover {
  color: var(--honda-white);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background: var(--honda-white);
  padding: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 10px 0;
}
.logo-img {
  width: 150px;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 0;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 20px 16px;
  text-decoration: none;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--honda-black);
  transition: var(--transition);
  position: relative;
}
.nav-links > li > a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--honda-red);
  transition: var(--transition);
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
  width: 100%;
}
.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--honda-red);
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 200px;
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--honda-red);
  z-index: 100;
}
.nav-links > li:hover .dropdown {
  display: block;
}
.dropdown a {
  display: block;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--honda-black);
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 1px solid #f0f0f0;
}
.dropdown a:hover {
  background: var(--honda-light-gray);
  color: var(--honda-red);
  padding-left: 24px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-test-drive {
  background: var(--honda-red);
  color: white;
  padding: 10px 20px;
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}
.btn-test-drive:hover {
  background: var(--honda-dark-red);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--honda-black);
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 75vh;
  
  overflow: hidden;
  background: var(--honda-black);
  user-select: none;
}
.hero-slides {
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ── LEFT / RIGHT NAV BUTTONS ── */
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  background: rgba(0, 0, 0, 0.35);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.25s,
    border-color 0.25s,
    transform 0.25s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-nav:hover {
  background: var(--honda-red);
  border-color: var(--honda-red);
  transform: translateY(-50%) scale(1.08);
}
.hero-prev {
  left: 24px;
}
.hero-next {
  right: 24px;
}

/* ── DOTS ── */
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 20;
  background: rgba(0, 0, 0, 0.28);
  padding: 8px 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  flex-shrink: 0;
}
.hero-dot:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: scale(1.2);
}
.hero-dot.active {
  background: var(--honda-red);
  width: 26px;
  border-radius: 4px;
}

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

  .hero-nav {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }
  .hero-prev {
    left: 10px;
  }
  .hero-next {
    right: 10px;
  }
  .hero-dots {
    bottom: 12px;
    padding: 6px 10px;
    gap: 6px;
  }
  .hero-dot {
    width: 6px;
    height: 6px;
  }
  .hero-dot.active {
    width: 18px;
  }

}
@media (max-width: 480px) {
  .hero {
    height: 60vw;
   
  }
  .hero-nav {
    display: none;
  }
}
/* ============================================
   SECTION COMMON
   ============================================ */
section {
  padding: 80px 0;
}
.elv-hero{
  padding: 0px 0 !important;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--honda-red);
  margin-bottom: 12px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--honda-red);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: var(--honda-black);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.section-subtitle {
  font-size: 16px;
  color: var(--honda-mid-gray);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

/* ============================================
   CAR CARDS
   ============================================ */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.car-card {
  background: white;
  border: 1px solid var(--honda-silver);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.car-card:hover {
  transform: translateY(-6px);
 
}
.car-card-image {
  background: var(--honda-light-gray);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.car-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.car-card:hover .car-card-image img {
  transform: scale(1.05);
}
.car-tag {
  position: absolute;
  top: 12px;
  left: 0;
  background: var(--honda-red);
  color: white;
  padding: 4px 12px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.car-card-body {
  padding: 20px;
}
.car-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--honda-black);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.car-tagline {
  font-size: 13px;
  color: var(--honda-mid-gray);
  margin-bottom: 14px;
  font-weight: 300;
}
.car-price {
  font-family: var(--font-condensed);
  font-size: 15px;
  color: var(--honda-black);
  font-weight: 600;
  margin-bottom: 16px;
}
.car-price span {
  color: var(--honda-red);
  font-size: 16px;
  font-weight: 700;
}
.car-specs {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--honda-light-gray);
  padding: 8px 12px;
  flex: 1;
  min-width: 70px;
}
.spec-val {
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 700;
  color: var(--honda-black);
}
.spec-label {
  font-size: 10px;
  color: var(--honda-mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.car-actions {
  display: flex;
  gap: 10px;
}
.btn-sm {
  flex: 1;
  padding: 10px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-sm-primary {
  background: var(--honda-red);
  color: white;
}
.btn-sm-primary:hover {
  background: var(--honda-dark-red);
}
.btn-sm-outline {
  background: white;
  color: var(--honda-black);
  border: 2px solid var(--honda-silver);
}
.btn-sm-outline:hover {
  border-color: var(--honda-black);
  background: var(--honda-light-gray);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  background: var(--honda-black);
  color: white;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
}
.feature-item {
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  text-align: center;
}
.feature-item:hover {
  background: rgba(204, 0, 0, 0.1);
  border-color: var(--honda-red);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--honda-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.feature-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  line-height: 1.6;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--honda-red);
  padding: 20px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.stat-item:last-child {
  border-right: none;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 33px;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.stat-num sup {
  font-size: 24px;
}
.stat-label {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}
/* ============================================
   TESTIMONIALS SLIDER
   ============================================ */
.testimonials-section {
  background: var(--honda-light-gray);
  padding: 80px 0;
  overflow: hidden;
}

.testi-slider-wrap {
  position: relative;
  padding: 0 56px;
}

/* NAV BUTTONS */
.testi-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  background: white;
  border: 1.5px solid #e0e0e0;
  color: var(--honda-black);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.testi-nav:hover {
  background: var(--honda-red);
  border-color: var(--honda-red);
  color: white;
}
.testi-prev { left: 0; }
.testi-next { right: 0; }

/* TRACK */
.testi-track-outer {
  overflow: hidden;
  width: 100%;
}
.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* CARDS */
.testimonial-card {
  background: white;
  padding: 32px 28px;
  border-bottom: 3px solid var(--honda-red);
  box-shadow: var(--shadow-sm);
  flex: 0 0 calc(33.333% - 16px);
  min-width: 0;
  transition: box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testi-stars {
  color: var(--honda-gold);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.quote-icon {
  font-size: 56px;
  color: var(--honda-red);
  font-family: Georgia, serif;
  line-height: 0.5;
  margin-bottom: 18px;
  opacity: 0.25;
}
.testimonial-text {
  font-size: 14px;
  color: var(--honda-gray);
  line-height: 1.75;
  font-style: italic;
  font-weight: 300;
  flex: 1;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #f0f0f0;
  padding-top: 18px;
}
.author-avatar {
  width: 46px;
  height: 46px;
  background: var(--honda-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: white;
  border-radius: 50%;
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--honda-black);
}
.author-city {
  font-size: 12px;
  color: var(--honda-mid-gray);
  margin-top: 2px;
}

/* DOTS */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.testi-dot:hover { background: #999; }
.testi-dot.active {
  background: var(--honda-red);
  width: 24px;
  border-radius: 4px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
  }
}
@media (max-width: 600px) {
  .testi-slider-wrap { padding: 0 44px; }
  .testimonial-card {
    flex: 0 0 100%;
  }
  .testi-nav { width: 38px; height: 38px; font-size: 0.85rem; }

  .testi-slider-wrap { padding: 0 0; }
  .testimonial-card { flex: 0 0 100%; }
  .testi-nav { display: none; }

}
/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--honda-black) 0%, #2a0000 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(204, 0, 0, 0.08);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text {
  flex: 1;
  min-width: 280px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 30px);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.cta-title span {
  color: var(--honda-red);
}
.cta-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 300;
}
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--honda-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: white;
  clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--honda-red);
  color: white;
}
.footer-col-title {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--honda-red);
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  content: "→";
  font-size: 10px;
  opacity: 0;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--honda-red);
  padding-left: 6px;
}
.footer-links a:hover::before {
  opacity: 1;
}
.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}
.footer-contact-item .icon {
  color: var(--honda-red);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: gap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: var(--transition);
}
.footer-bottom-links a:hover {
  color: var(--honda-red);
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--honda-black);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  left: -5%;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--honda-red);
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
  opacity: 0.08;
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-decoration: none;
  font-family: var(--font-condensed);
}
.breadcrumb a:hover {
  color: var(--honda-red);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}
.breadcrumb .current {
  color: var(--honda-red);
  font-size: 13px;
  font-family: var(--font-condensed);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.page-hero-title span {
  color: var(--honda-red);
}
.page-hero-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 300;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--honda-black);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--honda-silver);
  background: white;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--honda-black);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--honda-red);
}
.form-control::placeholder {
  color: #aaa;
}
select.form-control {
  cursor: pointer;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ============================================
   TABS
   ============================================ */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--honda-silver);
  margin-bottom: 32px;
  overflow-x: auto;
}
.tab-btn {
  padding: 12px 24px;
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--honda-mid-gray);
  border: none;
  background: none;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
}
.tab-btn.active,
.tab-btn:hover {
  color: var(--honda-red);
  border-bottom-color: var(--honda-red);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}

/* ============================================
   ACCORDION
   ============================================ */
.accordion-item {
  border: 1px solid var(--honda-silver);
  margin-bottom: 8px;
}
.accordion-header {
  width: 100%;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--honda-black);
  transition: var(--transition);
}
.accordion-header:hover {
  color: var(--honda-red);
  background: var(--honda-light-gray);
}
.accordion-header.active {
  color: var(--honda-red);
  border-bottom: 1px solid var(--honda-silver);
}
.accordion-icon {
  font-size: 20px;
  transition: var(--transition);
  flex-shrink: 0;
}
.accordion-header.active .accordion-icon {
  transform: rotate(45deg);
}
.accordion-body {
  display: none;
  padding: 20px 24px;
  font-size: 14px;
  color: var(--honda-mid-gray);
  line-height: 1.7;
}
.accordion-body.open {
  display: block;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--honda-black);
  aspect-ratio: 1;
}
.gallery-item:nth-child(3n + 1) {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    opacity 0.3s;
}
.gallery-item:hover img {
  transform: scale(1.08);
  opacity: 0.7;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-zoom {
  width: 48px;
  height: 48px;
  background: var(--honda-red);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   FLOATING CONTACT
   ============================================ */
.floating-contact {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.float-btn:hover {
  transform: scale(1.1);
}
.float-whatsapp {
  background: #25d366;
  color: white;
}
.float-call {
  background: var(--honda-red);
  color: white;
}

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

/* ── QUICK ACTIONS ── */
.qa-section {
  padding: 0;
  background: var(--honda-red);
}
.qa-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.qa-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  text-decoration: none;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  transition: background 0.25s;
  cursor: pointer;
}
.qa-item:last-child {
  border-right: none;
}
.qa-item:hover {
  background: rgba(0, 0, 0, 0.18);
}
.qa-icon {
  font-size: 26px;
  color: white;
  opacity: 0.9;
  flex-shrink: 0;
  width: 30px;
  text-align: center;
}
.qa-title {
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}
.qa-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.68);
  margin-top: 2px;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 20px;
  }
}
.dd-arrow{
  display: none;
}
@media (max-width: 768px) {
  .dd-arrow{
    display:block;
  }
  .fa-chevron-down{
    display:none !important;
  }
  /* Quick Actions mobile */
  .qa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .qa-item {
    padding: 16px 18px;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .qa-item:nth-child(1),
  .qa-item:nth-child(2) {
    border-right: none;
  }
  .qa-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.18);
  }
  .qa-item:nth-child(3),
  .qa-item:nth-child(4) {
    border-bottom: none;
  }
  .qa-icon {
    font-size: 22px;
    width: 24px;
  }
  .qa-title {
    font-size: 11px;
  }
  .qa-sub {
    display: none;
  }
  .topbar {
    display: none;
  }

  /* ── Sidebar Drawer ── */
  .nav-links {
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    position: fixed;
    top: 0;
    right: 0;
    width: min(290px, 84vw);
    height: 100%;
    background: #111;
    z-index: 1001;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 64px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -6px 0 30px rgba(0,0,0,0.35);
  }
  .nav-links.open {
    transform: translateX(0);
  }

  /* Backdrop overlay */


  /* Nav items */
  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    padding: 15px 22px;
    color: #fff;
    letter-spacing: 0.3px;
  }
  .nav-links > li > a::after {
    display: none;
  }
  /* Dropdown arrow */
  .nav-links > li > a .dd-arrow {
    font-size: 18px;
    line-height: 1;
    color: rgba(255,255,255,0.4);
    transition: transform 0.22s ease, color 0.2s;
    display: inline-block;
    pointer-events: none;
    margin-left: auto;
    padding-left: 8px;
  }

  /* Dropdown items */
  .dropdown {
    display: none !important;
    position: static !important;
    box-shadow: none !important;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
    overflow: hidden;
    min-width: unset !important;
    border-top-color: rgba(255,255,255,0.06) !important;
    z-index: auto !important;
  }
  .dropdown[style*="block"] {
    display: block !important;
  }
  .dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    padding: 11px 22px 11px 34px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color 0.15s, background 0.15s;
  }
  .dropdown a:last-child {
    border-bottom: none;
  }
  .dropdown a:hover {
    background: rgba(255,255,255,0.05);
    color: #fff;
    padding-left: 38px;
  }
  .dropdown a i {
    width: 14px;
    text-align: center;
  }

  /* Hamburger — stays visible above sidebar */
  .hamburger {
    display: flex;
    z-index: 1002;
    position: relative;
  }
  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .hamburger.open span {
    background: var(--honda-black);
  }
  .nav-cta {
    display: none;
  }
  .hero {
    height: 20vh;
  }
  .hero-slide-content {
    padding: 0 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:nth-child(3n + 1) {
    grid-column: span 1;
    aspect-ratio: 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  section {
    padding: 56px 0;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cars-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   UTILITY
   ============================================ */
.text-red {
  color: var(--honda-red);
}
.text-center {
  text-align: center;
}
.mt-40 {
  margin-top: 40px;
}
.bg-light {
  background: var(--honda-light-gray);
}
.bg-dark {
  background: var(--honda-black);
  color: white;
}
.divider {
  height: 1px;
  background: var(--honda-silver);
  margin: 32px 0;
}
.badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--honda-red);
  color: white;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.badge-gold {
  background: var(--honda-gold);
}
.badge-dark {
  background: var(--honda-black);
}

/* Grid helpers */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

/* Animate on scroll */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Table */
.table-wrap {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th {
  background: var(--honda-black);
  color: white;
  padding: 14px 18px;
  font-family: var(--font-condensed);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
}
td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--honda-silver);
  font-size: 14px;
}
tr:hover td {
  background: var(--honda-light-gray);
}

/* Car detail page specifics */
.car-detail-hero {
  background: var(--honda-black);
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.car-detail-img {
  max-width: 100%;
  height: auto;
}
.color-picker {
  display: flex;
  gap: 12px;
  margin: 16px 0;
}
.color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: var(--transition);
}
.color-swatch.active,
.color-swatch:hover {
  border-color: var(--honda-red);
  transform: scale(1.15);
}

/* ============================================
   ABOUT SECTION (index.html)
   ============================================ */
.about-section {
  padding: 72px 0;
  background: white;
}

.about-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 56px;
}
.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.about-eyebrow-line {
  width: 36px;
  height: 3px;
  background: var(--honda-red);
  flex-shrink: 0;
}
.about-eyebrow span {
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--honda-red);
}
.about-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--honda-black);
  line-height: 1.05;
  margin-bottom: 18px;
}
.about-title span {
  color: var(--honda-red);
}

.about-desc {
  font-size: 0.95rem;
  color: var(--honda-mid-gray);
  line-height: 1.8;
  margin-bottom: 14px;
  font-weight: 300;
}
.about-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.about-mini-stat {
  background: var(--honda-light-gray);
  padding: 18px 16px;
  border-left: 3px solid var(--honda-red);
}
.ams-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--honda-red);
  line-height: 1;
}
.ams-lbl {
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
  margin-top: 4px;
}

/* Image side */
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--honda-red);
  padding: 14px 20px;
}
.aib-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.aib-lbl {
  font-family: var(--font-condensed);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 2px;
}

/* Divider */
.about-divider {
  width: 100%;
  height: 1px;
  background: #eee;
  margin-bottom: 52px;
}

/* Value cards */
.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.about-val-card {
  padding: 28px 22px;
  border: 1px solid #eee;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.about-val-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--honda-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.about-val-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.about-val-card:hover::after {
  transform: scaleX(1);
}

.avc-icon {
  width: 44px;
  height: 44px;
  background: #fff0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.avc-icon i {
  color: var(--honda-red);
  font-size: 1.2rem;
}
.avc-title {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--honda-black);
  margin-bottom: 8px;
}
.avc-desc {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .about-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-img-wrap {
    order: -1;
  }
  .about-img-wrap img {
    height: 300px;
  }
  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .about-mini-stats {
    gap: 8px;
  }
  .ams-num {
    font-size: 1.5rem;
  }
  .about-values {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .about-val-card {
    padding: 20px 16px;
  }
}

.btn-primary {
  background: var(--honda-red);
  color: white;
  padding: 14px 32px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 888;
}
.btn-primary:hover {
  background: var(--honda-dark-red);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(204,0,0,0.4);
}
.cta-actions .btn-outline {
  background: transparent;
  color: white;
  padding: 14px 32px;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid white;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 999;
}
.cta-actions .btn-outline:hover {
  background: white;
  color: var(--honda-red);
}
.btn-primary i {
  font-size: 14px;
}

/* ============================================
   OFFERS BADGE & MODAL
   ============================================ */
.offers-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: white;
  border: 1.5px solid var(--honda-red);
  color: var(--honda-red);
  padding: 4px 10px;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: var(--transition);
  z-index: 2;
}
.offers-badge:hover {
  background: var(--honda-red);
  color: white;
}
.offers-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Modal Overlay */
.offer-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9000;
  align-items: center;
  justify-content: center;
}
.offer-modal-overlay.active {
  display: flex;
}
.offer-modal {
  background: white;
  border-radius: 12px;
  padding: 48px 44px 44px;
  width: 90%;
  max-width: 520px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  animation: modalSlideIn 0.25s ease;
}
@keyframes modalSlideIn {
  from { transform: translateY(24px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.offer-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 22px;
  color: #555;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  transition: color 0.2s;
}
.offer-modal-close:hover { color: var(--honda-red); }
.offer-modal-eyebrow {
  font-size: 16px;
  color: #333;
  font-weight: 400;
  margin-bottom: 6px;
}
.offer-modal-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--honda-black);
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 6px;
}
.offer-modal-name {
  font-size: 15px;
  color: #444;
  font-weight: 400;
  margin-bottom: 28px;
}
.offer-modal-divider {
  border: none;
  border-top: 1px solid #e8e8e8;
  margin-bottom: 22px;
}
.offer-modal-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  color: #333;
  font-weight: 400;
}
.offer-modal-benefit svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: #888;
}

@media (max-width: 768px) {
  .btn-primary {
    padding: 12px 24px;
    font-size: 14px;
  }
  .offer-modal {
    padding: 36px 24px 28px;
  }
  .offer-modal-amount {
    font-size: 36px;
  }
}