/* ============================================================
   KONFOR NAKLİYAT — Kurumsal Web Sitesi
   Marka renkleri logodan türetilmiştir.
   ============================================================ */

:root {
  --orange: #f04e23;
  --orange-dark: #d13a10;
  --orange-deep: #b32f0a;
  --orange-soft: #ff7a4d;
  --cream: #fff6f1;
  --paper: #ffffff;
  --ink: #221a16;
  --ink-soft: #4a3f39;
  --muted: #6f5f56;
  --line: #f0e2da;
  --green-wa: #25d366;
  --green-wa-dark: #1ebe5d;
  --shadow-sm: 0 2px 10px rgba(34, 26, 22, 0.06);
  --shadow-md: 0 10px 30px rgba(34, 26, 22, 0.1);
  --shadow-lg: 0 24px 60px rgba(34, 26, 22, 0.16);
  --radius: 18px;
  --font-head: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
/* WebP <picture> sarmalı mevcut düzeni etkilemesin — img doğrudan çocuk gibi davranır */
picture { display: contents; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container { width: min(1180px, 92%); margin-inline: auto; }

section { padding: clamp(64px, 9vw, 110px) 0; }

/* ---------- Tipografi ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.18; }

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.section-lead {
  color: var(--muted);
  font-size: clamp(15px, 1.6vw, 17px);
  max-width: 640px;
}
.section-head { margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin-inline: auto; }
.section-head.center .eyebrow::before { display: none; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(240, 78, 35, 0.35);
}
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 14px 30px rgba(240, 78, 35, 0.42); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }

.btn-white {
  background: #fff;
  color: var(--orange);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { background: var(--cream); }

.btn-wa {
  background: var(--green-wa);
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.32);
}
.btn-wa:hover { background: var(--green-wa-dark); }

/* ---------- Üst Bilgi Çubuğu ---------- */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  padding: 9px 0;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar-group { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar a, .topbar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}
.topbar a:hover { color: var(--orange-soft); }
.topbar svg { width: 15px; height: 15px; color: var(--orange-soft); }

/* ---------- Navigasyon ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.navbar.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

/* Logo — yatay marka görseli */
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo {
  height: 46px;
  width: auto;
  border-radius: 9px;
  display: block;
  transition: transform 0.2s ease;
}
.brand:hover .brand-logo { transform: scale(1.03); }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 10px 14px;
  border-radius: 10px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); background: var(--cream); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 12px 22px; font-size: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  place-items: center;
}
.nav-toggle svg { width: 26px; height: 26px; color: var(--ink); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: clamp(56px, 8vw, 96px) 0 clamp(72px, 9vw, 120px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -220px; right: -180px;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14), transparent 68%);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -260px; left: -200px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.1), transparent 68%);
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  margin-bottom: 22px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-wa);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.18);
}

.hero h1 {
  font-size: clamp(34px, 5.4vw, 58px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #fff;
}
/* Şehir + hizmet satırı: SEO için H1 içinde, tasarımda üst başlık gibi durur */
.h1-kicker {
  display: block;
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
}
.hero h1 em {
  font-style: normal;
  color: #ffe1d2;
  position: relative;
  white-space: nowrap;
}
.hero h1 em svg {
  position: absolute;
  left: 0; bottom: -10px;
  width: 100%; height: 12px;
  color: rgba(255, 255, 255, 0.55);
}
.hero-lead {
  font-size: clamp(16px, 1.8vw, 18px);
  color: #fff;
  max-width: 520px;
  margin-bottom: 32px;
}
/* Turuncu zeminde birincil buton beyaza döner */
.hero .btn-primary {
  background: #fff;
  color: var(--orange);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}
.hero .btn-primary:hover { background: var(--cream); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 38px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 11px; }
.trust-item .t-ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--orange);
  box-shadow: var(--shadow-sm);
}
.trust-item .t-ico svg { width: 21px; height: 21px; }
.trust-item strong { display: block; font-family: var(--font-head); font-size: 15px; line-height: 1.2; color: #fff; }
.trust-item span { font-size: 12.5px; color: rgba(255, 255, 255, 0.95); }

/* Hero görsel */
.hero-visual { position: relative; }
.hero-visual .truck-card {
  background: #fff;
  border-radius: 26px;
  padding: clamp(20px, 3vw, 34px);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.hero-visual .truck-card svg { width: 100%; height: auto; }

.float-chip {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  animation: floaty 4.5s ease-in-out infinite;
}
.float-chip .c-ico {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.float-chip .c-ico svg { width: 18px; height: 18px; }
.float-chip small { display: block; font-weight: 500; color: var(--muted); font-size: 11.5px; }
.chip-1 { top: -18px; left: -14px; }
.chip-1 .c-ico { background: var(--orange); }
.chip-2 { bottom: -16px; right: -10px; animation-delay: 2.2s; }
.chip-2 .c-ico { background: var(--green-wa); }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- İstatistik Bandı ---------- */
.stats-band {
  background: var(--ink);
  padding: clamp(40px, 5vw, 58px) 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(240, 78, 35, 0.22), transparent 38%),
    radial-gradient(circle at 88% 80%, rgba(240, 78, 35, 0.16), transparent 38%);
}
.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { color: #fff; }
.stat-item .stat-num {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: -0.01em;
}
.stat-item .stat-num sup { font-size: 0.55em; font-weight: 800; }
.stat-item p { font-size: 14px; opacity: 0.92; font-weight: 500; margin-top: 4px; }

/* ---------- Hakkımızda ---------- */
.about .container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}
.about-visual { position: relative; }
.about-visual .about-img {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.6;
  background: linear-gradient(150deg, var(--orange), var(--orange-deep));
  position: relative;
}
/* Fotoğraf yedek ikonun üzerini kaplar; fotoğraf yüklenmezse ikon görünür */
.about-visual .about-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-visual .about-img .img-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
}
.about-visual .about-img .img-fallback svg { width: 42%; height: auto; }
.exp-badge {
  position: absolute;
  right: -18px; bottom: 34px;
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  padding: 18px 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.exp-badge .num {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 900;
  color: var(--orange-soft);
  line-height: 1;
}
.exp-badge p { font-size: 12.5px; opacity: 0.85; margin-top: 4px; max-width: 110px; }

.about-checklist { margin: 26px 0 30px; display: grid; gap: 13px; }
.about-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-soft);
}
.about-checklist .check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.about-checklist .check svg { width: 13px; height: 13px; }
.about-checklist strong { color: var(--ink); }

.about-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.about-mini {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--line);
}
.about-mini .m-ico {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}
.about-mini .m-ico svg { width: 20px; height: 20px; }
.about-mini h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 5px; }
.about-mini p { font-size: 13.5px; color: var(--muted); }

/* ---------- Hizmetler ---------- */
.services { background: var(--cream); position: relative; overflow: hidden; }
.services::before {
  content: "";
  position: absolute;
  top: -160px; right: -160px;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 78, 35, 0.09), transparent 65%);
}
.services-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(240, 78, 35, 0.3); }
.service-card:hover::after { transform: scaleX(1); }
.service-card .s-ico {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--cream);
  color: var(--orange);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: background 0.25s, color 0.25s;
}
.service-card:hover .s-ico { background: var(--orange); color: #fff; }
.service-card .s-ico svg { width: 27px; height: 27px; }
.service-card h3 { font-size: 18.5px; font-weight: 800; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; color: var(--muted); }

/* ---------- Süreç ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.process-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.process-step .p-num {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 900;
  color: rgba(240, 78, 35, 0.16);
  line-height: 1;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: var(--muted); }
.process-step .p-ico {
  position: absolute;
  top: 24px; right: 22px;
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--orange);
  display: grid;
  place-items: center;
}
.process-step .p-ico svg { width: 21px; height: 21px; }

/* ---------- Memnuniyet ---------- */
.satisfaction { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.satisfaction::before {
  content: "";
  position: absolute;
  top: -200px; left: -140px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 78, 35, 0.22), transparent 62%);
}
.satisfaction .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.satisfaction .section-lead { color: rgba(255, 255, 255, 0.72); }
.satisfaction .eyebrow { color: var(--orange-soft); }
.satisfaction .eyebrow::before { background: var(--orange-soft); }

.guarantee-list { display: grid; gap: 16px; margin-top: 28px; }
.guarantee-item {
  display: flex;
  gap: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 17px 19px;
  transition: background 0.25s, border-color 0.25s;
}
.guarantee-item:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(240, 78, 35, 0.5); }
.guarantee-item .g-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--orange);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.guarantee-item .g-ico svg { width: 22px; height: 22px; }
.guarantee-item h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 3px; }
.guarantee-item p { font-size: 13.5px; color: rgba(255, 255, 255, 0.65); }

.meter-group { display: grid; gap: 26px; }
.meter label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-head);
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 10px;
}
.meter label span { color: var(--orange-soft); }
.meter .bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.meter .bar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), var(--orange-soft));
  transition: width 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Yorumlar ---------- */
.testimonials { background: var(--cream); }

/* Puan özeti */
.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 46px);
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  padding: 22px clamp(22px, 4vw, 40px);
  max-width: 860px;
  margin: 0 auto clamp(30px, 4vw, 44px);
}
.rs-score { text-align: center; }
.rs-score strong {
  display: block;
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  color: var(--orange);
}
.rs-score .stars { display: flex; justify-content: center; gap: 3px; margin: 8px 0 5px; color: #f5a623; }
.rs-score .stars svg { width: 17px; height: 17px; }
.rs-score small { font-size: 12.5px; color: var(--muted); }
.rs-divider { width: 1px; align-self: stretch; background: var(--line); }
.rs-facts { display: flex; gap: clamp(18px, 3vw, 38px); flex-wrap: wrap; }
.rs-facts div { text-align: center; }
.rs-facts strong {
  display: block;
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
}
.rs-facts span { font-size: 12.5px; color: var(--muted); }

.slider { position: relative; max-width: 860px; margin-inline: auto; }
.slides { overflow: hidden; border-radius: 24px; }
.slides-track { display: flex; transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1); }
.slide { min-width: 100%; padding: 4px; }
.testimonial-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  padding: clamp(28px, 4vw, 44px);
  text-align: center;
}
.testimonial-card .quote-ico {
  width: 52px; height: 52px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--orange);
  display: grid;
  place-items: center;
}
.testimonial-card .quote-ico svg { width: 24px; height: 24px; }
.testimonial-card .stars { display: flex; justify-content: center; gap: 4px; margin-bottom: 18px; color: #f5a623; }
.testimonial-card .stars svg { width: 19px; height: 19px; }
.testimonial-card blockquote {
  font-size: clamp(15.5px, 1.8vw, 18px);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 24px;
  font-style: italic;
}
.testimonial-card .person { display: flex; align-items: center; justify-content: center; gap: 13px; }
.testimonial-card .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--orange), var(--orange-deep));
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
}
.testimonial-card .person strong { display: block; font-family: var(--font-head); font-size: 15px; text-align: left; }
.testimonial-card .person span { font-size: 12.5px; color: var(--muted); display: block; text-align: left; }

.slider-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 28px; }
.slider-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.slider-btn:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-2px); }
.slider-btn svg { width: 19px; height: 19px; }
.dots { display: flex; gap: 2px; }
/* Görünen nokta küçük ama dokunma alanı 26px — parmakla rahat basılır */
.dots button {
  min-width: 26px; height: 26px;
  padding: 0 4px;
  border: none;
  background: none;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.dots button::before {
  content: "";
  display: block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #e3d2c8;
  transition: background 0.2s, width 0.25s;
}
.dots button.active::before { background: var(--orange); width: 26px; border-radius: 999px; }

/* ---------- Galeri ---------- */
.gallery-filters { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 38px; }
.filter-btn {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; box-shadow: 0 8px 18px rgba(240, 78, 35, 0.3); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(150deg, #f7d6c8, var(--cream));
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s, box-shadow 0.28s, opacity 0.3s;
}
.gallery-item.hidden { display: none; }
.gallery-item:hover { transform: translateY(-5px) scale(1.01); box-shadow: var(--shadow-md); }
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item .g-fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--orange);
  opacity: 0.55;
}
.gallery-item .g-fallback svg { width: 64px; height: 64px; }
.gallery-item .g-label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 18px 15px;
  background: linear-gradient(180deg, transparent, rgba(24, 14, 9, 0.78));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  z-index: 2;
}
.gallery-item .g-label small {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  opacity: 0.8;
}

.gallery-note {
  text-align: center;
  margin-top: 26px;
  font-size: 13.5px;
  color: var(--muted);
}

/* ---------- Blog ---------- */
.blog { background: var(--cream); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-cover {
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.blog-cover.c1 { background: linear-gradient(140deg, var(--orange), var(--orange-deep)); }
.blog-cover.c2 { background: linear-gradient(140deg, #2b2019, var(--ink)); }
.blog-cover.c3 { background: linear-gradient(140deg, var(--orange-soft), var(--orange-dark)); }
.blog-cover svg { width: 64px; height: 64px; opacity: 0.92; transition: transform 0.4s; }
.blog-card:hover .blog-cover svg { transform: scale(1.12) rotate(-3deg); }
.blog-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.blog-meta {
  display: flex;
  gap: 14px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 12px;
}
.blog-meta span { display: inline-flex; align-items: center; gap: 5px; }
.blog-meta svg { width: 14px; height: 14px; color: var(--orange); }
.blog-body h3 { font-size: 17.5px; font-weight: 800; margin-bottom: 10px; line-height: 1.35; }
.blog-body p { font-size: 14px; color: var(--muted); margin-bottom: 18px; flex: 1; }
.blog-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap 0.2s;
}
.blog-link:hover { gap: 11px; }
.blog-link svg { width: 16px; height: 16px; }

/* ---------- SSS ---------- */
.faq-list {
  max-width: 860px;
  margin-inline: auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.faq-item[open] { border-color: rgba(240, 78, 35, 0.35); box-shadow: var(--shadow-md); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 56px 20px 24px;
  position: relative;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(15px, 1.7vw, 17px);
  color: var(--ink);
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--orange); }
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 11px; height: 11px;
  border-right: 2.5px solid var(--orange);
  border-bottom: 2.5px solid var(--orange);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq-item summary:focus-visible { outline: 3px solid rgba(240, 78, 35, 0.4); outline-offset: -3px; }
.faq-answer { padding: 0 24px 22px; }
.faq-answer p { font-size: 14.8px; color: var(--muted); line-height: 1.7; }
.faq-answer strong { color: var(--ink); }
.faq-answer a { color: var(--orange); font-weight: 600; }

/* ---------- CTA Bandı ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 100%);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.12), transparent 40%),
    radial-gradient(circle at 8% 90%, rgba(0, 0, 0, 0.1), transparent 45%);
}
.cta-band .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: #fff;
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 900;
  letter-spacing: -0.01em;
}
.cta-band p { color: rgba(255, 255, 255, 0.88); margin-top: 8px; max-width: 520px; }
.cta-band .cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- İletişim ---------- */
.contact .container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
.contact-info-list { display: grid; gap: 16px; margin-top: 30px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 19px 21px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.contact-info-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.contact-info-item .ci-ico {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(240, 78, 35, 0.3);
}
.contact-info-item .ci-ico.wa { background: var(--green-wa); box-shadow: 0 8px 18px rgba(37, 211, 102, 0.3); }
.contact-info-item .ci-ico svg { width: 23px; height: 23px; }
.contact-info-item h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 3px; }
.contact-info-item a, .contact-info-item p {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16.5px;
  color: var(--ink);
  transition: color 0.2s;
}
.contact-info-item a:hover { color: var(--orange); }
.contact-info-item small { display: block; font-family: var(--font-body); font-weight: 400; font-size: 13px; color: var(--muted); margin-top: 2px; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  padding: clamp(26px, 4vw, 40px);
}
.contact-form h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.contact-form > p { font-size: 14px; color: var(--muted); margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
}
.form-field label em { color: var(--orange); font-style: normal; }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  width: 100%;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(240, 78, 35, 0.12);
}
.form-submit { grid-column: 1 / -1; margin-top: 6px; }
.form-submit .btn { width: 100%; }
.form-note {
  grid-column: 1 / -1;
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
}

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255, 255, 255, 0.72); position: relative; overflow: hidden; }
.footer::before {
  content: "";
  position: absolute;
  bottom: -240px; right: -160px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 78, 35, 0.16), transparent 62%);
}
.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 4vw, 56px);
  padding: clamp(52px, 7vw, 76px) 0 44px;
}
.footer .brand-logo { height: 52px; }
.footer-about p { font-size: 14px; margin-top: 18px; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }

.footer h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.footer-links { display: grid; gap: 11px; }
.footer-links a {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}
.footer-links a::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.footer-links a:hover { color: var(--orange-soft); gap: 12px; }

.footer-contact { display: grid; gap: 14px; }
.footer-contact a, .footer-contact span {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--orange-soft); }
.footer-contact svg { width: 17px; height: 17px; color: var(--orange-soft); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom a { color: var(--orange-soft); font-weight: 600; }

/* ---------- WhatsApp Yüzen Buton ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--green-wa);
  color: #fff;
  border-radius: 999px;
  padding: 13px 22px 13px 15px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
  transition: transform 0.22s, box-shadow 0.22s, background 0.22s;
  animation: wa-pulse 2.6s infinite;
}
.wa-float:hover { transform: translateY(-4px) scale(1.03); background: var(--green-wa-dark); }
.wa-float svg { width: 26px; height: 26px; }
@keyframes wa-pulse {
  0% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Yukarı çık butonu */
.to-top {
  position: fixed;
  right: 26px;
  bottom: 92px;
  z-index: 199;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: none;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s, background 0.2s;
}
.to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--orange); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- Mobil Sabit Arama Çubuğu ---------- */
.mobile-cta-bar { display: none; }

@media (max-width: 860px) {
  .mobile-cta-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 300;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(0, 0, 0, 0.12);
    box-shadow: 0 -4px 20px rgba(34, 26, 22, 0.16);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-cta-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 16px 10px;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 15px;
    color: #fff;
  }
  .mobile-cta-bar svg { width: 19px; height: 19px; }
  .mcb-call { background: var(--orange); }
  .mcb-call:active { background: var(--orange-dark); }
  .mcb-wa { background: var(--green-wa); }
  .mcb-wa:active { background: var(--green-wa-dark); }
  body { padding-bottom: 62px; }
  .wa-float { display: none; }
  .to-top { bottom: 78px; }
}

/* ---------- Scroll Reveal ---------- */
/* JavaScript çalışmazsa içerik yine de görünür kalır */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.in { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.4s; }

/* ---------- Erişilebilirlik ---------- */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 6px;
}
.hero :focus-visible,
.satisfaction :focus-visible,
.cta-band :focus-visible,
.footer :focus-visible { outline-color: #fff; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 500;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 0 0 10px 10px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* Hareket azaltma tercihine saygı */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Duyarlı Tasarım ---------- */
@media (max-width: 1020px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; margin-inline: auto; width: 100%; }
  .about .container,
  .satisfaction .container,
  .contact .container { grid-template-columns: 1fr; }
  .services-grid, .blog-grid, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .about-visual { max-width: 480px; }
  .exp-badge { right: 10px; }
}

@media (max-width: 860px) {
  /* Alt sabit çubuk zaten arama/WhatsApp sunduğu için üstteki buton gizlenir —
     böylece menü butonu ekran kenarına sıkışmaz */
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: grid; }
  .navbar .container { min-height: 68px; }
  .nav-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 14px 4vw 20px;
    gap: 4px;
  }
  .nav-open .nav-links a { padding: 13px 16px; font-size: 15.5px; }
  .topbar-group.hours { display: none; }
  .brand-logo { height: 40px; }
}

@media (max-width: 640px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .services-grid, .blog-grid, .gallery-grid, .process-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .about-cards { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .wa-float span { display: none; }
  .wa-float { padding: 14px; }
  .to-top { bottom: 86px; right: 22px; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
  .chip-1 { left: 4px; }
  .chip-2 { right: 4px; }
}

/* ---------- Blog Yazı Sayfası ---------- */
.post-hero {
  background: linear-gradient(160deg, var(--orange) 0%, var(--orange-dark) 100%);
  padding: clamp(34px, 4.5vw, 52px) 0 clamp(38px, 5vw, 58px);
  color: #fff;
}
.post-hero .eyebrow { color: rgba(255, 255, 255, 0.9); }
.post-hero .eyebrow::before { background: rgba(255, 255, 255, 0.9); }
.post-hero h1 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 900;
  letter-spacing: -0.01em;
  max-width: 760px;
  text-wrap: balance;
}
.post-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}
.post-meta span { display: inline-flex; align-items: center; gap: 7px; }
.post-meta svg { width: 16px; height: 16px; }

.breadcrumb { font-size: 13.5px; margin-bottom: 18px; color: rgba(255, 255, 255, 0.85); }
.breadcrumb a { text-decoration: underline; text-underline-offset: 3px; }
.breadcrumb a:hover { color: #fff; }

.post-body {
  max-width: 760px;
  margin-inline: auto;
  padding: clamp(40px, 6vw, 64px) 0 clamp(48px, 7vw, 80px);
}
.post-body > * + * { margin-top: 20px; }
.post-body h2 {
  font-size: clamp(21px, 2.6vw, 28px);
  font-weight: 800;
  margin-top: 44px;
  letter-spacing: -0.01em;
}
.post-body h3 { font-size: clamp(17px, 2vw, 20px); font-weight: 800; margin-top: 30px; }
.post-body p { font-size: 16.5px; color: var(--ink-soft); line-height: 1.78; }
.post-body strong { color: var(--ink); }
.post-body ul, .post-body ol { padding-left: 22px; display: grid; gap: 10px; }
.post-body li { font-size: 16.5px; color: var(--ink-soft); line-height: 1.7; list-style: disc; }
.post-body ol li { list-style: decimal; }
.post-body a { color: var(--orange); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

.post-lead {
  font-size: 18.5px !important;
  color: var(--ink) !important;
  font-weight: 500;
  border-left: 4px solid var(--orange);
  padding-left: 20px;
}
.post-note {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 24px;
  margin-top: 32px;
}
.post-note p { font-size: 15.5px; margin: 0; }

.post-table-wrap { overflow-x: auto; margin-top: 26px; }
.post-table { border-collapse: collapse; width: 100%; min-width: 460px; font-size: 15px; }
.post-table th, .post-table td { padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--line); }
.post-table th { background: var(--cream); font-family: var(--font-head); font-weight: 700; font-size: 14px; }
.post-table td { color: var(--ink-soft); }

.post-cta {
  background: var(--ink);
  color: #fff;
  border-radius: 22px;
  padding: clamp(28px, 4vw, 40px);
  margin-top: 48px;
  text-align: center;
}
.post-cta h2 { color: #fff; margin-top: 0; font-size: clamp(20px, 2.4vw, 26px); }
.post-cta p { color: rgba(255, 255, 255, 0.75); font-size: 15.5px; margin-top: 10px; }
.post-cta .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

.post-nav {
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.post-nav a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.post-nav svg { width: 16px; height: 16px; }


/* ---------- Blog: kapak görseli ve içindekiler ---------- */
.post-kapak {
  max-width: 900px;
  margin: clamp(30px, 4vw, 44px) auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
}
.post-kapak img { width: 100%; height: 100%; object-fit: cover; }

.post-toc {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 26px;
  margin-top: 30px;
}
.post-toc .toc-baslik {
  font-size: 15px !important;
  font-weight: 800;
  margin: 0 0 12px !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.post-toc ul {
  padding-left: 0;
  display: grid;
  gap: 9px;
  margin: 0;
}
.post-toc li { font-size: 15px; list-style: none; color: var(--muted); }
.post-toc li::before {
  content: "→";
  color: var(--orange);
  font-weight: 700;
  margin-right: 9px;
}
.post-toc a {
  color: var(--ink-soft);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.post-toc a:hover { color: var(--orange); border-bottom-color: var(--orange); }

/* Bölüm başlıklarına çapa boşluğu — sabit menü altında kalmasınlar */
.post-body h2[id] { scroll-margin-top: 96px; }

/* Kırıntı yolu tek satırda kalsın */
.breadcrumb {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

/* ---------- Hizmet Sayfaları ---------- */
.hizmet-ozet {
  font-size: clamp(16px, 1.9vw, 18.5px);
  color: rgba(255, 255, 255, 0.95);
  max-width: 640px;
  margin-top: 16px;
  line-height: 1.7;
}
.hizmet-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

.hizmet-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 22px;
}
.hizmet-mini {
  display: block;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 18px 20px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.hizmet-mini:hover { transform: translateY(-3px); border-color: var(--orange); box-shadow: var(--shadow-sm); }
.hizmet-mini strong {
  display: block;
  font-family: var(--font-head);
  font-size: 15.5px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 5px;
}
.hizmet-mini span { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* Hizmet hub sayfası kartları */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.hub-kart {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.hub-kart:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(240, 78, 35, 0.3); }
.hub-kart .hub-gorsel { aspect-ratio: 16 / 10; position: relative; background: var(--cream); }
.hub-kart .hub-gorsel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hub-kart .hub-icerik { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.hub-kart h2 { font-size: 19px; font-weight: 800; margin-bottom: 9px; }
.hub-kart p { font-size: 14.5px; color: var(--muted); flex: 1; margin-bottom: 16px; line-height: 1.65; }
.hub-kart .hub-link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: gap 0.2s;
}
.hub-kart:hover .hub-link { gap: 11px; }
.hub-kart .hub-link svg { width: 16px; height: 16px; }

/* ---------- İlçe Listesi ---------- */
.ilce-listesi {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 48px);
}
.ilce-listesi h3 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.ilce-listesi ul {
  columns: 2;
  column-gap: 24px;
  padding: 0;
}
.ilce-listesi li {
  font-size: 14.5px;
  color: var(--muted);
  padding: 5px 0;
  break-inside: avoid;
}
.ilce-listesi li a { color: var(--orange); }
.ilce-listesi li a:hover { text-decoration: underline; }
.ilce-listesi li a strong { font-weight: 700; }
@media (max-width: 520px) { .ilce-listesi ul { columns: 1; } }
