@charset "UTF-8";
:root {
  --gold: #bc3900;
  --gold-light: #bc3900;
  --navy: #0D1B2A;
  --navy2: #1B2E45;
  --text: #1a1a2e;
  --muted: #6b7280;
  --surface: #f8f8f6;
  --border: #e5e5e0;
}

* {
  font-family: "Inter", sans-serif;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: var(--text);
  margin: 0;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #f5f5f3;
}

::-webkit-scrollbar-thumb {
  background: #d1cfc6;
  border-radius: 3px;
}

/* ── Header - glassmorphism ── */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

#header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

/* Nav text is white over dark hero, then switches to dark when scrolled */
.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
}

#header.scrolled .nav-link {
  color: var(--muted) !important;
}

.nav-link:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.15) !important;
}

#header.scrolled .nav-link:hover {
  color: var(--text) !important;
  background: var(--surface) !important;
}

.logo-text {
  color: #fff !important;
}

#header.scrolled .logo-text {
  color: var(--navy) !important;
}

.logo-icon svg path {
  fill: #fff !important;
}

#header.scrolled .logo-icon svg path {
  fill: var(--navy) !important;
}

.logo-icon {
  background: rgba(255, 255, 255, 0.25) !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

#header.scrolled .logo-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  border: none;
}

#header.scrolled .logo-icon svg path {
  fill: var(--navy) !important;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  width: 150px;
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-weight: 800;
  font-size: 16px;
  color: var(--navy);
  letter-spacing: -0.3px;
}

/* ── Header chat bar - glass ── */
.header-chat-bar {
  flex: 1;
  max-width: 560px;
  display: flex;
  align-items: center;
  gap: 0;
  /* background: rgba(255,255,255,0.15); */
  background-color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  padding: 0 6px 0 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.header-chat-bar:focus-within {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

#header.scrolled .header-chat-bar {
  background: var(--surface);
  border-color: var(--border);
  backdrop-filter: none;
}

#header.scrolled .header-chat-bar:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
  background: #fff;
}

.header-chat-input {
  /* flex: 1; border: none; outline: none; background: transparent;
  font-size: 14px; color: #fff; padding: 10px 0; */
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 20px;
  color: #fff !important;
  padding: 20px 0;
}

/* .header-chat-input::placeholder { color: rgba(255,255,255,0.6); } */
.header-chat-input::-moz-placeholder {
  color: #000000;
}
.header-chat-input::placeholder {
  color: #000000;
}

#header.scrolled .header-chat-input {
  color: var(--text);
}

#header.scrolled .header-chat-input::-moz-placeholder {
  color: #9ca3af;
}

#header.scrolled .header-chat-input::placeholder {
  color: #9ca3af;
}

.header-chat-btn {
  width: 50px;
  height: 50px;
  border-radius: 100px;
  border: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.header-chat-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(201, 168, 76, 0.4);
}

/* ── Nav links ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--text);
  background: var(--surface);
}

.nav-link-cta {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

.nav-link-cta:hover {
  background: rgba(255, 255, 255, 0.25);
}

#header.scrolled .nav-link-cta {
  background: var(--navy);
  color: #fff;
  border-color: transparent;
}

#header.scrolled .nav-link-cta:hover {
  background: var(--navy2);
}

/* Hamburger lines go dark once scrolled */
#header.scrolled #hamburgerLines {
  stroke: #1a1a2e;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}
/* ── Hero - full bleed car background ── */
.hero {
  padding: 160px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* The car background image */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #4a2767;
  /*
  background:
    linear-gradient(to bottom,
      rgba(8,15,30,0.55) 0%,
      rgba(8,15,30,0.30) 40%,
      rgba(8,15,30,0.65) 100%),
    url('https://images.unsplash.com/photo-1544636331-e26879cd4d9b?w=1800&q=85') center/cover no-repeat;
    */
}

/* Subtle vignette */
.hero-bg-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 100%, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.95);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -3px;
  color: #fff;
  margin: 0 0 24px;
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

.hero h1 .accent {
  background: #e64600;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
  margin: 0 auto 44px;
  line-height: 1.7;
  font-weight: 400;
}

/* ── Glass stat cards in hero ── */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.stat-item {
  /* background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2); */
  border-radius: 16px;
  padding: 18px 28px;
  /* backdrop-filter: blur(12px); */
  text-align: center;
  min-width: 120px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}

.stat-num {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
}

.stat-num .gold {
  color: var(--gold-light);
}

.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.hero-cta-group {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--navy);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: var(--navy2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.2);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
}

/* Glass button - for use on dark hero only */
.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  transition: all 0.2s ease;
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

/* Regular outline for light sections */
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: #8a6a1f;
  background: rgba(201, 168, 76, 0.05);
}

/* ── Section ── */
.section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 1320px;
  margin: 0 auto;
}

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

.section-header {
  margin-bottom: 48px;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1.1;
  margin: 0 0 12px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
}

/* ── Filters ── */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 32px;
}

.filter-select {
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 9px 36px 9px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: all 0.2s ease;
}

.filter-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.filter-select option {
  background: #fff;
}

.search-wrap {
  position: relative;
  flex: 1;
  min-width: 200px;
}

.search-input {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 9px 14px 9px 38px;
  border-radius: 8px;
  font-size: 13px;
  outline: none;
  transition: all 0.2s;
}

.search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.btn-clear {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--muted);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-clear:hover {
  border-color: #d1cfc6;
  color: var(--text);
}

/* ── Sort + results row ── */
.results-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 12px;
  flex-wrap: wrap;
}

.results-count {
  font-size: 14px;
  color: var(--muted);
}

.results-count span {
  font-weight: 700;
  color: var(--text);
}

.sort-btns {
  display: flex;
  gap: 6px;
}

.sort-btn {
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--muted);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.sort-btn:hover, .sort-btn.active {
  border-color: var(--gold);
  color: #8a6a1f;
  background: rgba(201, 168, 76, 0.06);
}

/* ── Vehicle grid ── */
.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* ── Vehicle card - glass shimmer on hover ── */
.vehicle-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
}

.vehicle-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.vehicle-card:hover::before {
  transform: scaleX(1);
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(201, 168, 76, 0.2);
}

/* Glass float cards in about section */
.about-float-card {
  position: absolute;
  border-radius: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(160%);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--surface);
}

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

.vehicle-card:hover .card-img-wrap img {
  transform: scale(1.04);
}

.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.badge-type {
  background: rgba(13, 27, 42, 0.8);
  color: #fff;
  backdrop-filter: blur(8px);
}

.badge-fuel {
  background: rgba(34, 197, 94, 0.12);
  color: #166534;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.badge-year {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
}

.card-body {
  padding: 18px;
}

.card-make-model {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 4px;
  letter-spacing: -0.3px;
}

.card-make-model span {
  color: var(--gold);
}

.card-meta {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.card-meta-dot {
  color: var(--border);
}

.card-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.spec-box {
  background: var(--surface);
  border-radius: 8px;
  padding: 8px 10px;
  text-align: center;
}

.spec-label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.spec-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 2px;
}

.card-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 14px;
}

.card-price-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.card-price {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.card-price .currency {
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  margin-right: 2px;
}

.card-btn {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 11px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.card-btn:hover {
  background: var(--navy2);
}

/* ── No results ── */
.no-results {
  text-align: center;
  padding: 64px 24px;
  display: none;
}

.no-results-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.no-results h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.no-results p {
  color: var(--muted);
  margin-bottom: 24px;
}

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

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
.feature-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid var(--border);
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.02);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  flex-shrink: 0;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.feature-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12);
}

.about-img img {
  width: 100%;
  height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.about-float-card.bottom-left {
  bottom: -20px;
  left: -20px;
}

.about-float-card.top-right {
  top: -20px;
  right: -20px;
}

.float-val {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.float-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* ── Contact form ── */
.contact-wrap {
  max-width: 680px;
  margin: 0 auto;
}

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

@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--text);
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all 0.2s ease;
}

.form-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-input::-moz-placeholder, .form-textarea::-moz-placeholder {
  color: #d1d5db;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: #d1d5db;
}

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

/* ── Footer ── */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 24px 32px;
}

.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-logo {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.3px;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ── Vehicle detail modal ── */
#vehicleModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 14, 26, 0.6);
  backdrop-filter: blur(8px);
  overflow-y: auto;
  padding: 24px;
}

#vehicleModal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.modal-inner {
  background: #fff;
  border-radius: 20px;
  max-width: 900px;
  width: 100%;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
  animation: modalIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.modal-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.modal-make {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.5px;
}

.modal-make span {
  color: var(--gold);
}

.modal-sub {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  transition: all 0.2s;
}

.modal-close:hover {
  background: #f0f0ee;
  color: var(--text);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 700px) {
  .modal-body {
    grid-template-columns: 1fr;
  }
}
.modal-gallery {
  padding: 24px;
}

.gallery-main {
  border-radius: 12px;
  overflow: hidden;
  height: 260px;
  background: var(--surface);
  margin-bottom: 10px;
  position: relative;
}

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

.gallery-type-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(13, 27, 42, 0.8);
  color: #fff;
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

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

.gallery-thumb {
  width: 72px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
}

.gallery-thumb.active, .gallery-thumb:hover {
  border-color: var(--gold);
}

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

.modal-details {
  padding: 24px;
  border-left: 1px solid var(--border);
}

.modal-price-box {
  background: var(--surface);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
}

.modal-price-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.modal-price {
  font-size: 36px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -1px;
  margin: 4px 0;
}

.modal-price .cur {
  font-size: 18px;
  color: var(--gold);
  font-weight: 700;
}

.modal-price-note {
  font-size: 12px;
  color: var(--muted);
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}

.spec-item {
  background: var(--surface);
  border-radius: 8px;
  padding: 10px 12px;
}

.spec-item-label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.spec-item-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 3px;
}

.modal-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.features-wrap {
  margin-bottom: 20px;
}

.features-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.feature-chip {
  background: rgba(201, 168, 76, 0.1);
  color: #7a5c10;
  border: 1px solid rgba(201, 168, 76, 0.25);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

.modal-actions {
  display: flex;
  gap: 10px;
}

.modal-btn-primary {
  flex: 1;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}

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

.modal-btn-outline {
  flex: 1;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--navy);
  border-radius: 9px;
  padding: 12px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}

.modal-btn-outline:hover {
  border-color: var(--gold);
  color: #7a5c10;
  background: rgba(201, 168, 76, 0.04);
}

/* ── Test Drive modal ── */
#testDriveModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(10, 14, 26, 0.6);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#testDriveModal.active {
  display: flex;
}

.td-box {
  background: #fff;
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  padding: 32px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
  animation: modalIn 0.35s ease;
}

.td-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 4px;
}

.td-vehicle {
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 24px;
}

/* ── Toast ── */
#toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  max-width: 320px;
  transform: translateX(140%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(13, 27, 42, 0.25);
}

#toast.show {
  transform: translateX(0);
}

#toastIcon {
  font-size: 18px;
  flex-shrink: 0;
}

#toastTitle {
  font-weight: 700;
  font-size: 13px;
}

#toastMsg {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

/* ── Skeleton ── */
.skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, #eeede8 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
/* ── Responsive ── */
@media (max-width: 768px) {
  #hamburger {
    display: flex !important;
  }
  .nav-links .nav-link {
    display: none;
  }
  .nav-links .nav-link-cta {
    display: none;
  }
  .hero {
    padding: 100px 20px 60px;
  }
  .hero-stats {
    gap: 12px;
  }
  .header-chat-input {
    font-size: 15px;
    padding: 12px 0;
  }
  .header-chat-btn {
    width: 40px;
    height: 40px;
  }
  .section {
    padding: 56px 16px;
  }
  .filter-bar {
    gap: 8px;
  }
  .price-slider-wrap {
    min-width: 100%;
  }
  .results-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .sort-btns {
    width: 100%;
  }
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.mobile-menu.open {
  display: block;
}

.mobile-chat-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 0 6px 0 16px;
  margin-bottom: 16px;
}

.mobile-chat-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: var(--text);
  padding: 10px 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

/* Price range slider */
.price-slider-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 220px;
}

input[type=range] {
  -webkit-appearance: none;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold)) no-repeat, var(--border);
  border-radius: 2px;
  flex: 1;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(201, 168, 76, 0.4);
}

.price-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  min-width: 100px;
}

/* ── About float cards ── */
@media (max-width: 768px) {
  .about-float-card {
    display: none;
  }
  .about-img-wrap {
    margin-top: 24px;
  }
  .stat-item {
    padding: 12px 16px;
    min-width: 80px;
  }
  .stat-num {
    font-size: 22px;
  }
  .header-chat-bar {
    max-width: 100%;
    width: 100%;
  }
  .hero-sub {
    font-size: 15px;
  }
  .modal-body {
    grid-template-columns: 1fr !important;
  }
  .form-grid-2 {
    grid-template-columns: 1fr !important;
  }
}/*# sourceMappingURL=styles.css.map */