/* Akın Taxi — akintaxi.com */
:root {
  --yellow: #FFC72C;
  --amber: #F5A800;
  --ink: #141414;
  --ink2: #2b2b2b;
  --gray: #5b5b57;
  --line: #e8e4da;
  --bg: #faf8f3;
  --card: #ffffff;
  --wa: #1fab55;
  --wa-dark: #178a44;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* damalı taksi şeridi */
.checker {
  height: 12px;
  background:
    repeating-linear-gradient(90deg, var(--ink) 0 12px, var(--yellow) 12px 24px) top/24px 6px repeat-x,
    repeating-linear-gradient(90deg, var(--yellow) 0 12px, var(--ink) 12px 24px) bottom/24px 6px repeat-x;
}

header.site {
  position: sticky; top: 0; z-index: 50;
  background: #fff; border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1080px; margin: 0 auto; padding: 10px 20px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.logo { font-weight: 800; font-size: 1.15rem; letter-spacing: .5px; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.logo .cab { background: var(--yellow); border-radius: 6px; padding: 2px 7px; }
.nav nav { display: flex; gap: 4px 14px; flex-wrap: wrap; font-size: .92rem; margin-left: auto; }
.nav nav a { text-decoration: none; color: var(--ink2); padding: 4px 2px; }
.nav nav a:hover { color: #000; text-decoration: underline; text-underline-offset: 4px; text-decoration-color: var(--amber); }
.nav nav a.lang { color: var(--gray); border: 1px solid var(--line); border-radius: 6px; padding: 2px 8px; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

.hero { padding: 52px 0 40px; }
.hero .kicker { color: var(--amber); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .8rem; }
h1 { font-size: clamp(1.7rem, 4.2vw, 2.7rem); line-height: 1.15; margin: 10px 0 14px; letter-spacing: -.5px; }
.hero p.lead { font-size: 1.08rem; color: var(--ink2); max-width: 640px; }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin: 22px 0 6px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 22px; border-radius: 12px; font-weight: 700; font-size: 1rem;
  text-decoration: none; border: 2px solid transparent; transition: transform .06s ease;
}
.btn:active { transform: scale(.98); }
.btn.wa { background: var(--wa); color: #fff; }
.btn.wa:hover { background: var(--wa-dark); }
.btn.call { background: #fff; color: var(--ink); border-color: var(--ink); }
.btn.call:hover { background: var(--ink); color: #fff; }
.btn svg { width: 20px; height: 20px; flex: none; }

.chips { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.chip {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 5px 13px; font-size: .85rem; color: var(--ink2); font-weight: 600;
}
.chip b { color: var(--amber); }

section { padding: 34px 0; }
h2 { font-size: clamp(1.3rem, 3vw, 1.7rem); margin-bottom: 8px; letter-spacing: -.3px; }
.sub { color: var(--gray); margin-bottom: 22px; max-width: 640px; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  padding: 20px; text-decoration: none; display: flex; flex-direction: column; gap: 6px;
}
a.card:hover { border-color: var(--amber); box-shadow: 0 4px 18px rgba(0,0,0,.06); }
.card .price { font-size: 1.5rem; font-weight: 800; }
.card .price small { font-size: .85rem; color: var(--gray); font-weight: 600; }
.card h3 { font-size: 1.02rem; }
.card p { font-size: .9rem; color: var(--gray); }
.card .go { margin-top: auto; padding-top: 8px; font-weight: 700; font-size: .88rem; color: var(--amber); }

table.prices { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
table.prices th, table.prices td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--line); font-size: .95rem; }
table.prices th { background: var(--yellow); font-size: .85rem; letter-spacing: .05em; text-transform: uppercase; }
table.prices tr:last-child td { border-bottom: 0; }
table.prices td.p { font-weight: 800; white-space: nowrap; text-align: right; }
.tablewrap { overflow-x: auto; border-radius: 14px; }

.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 12px; margin: 20px 0; }
.fact { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 14px; text-align: center; }
.fact b { display: block; font-size: 1.25rem; }
.fact span { font-size: .82rem; color: var(--gray); }

details.faq { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 0 18px; margin-bottom: 10px; }
details.faq summary { cursor: pointer; font-weight: 700; padding: 14px 0; list-style: none; position: relative; padding-right: 28px; }
details.faq summary::after { content: "+"; position: absolute; right: 2px; top: 12px; font-size: 1.2rem; color: var(--amber); }
details.faq[open] summary::after { content: "–"; }
details.faq div { padding: 0 0 16px; color: var(--ink2); font-size: .95rem; }

.band { background: var(--yellow); border-radius: 16px; padding: 26px 24px; margin: 10px 0; }
.band h2 { margin-bottom: 4px; }
.band p { color: var(--ink2); }
.band .btn.call { border-color: var(--ink); }

.steps { counter-reset: s; display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.step::before { counter-increment: s; content: counter(s); display: inline-flex; width: 26px; height: 26px; border-radius: 50%; background: var(--ink); color: var(--yellow); font-weight: 800; align-items: center; justify-content: center; margin-bottom: 8px; font-size: .9rem; }
.step b { display: block; margin-bottom: 3px; }
.step p { font-size: .88rem; color: var(--gray); }

.note { background: #fff; border-left: 4px solid var(--amber); border-radius: 8px; padding: 14px 16px; font-size: .92rem; color: var(--ink2); margin: 16px 0; }

footer.site { background: var(--ink); color: #d9d5cc; margin-top: 40px; padding: 36px 0 90px; font-size: .92rem; }
footer.site .cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
footer.site h4 { color: var(--yellow); margin-bottom: 8px; font-size: .95rem; }
footer.site a { color: #efece5; }
footer.site .fine { margin-top: 26px; color: #98948b; font-size: .82rem; }

/* mobil sabit whatsapp çubuğu */
.wa-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; gap: 1px; box-shadow: 0 -4px 16px rgba(0,0,0,.15);
}
.wa-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 8px; font-weight: 800; text-decoration: none; font-size: .98rem;
}
.wa-bar .w { background: var(--wa); color: #fff; }
.wa-bar .c { background: var(--ink); color: var(--yellow); }
.wa-bar svg { width: 20px; height: 20px; }
@media (min-width: 821px) { .wa-bar { display: none; } footer.site { padding-bottom: 36px; } }

.breadcrumbs { font-size: .84rem; color: var(--gray); padding-top: 18px; }
.breadcrumbs a { color: var(--gray); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs li + li::before { content: "›"; margin-right: 6px; }
