/* ============================================================
   ARABAN NAKİT — main.css
   Tek dosya, mobile-first, yatay kayma yok.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --bg:           #0a0a0a;
  --bg-2:         #111111;
  --bg-3:         #161616;
  --bg-card:      #181818;
  --line:         rgba(255,255,255,.08);
  --line-2:       rgba(255,255,255,.14);
  --text:         #f5f5f5;
  --text-2:       #b8b8b8;
  --text-3:       #7a7a7a;
  --accent:       #ffd60a;
  --accent-hot:   #ffc300;
  --accent-soft:  rgba(255,214,10,.12);
  --whatsapp:     #25d366;
  --whatsapp-2:   #1faa54;
  --radius:       14px;
  --radius-sm:    10px;
  --shadow:       0 8px 30px rgba(0,0,0,.35);
  --shadow-lg:    0 18px 50px rgba(0,0,0,.5);
  --container:    1200px;
  --gutter:       20px;
  --header-h:     72px;
  --topbar-h:     38px;
  --font-display: 'Bebas Neue', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --ease:         cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;          /* yatay kayma engeli — KRİTİK */
  width: 100%;
  max-width: 100%;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

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

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

input, select, textarea {
  font-family: inherit; font-size: inherit; color: inherit;
}

h1, h2, h3, h4 { margin: 0; line-height: 1.15; font-weight: 700; }

p  { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

::selection { background: var(--accent); color: #000; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-narrow { max-width: 880px; }
.hero-centered { max-width: 780px; margin: 0 auto; text-align: center; }
.hero-centered .hero-sub { margin-left: auto; margin-right: auto; }

/* ---------- Section base ---------- */
.section,
[class^="section-"] {
  padding: 64px 0;
  position: relative;
}

.section-head { text-align: center; margin-bottom: 36px; }
.kicker {
  display: inline-block;
  font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 600;
  color: var(--accent); margin-bottom: 12px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  letter-spacing: 1px;
}
.section-lead {
  max-width: 720px; margin: 14px auto 0;
  color: var(--text-2); font-size: 16px;
}

/* ============================================================
   1) TOPBAR + HEADER + MOBİL MENÜ
   ============================================================ */

.topbar {
  background: #050505;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--topbar-h); gap: 12px;
}
.topbar-pulse {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-2);
}
.topbar-pulse .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34,197,94,.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.topbar-actions { display: flex; gap: 16px; align-items: center; }
.topbar-actions a {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text-2); transition: color .2s;
}
.topbar-actions a:hover { color: var(--accent); }
.topbar-actions a svg { width: 14px; height: 14px; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h); gap: 18px;
}

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark {
  width: 42px; height: 42px;
  background: var(--accent);
  color: #000;
  border-radius: 10px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 26px; font-weight: 700;
  box-shadow: 0 4px 14px rgba(255,214,10,.35);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 1.5px;
}
.brand-name em {
  font-style: normal;
  color: var(--accent);
}
.brand-tag {
  font-size: 9px; letter-spacing: 3px;
  color: var(--text-3); margin-top: 3px;
  text-transform: uppercase;
}

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  font-size: 14px; font-weight: 500;
  color: var(--text-2);
  position: relative; padding: 6px 0;
  transition: color .2s;
}
.main-nav a:hover { color: var(--text); }
.main-nav a::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.main-nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; gap: 10px; align-items: center; }

.menu-toggle {
  display: none; width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
  color: var(--text);
}
.menu-toggle:hover { background: var(--bg-card); border-color: var(--accent); color: var(--accent); }

/* Mobile menu drawer */
.mobile-menu-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.65);
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease);
  z-index: 200;
}
.mobile-menu-backdrop.open { opacity: 1; pointer-events: auto; }

.mobile-menu {
  position: fixed; top: 0; right: 0;
  height: 100vh; width: min(86vw, 340px);
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .3s var(--ease);
  z-index: 201;
  display: flex; flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-title {
  font-family: var(--font-display);
  font-size: 18px; letter-spacing: 1.5px;
  color: var(--accent);
}
.mobile-menu-close {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 8px;
  color: var(--text-2);
}
.mobile-menu-close:hover { background: var(--bg-3); color: var(--text); }

.mobile-nav {
  display: flex; flex-direction: column;
  padding: 18px 22px; gap: 4px;
}
.mobile-nav a {
  padding: 14px 12px; border-radius: 10px;
  font-size: 16px; font-weight: 500;
  color: var(--text);
  transition: background .2s;
}
.mobile-nav a:hover { background: var(--bg-3); color: var(--accent); }

.mobile-menu-cta {
  margin-top: auto;
  padding: 18px 22px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 10px;
}

/* ============================================================
   2) BUTONLAR (CTA)
   ============================================================ */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: 14px; font-weight: 600;
  letter-spacing: .3px;
  transition: transform .2s var(--ease), background .2s, color .2s, box-shadow .2s;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  box-shadow: 0 4px 14px rgba(255,214,10,.3);
}
.btn-primary:hover {
  background: var(--accent-hot);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(255,214,10,.45);
}

.btn-ghost {
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--accent);
  color: var(--accent);
}

/* WhatsApp CTA — yardımcı renk */
.btn[href*="wa.me"], .btn-wa {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn[href*="wa.me"]:hover, .btn-wa:hover {
  background: var(--whatsapp-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37,211,102,.45);
}

.btn-lg { padding: 16px 28px; font-size: 15px; border-radius: 12px; }
.btn-block { width: 100%; }

/* ============================================================
   3) HERO
   ============================================================ */

.hero {
  position: relative;
  padding: 60px 0 70px;
  overflow: hidden;          /* glow taşmasın */
  isolation: isolate;
}
.hero::before {
  /* Hafif arkaplan pattern */
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,214,10,.08), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,214,10,.05), transparent 50%);
  z-index: -1;
}
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 58px);
  line-height: 1.05;
  letter-spacing: 1px;
  margin-bottom: 18px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.hero-h1 em,
.hero-h1 .accent { color: var(--accent); font-style: normal; }

.hero-h1-home { font-size: clamp(36px, 7vw, 68px); }

.hero-sub {
  color: var(--text-2);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.6;
  margin-bottom: 26px;
  max-width: 540px;
}

.hero-checks {
  display: flex; flex-wrap: wrap; gap: 10px 18px;
  margin: 22px 0 28px;
}
.hero-checks li {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; color: var(--text-2);
}
.hero-checks svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stat-item { text-align: left; }
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 34px);
  color: var(--accent);
  line-height: 1;
}
.stat-suffix { font-size: .65em; }
.stat-label {
  font-size: 11px; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-top: 6px;
}

.hero-static { padding-bottom: 50px; }
.section-404 .hero-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.section-404 .hero-actions { justify-content: center; }

/* ============================================================
   4) HERO QUOTE FORM
   ============================================================ */

.form-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hot));
}

.form-head { margin-bottom: 18px; }
.form-head h3 {
  font-family: var(--font-display);
  font-size: 24px; letter-spacing: 1px;
  margin-bottom: 6px;
}
.form-badge {
  display: inline-block;
  font-size: 11px; color: var(--accent);
  letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 600;
}

.quote-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.quote-form .field { display: flex; flex-direction: column; }
.quote-form .field.full { grid-column: 1 / -1; }
.quote-form label {
  font-size: 12px; color: var(--text-3);
  margin-bottom: 6px; letter-spacing: .5px;
  text-transform: uppercase; font-weight: 500;
}
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 14px;
  transition: border-color .2s, background .2s;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-card);
}
.quote-form textarea { resize: vertical; min-height: 70px; }

.form-foot {
  text-align: center;
  margin-top: 14px;
  font-size: 12px; color: var(--text-3);
}
.form-foot strong { color: var(--text-2); }

/* ============================================================
   5) BREADCRUMB
   ============================================================ */

.breadcrumb {
  padding: 18px 0 0;
  font-size: 13px;
  color: var(--text-3);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--text-2); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb [aria-current="page"] { color: var(--text); }

/* ============================================================
   6) INTRO + LEAD
   ============================================================ */

.intro-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  border-left: 3px solid var(--accent);
}
.lead {
  font-size: 17px; line-height: 1.7;
  color: var(--text); margin: 0;
}

.prose-grid { display: grid; gap: 22px; max-width: 880px; margin: 0 auto; }
.prose-grid p { color: var(--text-2); line-height: 1.75; font-size: 15.5px; }
.prose-grid p strong { color: var(--text); }

/* ============================================================
   7) STEP CARDS / KART GRID'LERİ
   ============================================================ */

.step-grid,
.criteria-grid,
.why-grid,
.service-grid,
.twocol-grid,
.featured-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.step-grid     { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.criteria-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.why-grid      { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.service-grid  { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.twocol-grid   { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.featured-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.contact-grid  { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); max-width: 1080px; margin: 0 auto; }

.step-card,
.criteria-card,
.why-card,
.service-card,
.twocol-card,
.contact-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  position: relative;
  transition: transform .25s var(--ease), border-color .2s, background .2s;
}
.step-card:hover,
.criteria-card:hover,
.why-card:hover,
.service-card:hover,
.twocol-card:hover,
.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
  background: var(--bg-3);
}

.step-num,
.crit-num {
  width: 36px; height: 36px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 18px;
  margin-bottom: 14px;
}

.step-icon,
.why-icon,
.service-icon,
.twocol-icon,
.contact-icon {
  width: 48px; height: 48px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 12px;
  display: grid; place-items: center;
  margin-bottom: 16px;
}
.contact-icon-wa { background: rgba(37,211,102,.12); color: var(--whatsapp); }

.contact-card .big {
  font-size: 18px; font-weight: 700;
  color: var(--text); margin: 8px 0 4px;
}
.contact-card .small {
  font-size: 12px; color: var(--text-3);
  letter-spacing: .5px;
}

.districts-intro { margin-top: 22px; color: var(--text-2); font-size: 15px; line-height: 1.7; }
.cta-strip-spaced { margin-top: 48px; }

.step-card h3,
.criteria-card h3,
.why-card h3,
.service-card h3,
.twocol-card h3,
.contact-card h3 {
  font-size: 17px; margin-bottom: 8px; color: var(--text);
}
.step-card p,
.criteria-card p,
.why-card p,
.service-card p,
.twocol-card p,
.contact-card p {
  font-size: 14px; line-height: 1.6;
  color: var(--text-2); margin: 0;
}

.criteria-card { border-left: 3px solid var(--accent); }

.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 14px;
  font-size: 13px; font-weight: 600;
  color: var(--accent);
  letter-spacing: .5px;
}
.service-link svg { width: 14px; height: 14px; transition: transform .2s; }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ============================================================
   8) CTA STRIP — ana çağrı bandı
   ============================================================ */

/* CTA strip — section veya div olarak kullanılabilir, her iki durumda da inset card */
section.cta-strip,
.cta-strip-spaced.cta-strip {
  margin-top: 28px;
  margin-bottom: 28px;
}
section.cta-strip > .container {
  padding: 0 var(--gutter);
}
section.cta-strip > .container > .cta-strip-inner {
  /* Eğer template "section > container > inner" yapısı kullanıyorsa
     altın background + radius'u inner'a uygula */
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  color: #0a0a0a;
  border-radius: 18px;
  padding: 38px 32px;
  position: relative;
  overflow: hidden;
}
section.cta-strip > .container > .cta-strip-inner::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 65%);
  pointer-events: none;
}

/* Eğer .cta-strip standalone (içinde container yok, doğrudan card) kullanılırsa  */
div.cta-strip {
  background: linear-gradient(135deg, var(--accent), var(--accent-hot));
  color: #0a0a0a;
  border-radius: 18px;
  padding: 38px 32px;
  margin: 28px 0;
  position: relative;
  overflow: hidden;
}
div.cta-strip::before {
  content: '';
  position: absolute; top: -50%; right: -10%;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 65%);
  pointer-events: none;
}
.cta-strip-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-strip h2,
.cta-strip h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 34px);
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: #0a0a0a;
}
.cta-strip p {
  font-size: 15px; color: rgba(10,10,10,.78);
  margin: 0;
}
.cta-strip-actions {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.cta-strip-actions .btn {
  background: #0a0a0a;
  color: var(--accent);
  border-color: #0a0a0a;
}
.cta-strip-actions .btn:hover {
  background: #1f1f1f;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.4);
}
.cta-strip-actions .btn-wa {
  background: var(--whatsapp);
  color: #fff; border-color: var(--whatsapp);
}
.cta-strip-actions .btn-wa:hover { background: var(--whatsapp-2); border-color: var(--whatsapp-2); }

/* ============================================================
   9) FAQ
   ============================================================ */

.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 880px; margin: 0 auto; }
.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open], .faq-item:hover { border-color: var(--line-2); }
.faq-toggle {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600; font-size: 15px;
  list-style: none;
}
.faq-toggle::-webkit-details-marker { display: none; }
.faq-toggle::after {
  content: '+';
  font-size: 24px; color: var(--accent);
  font-weight: 300;
  transition: transform .25s;
  flex-shrink: 0;
}
.faq-item[open] .faq-toggle::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 22px 20px;
  color: var(--text-2); font-size: 14.5px; line-height: 1.7;
}

/* ============================================================
   10) FEATURED CITIES + ALL CITIES
   ============================================================ */

.featured-city {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  transition: border-color .2s, transform .25s var(--ease);
}
.featured-city:hover { border-color: var(--accent); transform: translateY(-3px); }
.featured-city-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; gap: 10px;
}
.featured-city h3 {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 1px;
}
.plate-badge {
  background: var(--accent);
  color: #000;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px; font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 1px;
}
.featured-city ul { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.featured-city ul a {
  font-size: 13.5px; color: var(--text-2);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 0;
  transition: color .2s, transform .2s;
}
.featured-city ul a:hover { color: var(--accent); transform: translateX(3px); }
.featured-all {
  font-size: 13px; color: var(--accent);
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 4px;
}

/* All cities (region-grouped) */
.region-block { margin-bottom: 36px; }
.region-title {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 1px;
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 3px solid var(--accent);
  display: flex; align-items: center; gap: 12px;
}
.region-title > span:first-child {
  display: inline-flex; align-items: center; gap: 10px;
}
.region-title svg {
  color: var(--accent);
  flex-shrink: 0;
}
.region-title em {
  font-family: var(--font-body);
  font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-3);
  font-style: normal;
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
.city-card {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  transition: border-color .2s, background .2s;
}
.city-card:hover { border-color: var(--accent); background: var(--bg-3); }
.city-name { color: var(--text); font-weight: 500; }
.city-arrow { color: var(--text-3); transition: color .2s, transform .2s; }
.city-card:hover .city-arrow { color: var(--accent); transform: translateX(3px); }

/* ============================================================
   11) CITY PAGE — keyword grid + districts
   ============================================================ */

.city-info-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
}
.city-info-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 14px;
}
.city-info-list > div { display: flex; flex-direction: column; }
.city-info-list .label {
  font-size: 11px; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.city-info-list .value {
  font-size: 15px; color: var(--text); font-weight: 600;
}

.keyword-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
}
.keyword-link {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px; color: var(--text);
  transition: border-color .2s, background .2s, transform .2s;
}
.keyword-link:hover {
  border-color: var(--accent);
  background: var(--bg-3);
  transform: translateX(4px);
}
.keyword-link svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* District pills */
.district-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.pill {
  display: inline-block;
  padding: 6px 12px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px; color: var(--text-2);
}

/* ============================================================
   12) RELATED LINKS + CLOSING
   ============================================================ */

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 10px;
  max-width: 980px; margin: 0 auto;
}
.related-link {
  display: block;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 14px; color: var(--text-2);
  transition: border-color .2s, color .2s, background .2s;
}
.related-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--bg-3);
}

.closing-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px 32px;
  text-align: center;
  max-width: 880px; margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.closing-card::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  pointer-events: none;
}
.closing-card h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 36px);
  letter-spacing: 1px; margin-bottom: 12px;
  position: relative;
}
.closing-card p {
  color: var(--text-2); font-size: 15.5px; line-height: 1.7;
  max-width: 660px; margin: 0 auto 24px;
  position: relative;
}
.closing-card .hero-actions {
  justify-content: center;
  position: relative;
}

/* ============================================================
   13) FOOTER
   ============================================================ */

.site-footer {
  background: #050505;
  border-top: 1px solid var(--line);
  padding: 56px 0 0;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .brand { margin-bottom: 14px; }
.footer-about {
  font-size: 14px; color: var(--text-2); line-height: 1.7;
  margin-bottom: 16px;
}
.footer-stats {
  display: flex; gap: 18px; flex-wrap: wrap;
}
.footer-stats > div { display: flex; flex-direction: column; }
.footer-stats .big {
  font-family: var(--font-display);
  font-size: 22px; color: var(--accent);
}
.footer-stats .small {
  font-size: 11px; color: var(--text-3);
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-top: 2px;
}
.footer-col h4 {
  font-size: 13px; color: var(--text);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a, .footer-links span {
  font-size: 14px; color: var(--text-2);
  transition: color .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--accent); }
.footer-links svg { width: 14px; height: 14px; opacity: .7; }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
  display: flex; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  font-size: 13px; color: var(--text-3);
}
.disclaimer { font-size: 12px; max-width: 600px; }

/* ============================================================
   14) SABİT MOBİL CTA — alt dikdörtgen bar (yapışık, her zaman görünür)
   ============================================================ */

.floating-cta {
  display: none;
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 90;
  background: #0a0a0a;
  border-top: 1px solid var(--line-2);
  box-shadow: 0 -6px 20px rgba(0,0,0,.5);
  padding: 0;
  margin: 0;
  /* Çentikli telefonlar için safe-area */
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.fab {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 12px;
  border: 0;
  border-radius: 0;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .3px;
  white-space: nowrap;
  transition: filter .2s var(--ease);
}
.fab:active { filter: brightness(.9); }
.fab svg { width: 20px; height: 20px; flex-shrink: 0; }
.fab-call { background: var(--accent); color: #0a0a0a; }
.fab-wa   { background: var(--whatsapp); color: #fff; }

/* ============================================================
   15) REVEAL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   16) RESPONSIVE — TABLET (≤ 980px)
   ============================================================ */

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-stats { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .main-nav { display: none !important; }
  .menu-toggle { display: inline-flex !important; }
  .header-cta { display: none !important; }
}

/* ============================================================
   17) RESPONSIVE — MOBILE (≤ 640px)
   ============================================================ */

@media (max-width: 640px) {
  :root { --gutter: 16px; --header-h: 64px; }

  body { font-size: 15px; }

  .section,
  [class^="section-"] { padding: 44px 0; }
  .section-head { margin-bottom: 28px; }

  /* Topbar — sadece WhatsApp tutalım */
  .topbar { font-size: 12px; }
  .topbar-pulse { display: none; }
  .topbar-actions { width: 100%; justify-content: center; gap: 18px; }

  /* Header */
  .brand-mark { width: 38px; height: 38px; font-size: 22px; }
  .brand-name { font-size: 18px; }
  .brand-tag  { font-size: 8px; letter-spacing: 2px; }
  .header-cta .btn-primary { padding: 10px 14px; font-size: 13px; }

  /* Hero */
  .hero { padding: 36px 0 50px; }
  .hero-tag { font-size: 11px; letter-spacing: 1px; padding: 5px 12px; }
  .hero-checks { gap: 8px 14px; }
  .hero-checks li { font-size: 13px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; width: 100%; }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
    padding-top: 22px; margin-top: 26px;
  }
  .stat-value { font-size: 26px; }
  .stat-label { font-size: 10px; letter-spacing: 1px; }

  /* Form */
  .form-card { padding: 22px; border-radius: 14px; }
  .quote-form .row { grid-template-columns: 1fr; gap: 10px; }
  .form-head h3 { font-size: 20px; }

  /* Cards */
  .step-card,
  .criteria-card,
  .why-card,
  .service-card,
  .twocol-card,
  .contact-card,
  .featured-city,
  .intro-card { padding: 22px; }

  .closing-card { padding: 32px 22px; border-radius: 14px; }
  .closing-card .hero-actions { flex-direction: column; align-items: stretch; }

  /* CTA strip — mobilde stack */
  section.cta-strip > .container > .cta-strip-inner,
  div.cta-strip { padding: 28px 22px; border-radius: 14px; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .cta-strip-actions { width: 100%; flex-direction: column; align-items: stretch; }
  .cta-strip-actions .btn { justify-content: center; width: 100%; }

  /* All cities — daha sıkı grid */
  .city-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Sabit alt CTA bar — her zaman görünür */
  .floating-cta { display: flex; }
  body { padding-bottom: 60px; }

  /* CTA strip içinde phone CTA yumuşat */
  .cta-strip h2 { font-size: 24px; }
}

/* ============================================================
   18) ACCESSIBILITY — reduced motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
