/* ================================================================
   Machanchu Motors – Frontend Stylesheet
   Color Palette: Crimson Red (#C8102E) | Black | White
   Fonts: Poppins, Montserrat
================================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --gold:       #C8102E;
  --gold-dark:  #A00E26;
  --gold-light: #E8213E;
  --black:      #0A0A0A;
  --dark:       #1A1A1A;
  --dark-gray:  #2D2D2D;
  --mid-gray:   #555555;
  --light-gray: #F5F5F5;
  --white:      #FFFFFF;
  --text:       #333333;
  --text-light: #777777;
  --font-main:  'Poppins', sans-serif;
  --font-head:  'Montserrat', sans-serif;
  --shadow:     0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: all 0.3s ease;

  /* Theme-aware tokens (light mode defaults) — brand-dark sections
     like the navbar, hero, footer and services stay dark in both
     modes; these tokens only drive the sections that flip. */
  --page-bg:       var(--white);
  --surface:       var(--white);
  --surface-alt:   var(--light-gray);
  --heading-color: var(--dark);
  --body-text:     var(--text);
  --muted-text:    var(--text-light);
  --card-border:   #ececec;
  --input-border:  #e0e0e0;
}

[data-bs-theme="dark"] {
  --page-bg:       var(--black);
  --surface:       #161616;
  --surface-alt:   #1E1E1E;
  --heading-color: #F5F5F5;
  --body-text:     #D0D3D9;
  --muted-text:    #9CA3AF;
  --card-border:   #2A2A2A;
  --input-border:  #333333;
  --shadow:        0 4px 20px rgba(0,0,0,0.4);
  --shadow-lg:     0 8px 40px rgba(0,0,0,0.55);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 15px;
  color: var(--body-text);
  background: var(--page-bg);
  line-height: 1.7;
  transition: background 0.25s ease, color 0.25s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.3;
}

/* Bootstrap utilities used inline on public pages — make them
   theme-aware too, since Bootstrap's own dark mode doesn't
   remap literal .bg-light / .text-dark utility classes. */
[data-bs-theme="dark"] .bg-light { background: var(--surface-alt) !important; }
[data-bs-theme="dark"] .text-dark { color: var(--body-text) !important; }

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }

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

/* ── Typography Utilities ───────────────────────────────────── */
.text-gold  { color: var(--gold) !important; }
.bg-gold    { background: var(--gold) !important; }
.bg-dark-v  { background: var(--dark) !important; }

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--heading-color);
  position: relative;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--muted-text);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.underline-gold {
  display: inline-block;
  position: relative;
  padding-bottom: 0.5rem;
}
.underline-gold::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
}
.underline-gold.text-center::after { left: 50%; transform: translateX(-50%); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
  padding: 0.7rem 2rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  font-family: var(--font-main);
  letter-spacing: 0.5px;
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,16,46,0.4);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 0.7rem 2rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-dark-v {
  background: var(--dark);
  color: var(--white);
  border: 2px solid var(--dark);
  padding: 0.7rem 2rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-dark-v:hover {
  background: var(--dark-gray);
  color: var(--gold);
  border-color: var(--dark-gray);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white) !important;
  border: none;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  font-size: 0.9rem;
}
.btn-whatsapp:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

/* ── Top Bar ────────────────────────────────────────────────── */
.top-bar {
  background: var(--dark);
  color: #ccc;
  font-size: 0.82rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(200,16,46,0.3);
}
.top-bar a { color: #ccc; }
.top-bar a:hover { color: var(--gold); }
.social-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #ccc;
  font-size: 0.75rem;
  margin-left: 6px;
  transition: var(--transition);
}
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ── Navigation ─────────────────────────────────────────────── */
.main-nav {
  background: #0D0D0D;
  padding: 0;
  border-bottom: 2px solid var(--gold);
  transition: var(--transition);
  z-index: 1000;
}
.main-nav.scrolled {
  background: #0D0D0D;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.navbar-brand { padding: 0.8rem 0; }
.brand-text {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 1px;
}
.brand-logo {
  height: 50px;
  max-height: 50px;
  width: auto;
  filter: brightness(1.05);
}

.main-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 1.5rem 1rem !important;
  position: relative;
  transition: var(--transition);
}
.main-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  color: var(--gold) !important;
}
.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
  width: 70%;
}
.nav-cta { margin-left: 1rem; }

/* ── Theme Toggle ───────────────────────────────────────────── */
.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.theme-toggle-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: rotate(15deg);
}

/* ── Hero Slider ────────────────────────────────────────────── */
.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}
.hero-slide {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transform: scale(1.05);
  animation: heroZoom 8s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 700px;
}
.hero-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease forwards;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.5rem;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}
.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-size: 1rem;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Carousel customization */
.hero-slider .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: 2px solid transparent;
}
.hero-slider .carousel-indicators .active {
  background: var(--gold);
  transform: scale(1.3);
}
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
  width: 50px;
  height: 50px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  margin: 0 1rem;
}

/* ── Sections General ───────────────────────────────────────── */
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3rem 0; }

/* ── About Section ──────────────────────────────────────────── */
.about-section { background: var(--surface); }
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image-wrap img { border-radius: var(--radius-lg); }
.about-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
}
.about-badge .number { font-size: 2rem; display: block; font-family: var(--font-head); }
.about-badge .label  { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; }

.feature-list { list-style: none; padding: 0; }
.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.feature-list li i { color: var(--gold); font-size: 1.1rem; min-width: 20px; }

/* ── Vehicle Cards ──────────────────────────────────────────── */
.section-vehicles { background: var(--surface-alt); }

.vehicle-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.vehicle-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.vehicle-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vehicle-card:hover .vehicle-card-img img { transform: scale(1.06); }

.vehicle-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 1;
}
.badge-status {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge-available { background: #22C55E; color: #fff; }
.badge-sold      { background: #EF4444; color: #fff; }
.badge-reserved  { background: #F59E0B; color: #fff; }
.badge-featured  { background: var(--gold); color: var(--white); }

.vehicle-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.vehicle-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.vehicle-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-head);
  margin-bottom: 0.75rem;
}
.vehicle-price .negotiable {
  font-size: 0.7rem;
  color: var(--muted-text);
  font-weight: 400;
  font-family: var(--font-main);
  margin-left: 0.25rem;
}
.vehicle-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: var(--muted-text);
}
.vehicle-spec-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.vehicle-spec-item i { color: var(--gold); font-size: 0.85rem; min-width: 14px; }

.vehicle-card-footer {
  padding: 0 1.25rem 1.25rem;
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
}
.vehicle-card-footer .btn { flex: 1; font-size: 0.82rem; padding: 0.5rem; }

/* ── Services Section ───────────────────────────────────────── */
.section-services { background: var(--dark); }
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,16,46,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}
.service-card:hover {
  background: rgba(200,16,46,0.08);
  border-color: var(--gold);
  transform: translateY(-6px);
}
.service-icon {
  width: 70px;
  height: 70px;
  background: rgba(200,16,46,0.12);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--white);
}
.service-card h4 { color: var(--white); font-size: 1.05rem; margin-bottom: 0.75rem; }
.service-card p  { color: rgba(255,255,255,0.65); font-size: 0.88rem; line-height: 1.6; }

/* ── Statistics Counter ─────────────────────────────────────── */
.section-stats { background: var(--gold); }
.stat-item { text-align: center; }
.stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  font-family: var(--font-head);
  color: var(--white);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}
.stat-icon { font-size: 1.5rem; color: rgba(255,255,255,0.6); margin-bottom: 0.5rem; }

/* ── Testimonials ───────────────────────────────────────────── */
.section-testimonials { background: var(--surface); }
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
}
.testimonial-text {
  font-style: italic;
  color: var(--muted-text);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  line-height: 1.8;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testimonial-avatar-initial {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author h6 { margin: 0; font-size: 0.9rem; font-weight: 700; color: var(--heading-color); }
.testimonial-author small { color: var(--muted-text); font-size: 0.78rem; }
.quote-icon { font-size: 2.5rem; color: var(--gold); opacity: 0.3; line-height: 1; margin-bottom: 0.5rem; }

/* ── Blog Section ───────────────────────────────────────────── */
.section-blog { background: var(--surface-alt); }
.blog-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-meta { font-size: 0.78rem; color: var(--muted-text); margin-bottom: 0.75rem; }
.blog-meta .category { color: var(--gold); font-weight: 600; }
.blog-card-body h4 { font-size: 1rem; font-weight: 700; color: var(--heading-color); margin-bottom: 0.75rem; line-height: 1.4; }
.blog-card-body p  { font-size: 0.88rem; color: var(--muted-text); line-height: 1.6; }
.blog-read-more { color: var(--gold); font-weight: 600; font-size: 0.85rem; margin-top: auto; padding-top: 1rem; display: inline-flex; align-items: center; gap: 0.3rem; }
.blog-read-more i { transition: var(--transition); }
.blog-read-more:hover i { transform: translateX(4px); }

/* ── Instagram Section ──────────────────────────────────────── */
.section-instagram { background: var(--dark); }
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
@media (max-width: 768px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } }
.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark-gray);
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200,16,46,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.insta-item:hover img { transform: scale(1.1); }
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay i { font-size: 1.8rem; color: var(--white); }
.insta-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-gray);
  color: rgba(255,255,255,0.3);
  font-size: 2rem;
}

/* ── Contact Section ────────────────────────────────────────── */
.section-contact { background: var(--surface); }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,16,46,0.1);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-info-item h6 { font-weight: 600; margin-bottom: 0.25rem; font-size: 0.9rem; color: var(--heading-color); }
.contact-info-item p  { color: var(--muted-text); font-size: 0.88rem; margin: 0; }
.contact-form .form-control {
  border: 2px solid var(--input-border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  transition: var(--transition);
}
.contact-form .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,16,46,0.15);
}

/* ── Gallery Page ───────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 992px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: var(--white); font-size: 2rem; }

/* ── Inventory Filters ──────────────────────────────────────── */
.filter-sidebar {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.filter-sidebar h5 { font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--heading-color); }
.filter-group { margin-bottom: 1.25rem; }
.filter-group label { font-size: 0.82rem; font-weight: 600; color: var(--muted-text); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.4rem; display: block; }
.filter-group .form-select,
.filter-group .form-control {
  font-size: 0.88rem;
  border: 1.5px solid var(--input-border);
  border-radius: var(--radius);
  padding: 0.6rem 0.75rem;
}
.filter-group .form-select:focus,
.filter-group .form-control:focus { border-color: var(--gold); box-shadow: none; }

/* ── Vehicle Details ────────────────────────────────────────── */
.vehicle-detail-slider .carousel-item img {
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
@media (max-width: 768px) { .vehicle-detail-slider .carousel-item img { height: 280px; } }
.vehicle-thumb-item {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.vehicle-thumb-item.active { border-color: var(--gold); }
.spec-table td { padding: 0.6rem 0; font-size: 0.9rem; }
.spec-table td:first-child { font-weight: 600; color: var(--heading-color); width: 40%; }
.spec-table td:last-child { color: var(--muted-text); }
.spec-table tr { border-bottom: 1px solid var(--card-border); }

/* ── Page Header Banner ─────────────────────────────────────── */
.page-header {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-gray) 100%);
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 80px solid rgba(200,16,46,0.06);
}
.page-header h1  { color: var(--white); font-size: clamp(1.8rem,4vw,2.8rem); }
.page-header p   { color: rgba(255,255,255,0.65); }
.breadcrumb-item a { color: var(--gold); }
.breadcrumb-item.active { color: rgba(255,255,255,0.5); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ── Team Cards ─────────────────────────────────────────────── */
.team-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.team-photo-placeholder {
  aspect-ratio: 1;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--gold);
}
.team-card-body { padding: 1.5rem; }
.team-card h4 { font-size: 1rem; font-weight: 700; color: var(--heading-color); margin-bottom: 0.25rem; }
.team-card p  { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.75rem; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.75); }
.footer-top { padding: 4rem 0; }
.footer-heading {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.footer-about { font-size: 0.88rem; line-height: 1.7; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 0.88rem; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.85rem; align-items: flex-start; }
.footer-contact i  { color: var(--gold); min-width: 18px; margin-top: 3px; }
.footer-contact a  { color: rgba(255,255,255,0.75); }
.footer-contact a:hover { color: var(--gold); }
.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(200,16,46,0.4);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-right: 6px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom p { margin: 0; }

/* ── WhatsApp Float ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: var(--transition);
}
.whatsapp-float:hover { background: #1ebe5a; transform: scale(1.1); color: var(--white); }

/* ── Back to Top ────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover   { background: var(--gold-dark); transform: translateY(-3px); }

/* ── Misc Utilities ─────────────────────────────────────────── */
.divider-gold {
  border: none;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 2rem 0;
}
.overlay-dark {
  background: linear-gradient(135deg, rgba(0,0,0,0.88), rgba(0,0,0,0.55));
}

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

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 991px) {
  .main-nav .nav-link { padding: 0.75rem 1rem !important; }
  .hero-slider { min-height: 70vh; }
  .hero-slide  { min-height: 70vh; }
  .about-badge { right: 0; }
  .nav-cta { margin: 0.75rem 0; }
}
@media (max-width: 767px) {
  .hero-title { font-size: 1.8rem; }
  .hero-actions { flex-direction: column; }
  .section-pad { padding: 3rem 0; }
  .insta-grid { grid-template-columns: repeat(2,1fr); }
}
