/* ============================================================
   PUFİDUF AUTO — site stilleri
   Açık tema: krem zemin üzerinde marka turuncusu vurgu olarak.
   Palet tabeladan türetilmiştir (turuncu-kırmızı + amber).
   ============================================================ */

:root {
  --clr-bg: #f8f5ef;
  --clr-bg-alt: #f0ebe1;
  --clr-surface: #ffffff;
  --clr-border: #e5ded2;
  --clr-text: #272420;
  --clr-text-dim: #6e6a61;
  --clr-primary: #e0500f;      /* PUFİDUF turuncusu (açık zemine göre koyulaştırılmış) */
  --clr-accent: #8f6108;       /* amber — bağlantılar, küçük vurgular (AA kontrast) */
  --clr-accent-bright: #bf7e06;/* amber — büyük başlık kullanımı */
  --grad-brand: linear-gradient(92deg, #f05a1e, #f0a51e);
  --radius: 14px;
  --container: 1160px;
  --header-h: 76px;
  --shadow-card: 0 10px 28px rgba(70, 50, 25, 0.1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  background: var(--clr-bg);
  color: var(--clr-text);
  font-family: "Avenir Next", Avenir, "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--clr-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { line-height: 1.15; margin: 0 0 0.5em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: 1.1rem; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(18px, 4vw, 32px);
}

/* ---------- Üst menü ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(248, 245, 239, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.site-header.scrolled {
  background: rgba(248, 245, 239, 0.92);
  border-bottom-color: var(--clr-border);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  display: inline-flex;
  gap: 0.3ch;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-main { color: var(--clr-primary); }
.brand-accent { color: var(--clr-accent-bright); }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
}

.site-nav a {
  color: var(--clr-text);
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.2s, color 0.2s;
}
.site-nav a:hover { opacity: 1; color: var(--clr-primary); text-decoration: none; }

.nav-cta {
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--grad-brand);
  color: #2b1608 !important;
  opacity: 1 !important;
  font-weight: 800;
}
.nav-cta:hover { filter: brightness(1.06); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* 3D sahne yüklenene kadar da görünen sıcak krem fon */
  background:
    radial-gradient(1000px 480px at 82% 108%, rgba(240, 90, 30, 0.16), transparent 65%),
    radial-gradient(700px 400px at 8% 110%, rgba(240, 165, 30, 0.13), transparent 62%),
    linear-gradient(180deg, #faf7f1 0%, #f4efe5 100%);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.2s ease;
}
#hero-canvas.ready { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(250, 247, 241, 0.92) 0%, rgba(250, 247, 241, 0) 64%),
    linear-gradient(0deg, rgba(248, 245, 239, 0.9) 0%, transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: var(--header-h);
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--clr-accent);
  margin: 0 0 14px;
}

.hero-title {
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
}
.hero .brand-main { color: #ea5410; }
.hero .brand-accent { color: var(--clr-accent-bright); }

.hero-sub {
  max-width: 30ch; /* metin akışın üstüne uzanmasın */
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--clr-text-dim);
  margin: 0 0 30px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  transition: transform 0.15s, filter 0.2s, background 0.2s, border-color 0.2s, color 0.2s;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }

.btn-primary {
  background: var(--grad-brand);
  color: #2b1608;
  box-shadow: 0 8px 24px rgba(224, 80, 15, 0.28);
}
.btn-primary:hover { filter: brightness(1.06); }

.btn-ghost {
  color: var(--clr-text);
  border: 1px solid rgba(39, 36, 32, 0.3);
}
.btn-ghost:hover { border-color: var(--clr-primary); color: var(--clr-primary); }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(39, 36, 32, 0.3);
  border-radius: 999px;
}
.scroll-hint span {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--clr-primary);
  animation: scroll-drop 1.8s ease-in-out infinite;
}
@keyframes scroll-drop {
  0%   { transform: translateY(0);    opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0);    opacity: 0; }
}

/* ---------- Genel bölümler ---------- */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-alt { background: var(--clr-bg-alt); }

.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  color: #a8470d; /* küçük punto için koyulaştırılmış turuncu (AA) */
  margin: 0 0 10px;
}

.section-lead {
  max-width: 560px;
  color: var(--clr-text-dim);
  margin-top: -6px;
  margin-bottom: 36px;
}

/* ---------- Değer önerileri ---------- */
.value-strip {
  border-block: 1px solid var(--clr-border);
  background: var(--clr-bg-alt);
  padding: 34px 0;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 3vw, 40px);
}
.value-item h3 { color: #a8470d; margin-bottom: 6px; }
.value-item p { margin: 0; color: var(--clr-text-dim); font-size: 0.95rem; }

/* ---------- Hakkımızda ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.about-media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--clr-border);
}

.about-text p { color: var(--clr-text-dim); }
.about-text .btn { margin-top: 10px; }

/* ---------- Araç kartları ---------- */
.car-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.car-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, border-color 0.2s;
}
.car-card:hover { transform: translateY(-4px); border-color: rgba(224, 80, 15, 0.45); }

/* Araç görsel alanı koyu kalır: gece vitrini çerçevesi, markanın imzası */
.car-media {
  position: relative;
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  background:
    radial-gradient(420px 200px at 50% 120%, rgba(255, 96, 18, 0.18), transparent 70%),
    linear-gradient(180deg, #201a15, #15110d); /* footer ile aynı sıcak siyah aile */
}

.car-silhouette {
  width: 62%;
  fill: #332a22;
  filter: drop-shadow(0 12px 14px rgba(0, 0, 0, 0.45));
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #2b1608;
  background: var(--grad-brand);
}

.car-body { padding: 18px 20px 20px; }
.car-body h3 { font-size: 1.02rem; margin-bottom: 10px; }

/* Fotoğrafsız kart: sol turuncu şerit + rozet gövde içinde */
.car-card-nofoto {
  border-left: 3px solid var(--clr-primary);
}
.car-card-nofoto .car-body { padding: 22px 22px 24px; }
.car-body .badge {
  position: static;
  display: inline-block;
  margin-bottom: 12px;
}
.car-specs-note { margin: 0; color: var(--clr-text-dim); font-size: 0.9rem; }

.car-specs {
  display: flex;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--clr-text-dim);
  font-size: 0.85rem;
}

.car-note { color: var(--clr-text-dim); margin-top: 26px; font-size: 0.95rem; }

/* ---------- Hizmetler ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.service-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s, border-color 0.2s;
}
.service-card:hover { transform: translateY(-4px); border-color: rgba(224, 80, 15, 0.4); }

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 16px;
  color: #a8470d;
  background: rgba(224, 80, 15, 0.08);
  border: 1px solid rgba(224, 80, 15, 0.22);
}
.service-icon svg { width: 26px; height: 26px; }

.service-card p { margin: 0; color: var(--clr-text-dim); font-size: 0.92rem; }

/* ---------- İletişim ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 30px;
  align-items: stretch;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-card);
}
.contact-card h3 {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a8470d;
  margin-bottom: 8px;
}
.contact-card p { margin: 0; font-size: 1rem; }

.map-placeholder {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 10px;
  min-height: 280px;
  border-radius: var(--radius);
  border: 1px dashed #d9cfbe;
  background:
    radial-gradient(400px 220px at 50% 10%, rgba(240, 90, 30, 0.06), transparent 70%),
    var(--clr-surface);
  color: var(--clr-text-dim);
}
.map-placeholder svg { width: 42px; height: 42px; color: var(--clr-primary); }
.map-placeholder p { margin: 0; }

/* Gömülü Google Haritası */
.map-embed {
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-card);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: 0;
}

/* ---------- Alt bilgi: koyu blok, markanın gece vitrini imzası ---------- */
.site-footer {
  border-top: 1px solid var(--clr-border);
  background: #17130e;
  color: #f0ece4;
  padding-top: 44px;
}

.site-footer .brand-main { color: #ff6a2a; }
.site-footer .brand-accent { color: #f5a623; }

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 26px;
  padding-bottom: 30px;
}

.footer-brand { font-size: 1.15rem; margin: 0 0 6px; }
.footer-tag { margin: 0; color: #a59e92; font-size: 0.92rem; }
.footer-adres { margin: 10px 0 0; color: #8b8478; font-size: 0.85rem; line-height: 1.5; }

.footer-social { display: flex; gap: 12px; margin: 16px 0 0; }
.footer-social a {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  color: #a59e92;
  border: 1px solid #2e281f;
  transition: color 0.2s, border-color 0.2s;
}
.footer-social a:hover { color: #f5a623; border-color: #f5a623; text-decoration: none; }
.footer-social svg { width: 20px; height: 20px; }

.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-nav a { color: #a59e92; font-size: 0.92rem; }
.footer-nav a:hover { color: #f5a623; text-decoration: none; }

.footer-legal {
  border-top: 1px solid #2e281f;
  padding-block: 16px;
}
.footer-legal p { margin: 0; color: #8b8478; font-size: 0.85rem; }

/* ---------- WhatsApp butonu (resmi logo) ---------- */
.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  width: 60px;
  height: 60px;
  display: block;
  transition: transform 0.15s;
  filter: drop-shadow(0 8px 18px rgba(20, 60, 30, 0.3));
}
.whatsapp-fab:hover { transform: scale(1.07); }
.whatsapp-fab img { width: 100%; height: 100%; display: block; }

/* ---------- Kaydırma animasyonları ----------
   Yalnızca JS çalışıyorsa (html.js) gizlenir; JS yoksa içerik hep görünür. */
html.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
html.js .reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-hint span { animation: none; }
}

/* Ekran okuyucular için görünmez başlık */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   Alt sayfalar: araç listesi, araç detayı, rehber
   ============================================================ */

/* ---------- Sayfa başlığı bandı ---------- */
.page-head {
  padding: calc(var(--header-h) + clamp(28px, 5vw, 56px)) 0 clamp(24px, 4vw, 44px);
  background:
    radial-gradient(700px 300px at 85% 120%, rgba(240, 90, 30, 0.1), transparent 65%),
    linear-gradient(180deg, #faf7f1 0%, var(--clr-bg) 100%);
  border-bottom: 1px solid var(--clr-border);
}
.page-head h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 6px 0 8px; }
.page-head-compact { padding-bottom: 10px; }
.page-lead { max-width: 62ch; color: var(--clr-text-dim); margin: 0; }

.breadcrumb {
  font-size: 0.85rem;
  color: var(--clr-text-dim);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.breadcrumb a { color: var(--clr-text-dim); }
.breadcrumb a:hover { color: var(--clr-primary); text-decoration: none; }

/* ---------- Filtre çubuğu ---------- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 14px;
  padding: 18px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
}
.filter-bar label {
  display: grid;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--clr-text-dim);
  text-transform: uppercase;
}
.filter-bar select {
  min-width: 150px;
  padding: 10px 12px;
  font: inherit;
  color: var(--clr-text);
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: 10px;
}
.filter-bar select:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 1px;
}
.btn-small { padding: 10px 20px; font-size: 0.9rem; }

.sonuc-sayisi { color: var(--clr-text-dim); font-size: 0.9rem; min-height: 1.4em; margin: 0 0 18px; }

.listing-section { padding-top: clamp(28px, 4vw, 44px); }

.empty-state {
  text-align: center;
  padding: 48px 20px;
  display: grid;
  gap: 14px;
  justify-items: center;
  color: var(--clr-text-dim);
}
.empty-state[hidden] { display: none; } /* display:grid, hidden özniteliğini ezmesin */
.empty-state p { margin: 0; }

/* "Yükleniyor" yazısı yalnızca JS çalışırken görünür (JS'siz ziyaretçiyi yanıltmasın) */
#yukleniyor { display: none; }
html.js #yukleniyor { display: block; }

/* ---------- Araç kartı ekleri ---------- */
.car-link { display: block; color: inherit; }
.car-link:hover { text-decoration: none; }
.car-price {
  margin: 12px 0 0;
  font-weight: 800;
  font-size: 1.08rem;
  color: #a8470d;
}
.badge-rezerve { background: linear-gradient(92deg, #6e6a61, #8c8779); color: #fff; }

/* ---------- Araç detayı ---------- */
.detail-section { padding-top: clamp(24px, 4vw, 40px); }
.detail-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}
/* Fotoğrafsız araç detayı: tek sütun, ortalanmış okunur genişlik */
.detail-grid-tek { grid-template-columns: 1fr; max-width: 640px; }

.gallery { display: grid; gap: 12px; }
.gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  background: linear-gradient(180deg, #201a15, #15110d);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-empty { padding: 24px; text-align: center; color: #b9ae9e; gap: 10px; }
.gallery-empty .car-silhouette { width: 46%; }
.gallery-empty p { margin: 0; font-size: 0.92rem; }

.gallery-thumbs { display: flex; flex-wrap: wrap; gap: 10px; }
.gallery-thumb {
  width: 84px;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 2px solid var(--clr-border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: none;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--clr-primary); }
.gallery-thumb:focus-visible { outline: 2px solid var(--clr-primary); outline-offset: 2px; }

.detail-info h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 6px; }
.price-big {
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 900;
  color: #a8470d;
  margin: 0 0 18px;
}

.ornek-uyari {
  margin: 0 0 14px;
  padding: 9px 14px;
  border-radius: 10px;
  background: rgba(224, 80, 15, 0.08);
  border: 1px solid rgba(224, 80, 15, 0.25);
  color: #a8470d;
  font-size: 0.85rem;
  font-weight: 600;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.spec-table th, .spec-table td {
  text-align: left;
  padding: 10px 6px;
  border-bottom: 1px solid var(--clr-border);
}
.spec-table th { color: var(--clr-text-dim); font-weight: 600; width: 40%; }
.spec-table td { font-weight: 700; font-variant-numeric: tabular-nums; }

.detail-alt-baslik {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a8470d;
  margin: 22px 0 10px;
}
.detail-aciklama { color: var(--clr-text-dim); margin: 0; }

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.chip {
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
}

.detail-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.detail-not { color: var(--clr-text-dim); font-size: 0.88rem; margin: 12px 0 0; }

.similar { margin-top: clamp(40px, 6vw, 72px); }
.similar h2 { font-size: 1.4rem; margin-bottom: 18px; }

/* ---------- Rehber ---------- */
.rehber-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.rehber-card {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.2s, border-color 0.2s;
}
.rehber-card:hover { transform: translateY(-4px); border-color: rgba(224, 80, 15, 0.4); }
.rehber-card[hidden] { display: none; } /* display:flex, hidden özniteliğini ezmesin */
.rehber-card h2 { font-size: 1.08rem; margin: 0; }
.rehber-card h2 a { color: var(--clr-text); }
.rehber-card h2 a:hover { color: var(--clr-primary); text-decoration: none; }
.rehber-card p { margin: 0; color: var(--clr-text-dim); font-size: 0.92rem; flex: 1; }
.rehber-meta { font-size: 0.8rem; color: var(--clr-text-dim); letter-spacing: 0.04em; }
.rehber-devam { font-weight: 700; font-size: 0.9rem; color: #a8470d; }

.article-body {
  max-width: 70ch;
  margin-inline: auto;
}
.article-body h2 {
  font-size: 1.35rem;
  margin: 36px 0 12px;
}
.article-body h3 { font-size: 1.05rem; margin: 24px 0 8px; }
.article-body p, .article-body li { color: #4b473f; }
.article-body ul, .article-body ol { padding-left: 22px; }
.article-body li { margin-bottom: 6px; }
.article-meta {
  display: flex;
  gap: 14px;
  color: var(--clr-text-dim);
  font-size: 0.85rem;
  margin: 8px 0 0;
}

.faq { max-width: 70ch; margin: 36px auto 0; }
.faq h2 { font-size: 1.35rem; margin-bottom: 14px; }
.faq details {
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  background: var(--clr-surface);
  padding: 14px 18px;
  margin-bottom: 10px;
}
.faq summary { font-weight: 700; cursor: pointer; }
.faq summary:focus-visible { outline: 2px solid var(--clr-primary); outline-offset: 2px; }
.faq details p { margin: 10px 0 0; color: var(--clr-text-dim); }

.article-cta {
  max-width: 70ch;
  margin: 40px auto 0;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.article-cta p { margin: 0; font-weight: 600; }

/* Kategori filtresi (rehber indeksi) */
.kategori-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}
.kategori-chip {
  padding: 8px 18px;
  border-radius: 999px;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--clr-text-dim);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.kategori-chip:hover { border-color: var(--clr-primary); color: var(--clr-primary); }
.kategori-chip.active {
  background: var(--grad-brand);
  border-color: transparent;
  color: #2b1608;
}
.kategori-chip:focus-visible { outline: 2px solid var(--clr-primary); outline-offset: 2px; }

/* İlgili yazılar */
.ilgili { margin-top: clamp(40px, 6vw, 64px); }
.ilgili h2 { font-size: 1.35rem; margin-bottom: 18px; }
.ilgili .rehber-card h3 { font-size: 1.02rem; margin: 0; }
.ilgili .rehber-card h3 a { color: var(--clr-text); }
.ilgili .rehber-card h3 a:hover { color: var(--clr-primary); text-decoration: none; }

/* Footer rehber kolonu */
.footer-col-baslik {
  margin: 0 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #f5a623;
}
.footer-col-nav { display: grid; gap: 8px; max-width: 340px; }
.footer-col-nav a { color: #a59e92; font-size: 0.9rem; }
.footer-col-nav a:hover { color: #f5a623; text-decoration: none; }

/* Ana sayfa SSS */
.sss-liste { max-width: 760px; }
.sss-liste details {
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  background: var(--clr-surface);
  padding: 16px 20px;
  margin-bottom: 10px;
}
.sss-liste summary { font-weight: 700; cursor: pointer; }
.sss-liste summary:focus-visible { outline: 2px solid var(--clr-primary); outline-offset: 2px; }
.sss-liste details p { margin: 10px 0 0; color: var(--clr-text-dim); }

/* ---------- Duyarlı düzen ---------- */
@media (max-width: 960px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .car-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .about-media { order: 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .rehber-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  /* Dar ekranda metin üstte, akış alt yarıda kalır */
  .hero { align-items: flex-start; }
  .hero-content { padding-top: calc(var(--header-h) + 9vh); }

  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 22px;
    background: rgba(248, 245, 239, 0.98);
    border-bottom: 1px solid var(--clr-border);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
  }
  .site-nav.open { transform: none; opacity: 1; visibility: visible; }
  .site-nav a { padding: 13px 4px; border-bottom: 1px solid var(--clr-border); }
  .site-nav a:last-child { border-bottom: 0; }
  .nav-cta { margin-top: 12px; text-align: center; }

  .value-grid { grid-template-columns: 1fr; }
  .car-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .rehber-grid { grid-template-columns: 1fr; }
  .filter-bar label { flex: 1; }
  .filter-bar select { width: 100%; min-width: 0; }
  /* Dar pillerde uzun etiket tek satıra sığsın, iki buton eşit yükseklikte kalsın */
  .hero-actions .btn { flex: 1; text-align: center; padding-inline: 16px; }
}
