/* =========================================================
   Kayseri Acil Kurye Hizmetleri — style.css
   AÇIK TEMA (Light) · Ferah · Fotoğraflı · Hareketli · Premium
   Vanilla CSS · Mobil öncelikli · JS class/ID'leri korunmuştur
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root {
  --yellow: #F5B800;
  --yellow-deep: #A96F00;
  --yellow-soft: #FFF6DB;

  --white: #FFFFFF;
  --bg-1: #F8F9FA;   /* bölüm ayırıcı açık gri */
  --bg-2: #F4F4F4;   /* daha derin açık gri */

  --ink: #111111;    /* ana başlık metni */
  --ink-2: #333333;  /* gövde metni */
  --muted: #6B7280;  /* ikincil / gri metin */

  --border: rgba(17, 17, 17, 0.09);
  --border-strong: rgba(17, 17, 17, 0.16);

  --wa: #25D366;

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'Space Mono', ui-monospace, monospace;

  --radius: 18px;
  --radius-sm: 12px;

  /* Yumuşak, ferah gölgeler (light tema) */
  --shadow-xs: 0 2px 8px rgba(17, 17, 17, 0.05);
  --shadow-sm: 0 8px 24px -12px rgba(17, 17, 17, 0.14);
  --shadow-md: 0 18px 45px -20px rgba(17, 17, 17, 0.22);
  --shadow-lg: 0 34px 70px -28px rgba(17, 17, 17, 0.30);
  --shadow-yellow: 0 16px 36px -14px rgba(245, 184, 0, 0.55);

  --container: 1180px;
  --header-h: 88px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--yellow); color: var(--ink); padding: 10px 16px; border-radius: 0 0 8px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--yellow-deep); outline-offset: 2px; border-radius: 4px; }

/* ---------- Eyebrow (başlık üstü etiket + çizgi) ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--yellow-deep);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 3px; border-radius: 3px; background: var(--yellow); display: inline-block;
}
.eyebrow.dark { color: var(--yellow-deep); }
.eyebrow.dark::before { background: var(--yellow); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 24px; border-radius: 999px; font-weight: 700; font-size: 0.98rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap; line-height: 1;
}
.btn .ico { width: 20px; height: 20px; fill: currentColor; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--yellow); color: var(--ink); box-shadow: var(--shadow-yellow); }
.btn-primary:hover { background: #ffc61f; box-shadow: 0 20px 44px -14px rgba(245,184,0,0.7); }

.btn-ghost { background: var(--white); color: var(--ink); border: 1.5px solid var(--border-strong); box-shadow: var(--shadow-xs); }
.btn-ghost:hover { background: var(--bg-1); border-color: var(--ink); }

.btn-line { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--white); }

.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #000; }

.btn-outline-dark { background: transparent; color: var(--ink); border: 1.5px solid rgba(17,17,17,0.35); }
.btn-outline-dark:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.btn-lg { padding: 16px 30px; font-size: 1.02rem; }
.btn-block { width: 100%; }

/* =========================================================
   HEADER
   ========================================================= */
/* Koyu glassmorphism header — beyaz logonun kusursuz görünmesi için
   (Sitenin geri kalanı açık tema; SADECE bu menü çubuğu koyu.) */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(17, 17, 17, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(17, 17, 17, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 30px -12px rgba(0, 0, 0, 0.5);
}
.header-inner { height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 16px; }

.brand { display: flex; align-items: center; gap: 12px; }
/* Yatay formata uyumlu esnek logo: yüksekliğe göre ölçeklenir — daha gösterişli */
.brand-logo { height: 62px; width: auto; max-width: 280px; object-fit: contain; display: block; }
/* Mobil menü logosu — masaüstünde gizli, yalnızca mobil menüde görünür */
.mobile-nav-logo { display: none; }
.brand-mark {
  display: none; width: 46px; height: 46px; border-radius: 12px;
  background: var(--yellow); color: var(--ink);
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  align-items: center; justify-content: center; letter-spacing: -0.02em;
}
/* Yeni logo tam metin kilidini içerdiğinden yanındaki yazı işareti gizlendi
   (tekrarı önlemek için). Marka adı erişilebilirlik için link aria-label'inde. */
.brand-text { display: none; }
.brand-name { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; letter-spacing: -0.01em; color: var(--ink); }
.brand-sub { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.14em; color: var(--yellow-deep); text-transform: uppercase; }

.brand { height: 100%; }
.main-nav { display: flex; align-items: center; height: 100%; gap: 6px; }
/* Masaüstünde wrapper "şeffaf": linkler doğrudan .main-nav'ın flex çocuğu gibi davranır */
.nav-links-wrapper { display: contents; }
.nav-link {
  padding: 9px 14px; font-size: 0.94rem; font-weight: 500; color: rgba(255, 255, 255, 0.75);
  border-radius: 8px; transition: color .2s, background .2s;
}
.nav-link:hover { color: #FFFFFF; background: rgba(255, 255, 255, 0.10); }
.nav-cta {
  margin-left: 8px; padding: 11px 20px; background: var(--yellow); color: var(--ink);
  font-weight: 700; font-size: 0.92rem; border-radius: 999px; box-shadow: var(--shadow-yellow);
  transition: transform .2s var(--ease), background .2s;
}
.nav-cta:hover { transform: translateY(-2px); background: #ffc61f; }

/* Hamburger */
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 10px; position: relative; }
.nav-toggle span {
  position: absolute; left: 12px; right: 12px; height: 2.5px; background: #FFFFFF; border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* =========================================================
   HERO — SCROLL TRIGGERED PLAYBACK (tek oynatma, overlay YOK)
   Ekranı kaplayan sahne; poster/video %100 net, maske yok.
   ========================================================= */
.hero-scroll {
  position: relative;
  height: 100vh;
  background: var(--bg-2);
}
.hero-sticky {
  position: relative;
  height: 100%; width: 100%;
  overflow: hidden;
  display: flex; align-items: center;
}

/* Arka plan videosu — poster ilk açılışta net görünür, ÜZERİNDE maske yok */
#hero-scroll-video {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* İçerik (videonun üstünde) — .is-playing ile yumuşakça kaybolur */
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 820px; margin: 0 auto;
  padding-top: var(--header-h);
  opacity: 1;                                   /* dinlenme durumu: HER ZAMAN görünür */
  animation: heroRise .8s var(--ease);          /* giriş efekti SADECE transform — opacity'ye dokunmaz */
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
/* Sadece hafif yukarı kayma; görünürlük opacity ile ASLA gizlenmez */
@keyframes heroRise {
  from { transform: translateY(24px); }
  to { transform: none; }
}
/* Mobil menü linklerinin süzülerek gelmesi (stagger ile birlikte) */
@keyframes menuFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Sinematik oynatma sırasında metin & butonlar kaybolur */
.hero-scroll.is-playing .hero-content,
.hero-scroll.is-playing .hero-cue {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.hero-content .eyebrow { justify-content: center; }

/* -------- Glassmorphism kutusu (okunabilirlik) -------- */
.hero-content-box {
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.6);
}
/* Kutu içi metinler beyaz + okunabilirlik gölgesi */
.hero-content-box .eyebrow,
.hero-content-box .hero-title,
.hero-content-box .hero-lead {
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.hero-content-box .eyebrow::before { background: var(--yellow); }

.hero-title {
  font-family: var(--font-display); font-weight: 800; color: var(--ink);
  font-size: clamp(2.2rem, 5.5vw, 4.1rem); line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 22px;
}
/* Sadece vurgulu metin sarı kalır */
.hero-content-box .hero-title .hl {
  position: relative; color: var(--yellow); background: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}
.hero-lead {
  font-size: clamp(1.02rem, 2vw, 1.22rem); color: var(--ink-2); font-weight: 500;
  max-width: 620px; margin: 0 auto 32px;
  text-shadow: 0 1px 12px rgba(255,255,255,0.7);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 36px; }

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: center;
  padding-top: 26px; border-top: 1px solid var(--border);
}
.hero-trust li { font-size: 0.92rem; color: var(--ink-2); font-weight: 500; display: flex; align-items: center; gap: 8px; }
.hero-trust strong { color: var(--ink); font-family: var(--font-display); font-weight: 700; }
.hero-trust li::before { content: ""; width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; }

/* Kutu içi güven maddeleri (koyu cam üstünde beyaz) */
.hero-content-box .hero-trust { border-top-color: rgba(255, 255, 255, 0.18); }
.hero-content-box .hero-trust li { color: rgba(255, 255, 255, 0.85); }
.hero-content-box .hero-trust strong { color: #FFFFFF; }

/* "Hemen Ara" butonu koyu cama uygun: transparan zemin, beyaz metin & kenarlık */
.hero-content-box .btn-ghost {
  background: transparent; color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.6); box-shadow: none;
}
.hero-content-box .btn-ghost:hover { background: rgba(255, 255, 255, 0.14); border-color: #FFFFFF; }

/* Scroll ipucu */
.hero-cue {
  position: absolute; z-index: 3; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); opacity: .85;
  text-shadow: 0 1px 10px rgba(255,255,255,0.75);
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.hero-cue svg { width: 22px; height: 22px; fill: none; stroke: var(--yellow-deep); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; animation: cueBounce 1.8s ease-in-out infinite; }
@keyframes cueBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* =========================================================
   GÜVEN ŞERİDİ
   ========================================================= */
.trust-bar { background: var(--white); padding: 20px 0 8px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-item {
  display: flex; gap: 14px; align-items: flex-start; padding: 26px 22px;
  background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius);
  transition: transform .3s var(--ease), box-shadow .3s, background .3s;
}
.trust-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-sm); background: var(--white); }
.trust-ico {
  width: 40px; height: 40px; flex-shrink: 0; padding: 8px; border-radius: 12px;
  background: var(--yellow-soft); fill: none; stroke: var(--yellow-deep);
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}
.trust-item h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 600; margin-bottom: 4px; color: var(--ink); }
.trust-item p { font-size: 0.86rem; color: var(--muted); }

/* =========================================================
   SECTIONS (base)
   ========================================================= */
/* Grid öğelerinin içerik (özellikle görsel) yüzünden taşmasını engelle */
.hero-text, .hero-media,
.imgtext-body, .imgtext-media,
.order-copy, .dispatch,
.faq .section-head, .faq-list { min-width: 0; }

.section { padding: 92px 0; }
.section-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-title {
  font-family: var(--font-display); font-weight: 700; color: var(--ink);
  font-size: clamp(1.8rem, 3.6vw, 2.7rem); line-height: 1.12; letter-spacing: -0.025em;
}
.section-lead { margin-top: 16px; font-size: 1.05rem; color: var(--muted); }

/* =========================================================
   İMAJ + METİN BLOKLARI  (Image & Text)
   ========================================================= */
.imgtext { background: var(--white); }
.imgtext.alt { background: var(--bg-1); }
.imgtext-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.imgtext-media { position: relative; }
.imgtext-media img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 24px; box-shadow: var(--shadow-lg);
}
/* Görsel yoksa şık yer tutucu */
.imgtext-media img.img-missing {
  background:
    repeating-linear-gradient(-45deg, rgba(17,17,17,0.04) 0 16px, transparent 16px 32px),
    linear-gradient(150deg, var(--bg-2), #e9e9e9);
  position: relative;
}
.imgtext-media img.img-missing::after {
  content: "Görsel alanı\A assets/placeholder.jpg"; white-space: pre;
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; text-align: center;
  font-family: var(--font-mono); font-size: 0.8rem; color: var(--muted); padding: 20px;
}
.imgtext-media::before {
  content: ""; position: absolute; z-index: -1; left: -18px; top: -18px;
  width: 55%; height: 55%; border-radius: 22px; background: var(--yellow-soft);
}
.imgtext.alt .imgtext-media::before { left: auto; right: -18px; }
.imgtext-tag {
  position: absolute; left: 16px; bottom: 16px;
  background: var(--white); color: var(--ink); font-weight: 700; font-size: 0.82rem;
  padding: 8px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.imgtext-body .section-lead { margin-bottom: 22px; }
.imgtext-body .btn { margin-top: 4px; }

/* Ortak "check-list" */
.check-list { display: grid; gap: 12px; margin-bottom: 26px; }
.check-list li { position: relative; padding-left: 32px; color: var(--ink-2); font-size: 0.98rem; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 22px; height: 22px; border-radius: 50%; background: var(--yellow); color: var(--ink);
  font-size: 0.74rem; font-weight: 800; display: flex; align-items: center; justify-content: center;
}

/* =========================================================
   HİZMETLER
   ========================================================= */
.services { background: var(--bg-1); }
.service-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 18px;
}
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 26px 24px; position: relative; overflow: hidden; box-shadow: var(--shadow-xs);
  transition: transform .35s var(--ease), border-color .3s, box-shadow .35s;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 4px; background: var(--yellow);
  transform: scaleY(0); transform-origin: bottom; transition: transform .35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::before { transform: scaleY(1); }
.service-ico {
  width: 52px; height: 52px; border-radius: 13px; margin-bottom: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--yellow-soft); border: 1px solid rgba(245,184,0,0.35);
  transition: transform .35s var(--ease);
}
.service-card:hover .service-ico { transform: rotate(-6deg) scale(1.06); }
.service-ico svg { width: 26px; height: 26px; fill: none; stroke: var(--yellow-deep); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.service-card p { font-size: 0.9rem; color: var(--muted); }

.services-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 46px; }

/* =========================================================
   NASIL ÇALIŞIR
   ========================================================= */
.how { background: var(--white); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: var(--bg-1); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 28px; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s, background .35s;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); background: var(--white); }
.step-no {
  font-family: var(--font-mono); font-size: 1.7rem; font-weight: 700; color: var(--yellow-deep);
  display: block; margin-bottom: 14px; letter-spacing: -0.02em;
}
.step h3 { font-family: var(--font-display); font-size: 1.22rem; font-weight: 600; margin-bottom: 10px; color: var(--ink); }
.step p { font-size: 0.95rem; color: var(--muted); }

/* =========================================================
   ORDER (imza öğe — sevkiyat fişi)
   ========================================================= */
.order { background: var(--bg-1); }
.order-inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: 54px; align-items: center; }
.order-copy .section-lead { margin-bottom: 24px; }
.order-points { display: grid; gap: 12px; margin-bottom: 26px; }
.order-points li { position: relative; padding-left: 32px; color: var(--ink-2); font-size: 0.98rem; }
.order-points li::before {
  content: "✓"; position: absolute; left: 0; top: -1px;
  width: 22px; height: 22px; border-radius: 50%; background: var(--yellow); color: var(--ink);
  font-size: 0.74rem; font-weight: 800; display: flex; align-items: center; justify-content: center;
}

/* Dispatch form — açık tema, yumuşak gölgeli kart */
.dispatch {
  background: var(--white);
  border-radius: var(--radius); padding: 28px; color: var(--ink-2);
  box-shadow: var(--shadow-lg); position: relative;
  border-top: 4px solid var(--yellow); border-inline: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.dispatch::before,
.dispatch::after {
  content: ""; position: absolute; width: 20px; height: 20px; background: var(--bg-1); border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  border: 1px solid var(--border);
}
.dispatch::before { left: -11px; }
.dispatch::after { right: -11px; }
.dispatch-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px; margin-bottom: 20px; border-bottom: 2px dashed var(--border-strong);
}
.dispatch-title { font-family: var(--font-mono); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.08em; color: var(--ink); }
.dispatch-code { font-family: var(--font-mono); font-size: 0.72rem; color: var(--yellow-deep); letter-spacing: 0.1em; }

.field { margin-bottom: 15px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.field .req { color: #d33; }
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border-strong); border-radius: var(--radius-sm);
  background: var(--white); color: var(--ink); transition: border-color .2s, box-shadow .2s; font-size: 0.95rem;
}
.field input::placeholder, .field textarea::placeholder { color: #aab0b8; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,184,0,0.22);
}
.field textarea { resize: vertical; min-height: 56px; }
.field.invalid input, .field.invalid select { border-color: #e05555; box-shadow: 0 0 0 3px rgba(224,85,85,0.14); }

.form-error {
  background: #fdecec; color: #b02525; border: 1px solid #f3bcbc; border-radius: var(--radius-sm);
  padding: 10px 14px; font-size: 0.86rem; margin-bottom: 14px; font-weight: 500;
}
.dispatch .btn-primary { margin-top: 6px; }
.form-hint { text-align: center; font-size: 0.78rem; color: var(--muted); margin-top: 12px; }

/* =========================================================
   HİZMET BÖLGESİ
   ========================================================= */
.coverage { background: var(--white); }
.district-list {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; max-width: 820px; margin: 0 auto;
}
.district-list li {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  background: var(--bg-1); border: 1px solid var(--border); border-radius: 999px;
  padding: 13px 26px; color: var(--ink);
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
}
.district-list li:hover { transform: translateY(-3px); background: var(--ink); color: var(--white); border-color: var(--ink); box-shadow: var(--shadow-sm); }
.district-list li.more { background: var(--yellow); border-color: var(--yellow); color: var(--ink); }
.district-list li.more:hover { background: var(--yellow-deep); border-color: var(--yellow-deep); color: var(--white); }

/* =========================================================
   FAQ
   ========================================================= */
.faq { background: var(--bg-1); }
.faq-inner { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 54px; align-items: start; }
.faq .section-head { margin: 0; }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 4px 22px; box-shadow: var(--shadow-xs); transition: border-color .25s, box-shadow .25s;
}
.faq-item[open] { border-color: rgba(245,184,0,0.6); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 34px 18px 0; position: relative;
  font-family: var(--font-display); font-weight: 600; font-size: 1.04rem; color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.5rem; color: var(--yellow-deep); font-weight: 400; transition: transform .3s var(--ease);
  line-height: 1;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { color: var(--muted); font-size: 0.95rem; padding: 0 0 18px; }

/* =========================================================
   SCOOTER (MOTORCU) ANİMASYONU — saf CSS + SVG
   ========================================================= */
.scooter-band {
  position: relative; overflow: hidden; background: var(--white);
  padding: 30px 0 44px; border-top: 1px solid var(--border);
}
.scooter-track {
  position: relative; height: 96px;
  /* yol çizgisi */
  background:
    repeating-linear-gradient(90deg, rgba(17,17,17,0.18) 0 26px, transparent 26px 52px) bottom / 100% 3px no-repeat;
}
.scooter-rig {
  position: absolute; bottom: 6px; left: 0; width: 170px; height: 90px;
  animation: ride 6.5s linear infinite;
}
.scooter-svg { width: 160px; height: 96px; animation: bob 0.9s ease-in-out infinite; }
/* soldan sağa gidiş */
@keyframes ride {
  0% { transform: translateX(-190px); }
  100% { transform: translateX(calc(100vw + 40px)); }
}
/* hafif zıplama */
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-3px) rotate(1deg); }
}
/* arkadaki hız izleri */
.speed-line {
  position: absolute; height: 4px; border-radius: 4px; right: 150px;
  background: linear-gradient(90deg, transparent, var(--yellow));
}
.speed-line.l1 { top: 34px; width: 46px; animation: dash 0.6s linear infinite; }
.speed-line.l2 { top: 52px; width: 66px; animation: dash 0.6s linear infinite .1s; opacity: .8; }
.speed-line.l3 { top: 68px; width: 38px; animation: dash 0.6s linear infinite .2s; opacity: .6; }
@keyframes dash {
  0% { transform: translateX(0); opacity: .9; }
  100% { transform: translateX(-26px); opacity: 0; }
}
.scooter-caption {
  text-align: center; margin-top: 16px;
  font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}

/* =========================================================
   FINAL CTA (SARI BANNER)
   ========================================================= */
.final-cta {
  background: linear-gradient(120deg, var(--yellow), var(--yellow-deep));
  color: var(--ink); padding: 74px 0; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background: repeating-linear-gradient(-45deg, rgba(17,17,17,0.05) 0 18px, transparent 18px 36px);
}
.final-inner { position: relative; z-index: 1; text-align: center; max-width: 720px; margin: 0 auto; }
.final-cta h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 4.5vw, 3rem); letter-spacing: -0.03em; color: var(--ink); }
.final-cta p { font-size: 1.15rem; margin: 12px 0 30px; color: rgba(17,17,17,0.8); }
.final-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* =========================================================
   FOOTER
   ========================================================= */
/* =========================================================
   KONUM HARİTASI
   ========================================================= */
.location-map { background: var(--bg-1); padding: 60px 0; }
.location-map .map-frame {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.location-map iframe { display: block; width: 100%; height: 350px; border: 0; }

.site-footer { background: var(--ink); color: rgba(255,255,255,0.72); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.4fr; gap: 40px; padding: 60px 22px 40px; }
.footer-brand .brand-name { font-size: 1.2rem; display: block; margin-bottom: 12px; color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; max-width: 360px; }
.footer-nav h3, .footer-contact h3 {
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 16px;
}
.footer-nav a, .footer-contact a { display: block; color: rgba(255,255,255,0.62); font-size: 0.92rem; padding: 5px 0; transition: color .2s; }
.footer-nav a:hover, .footer-contact a:hover { color: var(--yellow); }
.footer-address {
  color: rgba(255,255,255,0.62); font-size: 0.92rem; line-height: 1.5;
  margin-top: 16px; padding: 5px 0;
}
.footer-contact a.footer-directions { font-weight: 600; color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }
.footer-contact a.footer-directions:hover { color: var(--yellow); opacity: 0.82; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding-block: 22px; }
.footer-bottom span { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-note { font-family: var(--font-mono); letter-spacing: 0.06em; }

/* =========================================================
   FLOATING BUTTONS
   ========================================================= */
.floating { position: fixed; right: 20px; bottom: 20px; z-index: 90; display: flex; flex-direction: column; gap: 12px; align-items: flex-end; }
.fab {
  display: inline-flex; align-items: center; gap: 9px; border-radius: 999px; padding: 14px;
  box-shadow: var(--shadow-md); transition: transform .25s var(--ease);
}
.fab svg { width: 26px; height: 26px; fill: #fff; }
.fab:hover { transform: scale(1.06); }
.fab-wa { background: var(--wa); color: #fff; padding: 14px 20px 14px 14px; }
.fab-wa .fab-label { font-weight: 700; font-size: 0.95rem; }
.fab-call { background: var(--white); border: 1px solid var(--border-strong); }
.fab-call svg { fill: var(--yellow-deep); }
/* WhatsApp nabız */
.fab-wa { position: relative; }
.fab-wa::before {
  content: ""; position: absolute; inset: 0; border-radius: 999px; background: var(--wa);
  z-index: -1; animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .55; }
  70% { transform: scale(1.28); opacity: 0; }
  100% { opacity: 0; }
}

/* =========================================================
   SCROLL REVEAL — daha vurgulu fade-in-up (JS: .reveal → .in)
   ========================================================= */
.reveal {
  opacity: 0; transform: translateY(42px) scale(0.985);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* Hero yükleme animasyonu için ortak keyframe */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .imgtext-inner { grid-template-columns: 1fr; gap: 34px; }
  .imgtext.alt .imgtext-body { order: 2; }          /* alt blokta metin altta kalsın */
  .imgtext.alt .imgtext-media { order: 1; }
  .order-inner { grid-template-columns: 1fr; gap: 36px; }
  .faq-inner { grid-template-columns: 1fr; gap: 30px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 860px) {
  /* Mobil menü */
  /* Tam ekran, koyu ve okunaklı mobil menü (overlay)
     NOT: Header'ın backdrop-filter'ı fixed için containing block oluşturduğundan
     boyutu viewport birimleriyle (100dvh) veriyoruz; aksi halde header'a hapsolur. */
  .main-nav {
    position: fixed; top: 0; left: 0; z-index: 105;
    width: 100%; height: 100vh; height: 100dvh;
    flex-direction: column; align-items: stretch; gap: 6px;
    background: rgba(15, 15, 15, 0.98);
    -webkit-backdrop-filter: blur(22px); backdrop-filter: blur(22px);
    padding: 0 22px calc(28px + env(safe-area-inset-bottom));
    transform: translateX(100%); transition: transform .4s var(--ease);
    overflow-y: auto;
  }
  .main-nav.open { transform: translateX(0); }

  /* Menü logosu: üst-sol, hamburger/X ile aynı hizada (header bandında ortalı).
     margin-bottom KÜÇÜK — linkleri wrapper dikeyde ortaladığından aşağı itmesin. */
  .mobile-nav-logo {
    display: block; height: 56px; width: auto; max-width: 220px; object-fit: contain;
    align-self: flex-start; flex-shrink: 0;
    margin: 16px 0 0;
  }
  /* Linkleri dikeyde ekranın ortasına dengeli yerleştiren kapsayıcı */
  .nav-links-wrapper {
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    flex-grow: 1; gap: 12px; width: 100%;
  }
  /* Linkler — ortalı, ferah, okunaklı */
  .nav-link {
    padding: 12px 18px; font-size: 1.22rem; font-weight: 600; border-radius: 12px;
    color: rgba(255,255,255,0.90); text-align: center;
  }
  .nav-link:hover { background: rgba(255,255,255,0.08); }
  .nav-cta { margin: 12px 0 0; text-align: center; padding: 16px 40px; font-size: 1.08rem; }

  /* PREMİUM: menü açılınca linkler süzülerek gelir (stagger) */
  .main-nav.open .nav-link,
  .main-nav.open .nav-cta {
    opacity: 0;
    animation: menuFadeUp .4s var(--ease) forwards;
  }
  .main-nav.open .nav-links-wrapper > :nth-child(1) { animation-delay: .10s; }
  .main-nav.open .nav-links-wrapper > :nth-child(2) { animation-delay: .16s; }
  .main-nav.open .nav-links-wrapper > :nth-child(3) { animation-delay: .22s; }
  .main-nav.open .nav-links-wrapper > :nth-child(4) { animation-delay: .28s; }
  .main-nav.open .nav-links-wrapper > :nth-child(5) { animation-delay: .34s; }

  /* Hamburger/X, overlay'in üstünde ve tıklanabilir kalsın */
  .nav-toggle { display: block; z-index: 106; }

  .steps { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
}

/* ---- Mobil (<768px) — Hero yerleşim & okunabilirlik ---- */
@media (max-width: 768px) {
  .hero-scroll { height: 100vh; min-height: 560px; }
  .hero-cue { display: none; }

  /* Cam kutuyu ekranda (header yüksekliği hesaba katılarak) TAM ORTALA */
  .hero-scroll .hero-content {
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    min-height: 100vh; box-sizing: border-box;
    /* üstte header + güvenli boşluk, altta güvenli boşluk (kenarlara yapışmaz) */
    padding: calc(var(--header-h) + 20px) 16px calc(20px + env(safe-area-inset-bottom));
  }
  .hero-content-box {
    width: 100%;
    padding: 24px;
    margin: 0;
  }
  /* Başlık küçülür, satır sıkışır */
  .hero-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    line-height: 1.15;
    margin-bottom: 14px;
  }
  .hero-lead { font-size: 0.95rem; margin-bottom: 22px; }

  /* Kalabalığı azalt: güven maddeleri zaten hemen alttaki güven şeridinde var */
  .hero-content-box .hero-trust { display: none; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .brand-sub { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero-actions .btn, .final-actions .btn, .services-cta .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .dispatch { padding: 22px 18px; }
  .dispatch::before, .dispatch::after { display: none; }
  .fab-wa .fab-label { display: none; }
  .fab-wa { padding: 14px; }
  .location-map { padding: 40px 0; }
  .location-map iframe { height: 250px; }
}

/* =========================================================
   REDUCED MOTION (erişilebilirlik)
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  /* Scooter'ı ortada sabitle */
  .scooter-rig { position: static; margin: 0 auto; animation: none; }
  .speed-line { display: none; }
}
