/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #1a1a1a;
  --primary-light: #2d2d2d;
  --accent: #c8102e;
  --accent-hover: #a80d25;
  --text: #2d2d2d;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --bg: #ffffff;
  --bg-light: #f9fafb;
  --bg-dark: #111111;
  --border: #e5e7eb;
  --border-light: #f0f0f0;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.05), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.08);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.2s ease;
  --max-width: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.logo img {
  height: 48px;
  width: auto;
}

.logo-text {
  display: none;
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.nav a:hover {
  color: var(--primary);
  background: var(--bg-light);
}

.nav a.active {
  color: var(--accent);
  background: transparent;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 6px 0;
  z-index: 100;
  opacity: 0;
  transform: translateY(5px);
}

.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  border-radius: 0;
  font-size: 0.85rem;
  color: var(--text-light);
}

.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--primary);
}

.phone-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.85rem;
  margin-left: 8px;
}

.phone-btn:hover {
  background: var(--primary-light);
  color: #fff !important;
}

/* Mobile Menu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  padding: 8px;
}

/* ===== HERO ===== */
.hero {
  background: var(--bg);
  overflow: hidden;
  position: relative;
  min-height: 580px;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 540px;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero-brand {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.hero-content h1 {
  color: var(--text-light);
}

.hero-content p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 460px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-light);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-outline-dark:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

.quick-browse-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.quick-browse {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.quick-browse a {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 50px;
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.quick-browse a i {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.quick-browse a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 53%;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--ph-pos, center center);
}

/* ===== PAGE HERO (for inner pages) ===== */
.page-hero {
  background: var(--primary);
  color: #fff;
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: var(--ph-img, url('/images/hero-car.jpg'));
  background-position: var(--ph-pos, center center);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.12;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  opacity: 0.6;
}

.breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}

.breadcrumb span {
  opacity: 0.5;
}

/* ===== SECTIONS ===== */
.section {
  padding: 70px 0;
}

.section-alt {
  background: var(--bg-light);
}

/* Section Title - centered style */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Section Header Row - left-aligned with "View All" link */
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-label span {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--primary);
}

.section-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.view-all-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.view-all-link:hover {
  color: var(--primary);
}

.view-all-link i {
  font-size: 0.75rem;
}

/* ===== BROWSE BY TYPE ===== */
.type-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.type-card {
  text-align: center;
  padding: 28px 16px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  cursor: pointer;
}

.type-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.type-card .icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.type-card:hover .icon {
  color: var(--primary);
}

.type-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
  color: var(--primary);
}

.type-card span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== CAR LISTING CARDS ===== */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.car-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.car-card:hover {
  box-shadow: var(--shadow-lg);
}

.car-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f5f0eb;
}

.car-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.car-card:hover .car-card-img img {
  transform: scale(1.03);
}

.car-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  z-index: 2;
}

.badge-green { background: #16a34a; }
.badge-red { background: #dc2626; }
.badge-blue { background: #2563eb; }

/* Favorite heart button */
.car-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.car-fav:hover {
  color: var(--accent);
  background: #fff;
}

.car-fav.active {
  color: var(--accent);
}

.car-fav.active i {
  font-weight: 900;
}

/* Image carousel nav */
.car-card-img .c-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 3;
  font-size: 0.7rem;
  color: var(--text);
}

.car-card:hover .c-nav {
  opacity: 1;
}

.c-nav-l { left: 8px; }
.c-nav-r { right: 8px; }

.c-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 3;
}

.c-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}

.c-dot.c-dot-on {
  background: #fff;
}

.car-card-body {
  padding: 16px;
}

.car-card-brand {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.car-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.car-card-specs {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.car-card-meta {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.car-card-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.76rem;
  color: var(--text-light);
}

.car-card-meta i {
  color: var(--text-muted);
  font-size: 0.68rem;
}

.car-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.car-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

.car-price-old {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 400;
  margin-top: 2px;
}

.car-card-footer a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
}

.car-card-footer a:hover {
  color: var(--accent);
}

/* ===== WHY CHOOSE US ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
}

.benefit-card .icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.2rem;
  color: var(--primary);
}

.benefit-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}

.benefit-card p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== BRAND SHOWCASE (premium) ===== */
.brand-showcase {
  padding: 20px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brand-showcase-header {
  text-align: center;
  margin-bottom: 14px;
}

.brand-showcase-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
}

.brand-showcase-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--bs-gap, 48px);
  flex-wrap: wrap;
}

.brand-showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.7;
}

.brand-showcase-item:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.brand-showcase-item img {
  width: auto;
  height: auto;
  max-width: var(--bs-size, 200px);
  max-height: var(--bs-size, 200px);
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.brand-showcase-item:hover img {
  filter: grayscale(0%);
}

.brand-showcase-item span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color 0.2s;
}

.brand-showcase-item:hover span {
  color: var(--primary);
}

/* Legacy make-card (kept for listing page if needed) */
.makes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.make-card {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.make-card:hover {
  box-shadow: var(--shadow-md);
}

.make-card-img {
  height: 120px;
  overflow: hidden;
}

.make-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.make-card:hover .make-card-img img {
  transform: scale(1.03);
}

.make-card-body {
  padding: 14px;
}

.make-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.make-card span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ===== ACCESSORIES ===== */
.accessories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.accessory-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 280px;
  cursor: pointer;
}

.accessory-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.accessory-card:hover img {
  transform: scale(1.05);
}

.accessory-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.15);
}

.accessory-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
}

.accessory-card-overlay span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
}

.accessory-card-overlay h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 4px;
}

/* ===== REVIEWS ===== */
.reviews-header {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-header .stars {
  font-size: 1.4rem;
  color: #f59e0b;
  margin-bottom: 6px;
}

.reviews-header .rating {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

.reviews-header .count {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.reviews-header .platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  font-size: 0.82rem;
  color: #00b67a;
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.review-card .stars {
  color: #f59e0b;
  margin-bottom: 12px;
  font-size: 0.85rem;
}

.review-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.review-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card-author h4 {
  font-size: 0.88rem;
  font-weight: 600;
}

.review-card-author span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

/* ===== ABOUT SECTION ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 0.92rem;
}

.about-pillars {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.pillar {
  flex: 1;
  padding: 18px 14px;
  background: var(--bg-light);
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border);
}

.pillar .icon {
  font-size: 1.2rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.pillar h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 400px;
}

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

/* ===== STATS ===== */
.stats-section {
  background: var(--primary);
  color: #fff;
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item .number {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
}

.stat-item .label {
  font-size: 0.85rem;
  opacity: 0.5;
  margin-top: 4px;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--bg-light);
  padding: 50px 0;
  border-top: 1px solid var(--border);
}

.newsletter .container {
  text-align: center;
  max-width: 480px;
}

.newsletter h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.newsletter p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.88rem;
  outline: none;
  font-family: var(--font);
  background: var(--bg);
}

.newsletter-form input:focus {
  border-color: var(--primary);
}

.newsletter-form button {
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}

.newsletter-form button:hover {
  background: var(--primary-light);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand p {
  font-size: 0.84rem;
  line-height: 1.7;
  margin: 14px 0 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.84rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-col .contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.84rem;
}

.footer-col .contact-item i {
  color: rgba(255,255,255,0.4);
  width: 14px;
  font-size: 0.78rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a {
  margin-left: 20px;
  color: rgba(255,255,255,0.4);
}

.footer-bottom a:hover {
  color: rgba(255,255,255,0.7);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
}

.contact-form h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.contact-form > p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.88rem;
  font-family: var(--font);
  outline: none;
  transition: border-color 0.2s;
  background: var(--bg);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

.contact-info h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-info-item .icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--bg-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 0.9rem;
}

.contact-info-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.84rem;
  color: var(--text-light);
}

.contact-info-item a:hover {
  color: var(--primary);
}

.business-hours {
  margin-top: 28px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.business-hours h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.business-hours .hour-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.84rem;
  color: var(--text-light);
}

.business-hours .hour-row:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.business-hours .closed {
  color: var(--accent);
  font-weight: 500;
}

/* ===== LISTING PAGE ===== */
.listing-section {
  padding: 40px 0 60px;
}

.listing-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 30px;
}

.filter-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 80px;
}

.filter-panel h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary);
}

.filter-group {
  margin-bottom: 16px;
}

.filter-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.filter-group input,
.filter-group select {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.84rem;
  font-family: var(--font);
  outline: none;
  background: var(--bg);
}

.filter-group input:focus,
.filter-group select:focus {
  border-color: var(--primary);
}

.price-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

/* Dual Range Price Slider */
.price-slider-display {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.price-slider-track {
  position: relative;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  margin: 8px 0 4px;
}

.price-slider-fill {
  position: absolute;
  top: 0;
  height: 100%;
  background: #111;
  border-radius: 3px;
  pointer-events: none;
}

.price-slider-input {
  position: absolute;
  top: -6px;
  left: 0;
  width: 100%;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  pointer-events: none;
  height: 18px;
}

.price-slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #111;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
  cursor: pointer;
  pointer-events: all;
  position: relative;
  z-index: 2;
}

.price-slider-input::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #111;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
  cursor: pointer;
  pointer-events: all;
}

.filter-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.filter-actions .btn {
  width: 100%;
  justify-content: center;
  padding: 10px;
  font-size: 0.84rem;
}

.btn-clear {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn-clear:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.listing-results .results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.results-header .count {
  font-size: 0.9rem;
  color: var(--text-light);
}

.results-header .count strong {
  color: var(--primary);
}

.results-header .sort select,
.sort-control select {
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.84rem;
  font-family: var(--font);
  outline: none;
  background: var(--bg);
  cursor: pointer;
}

.sort-control select:focus {
  border-color: var(--primary);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ===== ABOUT PAGE SPECIFIC ===== */
.about-page-section {
  padding: 60px 0;
}

.about-who {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.about-who h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.about-who p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.92rem;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.about-why-card {
  text-align: center;
  padding: 28px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.about-why-card:hover {
  box-shadow: var(--shadow-md);
}

.about-why-card .icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: var(--primary);
}

.about-why-card h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}

.about-why-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* About intro grid */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-intro-text .section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.about-intro-text .section-label span {
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.about-intro-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-intro-text h2 em {
  font-style: normal;
  color: var(--accent);
}

.about-intro-text p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.93rem;
  margin-bottom: 16px;
}

.about-badges {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.about-badge {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 20px;
  text-align: center;
  min-width: 90px;
}

.about-badge-val {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}

.about-badge-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.about-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.about-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.6s ease;
}

.about-intro-img:hover img {
  transform: scale(1.03);
}

/* Team section */
.team-grid-public {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.team-card {
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
}

.team-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--border);
}

.team-card-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  margin: 0 auto 16px;
}

.team-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
}

.team-card .role {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.team-card-link {
  font-size: 0.82rem;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.team-card-link:hover { text-decoration: underline; }

.team-card p {
  font-size: 0.84rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Our Story */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

.legal-content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin: 36px 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 14px;
}

.legal-content ul, .legal-content ol {
  padding-left: 22px;
  margin-bottom: 14px;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content strong {
  color: var(--primary);
  font-weight: 600;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

.story-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.story-card p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.7;
}

.story-card ul {
  list-style: disc;
  padding-left: 18px;
}

.story-card ul li {
  font-size: 0.86rem;
  color: var(--text-light);
  margin-bottom: 6px;
}

/* ===== VEHICLE DETAIL PAGE ===== */
.vehicle-detail {
  padding: 40px 0 60px;
}

.vd-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* Gallery */
.vd-gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #f5f0eb;
  aspect-ratio: 16/10;
  cursor: pointer;
}

.vd-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vd-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
}

.vd-gallery-main:hover .vd-gallery-nav {
  opacity: 1;
}

.vd-gallery-nav:hover {
  background: rgba(0,0,0,0.8);
}

.vd-gallery-prev { left: 12px; }
.vd-gallery-next { right: 12px; }

.vd-gallery-enlarge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 6px 14px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.78rem;
  font-family: var(--font);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.vd-gallery-enlarge:hover {
  background: rgba(0,0,0,0.85);
}

.vd-gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  overflow-x: auto;
}

.vd-thumb {
  flex: 0 0 70px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: var(--transition);
}

.vd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vd-thumb:hover,
.vd-thumb-active {
  opacity: 1;
  border-color: var(--primary);
}

.vd-gallery-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
}

.vd-badges {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vd-badges .car-badge {
  position: static;
  display: inline-block;
}

.vd-condition-tag {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.vd-photo-count {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Tabs */
.vd-tabs {
  margin-top: 24px;
}

.vd-tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
}

.vd-tab-btn {
  padding: 12px 24px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font);
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.vd-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.2s;
}

.vd-tab-btn:hover { color: var(--primary); }

.vd-tab-btn.active {
  color: var(--primary);
}

.vd-tab-btn.active::after {
  background: var(--primary);
}

.vd-tab-panel {
  display: none;
  padding: 24px 0;
}

.vd-tab-panel.active {
  display: block;
}

/* Legacy section card (unused, kept for safety) */
.vd-section-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 24px;
}

.vd-section-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.vd-section-card h3 i {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Specs Table - 2 columns */
.vd-specs-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.vd-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 12px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.84rem;
}

.vd-spec-row:nth-last-child(-n+2) {
  border-bottom: none;
}

.vd-spec-label {
  color: var(--text-light);
}

.vd-spec-value {
  font-weight: 600;
  color: var(--primary);
}

/* Description */
.vd-description-text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
}

/* Dealer */
.vd-dealer-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.vd-dealer-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.vd-dealer-row i {
  width: 14px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.vd-dealer-row a:hover {
  color: var(--primary);
}

/* ===== RIGHT SIDEBAR ===== */
.vd-sidebar {
  position: sticky;
  top: 84px;
}

.vd-price-box {
  margin-bottom: 20px;
}

.vd-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
}

/* Duration-Based Pricing Card */
.vd-duration-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 20px;
}

.vd-duration-card h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.vd-duration-btns {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}

.vd-dur-btn {
  flex: 1;
  padding: 8px 4px;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  color: var(--text-light);
  transition: all 0.15s;
}

.vd-dur-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.vd-dur-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.vd-duration-result {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 14px 16px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.vd-dur-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.vd-dur-price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}

.vd-dur-period {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.vd-dur-disclaimer {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 8px;
  font-style: italic;
}

/* Enquiry Card */
.vd-enquiry-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}

.vd-enquiry-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
}

.vd-form-group {
  margin-bottom: 14px;
}

.vd-form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.vd-form-group input,
.vd-form-group textarea,
.vd-form-group select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 0.86rem;
  font-family: var(--font);
  outline: none;
  background: var(--bg);
  color: var(--text);
}

.vd-form-group input:focus,
.vd-form-group textarea:focus,
.vd-form-group select:focus {
  border-color: var(--primary);
}

.vd-form-group textarea {
  resize: vertical;
  min-height: 70px;
}

.vd-btn-enquiry {
  width: 100%;
  padding: 12px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.vd-btn-enquiry:hover {
  background: var(--primary-light);
}

.vd-contact-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 12px;
}

.vd-btn-call,
.vd-btn-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px;
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.vd-btn-call {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}

.vd-btn-call:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.vd-btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: 1.5px solid #25d366;
}

.vd-btn-whatsapp:hover {
  background: #1ebe57;
  border-color: #1ebe57;
  color: #fff;
}

/* Finance Card */
.vd-finance-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.vd-finance-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vd-finance-card h3 i {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.vd-finance-result {
  text-align: center;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-top: 10px;
}

.vd-finance-result span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.vd-finance-result strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

/* Lightbox */
.vd-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.vd-lightbox-open {
  display: flex;
}

.vd-lightbox img {
  max-width: 85%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.vd-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.vd-lightbox-close:hover {
  background: rgba(255,255,255,0.25);
}

.vd-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.vd-lightbox-nav:hover {
  background: rgba(255,255,255,0.3);
}

.vd-lb-prev { left: 24px; }
.vd-lb-next { right: 24px; }

/* Vehicle detail responsive */
@media (max-width: 1024px) {
  .vd-layout {
    grid-template-columns: 1fr 300px;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .vd-layout {
    grid-template-columns: 1fr;
  }

  .vd-sidebar {
    position: static;
  }

  .vd-specs-table {
    grid-template-columns: 1fr;
  }

  .vd-gallery-thumbs {
    gap: 6px;
  }

  .vd-thumb {
    flex: 0 0 60px;
    height: 45px;
  }
}

/* ===== ACCESSORIES PAGE ===== */
.accessories-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
    padding: 50px 0 30px;
    text-align: center;
    align-items: center;
  }

  .hero-btns {
    flex-wrap: nowrap;
    width: 100%;
  }

  .hero-btns .btn {
    flex: 1;
    justify-content: center;
    padding: 12px 16px;
    font-size: 0.84rem;
  }

  .hero-image {
    position: relative;
    width: 100%;
    height: 320px;
    clip-path: polygon(0 8%, 100% 0, 100% 100%, 0% 100%);
  }

  .type-grid,
  .makes-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .about-intro-grid {
    gap: 40px;
  }

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

  .listing-layout {
    grid-template-columns: 220px 1fr;
  }

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

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

@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 16px;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
  }

  .nav.nav-open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 12px 16px;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 16px;
    display: none;
  }

  .nav-dropdown.open .dropdown-menu {
    display: block;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-brand {
    font-size: 1.6rem;
  }

  .hero-content {
    padding: 40px 20px;
  }

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

  .brand-showcase-row {
    gap: 28px;
  }

  .brand-showcase-item img {
    max-width: calc(var(--bs-size, 200px) * 0.75);
    max-height: calc(var(--bs-size, 200px) * 0.75);
  }

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

  .benefits-grid,
  .about-why-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid,
  .accessories-grid {
    grid-template-columns: 1fr;
  }

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

  .about-image {
    height: 250px;
  }

  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-intro-img {
    order: -1;
    aspect-ratio: 16 / 9;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

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

  .listing-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: static;
  }

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

  .newsletter-form {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .about-pillars {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-brand {
    font-size: 1.3rem;
  }

  .section {
    padding: 50px 0;
  }

  .type-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* ===== BLOG ===== */
.blog-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  transition: box-shadow 0.3s;
}
.blog-featured:hover { box-shadow: var(--shadow-lg); }
.blog-featured-img { height: 320px; overflow: hidden; }
.blog-featured-img img { width:100%; height:100%; object-fit:cover; }
.blog-featured-content { padding: 32px 28px 32px 0; display:flex; flex-direction:column; justify-content:center; }
.blog-featured-content h2 { font-size:1.6rem; font-weight:700; color:var(--primary); margin:10px 0; line-height:1.3; }
.blog-featured-content p { color:var(--text-light); font-size:0.9rem; line-height:1.6; margin-bottom:14px; }

.blog-cat {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(233,69,96,0.1);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.blog-meta span { display:flex; align-items:center; gap:4px; }
.blog-meta i { font-size: 0.72rem; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-img { position:relative; height:200px; overflow:hidden; }
.blog-card-img img { width:100%; height:100%; object-fit:cover; }
.blog-cat-badge {
  position:absolute; top:12px; left:12px;
  padding: 4px 10px; background: var(--accent); color:#fff;
  border-radius: 50px; font-size:0.7rem; font-weight:600;
}
.blog-card-body { padding: 20px; }
.blog-card-body h3 { font-size:1.05rem; font-weight:700; color:var(--primary); margin-bottom:8px; line-height:1.3; }
.blog-card-body p { font-size:0.84rem; color:var(--text-light); line-height:1.5; margin-bottom:12px; }

/* Blog Post Page */
.blog-post-section { padding: 40px 0 60px; }
.blog-post-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
}

.blog-post-meta-bar {
  display:flex; align-items:center; gap:16px; margin-bottom:24px; flex-wrap:wrap;
}

.blog-post-cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
  max-height: 450px;
}
.blog-post-cover img { width:100%; height:100%; object-fit:cover; }

.blog-post-content {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
}
.blog-post-content h1, .blog-post-content h2, .blog-post-content h3 {
  color: var(--primary); margin: 24px 0 12px; font-weight:700;
}
.blog-post-content h2 { font-size:1.4rem; }
.blog-post-content h3 { font-size:1.15rem; }
.blog-post-content p { margin-bottom: 16px; }
.blog-post-content img { max-width:100%; border-radius:8px; margin:16px 0; }
.blog-post-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  background: var(--bg-light);
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  font-style: italic;
  color: var(--text-light);
}
.blog-post-content ul, .blog-post-content ol {
  padding-left: 24px; margin-bottom: 16px;
}
.blog-post-content li { margin-bottom: 6px; }

.blog-post-tags { display:flex; gap:8px; flex-wrap:wrap; margin-top:28px; padding-top:20px; border-top:1px solid var(--border); }
.blog-tag {
  display:inline-flex; align-items:center; gap:4px;
  padding: 5px 12px; background:var(--bg-light); border:1px solid var(--border);
  border-radius:50px; font-size:0.78rem; color:var(--text-light);
}
.blog-tag i { font-size:0.65rem; color:var(--text-muted); }

.blog-post-share {
  display:flex; align-items:center; gap:14px; margin-top:20px;
  padding-top:20px; border-top:1px solid var(--border);
  font-size:0.88rem; color:var(--text-light);
}
.share-btns { display:flex; gap:8px; }
.share-btn {
  width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:var(--bg-light); border:1px solid var(--border); color:var(--text-light);
  font-size:0.85rem; transition:var(--transition);
}
.share-btn:hover { background:var(--accent); color:#fff; border-color:var(--accent); }

/* Blog Sidebar */
.blog-post-sidebar { position:sticky; top:84px; }
.blog-sidebar-card {
  background:var(--bg); border:1px solid var(--border); border-radius:var(--radius-lg);
  padding:22px; margin-bottom:20px;
}
.blog-sidebar-card h3 { font-size:1rem; font-weight:700; color:var(--primary); margin-bottom:16px; padding-bottom:12px; border-bottom:1px solid var(--border); }

.blog-sidebar-item {
  display:flex; gap:12px; padding:10px 0; border-bottom:1px solid #f3f4f6; align-items:center;
}
.blog-sidebar-item:last-child { border-bottom:none; }
.blog-sidebar-item img { width:60px; height:44px; border-radius:6px; object-fit:cover; flex-shrink:0; }
.blog-sidebar-item-placeholder {
  width:60px; height:44px; border-radius:6px; background:#f0f0f0;
  display:flex; align-items:center; justify-content:center; color:#ccc; flex-shrink:0;
}
.blog-sidebar-item h4 { font-size:0.84rem; font-weight:600; color:var(--primary); line-height:1.3; }
.blog-sidebar-item span { font-size:0.75rem; color:var(--text-muted); }

.blog-sidebar-cat {
  display:block; padding:8px 0; border-bottom:1px solid #f3f4f6;
  font-size:0.86rem; color:var(--text-light);
}
.blog-sidebar-cat:last-child { border-bottom:none; }
.blog-sidebar-cat:hover { color:var(--accent); }

.blog-sidebar-cta {
  background:linear-gradient(135deg,var(--primary),var(--primary-light));
  color:#fff; border-radius:var(--radius-lg); padding:24px; text-align:center;
}
.blog-sidebar-cta h3 { font-size:1.05rem; font-weight:700; margin-bottom:8px; }
.blog-sidebar-cta p { font-size:0.84rem; opacity:0.7; margin-bottom:16px; }

@media (max-width: 768px) {
  .blog-featured { grid-template-columns:1fr; }
  .blog-featured-content { padding:20px; }
  .blog-grid { grid-template-columns:1fr; }
  .blog-post-layout { grid-template-columns:1fr; }
  .blog-post-sidebar { position:static; }
}

/* ===== SCROLL ANIMATIONS =====  */
.animate-target {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-target.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.type-grid .animate-target:nth-child(2) { transition-delay: 0.06s; }
.type-grid .animate-target:nth-child(3) { transition-delay: 0.12s; }
.type-grid .animate-target:nth-child(4) { transition-delay: 0.18s; }
.type-grid .animate-target:nth-child(5) { transition-delay: 0.24s; }
.type-grid .animate-target:nth-child(6) { transition-delay: 0.3s; }

.cars-grid .animate-target:nth-child(2) { transition-delay: 0.08s; }
.cars-grid .animate-target:nth-child(3) { transition-delay: 0.16s; }
.benefits-grid .animate-target:nth-child(2) { transition-delay: 0.08s; }
.benefits-grid .animate-target:nth-child(3) { transition-delay: 0.16s; }
.benefits-grid .animate-target:nth-child(4) { transition-delay: 0.24s; }

/* ===== STICKY HEADER SCROLL EFFECT ===== */
.header {
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header-scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
#whatsappFloat {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}

#whatsappFloat:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
  color: #fff;
}

/* Pulse animation */
#whatsappFloat::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2s ease-out infinite;
  z-index: -1;
}

@keyframes waPulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ===== FAQ ACCORDION ===== */
.faq-section {
  padding: 70px 0;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg);
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font);
  gap: 12px;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question i {
  font-size: 0.75rem;
  transition: transform 0.3s;
  color: var(--text-muted);
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.7;
}
