/* ═══════════════════════════════════════════════════
   VOYAGO vehicles.css
   Palette (same as main.css):
     Deep Maroon   #6E1F2B
     Mustard Gold  #D9A441
     Charcoal Grey #3A3A3A
     Ivory         #F5EFE6
     Rust          #A35334
═══════════════════════════════════════════════════ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --maroon:       #6E1F2B;
  --maroon-dark:  #4d1520;
  --maroon-mid:   #8a2535;
  --gold:         #D9A441;
  --gold-muted:   #c4903a;
  --rust:         #A35334;
  --charcoal:     #3A3A3A;
  --charcoal-mid: #555555;
  --ivory:        #F5EFE6;
  --ivory-deep:   #EDE5D8;
  --dark:         #1A1010;
  --text:         #2A1A1A;
  --text-muted:   #7a6a64;
  --white:        #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  --shadow-sm:  0 2px 12px rgba(26,16,16,.08);
  --shadow-md:  0 8px 32px rgba(26,16,16,.14);
  --shadow-lg:  0 20px 60px rgba(26,16,16,.22);

  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --nav-h:      72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--ivory);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, select, button, textarea { font-family: var(--font-body); }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── SCROLL REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── TYPOGRAPHY ── */
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 14px;
}
.section-eyebrow.light { color: var(--gold); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--maroon);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 2px solid var(--maroon);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--maroon-dark);
  border-color: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(110,31,43,.38);
}
.btn-sm { padding: 9px 18px; font-size: 12px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--maroon);
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid var(--maroon);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--maroon);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline.btn-sm { padding: 9px 18px; font-size: 12px; }

.btn-ghost {
  color: rgba(255,255,255,.88);
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 500;
  transition: color var(--transition);
  background: none;
  border: none;
  cursor: pointer;
}
.navbar.scrolled .btn-ghost { color: var(--text); }
.btn-ghost:hover { color: var(--gold); }

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  color: var(--maroon-dark);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid var(--white);
  transition: all var(--transition);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.28);
}

.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,.6);
  transition: all var(--transition);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-large { padding: 17px 40px; font-size: 15px; }

/* ════════════════════════════════════
   FLASH BANNER
════════════════════════════════════ */
.flash-banner {
  background: var(--charcoal);
  padding: 10px 24px;
  position: relative;
  z-index: 1001;
}
.flash-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.flash-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}
.flash-inner p { font-size: 13px; color: rgba(255,255,255,.85); }
.flash-inner a { color: var(--gold); font-weight: 700; text-decoration: underline; }
.flash-close {
  background: none; border: none;
  color: rgba(255,255,255,.5); font-size: 20px;
  cursor: pointer; margin-left: auto;
  padding: 0 4px; line-height: 1;
  transition: color var(--transition);
}
.flash-close:hover { color: var(--white); }
.flash-icon { display: inline-flex; align-items: center; vertical-align: middle; margin-right: 2px; position: relative; top: -1px; }


/* ─── NEW LOGO STYLING ─── */
.logo-brand {
  display: flex;
  align-items: center;
  height: 100%;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 64px;
  width: 64px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  background: var(--white);
  padding: 6px;
  box-shadow:
    0 2px 4px rgba(0,0,0,.15),
    0 6px 12px rgba(0,0,0,.18),
    0 14px 28px rgba(0,0,0,.16),
    0 0 0 3px rgba(217,164,65,.25);
  transition: transform var(--transition), box-shadow var(--transition);
}
.logo-img:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 4px 8px rgba(0,0,0,.18),
    0 10px 20px rgba(0,0,0,.22),
    0 22px 40px rgba(0,0,0,.22),
    0 0 0 3px rgba(217,164,65,.45);
}
/* ════════════════════════════════════
   NAVBAR
════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
  padding-bottom: 42px;
            padding-top: 42px;
}
.navbar.scrolled {
  background: rgba(245,239,230,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(26,16,16,.1);
}
.nav-inner {
  display: flex; align-items: center;
  gap: 32px;
  max-width: 1280px; width: 100%;
  margin: 0 auto; padding: 0 24px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  text-transform: uppercase;
  transition: color var(--transition);
  flex-shrink: 0;
}
.navbar.scrolled .logo { color: var(--maroon-dark); }
.logo-icon { color: var(--gold); transition: color var(--transition); }
.navbar.scrolled .logo-icon { color: var(--maroon); }

.nav-links {
  display: flex; align-items: center;
  gap: 4px; flex: 1;
  justify-content: center;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.88);
  font-size: 14px; font-weight: 500;
  padding: 8px 14px; border-radius: 50px;
  transition: all var(--transition);
  display: block;
}
.navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,.14);
}
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--maroon);
  background: rgba(110,31,43,.08);
}
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-actions .btn-primary { font-size: 13px; padding: 10px 22px; }
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; background: none; border: none;
  cursor: pointer; padding: 6px; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--dark); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-only { display: none; }

/* ════════════════════════════════════
   PAGE HERO
════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex; align-items: center;
  overflow: hidden;
  /* padding-top: 42px; */
   /* flash banner */
}

.page-hero-bg {
  position: absolute;
  inset: -10% 0;
  background-image: url('https://images.unsplash.com/photo-1454391304352-2bf4678b1a7a?w=1920&q=85');
  background-size: cover;
  background-position: center 60%;
  will-change: transform;
}

.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(77,21,32,.88) 0%,
    rgba(110,31,43,.65) 55%,
    rgba(26,16,16,.50) 100%
  );
}

.page-hero-content {
  position: relative; z-index: 2;
  padding-top: var(--nav-h);
}

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,.65);
  margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.7s 0.1s ease forwards;
}
.breadcrumb a { color: rgba(255,255,255,.65); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span:last-child { color: var(--gold); }
.bc-sep { display: flex; align-items: center; opacity: .5; }

.hero-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  opacity: 0; animation: fadeUp 0.7s 0.2s ease forwards;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700; line-height: 1.25;
  color: var(--white);
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.7s 0.35s ease forwards;
}
.hero-headline em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: clamp(.95rem, 1.4vw, 1.1rem);
  color: rgba(255,255,255,.80);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.7s 0.5s ease forwards;
}

.hero-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  opacity: 0; animation: fadeUp 0.7s 0.65s ease forwards;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,.88);
  font-size: 12px; font-weight: 600;
  padding: 7px 14px; border-radius: 50px;
  transition: all var(--transition);
}
.hero-badge:hover {
  background: rgba(217,164,65,.2);
  border-color: rgba(217,164,65,.5);
  color: var(--gold);
}
.hero-badge svg { color: var(--gold); flex-shrink: 0; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  animation: scrollBob 2.2s ease-in-out infinite;
}
.scroll-dot {
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 14px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 2.2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
@keyframes scrollDot {
  0%   { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 24px; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════
   FILTER BAR
════════════════════════════════════ */
.filter-bar-wrap {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--ivory-deep);
  box-shadow: 0 4px 24px rgba(26,16,16,.07);
  transition: box-shadow var(--transition);
}
.filter-bar-wrap.elevated { box-shadow: 0 4px 32px rgba(26,16,16,.15); }

.filter-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 18px; padding-bottom: 18px;
  flex-wrap: wrap;
}

.filter-section { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.filter-section--inline { margin-left: auto; gap: 16px; }

.filter-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--ivory);
  border: 1.5px solid rgba(110,31,43,.18);
  border-radius: 50px;
  padding: 8px 16px;
  transition: border-color var(--transition);
}
.filter-search:focus-within { border-color: var(--maroon); }
.filter-search svg { color: var(--text-muted); flex-shrink: 0; }
.filter-search-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  width: 170px;
}
.filter-search-input::placeholder { color: var(--text-muted); }

.filter-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); white-space: nowrap;
  flex-shrink: 0;
}

.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; }

.chip {
  display: inline-flex; align-items: center;
  background: transparent;
  border: 1.5px solid rgba(110,31,43,.2);
  color: var(--text-muted);
  padding: 7px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.chip:hover { border-color: var(--maroon); color: var(--maroon); background: rgba(110,31,43,.04); }
.chip.active {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(110,31,43,.3);
}

.filter-divider { width: 1px; height: 32px; background: var(--ivory-deep); flex-shrink: 0; }

/* AC toggle */
.filter-toggle {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; user-select: none;
}
.toggle-track {
  width: 40px; height: 22px;
  background: rgba(110,31,43,.15);
  border-radius: 11px;
  position: relative;
  transition: background var(--transition);
  flex-shrink: 0;
}
.toggle-track.on { background: var(--maroon); }
.toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,.18);
  transition: transform var(--transition);
}
.toggle-track.on .toggle-thumb { transform: translateX(18px); }
.toggle-lbl { font-size: 13px; font-weight: 600; color: var(--text-muted); }

/* Sort select */
.sort-select {
  appearance: none;
  background: var(--ivory);
  border: 1.5px solid rgba(110,31,43,.18);
  border-radius: 50px;
  padding: 8px 36px 8px 16px;
  font-size: 13px; font-weight: 500;
  color: var(--text);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 4l4 4 4-4' stroke='%237a6a64' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  outline: none;
  transition: border-color var(--transition);
}
.sort-select:focus { border-color: var(--maroon); }

/* ════════════════════════════════════
   VEHICLES SECTION
════════════════════════════════════ */
.vehicles-section {
  padding: 52px 0 80px;
  background: var(--ivory);
}

/* Results meta row */
.results-meta {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}
.results-count {
  font-size: 14px; color: var(--text-muted);
}
.results-count strong { color: var(--maroon); font-weight: 700; }

.view-toggle { display: flex; gap: 4px; }
.view-btn {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(110,31,43,.18);
  background: transparent;
  color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}
.view-btn.active, .view-btn:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--white);
}

/* Vehicle GRID */
.vehicles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.vehicles-grid.list-view {
  grid-template-columns: 1fr;
}
.vehicles-grid.list-view .vehicle-card {
  flex-direction: row;
}
.vehicles-grid.list-view .vehicle-img-wrap {
  width: 280px; min-width: 280px;
  height: auto; min-height: 220px;
}
.vehicles-grid.list-view .vehicle-info {
  padding: 28px 28px 28px;
  flex: 1;
}
.vehicles-grid.list-view .vehicle-desc {
  max-width: 560px;
}

/* VEHICLE CARD */
.vehicle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(163,83,52,.12);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.vehicle-card.hidden { display: none !important; }

/* IMAGE WRAP */
.vehicle-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--ivory-deep);
}
.vehicle-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.vehicle-card:hover .vehicle-img-wrap img { transform: scale(1.07); }

/* Image overlay on hover */
.vehicle-img-overlay {
  position: absolute; inset: 0;
  background: rgba(77,21,32,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.vehicle-card:hover .vehicle-img-overlay { opacity: 1; }

.quick-view-btn {
  background: var(--white);
  color: var(--maroon-dark);
  font-size: 13px; font-weight: 700;
  padding: 10px 22px; border-radius: 50px;
  transform: translateY(8px);
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.vehicle-card:hover .quick-view-btn {
  transform: translateY(0);
}
.quick-view-btn:hover {
  background: var(--gold);
  box-shadow: 0 6px 24px rgba(0,0,0,.25);
}

/* BADGE */
.vehicle-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 50px;
  z-index: 2;
}
.badge--maroon { background: var(--maroon); color: var(--white); }
.badge--gold   { background: var(--gold);   color: var(--dark); }

/* VEHICLE INFO */
.vehicle-info {
  padding: 22px 22px 22px;
  display: flex; flex-direction: column;
  flex: 1;
}
.vehicle-header {
  display: flex; align-items: flex-start;
  justify-content: space-between;
  gap: 10px; margin-bottom: 10px;
}
.vehicle-type-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rust); margin-bottom: 4px;
}
.vehicle-name {
  font-family: var(--font-display);
  font-size: 1.18rem; font-weight: 600;
  color: var(--dark); line-height: 1.2;
}
.vehicle-rating {
  display: flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 700;
  color: var(--dark); white-space: nowrap;
  flex-shrink: 0;
}
.vehicle-desc {
  font-size: 13.5px; color: var(--text-muted);
  line-height: 1.65; margin-bottom: 16px;
  flex: 1;
}

/* SPECS ROW */
.vehicle-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 18px;
}
.spec-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 500;
  color: var(--text-muted);
  background: var(--ivory);
  padding: 6px 10px; border-radius: 8px;
}
.spec-item svg { flex-shrink: 0; color: var(--rust); }

/* FOOTER ROW */
.vehicle-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  border-top: 1px solid var(--ivory-deep);
  padding-top: 16px;
}
.vehicle-price { display: flex; align-items: baseline; gap: 4px; }
.price-from, .price-unit { font-size: 11px; color: var(--text-muted); }
.price-num {
  font-size: 1.35rem; font-weight: 800;
  color: var(--maroon); line-height: 1;
}
.vehicle-actions { display: flex; gap: 8px; }

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.empty-state svg { opacity: .8; }
.empty-state h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600;
  color: var(--dark);
}
.empty-state p { color: var(--text-muted); max-width: 320px; }

/* ════════════════════════════════════
   TRUST STRIP
════════════════════════════════════ */
.trust-strip {
  background: var(--maroon);
  padding: 56px 0;
}
.trust-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 48px;
  flex: 1; min-width: 240px;
}
.trust-divider {
  width: 1px; min-height: 80px;
  background: rgba(255,255,255,.12);
  flex-shrink: 0; align-self: center;
}
.trust-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(217,164,65,.15);
  border: 1.5px solid rgba(217,164,65,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: all var(--transition);
}
.trust-item:hover .trust-icon {
  background: rgba(217,164,65,.25);
  border-color: rgba(217,164,65,.6);
  transform: scale(1.08);
}
.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}
.trust-item p {
  font-size: 13px; color: rgba(255,255,255,.58);
  line-height: 1.65;
}

/* ════════════════════════════════════
   CTA BANNER
════════════════════════════════════ */
.cta-banner {
  position: relative;
  overflow: hidden;
  min-height: 380px !important;
  margin: 48px auto;
  max-width: 1280px;
  width: calc(100% - 48px);
  border-radius: 32px;
  display: flex; align-items: center;
}
.cta-bg {  position: absolute !important;
      top: 0 !important;
      left: 0 !important;
      width: 100% !important;
      height: 100% !important; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.cta-banner:hover .cta-bg img { transform: scale(1.08); }
.cta-overlay {
   position: absolute !important;
      top: 0 !important;
      left: 0 !important;
      width: 100% !important;
      height: 100% !important; inset: 0;
  background: linear-gradient(135deg, rgba(77,21,32,.92) 0%, rgba(110,31,43,.76) 100%);
}

 .cta-btns a.btn-large {
      justify-content: center !important;
    }

.cta-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 48px 24px !important;
  width: 100%; max-width: 1280px; margin: 0 auto;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 700; color: var(--white);
  line-height: 1.15; margin-bottom: 16px;
}
.cta-content h2 em { font-style: italic; color: var(--gold); }
.cta-content p { font-size: 1.05rem; color: rgba(255,255,255,.75); margin-bottom: 40px; }
.cta-btns {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: 28px;
}
.cta-contact {
  font-size: 14px; color: rgba(255,255,255,.6);
  display: flex; align-items: center;
  gap: 8px; justify-content: center;
}
.cta-contact a { color: var(--gold); font-weight: 600; transition: color var(--transition); }
.cta-contact a:hover { color: var(--white); }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer { background: var(--dark); padding-top: 80px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
   align-items:start; 
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
/* Footer logo image height */
.logo-img-footer {
  height: 72px;
  width: 72px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 24px;
  background: var(--white);
  padding: 8px;
  box-shadow:
    0 3px 6px rgba(0,0,0,.3),
    0 8px 16px rgba(0,0,0,.28),
    0 18px 36px rgba(0,0,0,.24),
    0 0 0 3px rgba(217,164,65,.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.logo-img-footer:hover {
  transform: translateY(-3px) scale(1.05);
}
/* .footer-brand .footer-logo { color: var(--white); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 20px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-brand .footer-logo .logo-icon { color: var(--gold); } */
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 300px; margin-bottom: 28px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--transition);
}
.social-links a:hover { background: var(--maroon); border-color: var(--maroon); color: var(--white); }
.footer-col h5 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 13.5px; color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-col ul a:hover { color: var(--white); }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.contact-list li svg { flex-shrink: 0; color: var(--rust); margin-top: 2px; }
.contact-list li a, .contact-list li span { font-size: 13.5px; color: rgba(255,255,255,.55); transition: color var(--transition); }
.contact-list li a:hover { color: var(--white); }
.footer-hours { margin-top: 24px; display: flex; flex-direction: column; gap: 4px; }
.footer-hours strong { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.footer-hours span { font-size: 13px; color: rgba(255,255,255,.45); }
.footer-bottom { padding: 22px 0; }
.footer-bottom-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,.3); }
.footer-bottom-inner > p:first-child { order: 0; }
.footer-credit {
  order: 1;
  flex: 1;
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,.3);
}
.footer-credit a {
  color: rgba(217,164,65,.7);
  font-weight: 600;
  transition: color var(--transition);
}
.footer-credit a:hover { color: var(--gold); }
.footer-legal { order: 2; display: flex; gap: 24px; flex-wrap: wrap; }
.footer-legal a { font-size: 12.5px; color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ════════════════════════════════════
   CARD ENTRY ANIMATION
════════════════════════════════════ */
.vehicle-card {
  animation: none;
}
.vehicle-card.card-enter {
  animation: cardPop 0.45s cubic-bezier(0.34,1.56,0.64,1) forwards;
}
@keyframes cardPop {
  from { opacity: 0; transform: scale(0.94) translateY(16px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1100px) {
  .vehicles-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { flex-wrap: wrap; }
  .trust-item { min-width: 200px; flex: 1 1 45%; padding: 20px 28px; }
  .trust-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .filter-section--inline { width: 100%; flex-wrap: wrap; }
  .filter-search { width: 100%; }
  .filter-search-input { width: 100%; }
  .filter-sort { width: 100%; }
  .sort-select { width: 100%; }
  .nav-links { display: none; }
  .nav-actions .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .mobile-only { display: block; width: 100%; margin-top: 8px; }
  .nav-btn-signin {
    display: block; text-align: center;
    border: 1px solid var(--maroon); color: var(--maroon) !important;
    border-radius: 50px; padding: 10px 0;
  }
  .nav-btn-book {
    display: block; text-align: center;
    background: var(--maroon) !important; color: var(--white) !important;
    border-radius: 50px; padding: 10px 0;
  }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(245,239,230,.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--ivory-deep);
    box-shadow: var(--shadow-md);
    gap: 4px; align-items: flex-start; z-index: 999;
  }
  .nav-links.open a {
    color: var(--dark); font-size: 15px;
    padding: 12px 16px; width: 100%; border-radius: var(--radius-sm);
  }
  .nav-links.open a:hover, .nav-links.open a.active {
    background: rgba(110,31,43,.08); color: var(--maroon);
  }

  .filter-bar { flex-direction: column; align-items: flex-start; gap: 14px; }
  .filter-section--inline { margin-left: 0; }
  .filter-divider { width: 100%; height: 1px; }

  .vehicles-grid { grid-template-columns: 1fr 1fr; }

  .vehicles-grid.list-view .vehicle-card { flex-direction: column; }
  .vehicles-grid.list-view .vehicle-img-wrap { width: 100%; min-height: 210px; }

  .trust-item { flex: 1 1 100%; padding: 20px; }
  .page-hero { min-height: 380px; height: auto; padding: 120px 0 60px; }
}

@media (max-width: 700px) {
  .vehicles-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub { font-size: .95rem; }
  .hero-badges { gap: 8px; }
  .hero-badge { font-size: 11px; padding: 6px 12px; }
  .filter-chips { gap: 6px; }
  .chip { font-size: 12px; padding: 6px 13px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .cta-btns {
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 12px !important;
        flex-wrap: nowrap !important;
      }
      .cta-btns a.btn-large {
        padding: 12px 14px !important;
        font-size: 13px !important;
        flex: 1 !important;
        max-width: none !important; /* Allow buttons to expand for long text */
        text-align: center !important;
        white-space: nowrap !important;
        justify-content: center !important;
      }
  .vehicle-specs { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  .filter-search { padding: 7px 14px; }
  .filter-search-input { font-size: 12.5px; }
  .nav-actions { display: none; }
  .cta-banner {
    width: calc(100% - 24px) !important;
    border-radius: 20px !important;
  }
  .vehicle-footer { flex-direction: column; align-items: flex-start; gap: 14px; }
  .vehicle-actions { width: 100%; }
  .vehicle-actions .btn-outline,
  .vehicle-actions .btn-primary {
    flex: 1; justify-content: center;
  }
  .logo-img { height: 46px; width: 46px; }
  .filter-section--inline { flex-direction: column; align-items: flex-start; gap: 10px; }
  .page-hero { padding: 110px 0 52px; }
  .hero-headline { font-size: 1.9rem; }
  .cta-content { padding: 52px 16px; }
}

/* ── REDUCED MOTION ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .breadcrumb, .hero-eyebrow, .hero-headline, .hero-sub, .hero-badges { opacity: 1; animation: none; }
}
