/* =========================================================
   Toyota Sandıkçı 2 — Anasayfa stilleri
   Tasarım sistemi: Manrope, Navy + Toyota Red + Beyaz
   ========================================================= */

:root {
  /* Renkler */
  --red: #E60012;
  --red-700: #B8000E;
  --navy: #0E1E3A;
  --navy-2: #142a52;
  --navy-3: #1b3766;
  --bg: #FFFFFF;
  --surface-1: #F8F9FB;
  --surface-2: #F1F3F8;
  --border: #E5E7EB;
  --text: #111827;
  --text-mid: #4B5563;
  --text-soft: #9CA3AF;
  --green: #16A34A;
  --amber: #D97706;
  --blue: #1D4ED8;

  /* Tipografi */
  --ff: 'Manrope', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Layout */
  --container: 1440px;
  --gap: 24px;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 24px;

  /* Gölge */
  --shadow-sm: 0 1px 2px rgba(14, 30, 58, 0.06);
  --shadow: 0 4px 16px rgba(14, 30, 58, 0.08);
  --shadow-lg: 0 8px 32px rgba(14, 30, 58, 0.12);
  --shadow-xl: 0 24px 64px rgba(14, 30, 58, 0.18);

  /* Easing */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; letter-spacing: -0.02em; font-weight: 700; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; }

/* Container */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }

/* Number / price */
.tnum { font-feature-settings: "tnum"; font-variant-numeric: tabular-nums; }

/* ===========================================================
   BUTTONS
   =========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), box-shadow 0.18s var(--ease), color 0.18s var(--ease);
  white-space: nowrap;
}
.btn:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-700); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(230, 0, 18, 0.28); }
.btn-secondary { background: var(--navy); color: #fff; }
.btn-secondary:hover { background: var(--navy-2); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-ghost { background: transparent; color: var(--navy); }
.btn-ghost:hover { background: var(--surface-1); }
.btn-white { background: #fff; color: var(--navy); }
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1ea952; color: #fff; transform: translateY(-1px); }
.btn-lg { height: 56px; padding: 0 28px; font-size: 15px; }
.btn-sm { height: 36px; padding: 0 14px; font-size: 13px; }
.btn-block { width: 100%; }

/* ===========================================================
   FORM SELECT — Sandıkçı brand styling
   Reusable native <select> replacement (CSS-only, no JS)
   =========================================================== */
.sandikci-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230E1E3A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 40px 10px 14px;
  font-family: var(--ff);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--navy);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  min-width: 180px;
}
.sandikci-select:hover { border-color: var(--navy); }
.sandikci-select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.1);
}
.sandikci-select:disabled {
  background-color: var(--surface-1);
  cursor: not-allowed;
  opacity: 0.6;
}
.sandikci-select-sm {
  padding: 6px 32px 6px 10px;
  font-size: 13px;
  min-width: 120px;
  background-size: 14px;
  background-position: right 10px center;
}
.sandikci-select option {
  padding: 8px 12px;
  font-family: var(--ff);
}

/* ===========================================================
   TOP BAR
   =========================================================== */
.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 12.5px;
  height: 38px;
  display: flex;
  align-items: center;
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a, .topbar span { color: #fff; opacity: 0.85; transition: opacity 0.18s, color 0.18s; display: inline-flex; align-items: center; gap: 6px; }
.topbar a:hover { opacity: 1; color: #fff; }
.topbar .wa { background: #25D366; color: #fff; padding: 4px 12px; border-radius: 999px; font-weight: 600; opacity: 1; }
.topbar .wa:hover { background: #1ebd5a; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a { opacity: 0.7; }
.topbar-social a:hover { opacity: 1; color: var(--red); }
.topbar-left .divider { width: 1px; height: 14px; background: rgba(255,255,255,0.18); }
@media (max-width: 767px) {
  .topbar { font-size: 11.5px; height: 34px; }
  .topbar-left .tel, .topbar-right .social-label { display: none; }
  .topbar-left, .topbar-right { gap: 12px; }
}

/* ===========================================================
   HEADER
   =========================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s var(--ease);
}
.header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  gap: 32px;
}
.logo {
  height: 72px;
  display: inline-flex;
  align-items: center;
}
.logo img { height: 72px; width: auto; object-fit: contain; display: block; }
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav a {
  position: relative;
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
  border-radius: 6px;
  transition: color 0.18s, background 0.18s;
}
.nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.22s var(--ease), left 0.22s var(--ease);
}
.nav a:hover { color: var(--red); }
.nav a:hover::after { width: 60%; left: 20%; }
.header-cta { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background 0.18s, color 0.18s;
}
.icon-btn:hover { background: var(--surface-1); color: var(--red); }
.menu-toggle { display: none; }
@media (max-width: 1023px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 640px) {
  .header-inner { height: 80px; }
  .logo { height: 56px; }
  .logo img { height: 56px; }
  .header-cta { gap: 6px; }
  .icon-btn { width: 40px; height: 40px; }
  .btn-randevu { padding: 0 14px; height: 40px; font-size: 13px; }
  .header-cta .icon-btn.fav { display: none; }
}
@media (max-width: 380px) {
  .logo { height: 48px; }
  .logo img { height: 48px; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  color: #fff;
  z-index: 60;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.32s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu-head .logo {
  background: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
}
.mobile-menu-head .logo img { height: 44px; width: auto; object-fit: contain; display: block; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin-top: 12px; }
.mobile-menu nav a {
  font-size: 22px;
  font-weight: 700;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #fff;
}
.mobile-menu nav a:hover { color: var(--red); }
.mobile-menu-foot { margin-top: auto; display: flex; flex-direction: column; gap: 12px; }

/* ===========================================================
   HERO
   =========================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 100% 0%, var(--navy-3), transparent 60%),
    radial-gradient(900px 500px at 0% 100%, var(--navy-2), transparent 50%),
    linear-gradient(180deg, var(--navy) 0%, #0a1730 100%);
  color: #fff;
  overflow: hidden;
  padding: 80px 0 200px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 30%, transparent 80%);
}
.hero-slider {
  position: relative;
  min-height: 540px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), visibility 0s linear 0.55s;
  pointer-events: none;
}
.hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), visibility 0s;
}
.hero-slide.active .hero-copy > * { animation: heroFadeUp 0.7s var(--ease) both; }
.hero-slide.active .hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-slide.active .hero-copy > *:nth-child(2) { animation-delay: 0.15s; }
.hero-slide.active .hero-copy > *:nth-child(3) { animation-delay: 0.25s; }
.hero-slide.active .hero-copy > *:nth-child(4) { animation-delay: 0.35s; }
.hero-slide.active .hero-vehicle { animation: heroFadeIn 0.8s var(--ease) 0.15s both; }
.hero-slide.active .hero-pill { animation: heroFadeUp 0.6s var(--ease) both; }
.hero-slide.active .hero-pill.pill-1 { animation-delay: 0.4s; }
.hero-slide.active .hero-pill.pill-2 { animation-delay: 0.55s; }
.hero-slide.active .hero-pill.pill-3 { animation-delay: 0.7s; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 48px;
}

/* Hero nav (dots + arrows) */
.hero-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  z-index: 4;
}
.hero-dots {
  display: flex;
  gap: 14px;
  flex: 1;
  max-width: 540px;
}
.hero-dot {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: transparent;
  text-align: left;
  padding: 0;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.hero-dot:hover { color: rgba(255,255,255,0.85); }
.hero-dot .bar {
  display: block;
  height: 3px;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.hero-dot .fill {
  position: absolute;
  inset: 0;
  background: var(--red);
  transform-origin: left;
  transform: scaleX(0);
}
.hero-dot.active { color: #fff; }
.hero-dot.active .fill { animation: dotFill 6s linear forwards; }
.hero-dot.paused .fill { animation-play-state: paused; }
@keyframes dotFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.hero-dot .dot-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero-arrows {
  display: flex;
  gap: 8px;
}
.hero-arrows button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s var(--ease);
}
.hero-arrows button:hover { background: var(--red); border-color: var(--red); }

@media (max-width: 1023px) {
  .hero-slider { min-height: auto; }
  .hero-nav { position: relative; bottom: auto; margin-top: 24px; flex-direction: column; align-items: stretch; }
  .hero-dots { max-width: none; }
  .hero-dot .dot-label { display: none; }
  .hero-arrows { align-self: flex-end; }
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--red); box-shadow: 0 0 0 4px rgba(230, 0, 18, 0.22); }
.hero h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  margin: 20px 0 16px;
}
.hero h1 .accent { color: #fff; position: relative; white-space: nowrap; }
.hero h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 8px;
}
.hero-stat .num { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; }
.hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }

.hero-vehicle {
  position: relative;
  aspect-ratio: 5 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-vehicle .halo {
  position: absolute;
  inset: 10% 0% 10% 10%;
  background: radial-gradient(ellipse at 50% 60%, rgba(230,0,18,0.22), transparent 65%);
  filter: blur(20px);
}
.hero-vehicle svg { position: relative; width: 100%; height: auto; max-width: 640px; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.45)); }
.hero-photo { aspect-ratio: 5/4; border-radius: 18px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.08); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo .hero-pill { z-index: 3; }

.hero-pill {
  position: absolute;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.hero-pill .ico {
  width: 32px; height: 32px; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12);
}
.hero-pill .label { color: rgba(255,255,255,0.7); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; }
.hero-pill .val { font-weight: 700; font-size: 14px; }
.hero-pill.pill-1 { top: 18%; left: -4%; }
.hero-pill.pill-2 { bottom: 22%; left: -2%; }
.hero-pill.pill-3 { top: 28%; right: -2%; }

@media (max-width: 1023px) {
  .hero { padding: 56px 0 140px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-vehicle { order: 2; aspect-ratio: 16/10; }
  .hero-pill.pill-1 { top: 8%; left: 2%; }
  .hero-pill.pill-2 { bottom: 6%; left: 2%; }
  .hero-pill.pill-3 { top: 8%; right: 2%; }
  .hero-stats { gap: 20px; }
}
@media (max-width: 640px) {
  .hero { padding: 36px 0 220px; }
  .hero-stat .num { font-size: 22px; }
  .hero-pill { font-size: 12px; padding: 10px 12px; }
  .hero-pill .ico { width: 28px; height: 28px; }
}

/* ===========================================================
   SEARCH WIDGET (overlapping hero & next section)
   =========================================================== */
.search-wrap {
  position: relative;
  margin-top: -110px;
  z-index: 5;
}
.search-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 8px;
}
.search-tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--surface-1);
  border-radius: var(--radius);
}
.search-tabs button {
  flex: 1;
  height: 44px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-mid);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.18s var(--ease);
}
.search-tabs button.active { background: #fff; color: var(--navy); box-shadow: var(--shadow-sm); }
.search-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0;
  padding: 8px 4px 4px;
  align-items: end;
}
.search-field {
  padding: 12px 16px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.search-field:last-of-type { border-right: none; }
.search-field label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
}
.search-field select, .search-field input {
  border: none;
  background: transparent;
  padding: 0;
  height: 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23111827' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 22px;
}
.search-field input { background-image: none; padding-right: 0; cursor: text; }

/* Custom select (cselect) — replaces native <select> so dropdown panel uses brand fonts */
.cselect { position: relative; }
.cselect-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  border: none;
  background: transparent;
  padding: 0;
  height: 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  outline: none;
}
.cselect-btn:focus-visible { outline: 2px solid var(--brand-red); outline-offset: 2px; border-radius: 2px; }
.cselect-caret {
  flex-shrink: 0;
  color: var(--text);
  transition: transform 180ms ease;
}
.cselect.is-open .cselect-caret { transform: rotate(180deg); }
.cselect-list {
  position: absolute;
  top: calc(100% + 10px);
  left: -8px;
  right: -8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 16px 40px rgba(14, 30, 58, 0.14), 0 4px 12px rgba(14, 30, 58, 0.06);
  padding: 6px;
  max-height: 280px;
  overflow-y: auto;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms;
  font-family: inherit;
}
.cselect.is-open .cselect-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cselect-list li {
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: background-color 120ms ease, color 120ms ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cselect-list li:hover,
.cselect-list li:focus-visible {
  background: #f5f6f8;
  outline: none;
}
.cselect-list li.is-selected {
  background: var(--brand-navy);
  color: #fff;
  font-weight: 600;
}
.cselect-list li.is-selected:hover { background: var(--brand-navy); }
/* Slim scrollbar inside dropdown */
.cselect-list::-webkit-scrollbar { width: 8px; }
.cselect-list::-webkit-scrollbar-thumb { background: #d6d9de; border-radius: 4px; }
.cselect-list::-webkit-scrollbar-track { background: transparent; }
.search-submit { padding: 4px; }
.search-submit .btn { height: 56px; padding: 0 28px; }
.search-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-mid);
}
.search-meta .quick {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.search-meta .chip {
  padding: 4px 10px;
  background: var(--surface-1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  transition: all 0.15s;
}
.search-meta .chip:hover { background: var(--navy); color: #fff; }

@media (max-width: 1023px) {
  .search-wrap { margin-top: -90px; }
  .search-form { grid-template-columns: 1fr 1fr; }
  .search-field:nth-child(2) { border-right: none; }
  .search-field { border-bottom: 1px solid var(--border); }
  .search-submit { grid-column: 1 / -1; }
  .search-submit .btn { width: 100%; }
  .search-meta .quick { display: none; }
}
@media (max-width: 640px) {
  .search-wrap { margin-top: -180px; }
  .search-card { border-radius: var(--radius); }
  .search-form { grid-template-columns: 1fr; }
  .search-field { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ===========================================================
   SECTIONS
   =========================================================== */
.section { padding: 96px 0; }
.section-light { background: var(--surface-1); }
.section-navy { background: var(--navy); color: #fff; }
.section-red { background: var(--red); color: #fff; }
@media (max-width: 767px) { .section { padding: 64px 0; } }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  max-width: 640px;
}
.section-head .lead {
  color: var(--text-mid);
  font-size: 16px;
  margin-top: 12px;
  max-width: 560px;
}
.section-head .seemore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  white-space: nowrap;
}
.section-head .seemore:hover { color: var(--red); gap: 10px; }
.section-navy .section-head .seemore { color: #fff; }
.section-navy .section-head .lead { color: rgba(255,255,255,0.7); }
@media (max-width: 640px) {
  .section-head { flex-direction: column; align-items: flex-start; margin-bottom: 28px; }
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
  margin-bottom: 12px;
}
.section-navy .eyebrow { color: #ff6776; }

/* ===========================================================
   TRUST STRIP
   =========================================================== */
.trust {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  background: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-item .ico {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--surface-1);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trust-item h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.trust-item p { font-size: 13px; color: var(--text-mid); line-height: 1.4; }
@media (max-width: 1023px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .trust-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   FEATURED VEHICLES SLIDER
   =========================================================== */
.featured-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.tabs-pill {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}
.tabs-pill button {
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-mid);
  transition: all 0.18s var(--ease);
}
.tabs-pill button.active { background: var(--navy); color: #fff; }
.slider-arrows { display: flex; gap: 8px; }
.slider-arrows button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s var(--ease);
}
.slider-arrows button:hover:not(:disabled) { background: var(--navy); color: #fff; border-color: var(--navy); }
.slider-arrows button:disabled { opacity: 0.4; cursor: not-allowed; }

.slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 4);
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 12px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.slider::-webkit-scrollbar { display: none; }
.slider > * { scroll-snap-align: start; }
/* UA-stylesheet'in [hidden] { display: none } kuralı, yukarıdaki .slider { display: grid }
   tarafından specificity nedeniyle eziliyor. Featured tab switching için açıkça override et. */
.featured-pane[hidden] { display: none !important; }
@media (max-width: 1023px) {
  .slider { grid-auto-columns: calc((100% - 24px) / 2); }
}
@media (max-width: 640px) {
  .slider { grid-auto-columns: 78%; }
}

/* Vehicle Card */
.v-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease), border-color 0.22s;
  display: flex;
  flex-direction: column;
}
.v-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.v-image {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #eef1f7 0%, #dde3ed 100%);
  overflow: hidden;
}
.v-image svg { position: absolute; left: 50%; bottom: 6%; transform: translateX(-50%); width: 88%; }
.v-image .brand-mark {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255,255,255,0.95);
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--navy);
  text-transform: uppercase;
}
.v-image .fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: all 0.18s var(--ease);
}
.v-image .fav:hover, .v-image .fav.active { color: var(--red); transform: scale(1.05); }
.v-image .fav.active svg { fill: var(--red); }
.v-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 2;
  max-width: calc(100% - 24px);
}
.badge {
  font-size: 9.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 3px 8px;
  border-radius: 4px;
  color: #fff;
}
#featured .v-badges .badge {
  font-size: 10.5px;
  padding: 5px 9px;
  letter-spacing: 0.05em;
}
.badge.badge-green     { background: var(--green) !important; color: #fff !important; }
.badge.badge-amber     { background: var(--amber) !important; color: #fff !important; }
.badge.badge-blue      { background: #3B82F6 !important; color: #fff !important; }
.badge.badge-red       { background: var(--red) !important; color: #fff !important; }
.badge.badge-navy      { background: var(--navy) !important; color: #fff !important; }
.badge.badge-premium   { background: #8B5CF6 !important; color: #fff !important; }
.badge.badge-hibrit    { background: #10B981 !important; color: #fff !important; }
.badge.badge-elektrik  { background: #06B6D4 !important; color: #fff !important; }
.badge.badge-dusukkm   { background: #F59E0B !important; color: #1a1a1a !important; }
.badge.badge-yeni      { background: var(--red) !important; color: #fff !important; }
.badge.badge-soft-green { background: rgba(22,163,74,0.1) !important; color: var(--green) !important; }

.v-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.v-title {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 10px;
}
.v-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.v-specs > span { display: inline-flex; align-items: center; }
.v-specs > span + span::before {
  content: '';
  width: 3px;
  height: 3px;
  background: var(--text-soft);
  border-radius: 999px;
  margin: 0 8px;
  display: inline-block;
}
.v-loc {
  font-size: 12.5px;
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}
.v-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.v-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  font-feature-settings: "tnum";
}
.v-finance {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
  margin-top: 6px;
}
.v-detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--surface-1);
  color: var(--navy);
  transition: all 0.18s var(--ease);
}
.v-card:hover .v-detail-link { background: var(--red); color: #fff; }

/* ===========================================================
   CATEGORIES
   =========================================================== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  overflow: hidden;
  transition: all 0.22s var(--ease);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cat:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.cat::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--red-700) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.cat:hover::after { transform: scaleX(1); }
.cat-ico {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--surface-1);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: auto;
  transition: all 0.22s var(--ease);
}
.cat:hover .cat-ico { background: var(--navy); color: #fff; }
.cat-body { margin-top: 24px; }
.cat-title { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.cat-count { font-size: 13.5px; color: var(--text-mid); }
.cat-arrow {
  position: absolute;
  top: 28px;
  right: 24px;
  color: var(--text-soft);
  transition: all 0.22s var(--ease);
}
.cat:hover .cat-arrow { color: var(--red); transform: translateX(4px); }
@media (max-width: 900px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cat-grid { grid-template-columns: 1fr; } .cat { min-height: 160px; } }

/* ===========================================================
   CAMPAIGN BANNER (RED)
   =========================================================== */
.campaign {
  background: linear-gradient(135deg, var(--red) 0%, #b30010 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}
.campaign::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.campaign-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.18);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.campaign h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
}
.campaign h2 .big {
  display: block;
  font-size: 1.5em;
  letter-spacing: -0.03em;
}
.campaign p {
  font-size: 17px;
  opacity: 0.92;
  max-width: 480px;
  margin-bottom: 24px;
}
.campaign-meta {
  display: flex;
  gap: 32px;
  font-size: 13px;
  align-items: center;
}
.campaign-meta .meta-row { display: flex; align-items: center; gap: 8px; opacity: 0.9; }
.campaign-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.campaign-graphic {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.campaign-graphic .badge-big {
  background: #fff;
  color: var(--red);
  padding: 28px 28px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 24px 64px rgba(0,0,0,0.25);
  transform: rotate(-3deg);
}
.campaign-graphic .badge-big .pct {
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  display: block;
}
.campaign-graphic .badge-big .lbl {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-top: 4px;
}
@media (max-width: 900px) {
  .campaign { padding: 40px 28px; grid-template-columns: 1fr; }
  .campaign-graphic { order: -1; justify-content: flex-start; }
  .campaign-graphic .badge-big { padding: 20px; }
  .campaign-graphic .badge-big .pct { font-size: 52px; }
}

/* ===========================================================
   WHY SANDIKÇI (navy)
   =========================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.22s var(--ease);
}
.why-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.why-num {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-num::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--red);
  display: inline-block;
}
.why-ico {
  width: 56px; height: 56px;
  border-radius: 12px;
  background: rgba(230,0,18,0.15);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-item h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.why-item p { color: rgba(255,255,255,0.7); font-size: 15px; line-height: 1.6; }
.why-item .learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 600;
  font-size: 13.5px;
  margin-top: 16px;
  transition: gap 0.2s;
}
.why-item .learn:hover { gap: 10px; color: #ff6776; }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 16px; } }

/* ===========================================================
   TESTIMONIALS
   =========================================================== */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.test {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: all 0.22s var(--ease);
}
.test:hover { box-shadow: var(--shadow); border-color: transparent; transform: translateY(-2px); }
.test .stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  line-height: 1;
  font-size: 18px;
}
.test .star.filled { color: #E60012; }
.test .star.empty  { color: #E0E0E0; }
.test-quote {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 24px;
  flex: 1;
}
.test-quote::before {
  content: '"';
  display: block;
  font-size: 64px;
  color: var(--red);
  line-height: 0.6;
  margin-bottom: 8px;
  font-weight: 800;
}
.test-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--border); }
.test-avatar {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
}
.test-name { font-weight: 700; font-size: 14.5px; }
.test-car { font-size: 12.5px; color: var(--text-mid); margin-top: 2px; }
@media (max-width: 900px) { .test-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   NEWS / BLOG
   =========================================================== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.22s var(--ease);
}
.news:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.news-img {
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}
.news-img .ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,0.95);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 6px;
  color: var(--red);
}
.news-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.news-meta { font-size: 12px; color: var(--text-soft); display: flex; gap: 12px; margin-bottom: 10px; font-weight: 600; }
.news-meta .dot { width: 3px; height: 3px; background: var(--text-soft); border-radius: 999px; align-self: center; }
.news-title { font-size: 18px; font-weight: 700; line-height: 1.35; margin-bottom: 10px; color: var(--text); }
.news-excerpt { font-size: 14px; color: var(--text-mid); line-height: 1.55; flex: 1; margin-bottom: 16px; }
.news-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
}
.news:hover .news-link { color: var(--red); gap: 10px; }
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   CTA BLOCK (RED) - "Aracını mı Satıyorsun?"
   =========================================================== */
.cta-block {
  background:
    radial-gradient(800px 400px at 100% 100%, rgba(255,255,255,0.15), transparent 60%),
    linear-gradient(135deg, var(--red) 0%, #a8000e 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -60px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  transform: translateY(-50%);
}
.cta-block::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  transform: translateY(-50%);
}
.cta-block .eyebrow { color: rgba(255,255,255,0.7); margin-bottom: 16px; }
.cta-block h2 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 16px;
}
.cta-block p {
  font-size: 17px;
  opacity: 0.92;
  max-width: 480px;
  margin-bottom: 24px;
  line-height: 1.55;
}
.cta-block .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-side {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cta-step {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(6px);
}
.cta-step .n { font-size: 28px; font-weight: 800; opacity: 0.4; letter-spacing: -0.04em; }
.cta-step .t { font-weight: 700; font-size: 15px; }
.cta-step .s { font-size: 12.5px; opacity: 0.75; margin-top: 2px; }
@media (max-width: 900px) {
  .cta-block { padding: 40px 28px; grid-template-columns: 1fr; }
}

/* ===========================================================
   FOOTER
   =========================================================== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer .logo img { height: 64px; }
.footer-about p { margin-top: 20px; line-height: 1.65; max-width: 320px; }
.footer-about .info { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.footer-about .info > span { display: inline-flex; gap: 10px; align-items: flex-start; }
.footer-about .info svg { color: #ff6776; margin-top: 2px; flex-shrink: 0; }

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { transition: color 0.15s, transform 0.15s; display: inline-block; }
.footer-col a:hover { color: #fff; transform: translateX(2px); }

.footer-news h4 { margin-bottom: 12px; }
.footer-news p { margin-bottom: 16px; line-height: 1.55; max-width: 320px; }
.news-form {
  display: flex;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  overflow: hidden;
  max-width: 360px;
}
.news-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 14px;
  color: #fff;
  outline: none;
  font-size: 14px;
}
.news-form input::placeholder { color: rgba(255,255,255,0.4); }
.news-form button {
  background: var(--red);
  color: #fff;
  padding: 0 18px;
  font-weight: 600;
  font-size: 13px;
  transition: background 0.15s;
}
.news-form button:hover { background: var(--red-700); }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }

.footer-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #833AB4 0%, #FD1D1D 50%, #FCB045 100%);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-social-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(253, 29, 29, 0.3);
  color: #fff;
}
.footer-social-pill svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}
.footer-bottom ul { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom .partner { display: flex; align-items: center; gap: 12px; font-size: 12px; opacity: 0.6; }

@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .footer { padding-top: 56px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 20px 0; }
  .footer-bottom ul { gap: 16px; }
}

/* ===========================================================
   UTILS
   =========================================================== */
.flex { display: flex; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

/* Scroll lock when mobile menu open */
body.lock { overflow: hidden; }


/* Hero poster (boxed promotional banner) */
.hero-poster {
  position: relative;
  aspect-ratio: 5/6;
  max-height: 520px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.10);
  background: #0b1224;
  justify-self: end;
  width: 100%;
  max-width: 420px;
}
.hero-poster img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 1023px) {
  .hero-poster { max-height: none; aspect-ratio: 4/3; max-width: 100%; justify-self: stretch; order: 2; }
}


/* Real photo on vehicle card */
.v-card .v-photo { background: #fff !important; }
.v-card .v-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.v-card .v-photo .brand-mark, .v-card .v-photo .fav, .v-card .v-photo .v-badges { z-index: 2; }
