/* Akyaka Taksi — tek dosya, framework yok */
:root {
  --yellow: #ffc800;
  --yellow-dark: #e0ae00;
  --ink: #16181d;
  --ink-2: #3b4049;
  --muted: #646b76;
  --line: #e6e3da;
  --bg: #ffffff;
  --bg-soft: #faf7ef;
  --green: #1f9d55;
  --radius: 14px;
  --wrap: 1140px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); font-size: 17px; line-height: 1.65; color: var(--ink-2); background: var(--bg); }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration-color: var(--yellow-dark); text-underline-offset: 3px; }
a:hover { color: #000; }
h1, h2, h3 { color: var(--ink); line-height: 1.2; margin: 0 0 .6em; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.2rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
p { margin: 0 0 1em; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 16px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 8px 14px; z-index: 100; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; }

/* Butonlar */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5em; padding: .8em 1.4em; border-radius: 999px; font-weight: 700; text-decoration: none; border: 2px solid transparent; transition: transform .15s, background .15s; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 1.1em; height: 1.1em; fill: currentColor; }
.btn-call { background: var(--yellow); color: var(--ink); }
.btn-call:hover { background: var(--yellow-dark); color: var(--ink); }
.btn-wa { background: var(--green); color: #fff; }
.btn-wa:hover { background: #17824a; color: #fff; }
.btn-ghost { border-color: currentColor; color: #fff; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-bottom: 1px solid var(--line); }
.header-row { display: flex; align-items: center; gap: 20px; min-height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); margin-right: auto; }
.brand-mark { width: 34px; height: 34px; background: var(--yellow); transform: rotate(45deg); border-radius: 4px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text small { font-size: .78rem; letter-spacing: .28em; font-weight: 500; }
.brand-text strong { font-size: 1.35rem; font-weight: 900; letter-spacing: .02em; }
.main-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.main-nav a { display: block; padding: 8px 12px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: .95rem; color: var(--ink-2); }
.main-nav a:hover, .main-nav a[aria-current="page"] { background: var(--bg-soft); color: var(--ink); box-shadow: inset 0 -3px 0 var(--yellow); }
.nav-toggle { display: none; background: none; border: 0; padding: 10px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }
.header-call { padding: .55em 1.1em; }

@media (max-width: 1020px) {
  .header-call span { display: none; }
  .header-call { padding: .7em; }
  .nav-toggle { display: block; order: 3; }
  .main-nav:not(.main-nav--static) { position: absolute; left: 0; right: 0; top: 100%; background: #fff; border-bottom: 1px solid var(--line); display: none; }
  .main-nav.open { display: block; }
  .main-nav:not(.main-nav--static) ul { flex-direction: column; padding: 8px 16px 16px; }
  .main-nav:not(.main-nav--static) a { padding: 12px; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* Hero */
.hero { position: relative; color: #fff; background: var(--ink); overflow: hidden; }
.hero picture img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.hero .wrap { position: relative; padding-top: clamp(56px, 10vw, 120px); padding-bottom: clamp(56px, 10vw, 120px); }
.hero h1 { color: #fff; max-width: 17ch; }
.hero h1 mark { background: none; color: var(--yellow); }
.hero .lead { font-size: 1.15rem; max-width: 56ch; color: #eceae4; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 26px 0 22px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 8px 22px; list-style: none; padding: 0; margin: 0; font-size: .95rem; color: #e6e3da; }
.hero-facts li::before { content: "✓"; color: var(--yellow); font-weight: 900; margin-right: 6px; }

.page-hero { background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.page-hero .wrap { padding-top: 44px; padding-bottom: 36px; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.page-hero p { max-width: 70ch; font-size: 1.08rem; margin: 0; }
.crumbs { font-size: .88rem; color: var(--muted); margin-bottom: 14px; }
.crumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li + li::before { content: "›"; margin-right: 6px; }
.crumbs a { color: var(--muted); }

/* Bölümler */
.section { padding: clamp(48px, 7vw, 84px) 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 720px; margin-bottom: 32px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.eyebrow { display: inline-block; font-size: .8rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); background: var(--yellow); padding: 3px 10px; border-radius: 4px; margin-bottom: 12px; }

.answer { background: #fff; border-left: 5px solid var(--yellow); padding: 18px 22px; border-radius: 0 var(--radius) var(--radius) 0; box-shadow: 0 1px 0 var(--line); margin-bottom: 28px; max-width: 820px; }
.answer p:last-child { margin: 0; }

.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.card h2, .card h3 { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; }
.card p { margin: 0; color: var(--ink-2); }
.card .ico { flex: none; width: 40px; height: 40px; border-radius: 10px; background: var(--yellow); display: grid; place-items: center; }
.card .ico svg { width: 22px; height: 22px; fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card-link { display: inline-block; margin-top: 12px; font-weight: 700; }

.split { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); gap: 40px; align-items: center; }
.split > *, .grid > * { min-width: 0; }
.split img { border-radius: var(--radius); }
@media (max-width: 820px) { .split { grid-template-columns: minmax(0, 1fr); } }

.checklist { list-style: none; padding: 0; margin: 0 0 1em; }
.checklist li { padding-left: 30px; position: relative; margin-bottom: 10px; }
.checklist li::before { content: ""; position: absolute; left: 0; top: .45em; width: 16px; height: 16px; border-radius: 50%; background: var(--yellow); box-shadow: inset 0 0 0 4px #fff, 0 0 0 1px var(--yellow-dark); }

/* Tablo */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table { width: 100%; border-collapse: collapse; font-size: .98rem; }
caption { text-align: left; padding: 16px 18px 0; font-weight: 700; color: var(--ink); }
th, td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--line); }
th { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); background: var(--bg-soft); }
tbody th { background: none; text-transform: none; letter-spacing: 0; font-size: inherit; color: var(--ink); font-weight: 600; }
tbody tr:last-child td, tbody tr:last-child th { border-bottom: 0; }
td.num { font-variant-numeric: tabular-nums; white-space: nowrap; }
td a { font-weight: 700; white-space: nowrap; }
.note { font-size: .9rem; color: var(--muted); margin-top: 12px; }

/* SSS */
.faq { max-width: 860px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 18px 40px 18px 0; font-weight: 700; color: var(--ink); position: relative; font-size: 1.05rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 6px; top: 12px; font-size: 1.6rem; font-weight: 400; }
.faq details[open] summary::after { content: "–"; }
.faq details > div { padding: 0 0 18px; }

/* CTA bandı */
.cta-band { background: var(--yellow); color: var(--ink); }
.cta-band .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; padding-top: 36px; padding-bottom: 36px; }
.cta-band h2 { margin: 0; font-size: clamp(1.35rem, 3vw, 1.9rem); }
.cta-band p { margin: 4px 0 0; }
.cta-band .btn-call { background: var(--ink); color: #fff; }
.cta-band .btn-call:hover { background: #000; color: #fff; }

/* İletişim */
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-list strong { display: block; color: var(--ink); min-width: 130px; }
.map { border: 0; width: 100%; height: 420px; border-radius: var(--radius); background: var(--bg-soft); }

/* Footer */
.site-footer { background: var(--ink); color: #c9ccd2; font-size: .95rem; padding-top: 48px; }
.site-footer a { color: #fff; text-decoration-color: var(--yellow); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; }
.footer-title { color: var(--yellow); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; }
address { font-style: normal; margin-bottom: 1em; }
.plain { list-style: none; padding: 0; margin: 0; }
.plain li { margin-bottom: 6px; }
.copyright { border-top: 1px solid #2c3038; margin-top: 32px; padding-top: 18px; padding-bottom: 18px; font-size: .85rem; }
.copyright p { margin: 0; }

/* Mobil sabit CTA */
.mobile-cta { display: none; }
@media (max-width: 720px) {
  body { padding-bottom: 76px; }
  .mobile-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 20px rgba(0,0,0,.06); }
  .mobile-cta .btn { padding: .85em 1em; }
  .contact-list li { flex-direction: column; gap: 2px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
.steps { max-width: 720px; }
@media (max-width: 600px) {
  th, td { padding: 11px 10px; }
  td a { white-space: normal; }
  caption { padding: 14px 10px 0; }
}
