/* Temur Yol Yardım — site stilleri
   Düzen: temel → düğmeler → başlık → sayfa başı → bölümler → bileşenler → alt bilgi → mobil */

/* Başlık fontu: Barlow Semi Condensed (OFL), yalnızca Türkçe/Latin harflerle alt küme */
@font-face {
  font-family: "Barlow SC";
  src: url("/public/fonts/barlow-sc-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* Font gelene kadar aynı genişlikte yedek: başlıklar yerinden oynamaz (CLS) */
@font-face {
  font-family: "Barlow SC Yedek";
  src: local("Arial Bold"), local("Arial-BoldMT"), local("Liberation Sans Bold"), local("Helvetica Neue Bold"), local("Roboto Bold");
  font-weight: 700;
  size-adjust: 84%;
  ascent-override: 119%;
  descent-override: 23.8%;
  line-gap-override: 0%;
}

:root {
  --red:       #c8102e;
  --red-dark:  #a50d26;
  --red-soft:  #fbeff1;
  --red-light: #ff6b7d;   /* koyu zeminde kırmızı yazı */

  --ink:       #12161b;   /* koyu bölümler */
  --ink-2:     #1b2027;
  --ink-3:     #0c0f13;   /* alt bilgi */
  --head:      #14181d;   /* başlık yazısı */
  --text:      #333a43;
  --muted:     #5c646e;
  --line:      #e1e4e8;
  --line-2:    #eef0f2;
  --bg:        #ffffff;
  --bg-2:      #f4f5f7;

  --on-dark:   #ffffff;
  --on-dark-2: #c5cbd3;
  --on-dark-3: #8f98a3;
  --line-dark: rgba(255, 255, 255, .13);

  --wa:        #13843f;
  --wa-dark:   #0f6e34;
  --live:      #2bb563;

  --wrap: 1180px;
  --radius: 6px;
  --shadow: 0 1px 2px rgba(18, 22, 27, .06), 0 12px 32px rgba(18, 22, 27, .12);
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-head: "Barlow SC", "Barlow SC Yedek", var(--font);
}

/* ---------- Temel ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 100px; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; }
img { height: auto; display: block; }
[hidden] { display: none !important; }
a { color: var(--red); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--red-dark); }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; border-radius: 2px; }

h1, h2, h3 { color: var(--head); margin: 0 0 .5em; font-weight: 700; }
h1, h2 { font-family: var(--font-head); letter-spacing: -.005em; }
h1 { font-size: clamp(2.3rem, 1.7rem + 2.6vw, 3.6rem); line-height: 1.04; }
h2 { font-size: clamp(1.75rem, 1.45rem + 1.2vw, 2.4rem); line-height: 1.1; }
h3 { font-size: 1.1rem; line-height: 1.35; }
p { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25em; }
li { margin-bottom: .45em; }
strong { color: var(--head); font-weight: 650; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.ico { width: 22px; height: 22px; flex: none; }
.muted { color: var(--muted); }
.small { font-size: .94rem; }
.more { margin: 24px 0 0; }
.loc-inline { margin-top: 12px; max-width: 420px; }

.skip {
  position: absolute; left: 12px; top: -80px; z-index: 100;
  background: var(--ink); color: #fff; padding: 12px 18px; font-weight: 600; text-decoration: none;
}
.skip:focus { top: 12px; color: #fff; }

/* Üst başlık etiketi: "OTO ÇEKİCİ · 7/24" */
.eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 16px;
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--red);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; flex: none; }
.on-dark .eyebrow { color: var(--red-light); }

/* ---------- Düğmeler ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 24px;
  border: 1.5px solid transparent; border-radius: var(--radius);
  font: 600 1rem/1.2 var(--font);
  text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.btn svg { width: 19px; height: 19px; flex: none; }
.btn--lg { min-height: 60px; padding: 0 28px; font-size: 1.08rem; }
.btn--block { display: flex; width: 100%; }
.btn[disabled] { cursor: progress; opacity: .75; }

.btn--red { background: var(--red); color: #fff; }
.btn--red:hover { background: var(--red-dark); color: #fff; box-shadow: 0 6px 18px rgba(200, 16, 46, .28); }
.btn--wa { background: var(--wa); color: #fff; }
.btn--wa:hover { background: var(--wa-dark); color: #fff; }
.btn--line { background: #fff; color: var(--head); border-color: #cfd4da; }
.btn--line:hover { border-color: var(--head); color: var(--head); }
.btn--line svg { color: var(--red); }
.btn--white { background: #fff; color: var(--head); }
.btn--white:hover { background: #eef0f2; color: var(--head); }
.on-dark .btn--line { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .35); }
.on-dark .btn--line:hover { border-color: #fff; color: #fff; }
.on-dark .btn--line svg { color: var(--red-light); }
/* Koyu bölüm içindeki beyaz kart kendi açık renklerini korur */
.on-dark .callcard .btn--line { background: #fff; color: var(--head); border-color: #cfd4da; }
.on-dark .callcard .btn--line:hover { border-color: var(--head); }
.on-dark .callcard .btn--line svg { color: var(--red); }
.on-dark .callcard .locshare__msg { color: var(--text); }
.on-dark .callcard .locshare__msg.is-error { color: var(--red-dark); }

.cta { display: flex; flex-wrap: wrap; gap: 12px; }
.btn__txt small { display: none; }

/* Dokunmatik ekranda basılma hissi (fareyle gezilmeyen cihazlarda hover yok) */
a, button, summary { -webkit-tap-highlight-color: transparent; }
@media (hover: none) {
  .btn:active { transform: scale(.98); }
  a.tile:active, .links a:active { background: var(--bg-2); }
}

/* Hat açık göstergesi (hizmet 7/24 olduğu için her zaman doğru) */
.live {
  display: inline-block; width: 9px; height: 9px; border-radius: 50%;
  background: var(--live); box-shadow: 0 0 0 3px rgba(43, 181, 99, .2);
  flex: none;
}

/* ---------- Başlık ---------- */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.hdr.is-stuck { box-shadow: 0 4px 18px rgba(18, 22, 27, .08); }
.hdr__in { display: flex; align-items: center; gap: 28px; min-height: 84px; }
.hdr__logo { flex: none; display: block; }
.hdr__logo img { height: 48px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  position: relative;
  padding: 10px 14px;
  font-size: 1rem; font-weight: 600; color: var(--head);
  text-decoration: none; white-space: nowrap;
}
.nav a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--red); transform: scaleX(0); transition: transform .15s ease;
}
.nav a:hover { color: var(--red); }
.nav a:hover::after, .nav a[aria-current]::after { transform: scaleX(1); }
.nav a[aria-current] { color: var(--red); }
.nav__call { display: none; }

/* Sağdaki çağrı hattı bloğu */
.hdr__tel {
  display: flex; align-items: center; gap: 12px;
  padding-left: 24px; border-left: 1px solid var(--line);
  color: var(--head); text-decoration: none; flex: none;
}
.hdr__tel-ico {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--red); color: #fff;
}
.hdr__tel-ico svg { width: 20px; height: 20px; }
.hdr__tel small {
  display: block; font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); line-height: 1.2;
}
.hdr__tel b { display: block; font-family: var(--font-head); font-size: 1.55rem; line-height: 1.1; letter-spacing: .01em; }
.hdr__tel:hover { color: var(--red); }
.hdr__tel:hover .hdr__tel-ico { background: var(--red-dark); }

.hdr__call, .nav-toggle { display: none; }

/* ---------- Ana sayfa girişi ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--on-dark-2);
}
.hero__top { position: relative; }
.hero__road {
  position: absolute; left: 55%; bottom: 0; transform: translateX(-50%);
  height: 100%; width: auto; max-width: none;
  pointer-events: none;
}
.hero__in {
  position: relative;
  display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: 72px; align-items: center;
  padding-top: 80px; padding-bottom: 72px;
}
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--red-light); }
.hero__lead { font-size: 1.15rem; line-height: 1.6; color: var(--on-dark-2); max-width: 36em; margin-bottom: 32px; }

/* Onay işaretli kısa liste */
.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; margin: 0; }
.checks .ico { width: 20px; height: 20px; color: var(--red); margin-top: 3px; }
.on-dark .checks { color: #e6e9ed; }
.on-dark .checks .ico { color: var(--red-light); }

/* Arama kartı (ana sayfa ve iç sayfaların yanında) */
.callcard {
  background: #fff; color: var(--text);
  border-radius: 10px; border-top: 5px solid var(--red);
  box-shadow: var(--shadow);
  padding: 30px 30px 26px;
}
.callcard__status { display: flex; align-items: center; gap: 10px; margin: 0 0 6px; font-size: .9rem; font-weight: 600; color: var(--head); }
.callcard__label { margin: 0; font-size: .95rem; color: var(--muted); }
.callcard__num {
  display: block; margin: 4px 0 20px;
  font-family: var(--font-head); font-weight: 700;
  font-size: clamp(2.4rem, 2rem + 1.6vw, 3.1rem); line-height: 1.05; letter-spacing: .005em;
  color: var(--head); text-decoration: none; white-space: nowrap;
}
.callcard__num:hover { color: var(--red); }
.callcard .btn { margin-bottom: 10px; }
.callcard__foot { margin: 14px 0 0; padding-top: 16px; border-top: 1px solid var(--line-2); font-size: .9rem; color: var(--muted); }

/* Konum gönderme (site.js doldurur) */
.locshare { margin: 0; }
.locshare .btn { margin-bottom: 0; }
.locshare__msg { font-size: .92rem; color: var(--text); margin: 10px 0 0; }
.locshare__msg:empty { display: none; }
.locshare__msg.is-error { color: var(--red-dark); }
.on-dark .locshare__msg { color: var(--on-dark-2); }
.on-dark .locshare__msg.is-error { color: #ffb3bd; }
.locshare__actions { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 8px; margin-top: 10px; }
.locshare__actions .btn { min-height: 48px; padding: 0 10px; font-size: .96rem; margin: 0; }
.spin {
  width: 17px; height: 17px; border-radius: 50%;
  border: 2px solid currentColor; border-right-color: transparent;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Girişin altındaki bilgi şeridi */
.facts {
  position: relative;
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
}
.facts li { display: flex; gap: 14px; align-items: flex-start; margin: 0; padding: 28px 24px 34px 0; }
.facts li + li { padding-left: 24px; border-left: 1px solid var(--line-dark); }
.facts .ico { width: 26px; height: 26px; color: var(--red-light); margin-top: 2px; }
.facts b { display: block; color: #fff; font-weight: 650; line-height: 1.3; }
.facts span { display: block; font-size: .92rem; color: var(--on-dark-3); margin-top: 2px; }

/* ---------- İç sayfa başı ---------- */
.phead { background: var(--ink); color: var(--on-dark-2); padding: 36px 0 64px; }
.phead h1 { color: #fff; margin-bottom: 18px; max-width: 15em; }
.phead__lead { font-size: 1.12rem; line-height: 1.6; max-width: 38em; margin: 0; }
.phead__actions { margin-top: 28px; }
.phead .checks { margin-top: 28px; grid-template-columns: repeat(2, minmax(0, max-content)); gap: 12px 36px; }
.phead__actions .locshare { margin-top: 12px; max-width: 420px; }
.phead--side .phead__body { max-width: calc(100% - 420px); }

.crumbs { font-size: .9rem; margin-bottom: 32px; }
.crumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; }
.crumbs li { margin: 0; color: var(--on-dark-3); }
.crumbs li + li::before { content: "/"; margin: 0 10px; color: #56606b; }
.crumbs a { color: var(--on-dark-2); text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs [aria-current] { color: var(--on-dark-3); }

/* İçerik + yan kart */
.layout {
  display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 72px;
  padding-top: 64px; padding-bottom: 96px;
}
.side { margin-top: -250px; }
.side .callcard { position: sticky; top: 108px; }

/* ---------- Bölümler ---------- */
.sec { padding: 96px 0; }
.sec--alt { background: var(--bg-2); }
.sec--tight { padding-top: 0; }
.sec--alt + .sec--tight { padding-top: 96px; }
.sec-head { max-width: 760px; margin-bottom: 44px; }
.sec-head h2 { margin-bottom: 14px; }
.sec-head p { font-size: 1.1rem; color: var(--muted); margin: 0; }
.sec-head--split { max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
.sec-head--split > div { max-width: 700px; }

/* İçerik sütunundaki bloklar */
.block + .block { margin-top: 72px; }
.block > h2 { margin-bottom: 14px; }
.block__lead { font-size: 1.08rem; color: var(--muted); margin-bottom: 28px; }
.prose p, .prose li { max-width: 68ch; }
.prose h3 { margin-top: 1.6em; font-size: 1.15rem; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .6em; }

/* ---------- Hizmet kutuları ---------- */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tile {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: 8px;
  padding: 30px 28px 26px;
  color: var(--text); text-decoration: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
a.tile:hover { border-color: #c3c9d0; box-shadow: var(--shadow); color: var(--text); }
.tile__ico {
  width: 52px; height: 52px; border-radius: 8px;
  display: grid; place-items: center;
  background: var(--red-soft); color: var(--red);
  margin-bottom: 22px;
}
.tile__ico .ico { width: 26px; height: 26px; }
.tile h3 { font-size: 1.2rem; margin-bottom: 8px; }
.tile p { margin: 0 0 20px; color: var(--muted); }
.tile__more { margin-top: auto; display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--red); }
.tile__more .ico { width: 18px; height: 18px; transition: transform .15s ease; }
a.tile:hover .tile__more .ico { transform: translateX(3px); }
.sec--alt .tile { border-color: transparent; }
.tile[id] { scroll-margin-top: 110px; }
.tile__sub { display: block; margin-top: 10px; font-size: .92rem; color: var(--head); }

/* ---------- Madde listesi (ikonlu) ---------- */
.items { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.items li { display: flex; gap: 18px; margin: 0; padding: 24px 0; border-top: 1px solid var(--line); }
.items__ico {
  width: 46px; height: 46px; border-radius: 8px; flex: none;
  display: grid; place-items: center; background: var(--red-soft); color: var(--red);
}
.items h3 { margin: 2px 0 6px; font-size: 1.08rem; }
.items p { margin: 0; }
.items--one { grid-template-columns: 1fr; }

/* ---------- Adımlar ---------- */
.steps { list-style: none; padding: 0; margin: 0; counter-reset: s; display: grid; gap: 0; }
.steps li {
  counter-increment: s;
  display: grid; grid-template-columns: 64px 1fr; gap: 0 8px;
  margin: 0; padding: 22px 0; border-top: 1px solid var(--line);
}
.steps li::before {
  content: counter(s, decimal-leading-zero);
  font-family: var(--font-head); font-weight: 700; font-size: 1.9rem; line-height: 1;
  color: var(--red);
}
.steps strong { display: block; font-size: 1.08rem; margin-bottom: 4px; }
.steps span { display: block; }

/* Yatay adımlar (ana sayfa) */
.flow { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; counter-reset: s; }
.flow li { counter-increment: s; margin: 0; padding-top: 22px; border-top: 3px solid var(--head); }
.flow li::before {
  content: counter(s, decimal-leading-zero);
  display: block; margin-bottom: 14px;
  font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; line-height: 1; color: var(--red);
}
.flow strong { display: block; font-size: 1.15rem; margin-bottom: 6px; }
.flow p { margin: 0; }

/* ---------- Bilgi kutusu ---------- */
.note {
  background: var(--bg-2); border-left: 4px solid var(--red); border-radius: 0 8px 8px 0;
  padding: 26px 30px;
}
.note h3 { font-size: 1.12rem; margin-bottom: 8px; }
.note p:last-child { margin-bottom: 0; }

/* ---------- Bölge listesi ---------- */
.places { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.places li {
  margin: 0; padding: 8px 16px;
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  font-size: .96rem; color: var(--head);
}
.sec--alt .places li { border-color: #dde1e5; }

/* ---------- Bağlantı listesi ---------- */
.links { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 12px; }
.links li { margin: 0; }
.links a {
  display: flex; align-items: center; gap: 12px;
  min-height: 60px; padding: 12px 18px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--head); font-weight: 600; text-decoration: none;
  transition: border-color .15s ease;
}
.links a .ico { color: var(--red); }
.links a .ico:last-child { margin-left: auto; width: 18px; height: 18px; color: var(--muted); transition: transform .15s ease; }
.links a:hover { border-color: var(--head); color: var(--head); }
.links a:hover .ico:last-child { transform: translateX(3px); color: var(--red); }

/* ---------- Sık sorulan sorular ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; position: relative;
  padding: 22px 48px 22px 0;
  font-size: 1.07rem; font-weight: 650; color: var(--head); line-height: 1.45;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 8px; top: 50%;
  width: 10px; height: 10px; margin-top: -7px;
  border-right: 2px solid var(--red); border-bottom: 2px solid var(--red);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq summary:hover { color: var(--red); }
.faq details > div { padding: 0 48px 22px 0; }
.faq details > div p:last-child { margin-bottom: 0; }

.split { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 72px; align-items: start; }
.split--even { grid-template-columns: 1fr 1fr; gap: 56px; }
.split > div > h2:first-child { margin-bottom: 22px; }
.split .sec-head { margin-bottom: 0; }
.split .places { margin-top: 24px; }

/* ---------- Güvenlik uyarısı ---------- */
.safety {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  list-style: none; padding: 0; margin: 0;
  background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
}
.safety li { margin: 0; padding: 28px 26px; }
.safety li + li { border-left: 1px solid var(--line); }
.safety strong { display: block; font-size: 1.08rem; margin-bottom: 6px; }
.safety span { display: block; color: var(--muted); }
.safety-head { display: flex; align-items: center; gap: 12px; margin: 0 0 20px; font-weight: 600; color: var(--head); }
.safety-head .ico { color: var(--red); }

/* ---------- Kapanış çağrısı ---------- */
.closing {
  position: relative; overflow: hidden;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 32px;
  background: var(--ink); color: var(--on-dark-2);
  border-radius: 12px; padding: 52px 56px;
}
.closing::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px; background: var(--red); }
.closing > div:first-child { flex: 1 1 360px; max-width: 540px; }
.closing h2 { color: #fff; margin-bottom: 10px; }
.closing p { margin: 0; font-size: 1.08rem; }
.closing__num {
  display: block; margin-bottom: 14px;
  font-family: var(--font-head); font-weight: 700; font-size: clamp(2.2rem, 1.8rem + 1.6vw, 3rem); line-height: 1;
  color: #fff; text-decoration: none; white-space: nowrap;
}
.closing__num:hover { color: #fff; text-decoration: underline; text-decoration-thickness: 2px; }

/* ---------- Bilgi listesi (iletişim, hakkımızda) ---------- */
.info { margin: 0; border-top: 1px solid var(--line); }
.info > div { display: grid; grid-template-columns: 190px 1fr; gap: 4px 24px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info dt { color: var(--muted); }
.info dd { margin: 0; color: var(--head); font-weight: 600; }
.info dd a { text-decoration: none; }
.info__big { font-family: var(--font-head); font-size: 1.8rem; line-height: 1.1; }

.map { border-radius: 8px; overflow: hidden; border: 1px solid var(--line); height: 100%; min-height: 380px; background: var(--bg-2); }
.map iframe { display: block; width: 100%; height: 100%; min-height: 380px; border: 0; }
.map[data-map-src] { display: flex; align-items: center; justify-content: center; }
.map.is-loaded { display: block; }
.map__ph { display: grid; justify-items: center; gap: 16px; padding: 32px 24px; text-align: center; }
.map__ph p { margin: 0; color: var(--muted); }
.map__ph strong { color: var(--head); }
.map__ph .cta { justify-content: center; }

/* ---------- Alt bilgi ---------- */
.ftr { background: var(--ink-3); color: var(--on-dark-3); font-size: .97rem; }
.ftr a { color: var(--on-dark-2); text-decoration: none; }
.ftr a:hover { color: #fff; text-decoration: underline; }
.ftr__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding: 72px 0 56px; }
.ftr__brand img { height: 46px; width: auto; }
.ftr__brand p { margin: 20px 0 0; max-width: 30ch; }
.ftr__tel { display: inline-block; margin-top: 22px; }
.ftr__tel small { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-3); }
.ftr__tel b { display: block; font-family: var(--font-head); font-size: 1.9rem; line-height: 1.15; color: #fff; }
.ftr h2 {
  font-family: var(--font); font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #fff; margin: 6px 0 20px;
}
.ftr ul { list-style: none; padding: 0; margin: 0; }
.ftr li { margin-bottom: 10px; }
.ftr__bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px;
  padding: 22px 0 26px; border-top: 1px solid rgba(255, 255, 255, .09); font-size: .9rem;
}

/* ---------- Mobil arama çubuğu ---------- */
.callbar {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  gap: 8px; padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(18, 22, 27, .08);
}
.callbar .btn { min-height: 58px; }
.callbar .btn--red { flex: 1 1 auto; }
.callbar .btn--wa { flex: 0 0 auto; padding: 0 18px; }

/* ---------- Bildirim ---------- */
.toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 80;
  transform: translate(-50%, 14px);
  max-width: calc(100vw - 32px);
  background: var(--ink); color: #fff;
  padding: 14px 22px; border-radius: var(--radius);
  font-size: 1rem; font-weight: 600;
  box-shadow: 0 8px 28px rgba(18, 22, 27, .3);
  opacity: 0; pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* =================================================================
   Duyarlı düzen
   ================================================================= */

@media (max-width: 1120px) {
  .nav a { padding: 10px 10px; }
  .nav a::after { left: 10px; right: 10px; }
  .hdr__in { gap: 18px; }
  .hdr__tel { padding-left: 18px; }
}

/* Tablet ve telefon: menü katlanır, yan kart gizlenir */
@media (max-width: 1000px) {
  .hdr__in { min-height: 70px; gap: 12px; }
  .hdr__logo img { height: 42px; }
  .hdr__tel { display: none; }
  .hdr__call { display: inline-flex; margin-left: auto; min-height: 44px; padding: 0 16px; font-size: .98rem; }
  .nav-toggle {
    display: inline-flex; align-items: center; gap: 8px;
    min-height: 44px; padding: 0 14px;
    background: #fff; border: 1.5px solid #cfd4da; border-radius: var(--radius);
    font: 600 .98rem var(--font); color: var(--head); cursor: pointer;
  }
  .nav-toggle svg { width: 20px; height: 20px; }
  .nav-toggle .ico-kapat { display: none; }
  .nav-toggle[aria-expanded="true"] .ico-menu { display: none; }
  .nav-toggle[aria-expanded="true"] .ico-kapat { display: block; }

  .nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    margin: 0; padding: 8px 24px 24px;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px rgba(18, 22, 27, .12);
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 16px 2px; font-size: 1.1rem; border-bottom: 1px solid var(--line-2); }
  .nav a::after { display: none; }
  .nav .nav__call { display: flex; margin-top: 18px; border: 0; color: #fff; font-size: 1.05rem; padding: 0 20px; }

  .hero__in { grid-template-columns: 1fr; gap: 40px; padding-top: 48px; padding-bottom: 48px; }
  .hero__road { display: none; }
  .facts { grid-template-columns: 1fr 1fr; }
  .facts li:nth-child(3) { padding-left: 0; border-left: 0; }
  .facts li:nth-child(n+3) { border-top: 1px solid var(--line-dark); }

  .phead { padding-bottom: 44px; }
  .phead--side .phead__body { max-width: none; }
  .layout { grid-template-columns: 1fr; padding-top: 52px; padding-bottom: 72px; }
  .side { display: none; }

  .tiles { grid-template-columns: 1fr 1fr; }
  .flow { grid-template-columns: 1fr; gap: 28px; }
  .safety { grid-template-columns: 1fr 1fr; }
  .safety li:nth-child(3) { border-left: 0; }
  .safety li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .ftr__grid { grid-template-columns: 1fr 1fr; }
}

/* Yan kartın olmadığı iç sayfalarda eylem düğmeleri masaüstünde de görünür;
   yan kartlı sayfalarda yalnızca mobilde görünür */
@media (min-width: 1001px) {
  .phead--side .phead__actions { display: none; }
}

/* Telefon */
@media (max-width: 760px) {
  body { font-size: 17px; padding-bottom: 80px; }
  .wrap { padding: 0 20px; }
  h1 { font-size: clamp(2.1rem, 1.5rem + 3.4vw, 2.6rem); line-height: 1.06; }
  h2 { font-size: 1.75rem; }

  /* Başlık: yalnızca logo ve Menü. Arama düğmesi zaten sayfanın üstünde ve altta. */
  .hdr__logo img { height: 38px; }
  .hdr__call { display: none; }
  .nav-toggle { margin-left: auto; padding: 0 14px; }

  /* Numaralı arama düğmesi: "HEMEN ARA" + büyük numara */
  .btn--call .btn__txt {
    display: flex; flex-direction: column; align-items: flex-start;
    font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; line-height: 1.2;
  }
  .btn--call small {
    display: block; margin-top: 1px;
    font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; letter-spacing: .01em; text-transform: none;
  }

  /* Ana sayfa girişi: kart yok, doğrudan koyu zeminde büyük düğmeler.
     İlk ekranda kaydırmadan başlık + arama + WhatsApp + konum görünür. */
  .hero__in { padding-top: 26px; padding-bottom: 26px; gap: 20px; }
  .hero .eyebrow { margin-bottom: 12px; }
  .hero h1 { margin-bottom: 14px; }
  .hero__lead { font-size: 1.02rem; line-height: 1.55; margin-bottom: 0; }
  .hero .callcard { background: transparent; box-shadow: none; border: 0; border-radius: 0; padding: 0; }
  .hero .callcard__label, .hero .callcard__num, .hero .callcard__foot { display: none; }
  .hero .callcard__status { color: #e6e9ed; margin-bottom: 12px; }
  .hero .callcard .btn--call { min-height: 78px; justify-content: flex-start; gap: 16px; padding: 0 22px; }
  .hero .callcard .btn--call svg { width: 26px; height: 26px; }
  .hero .callcard .btn--line { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .35); }
  .hero .callcard .btn--line svg { color: var(--red-light); }
  .hero .callcard .locshare__msg { color: var(--on-dark-2); }
  .hero .callcard .locshare__msg.is-error { color: #ffb3bd; }

  /* Güvence maddeleri 2x2, kısa */
  .facts { grid-template-columns: 1fr 1fr; }
  .facts li, .facts li + li { padding: 15px 0; gap: 10px; border-left: 0; border-top: 1px solid var(--line-dark); }
  .facts li:nth-child(-n+2) { border-top: 0; }
  .facts li:nth-child(even) { padding-left: 14px; border-left: 1px solid var(--line-dark); }
  .facts .ico { width: 20px; height: 20px; margin-top: 1px; }
  .facts b { font-size: .92rem; font-weight: 600; }
  .facts span { display: none; }

  /* Alt arama çubuğu */
  .callbar { transition: transform .25s ease; }
  .callbar-auto .callbar { transform: translateY(115%); }
  .callbar-auto.callbar-on .callbar { transform: none; }
  .callbar .btn--call { justify-content: center; }

  .phead { padding: 24px 0 36px; }
  .crumbs { margin-bottom: 22px; font-size: .86rem; }
  .phead__lead { font-size: 1.04rem; }
  .phead__actions .btn { width: 100%; }
  .phead__actions .locshare { max-width: none; }
  .phead .checks { grid-template-columns: 1fr; }

  .sec { padding: 64px 0; }
  .sec--alt + .sec--tight { padding-top: 64px; }
  .sec-head { margin-bottom: 32px; }
  .sec-head p { font-size: 1.02rem; }
  .sec-head--split { display: block; }
  .sec-head--split .btn { margin-top: 20px; }
  .block + .block { margin-top: 56px; }

  /* Adımlar: numara solda, yazı sağda */
  .flow { gap: 0; }
  .flow li { display: grid; grid-template-columns: 52px 1fr; padding: 18px 0; border-top: 1px solid var(--line); }
  .flow li::before { grid-row: span 2; margin: 0; font-size: 1.9rem; }
  .flow strong { margin-bottom: 2px; }

  /* Bağlantılar iki sütun */
  .links { grid-template-columns: 1fr 1fr; gap: 8px; }
  .links a { min-height: 56px; padding: 10px 12px; gap: 8px; font-size: .95rem; line-height: 1.25; }
  .links a .ico { width: 20px; height: 20px; }
  .links a .ico:last-child { display: none; }

  .tiles { grid-template-columns: 1fr; gap: 10px; }
  /* Telefonda kutular kompakt satıra döner: ikon solda, başlık ve metin sağda */
  .tile { display: grid; grid-template-columns: 44px 1fr; gap: 2px 16px; padding: 18px 18px 18px 16px; }
  .tile__ico { width: 44px; height: 44px; margin: 0; grid-row: span 2; }
  .tile__ico .ico { width: 22px; height: 22px; }
  .tile h3 { font-size: 1.08rem; margin: 0; align-self: end; }
  .tile p { margin: 0; font-size: .96rem; line-height: 1.5; }
  .tile__more { display: none; }
  .tile__sub { margin-top: 6px; }
  .items { grid-template-columns: 1fr; }
  .items li { padding: 20px 0; }
  .steps li { grid-template-columns: 52px 1fr; }
  .safety { grid-template-columns: 1fr; }
  .safety li, .safety li + li { border-left: 0; }
  .safety li + li { border-top: 1px solid var(--line); }
  .safety li { padding: 22px 22px; }
  .faq summary { padding: 20px 40px 20px 0; }
  .faq details > div { padding-right: 0; }
  .note { padding: 22px 22px; }

  .closing { padding: 36px 26px 30px 32px; border-radius: 10px; }
  .closing .cta { width: 100%; }
  .closing .cta .btn { flex: 1; }

  .info > div { grid-template-columns: 1fr; padding: 16px 0; }
  .info dt { font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; }
  .map, .map iframe { min-height: 300px; }

  .ftr__grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; padding: 48px 0 32px; }
  .ftr__brand { grid-column: 1 / -1; }
  .callbar { display: flex; }
  .toast { bottom: 96px; }
}

@media print {
  .hdr, .callbar, .closing, .locshare, .hero__road { display: none; }
  body { padding-bottom: 0; }
  .hero, .phead { background: #fff; color: #000; }
  .hero h1, .phead h1 { color: #000; }
}
