/* ==========================================================
   Ankara Nakliyeci - On yuz stilleri (mobil oncelikli)
   MARKA TOKENLARI: tum marka renkleri asagidaki :root blogunda
   toplanir; kardes siteler yalnizca bu blogu degistirir.
   Kimlik: derin lacivert + amber (yol tabelasi esintisi);
   amber zeminlerde metin LACIVERT kullanilir (kontrast icin).
   ========================================================== */

:root {
  /* --- Marka tokenlari (Ankara Nakliyeci: lacivert + amber) --- */
  --accent: #f2a516;              /* ana vurgu (amber) */
  --accent-bright: #ffb832;       /* amber buton hover (aydinlanma) */
  --accent-dark: #9a6a00;         /* beyaz zeminde okunur vurgu metni */
  --accent-soft: #fdf3dd;         /* ikon zemini, rozet zemini */
  --accent-glow: rgba(242, 165, 22, .18);  /* eyebrow/rozet saydam zemin */
  --accent-ring: rgba(242, 165, 22, .55);  /* sinyal halkasi */
  --accent-on-dark: #fbc55e;      /* koyu zemin uzerinde vurgu metin */
  --cta-g2: #f7b93e;              /* CTA gradyan ikinci duragi */

  --dark: #0e2a47;                /* koyu marka zemini (derin lacivert) */
  --dark-2: #143a5e;              /* hero gradyan orta */
  --dark-3: #1b4a78;              /* hero gradyan uc */
  --dark-light: #1c3f63;          /* koyu buton hover */
  --dark-border: #2b4a6c;         /* koyu zeminde cizgi */
  --dark-border-2: #213e5e;       /* footer alt cizgi */
  --on-dark-1: #dce8f4;           /* koyu zeminde parlak metin */
  --on-dark-2: #c2d4e5;           /* koyu zeminde govde metin */
  --on-dark-3: #9db6cf;           /* koyu zeminde soluk metin */
  --wa-soft: #7bedaa;             /* topbar whatsapp tonu */

  --shadow-hue: 14, 42, 71;       /* golge rengi (marka koyusundan) */

  /* --- Ortak tokenlar --- */
  --white: #ffffff;
  --bg: #f4f7fb;
  --text: #1f2937;
  --text-muted: #52606d;
  --border: #d9e2ec;
  --green: #1f9d55;
  --wa: #25d366;
  --wa-dark: #1baa52;
  --danger: #dc2626;

  --font-display: "Outfit", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: "Manrope", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --shadow: 0 2px 12px rgba(var(--shadow-hue), .08);
  --shadow-lg: 0 8px 28px rgba(var(--shadow-hue), .14);
  --shadow-card: 0 1px 2px rgba(var(--shadow-hue), .04), 0 4px 14px rgba(var(--shadow-hue), .06);
  --shadow-card-hover: 0 4px 10px rgba(var(--shadow-hue), .08), 0 18px 38px rgba(var(--shadow-hue), .16);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--accent-dark); }
a:hover { color: var(--accent); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  color: var(--dark);
  margin: 0 0 .5em;
  overflow-wrap: break-word;
  text-wrap: balance;
}
h1 { font-size: clamp(1.8rem, 4.6vw, 2.85rem); font-weight: 800; letter-spacing: -.025em; }
h2 { font-size: clamp(1.4rem, 3.2vw, 2rem); font-weight: 700; letter-spacing: -.02em; }
h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -.01em; }

p { margin: 0 0 1em; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

/* Erisilebilirlik */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--dark); color: #fff; padding: .6rem 1rem; z-index: 200;
}
.skip-link:focus { left: 0; color: #fff; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; }

/* ---------- Butonlar ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .65rem 1.15rem; border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700; font-size: .95rem; text-decoration: none;
  border: 2px solid transparent; cursor: pointer; line-height: 1.2;
  transition: background .18s ease, color .18s ease, border-color .18s ease,
              transform .18s ease, box-shadow .18s ease;
  min-height: 44px;
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px) scale(.98); }
.btn svg { flex: none; }
.btn-primary { background: var(--accent); color: var(--dark); box-shadow: 0 2px 10px var(--accent-glow); }
.btn-primary:hover { background: var(--accent-bright); color: var(--dark); box-shadow: 0 6px 18px var(--accent-glow); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--dark-light); color: #fff; }
.btn-light { background: #fff; color: var(--dark); border-color: var(--border); }
.btn-light:hover { border-color: var(--dark); color: var(--dark); }
.btn-outline { background: transparent; color: var(--dark); border-color: var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent-dark); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-dark); color: #fff; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-danger:hover { background: #b91c1c; color: #fff; }
.btn-lg { padding: .85rem 1.5rem; font-size: 1.05rem; }
.btn-sm { padding: .45rem .8rem; font-size: .85rem; min-height: 38px; }
.btn-block { width: 100%; }

/* ---------- Dikkat cekici buton efektleri ---------- */
@media (prefers-reduced-motion: no-preference) {
  /* WhatsApp: yesil nabiz parilti */
  .btn-wa, .mobile-bar-wa { animation: fxPulseWa 2.4s ease-in-out infinite; }
  @keyframes fxPulseWa {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, .55); }
    55% { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
  }
  /* Teklif Al: vurgu renginde sinyal (radar ping) halkasi */
  .fx-signal { animation: fxSignal 1.8s ease-in-out infinite; }
  @keyframes fxSignal {
    0%, 100% { box-shadow: 0 0 0 0 var(--accent-ring); }
    55% { box-shadow: 0 0 0 13px rgba(0, 0, 0, 0); }
  }
  /* Hemen Ara: telefon ikonu sallanma */
  .fx-call svg { animation: fxCall 3.2s ease-in-out infinite; transform-origin: center; }
  @keyframes fxCall {
    0%, 82%, 100% { transform: rotate(0); }
    85%, 93% { transform: rotate(-13deg); }
    89%, 97% { transform: rotate(13deg); }
  }
}

/* ---------- Kaydirmali giris (reveal) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s cubic-bezier(.22, .8, .35, 1); transition-delay: var(--reveal-delay, 0ms); }
  .reveal.revealed { opacity: 1; transform: none; }
}

/* ---------- Topbar ---------- */
.topbar { background: var(--dark); color: var(--on-dark-1); font-size: .82rem; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: .5rem; min-height: 38px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: .35rem; color: var(--on-dark-1); text-decoration: none; }
.topbar-item:hover { color: #fff; }
.topbar-wa { color: var(--wa-soft); }
.topbar-left { display: none; }
@media (min-width: 768px) { .topbar-left { display: flex; } }

/* ---------- Header ---------- */
.site-header { background: rgba(255, 255, 255, .92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 68px; }
.brand { display: flex; align-items: center; gap: .5rem; text-decoration: none; }
.brand-mark { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(140deg, var(--accent), var(--cta-g2)); color: var(--dark); box-shadow: 0 3px 10px var(--accent-glow); }
.brand-text { font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; color: var(--dark); letter-spacing: -.02em; }
.brand-text strong { color: var(--accent); font-weight: 800; }

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 1.25rem; list-style: none; margin: 0; padding: 0; }
.main-nav a { position: relative; color: var(--dark); text-decoration: none; font-weight: 600; font-size: .95rem; padding: .5rem 0; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: .1rem; height: 2.5px; border-radius: 2px; background: var(--accent); transition: right .22s ease; }
.main-nav a:hover { color: var(--accent); }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }
.main-nav a.active { color: var(--accent-dark); }

.header-actions { display: flex; align-items: center; gap: .5rem; }
.header-actions .btn span { display: none; }
.nav-toggle { background: none; border: none; color: var(--dark); cursor: pointer; padding: .4rem; display: inline-flex; min-height: 44px; min-width: 44px; align-items: center; justify-content: center; }

@media (min-width: 1024px) {
  .main-nav { display: block; }
  .nav-toggle { display: none; }
  .header-actions .btn span { display: inline; }
}

@media (max-width: 480px) {
  .header-inner { gap: .4rem; }
  .header-actions { gap: .3rem; }
  .brand-text { font-size: 1.05rem; }
  .brand-mark { width: 38px; height: 38px; }
  .header-actions .btn-sm { padding: .45rem .55rem; }
}

.mobile-nav { background: #fff; border-top: 1px solid var(--border); }
.mobile-nav ul { list-style: none; margin: 0; padding: .5rem 1rem 1rem; }
.mobile-nav a { display: block; padding: .8rem .5rem; color: var(--dark); text-decoration: none; font-weight: 600; border-bottom: 1px solid var(--bg); }
.mobile-nav a.active { color: var(--accent-dark); }
.mobile-nav-cta { color: var(--accent) !important; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(46rem 30rem at 88% -10%, rgba(255, 255, 255, .07), transparent 60%),
    radial-gradient(38rem 26rem at -12% 110%, var(--accent-glow), transparent 55%),
    linear-gradient(145deg, var(--dark) 0%, var(--dark-2) 60%, var(--dark-3) 100%);
  color: var(--on-dark-1);
  padding: 3rem 0 3.5rem;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1.5px);
  background-size: 26px 26px;
  mask-image: linear-gradient(115deg, transparent 30%, rgba(0, 0, 0, .9));
  -webkit-mask-image: linear-gradient(115deg, transparent 30%, rgba(0, 0, 0, .9));
}
.hero-has-image { background-size: cover !important; background-position: center !important; background-repeat: no-repeat !important; }
.hero-has-image::before { display: none; }
.hero-inner { position: relative; display: grid; gap: 2rem; }
.hero h1 { color: #fff; margin-bottom: .6rem; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .4rem; background: var(--accent-glow); color: var(--accent-on-dark); font-weight: 600; font-size: .85rem; padding: .3rem .75rem; border-radius: 999px; margin-bottom: 1rem; border: 1px solid rgba(255, 255, 255, .08); }
.hero-sub { font-size: 1.05rem; max-width: 560px; color: var(--on-dark-2); }
.hero-sub strong { color: #fff; font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.3rem 0; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1rem; list-style: none; padding: 0; margin: 0; font-size: .88rem; color: var(--on-dark-3); }
.hero-badges li { display: inline-flex; align-items: center; gap: .35rem; }
.hero-badges svg { color: var(--accent); }

.hero-card { background: #fff; color: var(--text); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: 0 20px 50px rgba(var(--shadow-hue), .3); border-top: 3px solid var(--accent); }
.hero-card h2 { font-size: 1.2rem; }
.hero-card p { font-size: .9rem; color: var(--text-muted); }
.quick-route-note { font-size: .78rem !important; line-height: 1.5; color: var(--text-muted); margin: 1rem 0 0 !important; padding-top: .8rem; border-top: 1px solid var(--border); }
.quick-route-note strong { color: var(--dark); }

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.4fr 1fr; align-items: center; }
}

/* ---------- Formlar ---------- */
.form-row { margin-bottom: 1rem; display: flex; flex-direction: column; gap: .35rem; }
.form-row label, .label-text { font-weight: 600; font-size: .9rem; color: var(--dark); }
.req { color: var(--danger); }
.opt { color: var(--text-muted); font-weight: 400; font-size: .82rem; }

input[type="text"], input[type="tel"], input[type="email"], input[type="date"],
input[type="number"], input[type="password"], input[type="url"], input[type="search"],
input[type="file"], input[type="datetime-local"], select, textarea {
  width: 100%; padding: .65rem .8rem; font-size: 1rem; font-family: inherit;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm); background: #fff; color: var(--text);
  min-height: 44px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { min-height: auto; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px var(--accent-glow); }

.form-grid-2 { display: grid; gap: 0 1rem; }
.form-grid-3 { display: grid; gap: 0 1rem; }
@media (min-width: 640px) {
  .form-grid-2 { grid-template-columns: 1fr 1fr; }
  .form-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}

.check-label { display: flex; align-items: flex-start; gap: .5rem; font-size: .92rem; cursor: pointer; font-weight: 500; }
.check-label input { width: 18px; height: 18px; margin-top: .2rem; flex: none; accent-color: var(--accent); min-height: auto; }
.check-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .5rem; }
.radio-row { display: flex; flex-wrap: wrap; gap: .8rem; }
.form-row-check { justify-content: center; }

.field-error { color: var(--danger); font-size: .85rem; margin: .2rem 0 0; font-weight: 600; }
.field-error::before { content: "⚠ "; }
.field-hint { color: var(--text-muted); font-size: .82rem; margin: .2rem 0 0; }

.alert { padding: .9rem 1.1rem; border-radius: var(--radius); margin-bottom: 1.2rem; font-size: .95rem; }
.alert ul { margin: .4rem 0 0 1.2rem; padding: 0; }
.alert-success { background: #e7f6ec; color: #14532d; border: 1px solid #a7dbb8; display: flex; gap: .5rem; align-items: center; }
.alert-error { background: #fdecec; color: #7f1d1d; border: 1px solid #f5b5b5; }

/* Honeypot */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Bolumler ---------- */
.section { padding: clamp(3rem, 6.5vw, 4.5rem) 0; }
.section-alt { background: var(--bg); }
.section-title { text-align: center; margin-bottom: .4rem; }
.section-title::after { content: ""; display: block; width: 44px; height: 3.5px; border-radius: 2px; background: var(--accent); margin: .65rem auto 0; }
.section-title-left { margin: 1.5rem 0 1rem; }
.section-title-left::after { margin-left: 0; }
.section-sub { text-align: center; color: var(--text-muted); max-width: 640px; margin: 0 auto 2.4rem; text-wrap: balance; }
.section-sub strong { color: var(--dark); }
.section-more { text-align: center; margin-top: 2rem; }

.card-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) {
  .card-grid-2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Kartlar */
.service-card, .route-card, .feature-card, .step-card, .vehicle-card,
.announcement-card, .review-card, .post-card, .location-card {
  background: #fff; border: 1px solid transparent; border-radius: 14px;
  padding: 1.3rem; text-decoration: none; color: var(--text);
  display: flex; flex-direction: column; gap: .4rem;
  box-shadow: var(--shadow-card);
  transition: transform .22s cubic-bezier(.22, .8, .35, 1), box-shadow .22s ease, border-color .18s ease;
}
.section-alt .service-card, .section-alt .route-card, .section-alt .feature-card,
.section-alt .step-card, .section-alt .vehicle-card, .section-alt .announcement-card,
.section-alt .review-card, .section-alt .post-card, .section-alt .location-card { border-color: var(--border); box-shadow: none; }
a.service-card:hover, a.route-card:hover, a.post-card:hover, a.location-card:hover {
  border-color: var(--accent); color: var(--text);
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}
/* Statik kartlarda (link olmayan) da yumusak yukselme */
.feature-card:hover, .vehicle-card:hover, .announcement-card:hover, .review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.service-icon, .feature-icon { display: inline-flex; width: 54px; height: 54px; align-items: center; justify-content: center; border-radius: 14px; background: linear-gradient(150deg, var(--accent-soft), #fff); color: var(--accent); margin-bottom: .4rem; border: 1px solid var(--accent-soft); }
.card-link { color: var(--accent-dark); font-weight: 700; font-size: .88rem; display: inline-flex; align-items: center; gap: .3rem; margin-top: auto; transition: gap .18s ease; }
a:hover > .card-link { gap: .55rem; }
.card-title-h3 { font-size: 1.1rem; }

.route-cities { display: flex; align-items: center; gap: .45rem; font-family: var(--font-display); font-weight: 700; color: var(--dark); font-size: 1.02rem; letter-spacing: -.01em; }
.route-cities svg { color: var(--accent); flex: none; }
.route-arrow { color: var(--accent); }
.route-time { display: inline-flex; align-items: center; gap: .35rem; color: var(--text-muted); font-size: .85rem; font-variant-numeric: tabular-nums; }

.steps-grid { display: grid; gap: 1.1rem; list-style: none; margin: 0; padding: 0; counter-reset: step; }
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step-no { display: inline-flex; width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(140deg, var(--accent), var(--cta-g2)); color: var(--dark); font-weight: 800; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: .5rem; box-shadow: 0 3px 10px var(--accent-glow); }

.vehicle-card img { border-radius: var(--radius-sm); object-fit: cover; }
.vehicle-icon { display: inline-flex; width: 70px; height: 70px; border-radius: 16px; background: linear-gradient(150deg, var(--accent-soft), #fff); color: var(--accent); align-items: center; justify-content: center; border: 1px solid var(--accent-soft); }
.vehicle-capacity { color: var(--accent-dark); font-weight: 700; font-size: .88rem; margin: 0; font-variant-numeric: tabular-nums; }

.announcement-head { display: flex; justify-content: space-between; align-items: center; gap: .5rem; flex-wrap: wrap; }
.announcement-badge { display: inline-flex; align-items: center; gap: .35rem; background: var(--accent-soft); color: var(--accent-dark); font-weight: 700; font-size: .8rem; padding: .25rem .6rem; border-radius: 999px; }
.announcement-date { color: var(--text-muted); font-size: .85rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.announcement-route { display: flex; align-items: center; gap: .4rem; color: var(--dark); font-weight: 600; margin: 0; }
.announcement-card .btn { align-self: flex-start; margin-top: .5rem; }

.review-card { margin: 0; }
.review-stars { color: #f59e0b; display: flex; gap: 2px; }
.review-card footer { margin-top: auto; display: flex; flex-direction: column; font-size: .85rem; }
.review-card footer strong { color: var(--dark); }
.review-card footer span { color: var(--text-muted); }

.post-card { padding: 0; overflow: hidden; }
.post-card img { width: 100%; object-fit: cover; aspect-ratio: 16/9; }
.post-card-body { padding: 1.1rem 1.3rem 1.3rem; display: flex; flex-direction: column; gap: .35rem; }
.post-card time { color: var(--text-muted); font-size: .82rem; font-variant-numeric: tabular-nums; }
.post-cat { display: inline-block; background: var(--accent-soft); color: var(--accent-dark); font-size: .78rem; font-weight: 700; padding: .15rem .6rem; border-radius: 999px; text-decoration: none; align-self: flex-start; }

.location-card { flex-direction: row; align-items: center; gap: .6rem; font-weight: 600; color: var(--dark); padding: 1rem 1.1rem; }
.location-card svg { color: var(--accent); flex: none; }

.trust-band { display: grid; gap: 1.5rem; }
@media (min-width: 900px) { .trust-band { grid-template-columns: repeat(3, 1fr); } }
.trust-item { display: flex; gap: 1rem; align-items: flex-start; }
.trust-item svg { color: var(--accent); flex: none; margin-top: .2rem; }
.trust-item h3 { margin-bottom: .25rem; }
.trust-item p { margin: 0; font-size: .92rem; color: var(--text-muted); }

/* SSS */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: .6rem; background: #fff; transition: border-color .18s ease, box-shadow .18s ease; }
.faq-item[open] { border-color: var(--accent); box-shadow: var(--shadow); }
.faq-item summary { padding: 1rem 1.2rem; font-weight: 700; color: var(--dark); cursor: pointer; list-style: none; position: relative; padding-right: 2.5rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%); color: var(--accent); font-size: 1.4rem; font-weight: 400; transition: transform .18s ease; }
.faq-item[open] summary::after { content: "–"; }
.faq-answer { padding: 0 1.2rem 1.1rem; color: var(--text-muted); }

/* CTA band */
.cta-band {
  position: relative;
  background:
    radial-gradient(30rem 18rem at 105% 120%, rgba(255, 255, 255, .22), transparent 60%),
    linear-gradient(120deg, var(--accent) 0%, var(--cta-g2) 100%);
  color: var(--dark); padding: clamp(2.6rem, 5vw, 3.4rem) 0;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(14, 42, 71, .14) 1px, transparent 1.5px);
  background-size: 22px 22px;
  mask-image: linear-gradient(100deg, transparent 45%, rgba(0, 0, 0, .8));
  -webkit-mask-image: linear-gradient(100deg, transparent 45%, rgba(0, 0, 0, .8));
}
.cta-band h2 { color: var(--dark); margin-bottom: .25rem; }
.cta-band p { margin: 0; opacity: .9; font-weight: 600; }
.cta-band-inner { position: relative; display: flex; flex-direction: column; gap: 1.3rem; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: .7rem; }
@media (min-width: 900px) {
  .cta-band-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ---------- Sayfa duzenleri ---------- */
.breadcrumb { background: var(--bg); border-bottom: 1px solid var(--border); font-size: .84rem; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .3rem; list-style: none; margin: 0; padding: .6rem 0; }
.breadcrumb li:not(:last-child)::after { content: "›"; margin-left: .3rem; color: var(--text-muted); }
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb li[aria-current] { color: var(--dark); font-weight: 600; }

.page-hero {
  position: relative;
  background:
    radial-gradient(34rem 22rem at 100% -20%, var(--accent-glow), transparent 55%),
    linear-gradient(145deg, var(--dark), var(--dark-2));
  color: var(--on-dark-2); padding: 2.8rem 0;
  overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .045) 1px, transparent 1.5px);
  background-size: 26px 26px;
  mask-image: linear-gradient(115deg, transparent 40%, rgba(0, 0, 0, .85));
  -webkit-mask-image: linear-gradient(115deg, transparent 40%, rgba(0, 0, 0, .85));
}
.page-hero > .container { position: relative; }
.page-hero h1 { color: #fff; }
.page-hero-slim { padding: 2rem 0; }
.page-lead { font-size: 1.05rem; max-width: 720px; color: var(--on-dark-2); }
.page-hero a { color: var(--accent-on-dark); }
.page-hero-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.2rem; }
.route-badge { display: inline-flex; align-items: center; gap: .45rem; background: var(--accent-glow); color: var(--accent-on-dark); font-weight: 700; padding: .3rem .8rem; border-radius: 999px; margin-bottom: .8rem; border: 1px solid rgba(255, 255, 255, .08); }
.route-facts { display: flex; flex-wrap: wrap; gap: 1.2rem; margin-top: 1rem; }
.route-fact { display: inline-flex; align-items: center; gap: .45rem; font-size: .92rem; color: var(--on-dark-2); font-variant-numeric: tabular-nums; }
.route-fact svg { color: var(--accent); }
.route-fact strong { color: #fff; }

.page-layout { display: grid; gap: 2rem; padding: 2.5rem 0; }
@media (min-width: 960px) { .page-layout { grid-template-columns: 1fr 320px; align-items: start; } }
.page-narrow { max-width: 780px; margin-left: auto; margin-right: auto; padding-top: 2rem; padding-bottom: 2rem; }

.content-block { margin-top: 2rem; }
.prose { color: var(--text); max-width: 72ch; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.2em; }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose li { margin-bottom: .35em; }
.prose img { border-radius: var(--radius); }
.prose table { width: 100%; border-collapse: collapse; display: block; overflow-x: auto; }
.prose th, .prose td { border: 1px solid var(--border); padding: .5rem .75rem; text-align: left; font-size: .92rem; }
.prose th { background: var(--bg); }

.page-side { display: flex; flex-direction: column; gap: 1.2rem; }
.side-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 1.3rem; }
.side-card h2 { font-size: 1.05rem; margin-bottom: .8rem; }
.side-card-cta { background: linear-gradient(150deg, var(--dark), var(--dark-2)); border: none; color: var(--on-dark-2); }
.side-card-cta h2 { color: #fff; }
.side-card-cta .btn { margin-top: .5rem; }
.side-links { list-style: none; margin: 0; padding: 0; }
.side-links li { border-bottom: 1px solid var(--bg); }
.side-links a { display: block; padding: .55rem 0; text-decoration: none; color: var(--text); font-size: .92rem; }
.side-links a:hover { color: var(--accent-dark); }
.side-card-map iframe { border-radius: var(--radius-sm); }

.post-cover { border-radius: var(--radius); margin-bottom: 1.5rem; width: 100%; object-fit: cover; }
.post-meta { color: var(--text-muted); font-size: .88rem; font-variant-numeric: tabular-nums; }

.blog-categories { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem; }
.blog-categories a { padding: .4rem .9rem; border: 1.5px solid var(--border); border-radius: 999px; text-decoration: none; color: var(--text); font-weight: 600; font-size: .88rem; transition: border-color .15s ease, color .15s ease; }
.blog-categories a.active, .blog-categories a:hover { border-color: var(--accent); color: var(--accent-dark); }

.pagination { display: flex; flex-wrap: wrap; gap: .4rem; justify-content: center; margin-top: 2rem; }
.pagination a, .pagination .page-current { display: inline-flex; min-width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: var(--radius-sm); text-decoration: none; font-weight: 600; font-variant-numeric: tabular-nums; }
.pagination a { border: 1.5px solid var(--border); color: var(--text); }
.pagination a:hover { border-color: var(--accent); color: var(--accent-dark); }
.pagination .page-current { background: var(--accent); color: var(--dark); }

.empty-note { text-align: center; color: var(--text-muted); padding: 2rem 0; }

/* ---------- Teklif formu ---------- */
.quote-form { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); }
.quote-form fieldset { border: none; margin: 0; padding: 0; }
.quote-form legend { font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: var(--dark); margin-bottom: 1.2rem; padding: 0; letter-spacing: -.01em; }

.form-steps { display: flex; justify-content: space-between; list-style: none; margin: 0 0 1.8rem; padding: 0; counter-reset: fstep; position: relative; }
.form-steps::before { content: ""; position: absolute; top: 16px; left: 8%; right: 8%; height: 2px; background: var(--border); z-index: 0; }
.form-steps li { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: .3rem; font-size: .72rem; color: var(--text-muted); flex: 1; text-align: center; }
.form-steps li::before { content: attr(data-step-label); display: flex; width: 34px; height: 34px; border-radius: 50%; background: #fff; border: 2px solid var(--border); align-items: center; justify-content: center; font-weight: 800; color: var(--text-muted); transition: background .18s ease, border-color .18s ease, color .18s ease; }
.form-steps li.active { color: var(--accent-dark); font-weight: 700; }
.form-steps li.active::before { background: var(--accent); border-color: var(--accent); color: #fff; }
.form-steps li.done::before { background: var(--dark); border-color: var(--dark); color: #fff; content: "✓"; }

.step-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: 1.5rem; }
.step-nav .btn:only-child { margin-left: auto; }

.photo-list { list-style: none; margin: .6rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .3rem; font-size: .85rem; color: var(--text-muted); }
.form-consents { gap: .7rem; }

.thanks-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 1.5rem; text-align: center; box-shadow: var(--shadow); }
.thanks-icon { display: inline-flex; width: 76px; height: 76px; border-radius: 50%; background: #e7f6ec; color: var(--green); align-items: center; justify-content: center; margin-bottom: 1rem; }
.thanks-code { font-size: 1.1rem; }
.thanks-code strong { color: var(--accent-dark); letter-spacing: .03em; font-variant-numeric: tabular-nums; }
.thanks-summary { text-align: left; background: var(--bg); border-radius: var(--radius); padding: 1.2rem 1.4rem; margin: 1.5rem 0; }
.thanks-summary h2 { font-size: 1rem; margin-bottom: .8rem; }
.thanks-summary dl { margin: 0; }
.thanks-summary dl > div { display: flex; flex-direction: column; padding: .4rem 0; border-bottom: 1px solid var(--border); }
.thanks-summary dl > div:last-child { border-bottom: none; }
.thanks-summary dt { font-weight: 700; font-size: .82rem; color: var(--text-muted); }
.thanks-summary dd { margin: 0; }
.thanks-actions { display: flex; flex-direction: column; gap: .7rem; }
@media (min-width: 640px) {
  .thanks-summary dl > div { flex-direction: row; gap: 1rem; }
  .thanks-summary dt { width: 140px; flex: none; }
  .thanks-actions { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}

/* ---------- Footer ---------- */
.site-footer { background: linear-gradient(165deg, var(--dark), var(--dark-2) 130%); color: var(--on-dark-3); margin-bottom: 64px; }
.footer-grid { display: grid; gap: 2rem; padding: 3rem 1rem 2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr; margin-bottom: 0; } }
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; color: #fff; }
.footer-brand strong { color: var(--accent); }
.footer-title { font-size: .82rem; color: #fff; margin-bottom: .8rem; text-transform: uppercase; letter-spacing: .1em; opacity: .85; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .45rem; }
.footer-col a { color: var(--on-dark-3); text-decoration: none; font-size: .92rem; transition: color .15s ease; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: flex-start; gap: .5rem; }
.footer-contact svg { color: var(--accent); flex: none; margin-top: .25rem; }
.footer-social { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1rem; }
.footer-social a { color: var(--on-dark-3); text-decoration: none; font-size: .88rem; border: 1px solid var(--dark-border); border-radius: 999px; padding: .25rem .8rem; transition: border-color .15s ease, color .15s ease; }
.footer-social a:hover { border-color: var(--accent); color: #fff; }
.footer-bottom { border-top: 1px solid var(--dark-border-2); padding: 1.1rem 0; font-size: .82rem; }
.footer-bottom p { margin: 0; }

@media (min-width: 1024px) { .site-footer { margin-bottom: 0; } }

/* ---------- Mobil sabit bar ---------- */
.mobile-bar { position: fixed; bottom: 0; left: 0; right: 0; display: flex; background: #fff; border-top: 1px solid var(--border); z-index: 90; box-shadow: 0 -2px 12px rgba(var(--shadow-hue), .1); }
.mobile-bar-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: .4rem; padding: .8rem .3rem; font-size: .82rem; font-weight: 700; text-decoration: none; min-height: 56px; }
.mobile-bar-phone { color: var(--dark); }
.mobile-bar-wa { color: #fff; background: var(--wa); }
.mobile-bar-quote { color: var(--dark); background: var(--accent); }
@media (min-width: 1024px) { .mobile-bar { display: none; } }

/* ---------- Cerez bildirimi ---------- */
.cookie-notice { position: fixed; bottom: 70px; left: 1rem; right: 1rem; background: var(--dark); color: var(--on-dark-1); padding: 1rem 1.2rem; border-radius: var(--radius); z-index: 95; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: .6rem; font-size: .88rem; }
.cookie-notice[hidden] { display: none !important; }
.cookie-notice p { margin: 0; }
.cookie-notice a { color: var(--accent-on-dark); }
.cookie-notice .btn { align-self: flex-start; }
@media (min-width: 768px) { .cookie-notice { left: auto; right: 1.5rem; max-width: 420px; bottom: 1.5rem; } }

/* ---------- Hata sayfalari ---------- */
.error-body { background: var(--bg); display: flex; align-items: center; justify-content: center; min-height: 100dvh; margin: 0; }
.error-page { text-align: center; padding: 3rem 1.5rem; max-width: 480px; }
.error-code { font-family: var(--font-display); font-size: 4.5rem; font-weight: 800; color: var(--accent); margin: 0 0 .5rem; line-height: 1; letter-spacing: -.03em; }
.error-actions { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; margin-top: 1.5rem; }

/* ---------- Galeri ---------- */
.gallery-cat { padding: 0; overflow: hidden; }
.gallery-cat-img { position: relative; aspect-ratio: 4/3; background: var(--bg); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.gallery-cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.gallery-cat:hover .gallery-cat-img img { transform: scale(1.05); }
.gallery-cat-placeholder { color: var(--accent); opacity: .5; }
.gallery-cat-count { position: absolute; bottom: .6rem; right: .6rem; background: rgba(var(--shadow-hue), .85); color: #fff; font-size: .75rem; font-weight: 700; padding: .2rem .6rem; border-radius: 999px; font-variant-numeric: tabular-nums; }
.gallery-cat h2 { padding: 1rem 1.2rem 0; }
.gallery-cat p { padding: 0 1.2rem 1.2rem; margin: .3rem 0 0; font-size: .9rem; color: var(--text-muted); }

.photo-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .8rem; }
@media (min-width: 640px) { .photo-gallery { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); } }
.photo-gallery-item { display: block; aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); border: 1px solid var(--border); cursor: zoom-in; }
.photo-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.photo-gallery-item:hover img { transform: scale(1.06); }

.lightbox { position: fixed; inset: 0; background: rgba(0, 0, 0, .9); z-index: 200; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2rem; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 82vh; object-fit: contain; border-radius: 6px; }
.lightbox-caption { color: #fff; margin-top: 1rem; font-size: .95rem; text-align: center; }
.lightbox-close { position: absolute; top: 1rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 2.5rem; line-height: 1; cursor: pointer; }

/* ---------- Fiyatlandirma ---------- */
.pricing-grid { display: grid; gap: 1.3rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 700px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }
.pricing-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 1.8rem 1.5rem; display: flex; flex-direction: column; position: relative; transition: transform .22s ease, box-shadow .22s ease; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.pricing-card-popular { border-color: var(--accent); box-shadow: 0 8px 28px var(--accent-glow); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--dark); font-size: .75rem; font-weight: 800; padding: .3rem .9rem; border-radius: 999px; white-space: nowrap; }
.pricing-title { font-size: 1.3rem; margin-bottom: .2rem; }
.pricing-subtitle { color: var(--text-muted); font-size: .9rem; margin-bottom: 1rem; }
.pricing-price { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--dark); margin-bottom: 1.2rem; line-height: 1.1; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.pricing-price span { display: block; font-size: .82rem; font-weight: 600; color: var(--text-muted); font-family: var(--font-body); letter-spacing: 0; }
.pricing-features { list-style: none; margin: 0 0 1.5rem; padding: 0; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: .5rem; padding: .45rem 0; font-size: .92rem; border-bottom: 1px solid var(--bg); }
.pricing-features svg { color: var(--green); flex: none; margin-top: .15rem; }
.pricing-feature-off { color: var(--text-muted); text-decoration: line-through; }
.pricing-note { text-align: center; color: var(--text-muted); font-size: .88rem; margin-top: 2rem; max-width: 640px; margin-left: auto; margin-right: auto; }

/* Yazdirma */
@media print {
  .topbar, .site-header, .mobile-bar, .cookie-notice, .cta-band, .site-footer { display: none !important; }
}
