/* =========================================================
   First Affordable Car — Main Stylesheet v1.1
   ========================================================= */
:root {
  --blue:       #1E56C8;
  --blue-dark:  #1440A0;
  --blue-light: #4A90D9;
  --blue-pale:  #E8F0FC;
  --navy:       #0D1B35;
  --navy-mid:   #162348;
  --white:      #FFFFFF;
  --silver:     #F5F7FA;
  --silver-mid: #E4E8EF;
  --silver-dk:  #C2CAD8;
  --text:       #0D1B35;
  --muted:      #556070;
  --light:      #8A96A8;
  --green:      #16A34A;
  --red:        #DC2626;
  --orange:     #EA580C;
  --font-h:     'Rajdhani', sans-serif;
  --font-b:     'Nunito', sans-serif;
  --r:          10px;
  --rl:         16px;
  --sh:         0 2px 8px rgba(30,86,200,0.08);
  --shm:        0 8px 32px rgba(30,86,200,0.12);
  --shl:        0 20px 60px rgba(30,86,200,0.18);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--text); background: var(--white); overflow-x: hidden; font-size: 16px; line-height: 1.6; }
img { max-width: 100%; height: auto; }
a { color: var(--blue); }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-h); font-weight: 700; line-height: 1.1; text-transform: uppercase; color: var(--navy); }
p { margin-bottom: 1rem; }

/* ── TOP BAR ───────────────────────────────────────────── */
.top-bar { background: var(--navy); padding: 7px 40px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.6); }
.top-bar a { color: rgba(255,255,255,0.6); text-decoration: none; }
.top-bar-right { display: flex; gap: 20px; align-items: center; }
.top-bar-phone { color: white !important; font-weight: 700; font-size: 13px; }

/* ── NAV ───────────────────────────────────────────────── */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--white); box-shadow: 0 2px 16px rgba(30,86,200,0.10); border-bottom: 3px solid var(--blue); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0 32px; height: 86px; max-width: 1400px; margin: 0 auto; }

/* ── LOGO — bigger, no background ── */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img {
  height: 76px;
  width: auto;
  display: block;
  background: transparent;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 1px 3px rgba(30,86,200,0.15));
}

.nav-menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-menu a { font-family: var(--font-b); font-size: 14px; font-weight: 600; color: var(--muted); text-decoration: none; padding: 7px 13px; border-radius: 7px; transition: all 0.2s; white-space: nowrap; }
.nav-menu a:hover, .nav-menu .current-menu-item > a { color: var(--blue); background: var(--blue-pale); }
.nav-menu .btn-nav { background: var(--blue) !important; color: white !important; font-weight: 700 !important; padding: 9px 18px !important; border-radius: 8px; }
.nav-menu .btn-nav:hover { background: var(--blue-dark) !important; }
.nav-phone { text-align: right; }
.nav-phone-label { font-size: 11px; color: var(--light); }
.nav-phone-num { font-family: var(--font-h); font-size: 20px; font-weight: 700; color: var(--navy); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ── MOBILE NAV ────────────────────────────────────────── */
.mobile-nav { display: none; position: fixed; inset: 0; z-index: 999; background: var(--navy); flex-direction: column; padding: 24px 32px; overflow-y: auto; }
.mobile-nav.open { display: flex; }
.mobile-nav-logo img { height: 60px; margin-bottom: 32px; }
.mobile-nav-close { position: absolute; top: 22px; right: 24px; font-size: 28px; color: white; cursor: pointer; background: none; border: none; }
.mobile-nav-links { display: flex; flex-direction: column; gap: 6px; }
.mobile-nav-links a { font-size: 22px; font-weight: 700; color: rgba(255,255,255,0.7); text-decoration: none; padding: 12px 16px; border-radius: 8px; font-family: var(--font-h); text-transform: uppercase; }
.mobile-nav-links a:hover { color: white; background: rgba(255,255,255,0.08); }
.mobile-phone { margin-top: 32px; font-family: var(--font-h); font-size: 26px; font-weight: 700; color: white; }
.mobile-phone small { font-size: 13px; font-family: var(--font-b); font-weight: 400; color: rgba(255,255,255,0.4); display: block; margin-bottom: 4px; }

/* ── HERO ──────────────────────────────────────────────── */
.hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1E3A6E 100%); position: relative; overflow: hidden; padding: 70px 40px 0; min-height: 88vh; display: flex; flex-direction: column; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(-55deg, transparent 0, transparent 38px, rgba(255,255,255,0.018) 38px, rgba(255,255,255,0.018) 39px); pointer-events: none; }
.hero-glow { position: absolute; top: -100px; right: -100px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(30,86,200,0.25) 0%, transparent 65%); pointer-events: none; }
.hero-content { display: flex; align-items: center; gap: 48px; flex: 1; position: relative; z-index: 2; padding-bottom: 48px; max-width: 1400px; margin: 0 auto; width: 100%; }
.hero-left { flex: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(74,144,217,0.15); border: 1px solid rgba(74,144,217,0.35); color: #7BB8F0; font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 30px; margin-bottom: 22px; letter-spacing: 0.07em; text-transform: uppercase; animation: fadeUp 0.5s ease both; }
.badge-dot { width: 7px; height: 7px; background: var(--blue-light); border-radius: 50%; animation: blink 2s infinite; }
.hero-h1 { font-family: var(--font-h); font-size: clamp(48px,6.5vw,82px); font-weight: 700; line-height: 0.95; color: white; text-transform: uppercase; animation: fadeUp 0.5s 0.08s ease both; }
.hero-h1 .accent { color: var(--blue-light); }
.hero-h1 .outline { -webkit-text-stroke: 2px rgba(255,255,255,0.5); color: transparent; }
.hero-tagline { margin-top: 18px; font-size: 16px; font-weight: 500; color: rgba(255,255,255,0.55); line-height: 1.65; max-width: 430px; animation: fadeUp 0.5s 0.16s ease both; }
.hero-tagline strong { color: rgba(255,255,255,0.85); font-weight: 700; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; animation: fadeUp 0.5s 0.24s ease both; }
.hero-stats { display: flex; gap: 28px; margin-top: 40px; animation: fadeUp 0.5s 0.32s ease both; }
.stat { border-left: 2px solid rgba(74,144,217,0.4); padding-left: 14px; }
.stat-num { font-family: var(--font-h); font-size: 30px; font-weight: 700; color: white; line-height: 1; }
.stat-num span { color: var(--blue-light); }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 2px; }

/* ── HERO RIGHT ── car image panel ── */
.hero-right { flex: 1.05; display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 2; animation: fadeLeft 0.65s 0.15s ease both; }
.hero-featured-car { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--rl); overflow: hidden; }
.featured-car-img { height: 280px; background: linear-gradient(135deg,#162348,#1E3A6E); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.featured-car-img img { width: 100%; height: 100%; object-fit: cover; }
.featured-badge { position: absolute; top: 12px; left: 12px; background: var(--blue); color: white; font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 6px; text-transform: uppercase; }
.featured-car-body { padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; }
.featured-car-name { font-weight: 700; font-size: 16px; color: white; }
.featured-car-sub { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 3px; }
.featured-car-price { font-family: var(--font-h); font-size: 28px; font-weight: 700; color: var(--blue-light); }
.featured-car-finance { font-size: 11px; color: rgba(255,255,255,0.35); text-align: right; }

/* Hero placeholder SVG car */
.hero-car-svg { width: 88%; opacity: 0.8; }

/* ── SEARCH ────────────────────────────────────────────── */
.search-section { background: var(--navy); padding: 0 40px 40px; position: relative; z-index: 10; }
.search-wrap { max-width: 1400px; margin: 0 auto; }
.search-box {
  background: white;
  border-radius: 14px;
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(6, 1fr) auto;
  align-items: stretch;
  gap: 0;
  box-shadow: var(--shl);
}
.search-group {
  padding: 10px 16px;
  border-right: 1px solid var(--silver-mid);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.search-group:last-of-type { border-right: none; }
.search-group label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 4px;
  white-space: nowrap;
}
.search-group select, .search-group input {
  width: 100%;
  border: none;
  background: transparent;
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  outline: none;
  cursor: pointer;
  appearance: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.search-group select option { font-size: 14px; }
.search-btn {
  background: var(--blue);
  color: white;
  border: none;
  cursor: pointer;
  font-family: var(--font-h);
  font-size: 17px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 10px;
  text-transform: uppercase;
  transition: all 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 2px;
  align-self: stretch;
}
.search-btn:hover { background: var(--blue-dark); }
.quick-searches { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; align-items: center; }
.qs-label { font-size: 12px; color: rgba(255,255,255,0.35); }
.qs-tag { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.15); padding: 4px 12px; border-radius: 20px; cursor: pointer; text-decoration: none; transition: all 0.2s; }
.qs-tag:hover { color: white; border-color: rgba(255,255,255,0.45); }

/* ── TRUST STRIP ───────────────────────────────────────── */
.trust-strip { background: var(--blue); padding: 14px 40px; display: flex; gap: 0; align-items: center; overflow-x: auto; }
.trust-item { flex: 1; min-width: 150px; display: flex; align-items: center; gap: 10px; padding: 0 20px; border-right: 1px solid rgba(255,255,255,0.2); }
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child { border-right: none; }
.trust-icon-box { width: 34px; height: 34px; flex-shrink: 0; background: rgba(255,255,255,0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; }
.trust-title { font-size: 13px; font-weight: 700; color: white; }
.trust-desc { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 1px; }

/* ── SECTIONS ──────────────────────────────────────────── */
.section { padding: 72px 40px; }
.section-inner { max-width: 1400px; margin: 0 auto; }
.eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue); margin-bottom: 8px; }
.section-title { font-family: var(--font-h); font-size: clamp(30px,4vw,46px); font-weight: 700; text-transform: uppercase; color: var(--navy); line-height: 1; }
.section-sub { font-size: 15px; color: var(--muted); margin-top: 10px; max-width: 520px; line-height: 1.6; }
.section-header { margin-bottom: 36px; }
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 36px; }
.view-all { font-size: 13px; font-weight: 700; color: var(--blue); text-decoration: none; border-bottom: 1.5px solid var(--blue); padding-bottom: 2px; white-space: nowrap; }
.view-all:hover { opacity: 0.65; }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; border: none; cursor: pointer; text-decoration: none; font-family: var(--font-h); font-size: 18px; font-weight: 700; padding: 14px 32px; border-radius: 10px; text-transform: uppercase; letter-spacing: 0.04em; transition: all 0.2s; }
.btn-primary { background: var(--blue); color: white; box-shadow: 0 4px 20px rgba(30,86,200,0.35); }
.btn-primary:hover { background: var(--blue-light); color: white; transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,0.08); color: white; border: 1.5px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.14); color: white; }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: white; }
.btn-sm { font-size: 13px; padding: 9px 18px; border-radius: 8px; }

/* ── MAKES STRIP ───────────────────────────────────────── */
.makes-section { background: var(--silver); padding: 32px 40px; border-bottom: 1px solid var(--silver-mid); }
.makes-title { font-size: 13px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; text-align: center; margin-bottom: 18px; }
.makes-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; align-items: center; }
.make-pill { background: white; border: 1px solid var(--silver-mid); border-radius: 30px; padding: 8px 20px; font-size: 13px; font-weight: 700; color: var(--muted); text-decoration: none; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.make-pill:hover { background: var(--blue); color: white; border-color: var(--blue); transform: translateY(-1px); }

/* ── CAR GRID ──────────────────────────────────────────── */
.cars-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px,1fr)); gap: 20px; }
.car-card { background: white; border: 1px solid var(--silver-mid); border-radius: var(--rl); overflow: hidden; transition: all 0.25s; cursor: pointer; display: flex; flex-direction: column; }
.car-card:hover { transform: translateY(-5px); box-shadow: var(--shm); border-color: var(--blue-light); }
.car-card-img { aspect-ratio: 16/10; background: linear-gradient(135deg,#1A2E42,#2C3E55); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.car-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.car-card:hover .car-card-img img { transform: scale(1.04); }
.car-badge { position: absolute; top: 10px; left: 10px; font-size: 10px; font-weight: 700; padding: 4px 10px; border-radius: 5px; text-transform: uppercase; letter-spacing: 0.06em; }
.badge-available { background: var(--green); color: white; }
.badge-sold { background: var(--red); color: white; }
.badge-reserved { background: var(--orange); color: white; }
.badge-featured { background: var(--blue); color: white; }
.photo-count { position: absolute; bottom: 10px; right: 10px; background: rgba(0,0,0,0.6); color: rgba(255,255,255,0.9); font-size: 11px; padding: 3px 8px; border-radius: 4px; }
.car-card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.car-make-label { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--blue); letter-spacing: 0.08em; }
.car-model { font-family: var(--font-h); font-size: 22px; font-weight: 700; color: var(--navy); line-height: 1.1; margin-top: 2px; }
.car-specs { display: flex; gap: 6px; margin-top: 10px; flex-wrap: wrap; }
.spec-pill { display: flex; align-items: center; gap: 4px; background: var(--silver); font-size: 11px; font-weight: 600; color: var(--muted); padding: 3px 9px; border-radius: 20px; }
.car-card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--silver-mid); margin-top: 14px; }
.car-price { font-family: var(--font-h); font-size: 26px; font-weight: 700; color: var(--navy); }
.car-finance-from { font-size: 11px; color: var(--light); margin-top: 2px; }
.car-finance-from strong { color: var(--blue); font-weight: 700; }

/* ── CATEGORIES ────────────────────────────────────────── */
.cats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.cat-card { background: var(--silver); border: 1px solid var(--silver-mid); border-radius: var(--rl); padding: 22px 12px; text-align: center; text-decoration: none; cursor: pointer; transition: all 0.2s; }
.cat-card:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shm); }
.cat-card:hover .cat-label,.cat-card:hover .cat-count { color: white !important; }
.cat-emoji { font-size: 28px; display: block; margin-bottom: 8px; }
.cat-label { font-size: 13px; font-weight: 700; color: var(--text); display: block; }
.cat-count { font-size: 11px; color: var(--light); margin-top: 3px; display: block; }

/* ── FIRST DRIVER ──────────────────────────────────────── */
.first-driver-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); position: relative; overflow: hidden; }
.first-driver-section::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(-55deg,transparent,transparent 38px,rgba(255,255,255,0.015) 38px,rgba(255,255,255,0.015) 39px); }
.first-driver-inner { display: flex; align-items: center; gap: 60px; position: relative; z-index: 1; }
.first-driver-left { flex: 1; }
.first-driver-section .section-title { color: white; }
.first-driver-section .eyebrow { color: var(--blue-light); }
.first-driver-section .section-sub { color: rgba(255,255,255,0.55); }
.fd-steps { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.fd-step { display: flex; align-items: flex-start; gap: 16px; padding: 16px 18px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r); transition: all 0.2s; }
.fd-step:hover { background: rgba(255,255,255,0.09); border-color: rgba(74,144,217,0.3); }
.fd-step-num { width: 36px; height: 36px; flex-shrink: 0; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-size: 18px; font-weight: 700; color: white; }
.fd-step-title { font-size: 14px; font-weight: 700; color: white; }
.fd-step-desc { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 3px; }
.first-driver-right { flex: 0.8; }
.fd-price-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(74,144,217,0.3); border-radius: var(--rl); padding: 30px; text-align: center; }
.fd-price-label { font-size: 13px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.08em; }
.fd-price-range { font-family: var(--font-h); font-size: 52px; font-weight: 700; color: white; line-height: 1; margin: 10px 0; }
.fd-price-range span { color: var(--blue-light); font-size: 32px; }
.fd-price-sub { font-size: 13px; color: rgba(255,255,255,0.4); }
.fd-makes { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; justify-content: center; }
.fd-make-tag { background: rgba(30,86,200,0.2); border: 1px solid rgba(74,144,217,0.3); color: var(--blue-light); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 20px; }

/* ── FINANCE BANNER ────────────────────────────────────── */
.finance-banner { background: var(--blue-pale); border: 1px solid rgba(30,86,200,0.15); border-radius: var(--rl); padding: 48px 52px; display: flex; align-items: center; gap: 48px; position: relative; overflow: hidden; }
.finance-banner::before { content: ''; position: absolute; right: -80px; top: -80px; width: 300px; height: 300px; background: rgba(30,86,200,0.08); border-radius: 50%; }
.finance-left { flex: 1; position: relative; z-index: 1; }
.finance-right { min-width: 280px; position: relative; z-index: 1; }
.finance-calc { background: white; border: 1px solid rgba(30,86,200,0.15); border-radius: var(--rl); padding: 24px; }
.fc-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--blue); margin-bottom: 6px; }
.fc-amount { font-family: var(--font-h); font-size: 44px; font-weight: 700; color: var(--navy); line-height: 1; }
.fc-sub { font-size: 11px; color: var(--light); margin-top: 4px; margin-bottom: 0; }
.fc-range { width: 100%; margin: 14px 0; accent-color: var(--blue); }
.fc-range-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--light); }

/* ── WHY US ────────────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(220px,1fr)); gap: 16px; }
.why-card { background: var(--silver); border: 1px solid var(--silver-mid); border-radius: var(--rl); padding: 24px 20px; transition: all 0.2s; }
.why-card:hover { transform: translateY(-3px); box-shadow: var(--sh); border-color: var(--blue-light); }
.why-icon { width: 44px; height: 44px; background: var(--blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }
.why-title { font-family: var(--font-h); font-size: 19px; font-weight: 700; color: var(--navy); text-transform: uppercase; margin-bottom: 7px; }
.why-desc { font-size: 13px; color: var(--muted); line-height: 1.65; margin-bottom: 0; }

/* ── REVIEWS ───────────────────────────────────────────── */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 18px; }
.review-card { background: white; border: 1px solid var(--silver-mid); border-radius: var(--rl); padding: 22px; }
.review-stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; }
.review-text { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 12px; font-style: italic; margin-bottom: 0; }
.review-footer { display: flex; align-items: center; gap: 10px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--silver-mid); }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: var(--font-h); font-size: 15px; font-weight: 700; color: white; }
.review-name { font-size: 13px; font-weight: 700; color: var(--text); }
.review-date { font-size: 11px; color: var(--light); }
.google-g { margin-left: auto; font-size: 11px; color: var(--light); }

/* ── CTA ───────────────────────────────────────────────── */
.cta-section { background: var(--navy); padding: 72px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(30,86,200,0.2) 0%, transparent 65%); }
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-logo { margin: 0 auto 20px; max-width: 240px; }
.cta-logo img { width: 100%; }
.cta-title { font-family: var(--font-h); font-size: clamp(28px,4vw,48px); font-weight: 700; color: white; text-transform: uppercase; line-height: 1; }
.cta-sub { font-size: 15px; color: rgba(255,255,255,0.5); margin: 12px auto 32px; line-height: 1.6; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-info { margin-top: 28px; font-size: 13px; color: rgba(255,255,255,0.35); }

/* ── FOOTER ────────────────────────────────────────────── */
.site-footer { background: var(--navy); border-top: 3px solid var(--blue); padding: 56px 40px 28px; }
.footer-inner { max-width: 1400px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.footer-logo img { max-width: 200px; height: auto; margin-bottom: 14px; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.75; max-width: 260px; margin-bottom: 0; }
.footer-contact { margin-top: 18px; }
.footer-contact-row { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 7px; }
.footer-contact-row a { color: rgba(255,255,255,0.55); text-decoration: none; }
.footer-heading { font-family: var(--font-h); font-size: 16px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 22px; display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-legal a { color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }
.fca-notice { font-size: 11px; margin-top: 4px; color: rgba(255,255,255,0.25); max-width: 600px; }

/* ── WHATSAPP ──────────────────────────────────────────── */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 200; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; box-shadow: 0 4px 20px rgba(37,211,102,0.45); cursor: pointer; text-decoration: none; transition: transform 0.2s; animation: popIn 0.5s 1.5s ease both; }
.whatsapp-float:hover { transform: scale(1.12); }

/* ── LISTINGS PAGE ─────────────────────────────────────── */
.listings-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.filter-sidebar { background: white; border: 1px solid var(--silver-mid); border-radius: var(--rl); padding: 24px; position: sticky; top: 100px; }
.filter-title { font-family: var(--font-h); font-size: 20px; font-weight: 700; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--blue); color: var(--navy); }
.filter-group { margin-bottom: 20px; }
.filter-group label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--blue); margin-bottom: 6px; }
.filter-group select, .filter-group input { width: 100%; padding: 9px 12px; border: 1px solid var(--silver-mid); border-radius: 7px; font-family: var(--font-b); font-size: 14px; color: var(--text); outline: none; }
.filter-group select:focus, .filter-group input:focus { border-color: var(--blue); }
.filter-btn { width: 100%; background: var(--blue); color: white; border: none; cursor: pointer; font-family: var(--font-h); font-size: 18px; font-weight: 700; padding: 12px; border-radius: 9px; text-transform: uppercase; }
.listings-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.listings-count { font-size: 14px; color: var(--muted); }
.listings-sort select { padding: 7px 12px; border: 1px solid var(--silver-mid); border-radius: 7px; font-family: var(--font-b); font-size: 14px; outline: none; }

/* ── SINGLE CAR ─────────────────────────────────────────── */
.car-single-layout { display: grid; grid-template-columns: 1fr 380px; gap: 36px; align-items: start; }
.car-gallery-main img { width: 100%; border-radius: var(--rl); }
.car-gallery-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-top: 10px; }
.car-gallery-thumbs img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 8px; cursor: pointer; opacity: 0.7; transition: opacity 0.2s; }
.car-gallery-thumbs img:hover,.car-gallery-thumbs img.active { opacity: 1; }
.car-single-info { background: white; border: 1px solid var(--silver-mid); border-radius: var(--rl); padding: 28px; position: sticky; top: 100px; }
.car-single-price { font-family: var(--font-h); font-size: 42px; font-weight: 700; color: var(--navy); line-height: 1; }
.car-single-finance { font-size: 14px; color: var(--muted); margin-top: 4px; }
.car-single-finance strong { color: var(--blue); }
.car-single-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 20px 0; }
.spec-item { background: var(--silver); border-radius: 8px; padding: 10px 14px; }
.spec-item-label { font-size: 10px; font-weight: 700; text-transform: uppercase; color: var(--blue); letter-spacing: 0.06em; }
.spec-item-value { font-size: 14px; font-weight: 700; color: var(--navy); margin-top: 2px; }
.enquiry-form-wrap { background: var(--silver); border-radius: var(--rl); padding: 24px; margin-top: 20px; }
.enquiry-title { font-family: var(--font-h); font-size: 20px; font-weight: 700; text-transform: uppercase; color: var(--navy); margin-bottom: 14px; }

/* ── PAGE HERO ─────────────────────────────────────────── */
.page-hero { background: linear-gradient(135deg,var(--navy),var(--navy-mid)); padding: 60px 40px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(-55deg,transparent,transparent 38px,rgba(255,255,255,0.018) 38px,rgba(255,255,255,0.018) 39px); }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: white; font-size: clamp(32px,5vw,56px); }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 16px; max-width: 560px; margin: 12px auto 0; }

/* ── CONTACT ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info-card { background: var(--silver); border-radius: var(--rl); padding: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-icon { width: 44px; height: 44px; background: var(--blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-item-title { font-weight: 700; font-size: 14px; color: var(--navy); }
.contact-item-value { font-size: 14px; color: var(--muted); margin-top: 2px; }
.contact-item-value a { color: var(--blue); text-decoration: none; }
.map-placeholder { background: var(--silver-mid); border-radius: var(--rl); height: 300px; overflow: hidden; margin-top: 20px; }
.map-placeholder iframe { width: 100%; height: 100%; border: 0; }

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

/* ── FAQ ───────────────────────────────────────────────── */
.faq-item { border: 1px solid var(--silver-mid); border-radius: var(--r); margin-bottom: 10px; overflow: hidden; }
.faq-question { padding: 16px 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 700; font-size: 15px; color: var(--navy); background: white; }
.faq-question:hover { background: var(--silver); }
.faq-arrow { font-size: 18px; transition: transform 0.2s; color: var(--blue); }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer { display: none; padding: 14px 20px 18px; font-size: 14px; color: var(--muted); line-height: 1.7; border-top: 1px solid var(--silver-mid); background: var(--silver); }
.faq-item.open .faq-answer { display: block; }

/* ── SELL FORM ─────────────────────────────────────────── */
.sell-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 16px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.form-group input,.form-group select,.form-group textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--silver-mid); border-radius: 8px; font-family: var(--font-b); font-size: 14px; color: var(--text); outline: none; transition: border-color 0.2s; }
.form-group input:focus,.form-group select:focus,.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit { background: var(--blue); color: white; border: none; cursor: pointer; font-family: var(--font-h); font-size: 20px; font-weight: 700; padding: 15px 40px; border-radius: 10px; text-transform: uppercase; width: 100%; margin-top: 8px; }

/* ── PAGINATION ────────────────────────────────────────── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; flex-wrap: wrap; }
.page-numbers { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--silver-mid); font-size: 14px; font-weight: 700; color: var(--muted); text-decoration: none; transition: all 0.2s; }
.page-numbers:hover,.page-numbers.current { background: var(--blue); color: white; border-color: var(--blue); }

/* ── NO RESULTS ────────────────────────────────────────── */
.no-results { text-align: center; padding: 60px 20px; }
.no-results h2 { color: var(--muted); }

/* ── ANIMATIONS ────────────────────────────────────────── */
@keyframes fadeUp { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:none} }
@keyframes fadeLeft { from{opacity:0;transform:translateX(28px)} to{opacity:1;transform:none} }
@keyframes popIn { from{opacity:0;transform:scale(0.5)} 70%{transform:scale(1.12)} to{opacity:1;transform:scale(1)} }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.reveal { opacity:0; transform:translateY(24px); transition:opacity 0.55s ease,transform 0.55s ease; }
.reveal.visible { opacity:1; transform:none; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (min-width:768px) { .cats-grid { grid-template-columns: repeat(6,1fr); } }
@media (max-width:1024px) { .listings-layout { grid-template-columns: 1fr; } .filter-sidebar { position: static; } .car-single-layout { grid-template-columns: 1fr; } .car-single-info { position: static; } }
@media (max-width:900px) {
  .top-bar { display: none; }
  .nav-inner { padding: 0 20px; height: 72px; }
  .nav-logo img { height: 58px; }
  .nav-menu,.nav-phone { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 20px 20px 0; min-height: auto; }
  .hero-content { flex-direction: column; padding-bottom: 32px; gap: 28px; }
  .hero-h1 { font-size: 44px; }
  .hero-stats { gap: 18px; }
  .search-section { padding: 0 20px 32px; }
  .search-box { grid-template-columns: 1fr 1fr; }
  .search-group { border-right: none; border-bottom: 1px solid var(--silver-mid); }
  .search-group:nth-child(odd) { border-right: 1px solid var(--silver-mid); }
  .search-group:last-of-type { border-bottom: none; border-right: none; }
  .search-btn { grid-column: 1 / -1; width: 100%; justify-content: center; border-radius: 10px; }
  .trust-strip { padding: 14px 20px; }
  .trust-item { padding: 0 12px; min-width: 130px; }
  .section { padding: 48px 20px; }
  .makes-section { padding: 24px 20px; }
  .first-driver-inner { flex-direction: column; gap: 32px; }
  .finance-banner { flex-direction: column; gap: 28px; padding: 32px 24px; }
  .finance-right { width: 100%; min-width: unset; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cats-grid { grid-template-columns: repeat(3,1fr); }
  .contact-grid,.about-grid { grid-template-columns: 1fr; }
  .sell-form-grid { grid-template-columns: 1fr; }
}
@media (max-width:480px) {
  .hero-h1 { font-size: 36px; }
  .hero-stats { flex-wrap: wrap; gap: 14px; }
  .footer-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cats-grid { grid-template-columns: repeat(2,1fr); }
  .car-single-specs { grid-template-columns: 1fr; }
}
