﻿/* =========================================================
   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); }
/* Header WhatsApp CTA — daha dar yeşil alan, yazı/ikon font-size sabit */
.btn-randevu { height: 38px; padding: 0 14px; }
.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 LOADER — full-bleed ince kırmızı çizgi (YouTube tarzı yükleme dolumu)
   position:fixed → scroll'da kaybolmaz. Açılışta scaleX(0)→(1) BİR KEZ dolar.
   Design: .top-loader / @keyframes topLoadFill (Claude Design Slider-2026)
   =========================================================== */
.top-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 9999;
  animation: topLoadFill 2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes topLoadFill {
  0% { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
  .top-loader { animation: none; transform: scaleX(1); }
}

/* ===========================================================
   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: 62px;   /* ince/siki header: logo 56 + ~3px nefes; ust kirmizi cizgi, alt slider, beyaz serit yok */
  gap: 32px;
}
.logo {
  height: 56px;   /* mockup logo yuksekligi korunur — tam gorunur, KIRPILMAZ */
  display: inline-flex;
  align-items: center;
  align-self: center;   /* flex-end kaldirildi -> ust/alt fazla beyaz bosluk yok, dikey ortali */
}
.logo img { height: 56px; 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; }
/* ===== Mobil header (<=1023px): SADECE tam logo banner + sag ustte hamburger.
   Instagram / WhatsApp / Arama gizli. Masaustu (>1023px) hic degismez. ===== */
@media (max-width: 1023px) {
  .nav { display: none; }

  /* Logo tam banner: full-width, KIRPILMADAN ("2" dahil) — cover DEGIL, contain */
  .header-inner {
    height: auto;
    gap: 0;
    padding: 0;
    position: relative;
    align-items: stretch;
    justify-content: flex-start;
  }
  .logo {
    height: auto;
    width: 100%;
    margin: 0;
    align-items: stretch;
  }
  .logo img { height: auto; width: 100%; object-fit: contain; display: block; }

  /* Sadece hamburger — sag ustte, beyaz Xchange seridiyle (logoyla) dikey ortali.
     Beyaz serit banner'in ust ~%38'i; merkezi ~%19 -> sabit top:8px yerine serit referansli. */
  .header-cta {
    position: absolute;
    top: 19%;
    transform: translateY(-50%);
    right: 14px;
    bottom: auto;
    padding: 0; gap: 0;
    align-items: center;
  }
  .header-cta .icon-btn[aria-label="Ara"],
  .header-cta .icon-btn[aria-label="Instagram"],
  .header-cta .btn-randevu { display: none !important; }

  .menu-toggle {
    display: inline-flex;
    align-items: center;      /* ikon dikey ortali */
    justify-content: center;  /* ikon yatay ortali */
    width: 44px; height: 44px;
    border-radius: 8px;
    background: rgba(15,23,42,0.08);
    color: var(--navy);
    margin-top: 0;
  }
  .menu-toggle svg { width: 24px; height: 24px; }  /* iri + belirgin */
}

/* 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); }
/* Drawer logo: kucuk beyaz kutu + bol bosluk YERINE tam banner (edge-to-edge) + dar beyaz */
.mobile-menu-head {
  position: relative;
  display: block;
  margin: -24px -24px 0;   /* .mobile-menu padding'ini (24px) sifirla -> banner edge-to-edge */
}
.mobile-menu-head .logo {
  background: transparent;  /* beyaz kutu kalksin; beyaz sadece logonun kendi Xchange kisminda */
  padding: 0;
  border-radius: 0;
  width: 100%;
  display: block;
}
.mobile-menu-head .logo img { width: 100%; height: auto; object-fit: contain; display: block; }
.mobile-menu-head #menuClose {
  position: absolute;
  top: 19%;                     /* beyaz Xchange seridiyle (logoyla) dikey ortali */
  transform: translateY(-50%);
  right: 14px;
  bottom: auto;
  z-index: 2;
  color: var(--navy);  /* beyaz Xchange seridi uzerinde gorunur */
}
.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: var(--navy);
  overflow: hidden;
}
.hero-photo-mode::before { display: none; }

/* ===== Claude Design "hero-photo-mode": full-bleed <img class="hero-bg"> + sol overlay ===== */
.hero-photo-mode .hero-slider { position: relative; min-height: 0; }
.hero-photo-mode .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s var(--ease), visibility 0s linear 0.6s;
  pointer-events: none;
}
.hero-photo-mode .hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.6s var(--ease), visibility 0s;
}
/* max-height:620px KALDIRILDI: genis ekranlarda (>1612px) kutuyu 1300/500
   oranindan saptirip cover'in banner'i ust/alttan kirpmasina sebep oluyordu
   (ör. erken-teslim banner'indaki ust logo bandi 1920px'te kesiliyordu).
   aspect-ratio her genislikte TAM 2.6:1 kutu uretir -> cover hicbir zaman
   kirpmaz (banner dosyalari zaten tam 1300x500). object-fit: cover KORUNDU. */
.hero-photo-mode .hero-bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1300 / 500;
}
.hero-photo-mode .hero-slide.active .hero-bg { animation: heroPhotoIn 0.9s var(--ease) both; }
@keyframes heroPhotoIn {
  from { opacity: 0.5; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}
.hero-photo-mode .hero-slide-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.hero-photo-mode .hero-copy {
  max-width: 48%;
  padding-left: 64px;
  pointer-events: auto;
}
.hero-photo-mode .hero-slide.active .hero-copy h1 { animation: heroFadeUp 0.7s var(--ease) 0.1s both; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-photo-mode .hero-copy h1 {
  font-size: clamp(28px, 4vw, 54px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  color: #fff;
}
.hero-photo-mode .hero-copy h1 .accent { display: inline-block; position: relative; white-space: nowrap; }
.hero-photo-mode .hero-copy h1 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -3px;   /* cizgi span'in KENDI alt kenarina kilitli (inline-block); cok satirli h1'de ust satira binmez */
  height: 5px;
  background: var(--red);
  border-radius: 2px;
}
.hero-photo-mode .hero-copy .hero-sub {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  margin: 16px 0 22px;
  max-width: 92%;
}
/* Slide checklist — BadgeText ';' maddeleri (navy scrim uzerinde okunur) */
.hero-photo-mode .hero-copy .hero-checklist {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-photo-mode .hero-copy .hero-checklist li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.24);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
}
.hero-photo-mode .hero-copy .hero-checklist li svg {
  flex-shrink: 0;
  color: var(--green);
}

/* Arrows (design) */
.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); }
.hero-photo-mode .hero-arrows {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
}
.hero-photo-mode .hero-arrows button {
  pointer-events: auto;
  width: 46px;
  height: 46px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

/* Eyebrow rozet -- Hakkimizda/Iletisim hero'larinda kullaniliyor (slider'da degil) */
.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); }

/* Search karti photo-mode slider ile overlap: -56px idi, ama icerikli banner'larda
   (ör. haftanin-araci fiyat karti) alt kenara yakin metni tamamen ortuyordu
   (1440px'te "Kazancınız: 69.000 TL" rozeti kayboluyordu). Guvenli kucuk bir
   payla degistirildi -> tab seridi hala hafifce biner, banner icerigi ortulmez. */
.hero-photo-mode + .search-wrap { margin-top: -12px; }

/* ===== MOBIL (<768px): overlay DEGIL -> DIKEY STACK =====
   Ustte gorsel (tam & net, yazi binmez), altta solid navy blok (baslik+altyazi+checklist).
   Desktop overlay modeli (>=768px) AYNEN korunur. */
@media (max-width: 767px) {
  /* Aktif slide: dikey kolon (gorsel ustte, yazi altta) */
  .hero-photo-mode .hero-slide.active {
    display: flex;
    flex-direction: column;
  }

  /* Gorsel: yeni gorsellerde navy sol-kutu ~%50'de sert kenarla biter. Kutuya
     aspect-ratio 1.3/1 verilince object-fit:cover TAM olarak sag yariyi gosterir;
     navy sol kutu her ekran genisliginde kirpilir (zoom hack'ine gerek yok).
     object-position:right -> kirpma soldan yapilir, sagdaki dolu foto tam kalir. */
  .hero-photo-mode .hero-bg {
    aspect-ratio: 1.3 / 1;
    height: auto;
    max-height: none;
    width: 100%;
    object-fit: cover;
    object-position: right center;
  }

  /* Yazi blogu: gorselin ALTINDA, solid navy zemin (overlay degil) */
  .hero-photo-mode .hero-slide-inner {
    position: static;
    inset: auto;
    display: block;
    width: 100%;
    max-width: none;
    padding: 20px 20px 22px;   /* baslik-only: subtitle/checklist gidince blok basliga otursun */
    background: var(--navy);
    pointer-events: auto;
  }
  .hero-photo-mode .hero-copy {
    max-width: none;
    padding-left: 0;
  }
  .hero-photo-mode .hero-copy h1 { font-size: clamp(23px, 6.2vw, 30px); margin: 0; }  /* accent alt-cizgi korunur */
  /* Mobilde subtitle gizli kalir; badge'ler (checklist) basligin altinda lacivert bant icinde gorunur.
     flex-wrap ile 3 badge sigmazsa alt satira gecer; bant (.hero-slide-inner) auto-height -> otomatik uzar. */
  .hero-photo-mode .hero-copy .hero-sub { display: none; }
  /* 3 badge kompakt (11px): 430px'te tek satira sigar; cok dar ekranda (360px) tasmadan 2+1 sarar (wrap). */
  .hero-photo-mode .hero-copy .hero-checklist { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 12px; }
  .hero-photo-mode .hero-copy .hero-checklist li { font-size: 11px; padding: 5px 9px; gap: 5px; white-space: nowrap; }
  .hero-photo-mode .hero-copy .hero-checklist li svg { width: 12px; height: 12px; }

  /* Oklar: gorsel dikey merkezinde (gorsel yuksekligi = genislik/1.3, merkez ~= 38vw),
     genislige uyum saglar; araclarin ustune degil kenarlara oturur */
  .hero-photo-mode .hero-arrows {
    top: 38vw;
    bottom: auto;
    transform: translateY(-50%);
    padding: 0 10px;
  }
  .hero-photo-mode .hero-arrows button { width: 38px; height: 38px; }

  /* Arama karti: mobilde overlap KAPAT — yazi blogunu ortmesin, tam gorunsun */
  .hero-photo-mode + .search-wrap { margin-top: 16px; }
}

/* ===========================================================
   SEARCH WIDGET (overlapping hero & next section)
   =========================================================== */
.search-wrap {
  position: relative;
  margin-top: -110px;
  z-index: 5;
}
.search-card {
  background: #fff;
  border: 1px solid var(--red);
  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(--red);
}
.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-graphic {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Faizsiz finansman banner (Claude Design) ===== */
.campaign-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 4px;
}
.campaign-chips .chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.campaign-chips .chip svg { flex-shrink: 0; opacity: 0.95; }
.campaign-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-size: 14px;
  color: rgba(255,255,255,0.92);
}
.campaign-note .wa-ico {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.campaign-note strong { font-weight: 800; font-feature-settings: 'tnum' 1; }
.finance-card {
  width: 100%;
  max-width: 360px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
}
.finance-card .fc-top {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
}
.finance-card .fc-top .big {
  font-size: 52px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--red);
  font-feature-settings: 'tnum' 1;
}
.finance-card .fc-top .lbl {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  line-height: 1.2;
}
.finance-card .fc-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
}
.finance-card .fc-row:last-child { border-bottom: none; }
.finance-card .fc-row .fc-ico {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(230,0,18,0.08);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.finance-card .fc-row .fc-val {
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.finance-card .fc-row .fc-cap {
  font-size: 12.5px;
  color: var(--text-mid);
  margin-top: 1px;
}
@media (max-width: 900px) {
  .campaign { padding: 40px 28px; grid-template-columns: 1fr; }
  .finance-card { max-width: none; }
}

/* ===========================================================
   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; }


/* 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; }

/* ===== TÜM ARAÇLAR (random) bölümü — grid + "Daha Fazla Göster" =====
   Kart stili _VehicleCard partial'indan (.v-card) gelir; burada sadece grid + gizleme + buton. */
.tum-araclar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.tum-arac-item.is-hidden { display: none; }
.tum-araclar-more { text-align: center; margin-top: 32px; }
.btn-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 15px;
  color: var(--red);
  background: transparent;
  border: 1.5px solid var(--red);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.18s var(--ease), color 0.18s var(--ease), transform 0.18s var(--ease);
}
.btn-more:hover { background: var(--red); color: #fff; transform: translateY(-1px); }
.btn-more:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
@media (max-width: 1280px) { .tum-araclar-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 1023px) { .tum-araclar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .tum-araclar-grid { grid-template-columns: 1fr; } }
