/* ══════════════════════════════════════════════════════
   taksiciler.com — Kurumsal Tasarım Sistemi
   Temiz / premium / app-odaklı (Uber × Turkcell çizgisi)
   Fontlar: Sora (başlık) + Inter (metin)
══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }

:root {
  --ink:#0f0f12;
  --ink2:#15151a;
  --ink3:#22222a;
  --yellow:#ffcd00;
  --yellow-deep:#e8b800;
  --yellow-soft:#fff4c2;
  --text:#16161b;
  --text2:#5c5c68;
  --muted:#8d8d99;
  --line:#ececf0;
  --line2:#e0e0e6;
  --bg:#ffffff;
  --bg2:#f7f3e6;
  --bg3:#fbf8ef;
  --shadow-sm:0 1px 2px rgba(15,15,18,.06), 0 2px 8px rgba(15,15,18,.04);
  --shadow:0 8px 30px rgba(15,15,18,.08);
  --shadow-lg:0 24px 60px rgba(15,15,18,.16);
  --r:14px;
  --r-lg:22px;
}

body { font-family:'Inter',sans-serif; color:var(--text); background:var(--bg); line-height:1.6; font-size:15px; -webkit-font-smoothing:antialiased; overflow-x:clip; }
.container { max-width:1200px; margin:0 auto; padding:0 24px; }
h1,h2,h3,h4 { font-family:'Sora','Inter',sans-serif; letter-spacing:-.02em; }

/* ── HEADER ── */
.header { background:var(--yellow); position:sticky; top:0; z-index:1000; border-bottom:1px solid rgba(0,0,0,.1); box-shadow:0 1px 0 rgba(255,255,255,.25) inset; }
.header-content { display:flex; align-items:center; justify-content:space-between; height:74px; }
.logo a { display:flex; align-items:center; gap:11px; text-decoration:none; }
.logo-badge { width:40px; height:40px; background:var(--ink); border-radius:11px; display:grid; place-items:center; color:var(--yellow); flex-shrink:0; }
.logo-badge svg { width:23px; height:23px; }
.logo-word { display:flex; flex-direction:column; line-height:1.04; }
.logo-word .lw-main { font-family:'Sora',sans-serif; font-size:19px; font-weight:800; color:var(--ink); letter-spacing:-.03em; }
.logo-word .lw-main .dot { color:rgba(0,0,0,.45); font-weight:700; }
.logo-word .lw-slogan { font-size:9.5px; font-weight:600; letter-spacing:.06em; text-transform:uppercase; color:rgba(0,0,0,.72); margin-top:3px; }
.nav { display:flex; align-items:center; gap:4px; }
.nav a { color:rgba(0,0,0,.68); text-decoration:none; font-size:14.5px; font-weight:600; padding:9px 14px; border-radius:9px; transition:all .15s; }
.nav a:hover { color:var(--ink); background:rgba(0,0,0,.09); }
.nav .nav-cta { background:var(--ink)!important; color:var(--yellow)!important; font-weight:600!important; margin-left:10px; padding:11px 20px!important; border-radius:11px!important; }
.nav .nav-cta:hover { background:#000!important; }
.hamburger { display:none; background:none; border:none; cursor:pointer; padding:6px; color:var(--ink); }
.hamburger svg { display:block; width:26px; height:26px; }
.mobile-nav { position:fixed; top:75px; left:0; right:0; z-index:999; display:none; background:var(--yellow); border-bottom:1px solid rgba(0,0,0,.12); padding:12px 24px 18px; flex-direction:column; gap:2px; box-shadow:0 12px 30px rgba(0,0,0,.15); }
.mobile-nav.open { display:flex; }
.mobile-nav a { color:var(--ink); text-decoration:none; font-size:16px; font-weight:600; padding:13px 14px; border-radius:10px; }
.mobile-nav a:hover { background:rgba(0,0,0,.08); }
.mobile-nav .nav-cta { background:var(--ink); color:var(--yellow); text-align:center; margin-top:8px; }

/* ── HERO ── */
.hero { position:relative; background:linear-gradient(180deg,#fffdf6 0%, #faf5e7 100%); overflow:visible; }
.hero-grid { display:grid; grid-template-columns:1.5fr .75fr; gap:48px; align-items:center; padding:72px 0 80px; }
.hero-eyebrow { display:inline-flex; align-items:center; gap:9px; background:var(--bg2); border:1px solid var(--line2); padding:7px 15px; border-radius:50px; font-size:12.5px; font-weight:600; color:var(--text2); margin-bottom:24px; }
.hero-eyebrow .dot { width:7px; height:7px; border-radius:50%; background:#21c065; box-shadow:0 0 0 3px rgba(33,192,101,.18); }
.hero h1 { font-size:clamp(38px,5vw,60px); font-weight:800; line-height:1.06; color:var(--ink); margin-bottom:22px; }
.hero h1 .acc { position:relative; white-space:nowrap; }
.hero h1 .acc::after { content:''; position:absolute; left:-2px; right:-2px; bottom:.08em; height:.34em; background:var(--yellow); border-radius:4px; z-index:-1; }
.hero p.lead { font-size:18px; color:var(--text2); line-height:1.6; max-width:520px; margin-bottom:34px; }

/* Bulucu */
.finder { background:#fff; border:1px solid var(--line2); border-radius:var(--r-lg); padding:10px; box-shadow:var(--shadow); max-width:640px; text-align:left; }
.finder-row { display:grid; grid-template-columns:1fr 1fr auto; gap:8px; }
/* Özel açılır seçici */
.fselect { position:relative; background:var(--bg2); border:1.5px solid transparent; border-radius:14px; transition:border-color .15s, background .15s; }
.fselect:hover { border-color:var(--line2); }
.fselect.open { background:#fff; border-color:var(--yellow); box-shadow:0 0 0 3px rgba(255,205,0,.22); z-index:200; }
.fselect.disabled { opacity:1; background:#fafafa; }
.fs-label { display:block; font-size:10.5px; font-weight:700; letter-spacing:.6px; text-transform:uppercase; color:var(--text2); padding:11px 14px 0; pointer-events:none; }
.fs-btn { position:relative; width:100%; border:none; background:transparent; padding:2px 36px 12px 14px; font-family:'Inter',sans-serif; font-size:15.5px; font-weight:600; color:var(--ink); cursor:pointer; text-align:left; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.fs-btn:disabled { cursor:not-allowed; }
.fs-val.ph { color:#6b6b76; font-weight:500; }
.fs-chev { position:absolute; right:15px; top:46%; width:8px; height:8px; border-right:2px solid var(--text2); border-bottom:2px solid var(--text2); transform:translateY(-60%) rotate(45deg); transition:transform .2s; pointer-events:none; }
.fselect.open .fs-chev { transform:translateY(-20%) rotate(-135deg); }
.fmenu { position:absolute; top:calc(100% + 8px); left:0; right:0; min-width:230px; background:#fff; border:1px solid var(--line2); border-radius:16px; box-shadow:var(--shadow-lg); padding:8px; z-index:200; display:none; }
.fselect.open .fmenu { display:block; animation:fmenuIn .15s ease; }
@keyframes fmenuIn { from{opacity:0; transform:translateY(-6px)} to{opacity:1; transform:translateY(0)} }
.fmenu-search { position:relative; margin-bottom:6px; }
.fmenu-search svg { position:absolute; left:13px; top:50%; transform:translateY(-50%); width:15px; height:15px; color:var(--muted); pointer-events:none; }
.fmenu-search input { width:100%; border:1.5px solid var(--line2); border-radius:11px; padding:10px 12px 10px 36px; font-family:'Inter',sans-serif; font-size:14px; font-weight:500; color:var(--ink); }
.fmenu-search input:focus { outline:none; border-color:var(--yellow); box-shadow:0 0 0 3px rgba(255,205,0,.18); }
.fmenu-list { list-style:none; max-height:248px; overflow-y:auto; margin:0; padding:0; }
.fmenu-list::-webkit-scrollbar { width:9px; }
.fmenu-list::-webkit-scrollbar-thumb { background:var(--line2); border-radius:8px; border:2px solid #fff; }
.fopt { display:flex; align-items:center; padding:10px 12px 10px 40px; border-radius:11px; font-size:14.5px; font-weight:500; color:var(--text); cursor:pointer; transition:background-color .12s, color .12s; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b3b3bd' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:13px center; background-size:16px 16px; }
.fopt:hover, .fopt.hl { background-color:var(--bg2); color:var(--ink); }
.fopt[aria-selected="true"] { background-color:var(--yellow-soft); color:var(--ink); font-weight:600; }
.fopt[aria-selected="true"]::after { content:''; margin-left:auto; width:16px; height:16px; background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f0f12' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center / contain; }
.fmenu-empty { padding:16px 12px; font-size:13.5px; color:var(--muted); text-align:center; }
.finder-btn { background:linear-gradient(180deg,#f8bd06 0%,#e29c00 100%); color:#fff; border:none; border-radius:14px; padding:0 24px; font-family:'Sora',sans-serif; font-size:15px; font-weight:700; cursor:pointer; display:flex; align-items:center; gap:9px; transition:all .2s; text-shadow:0 1px 2px rgba(105,62,0,.35); box-shadow:0 6px 16px rgba(226,156,0,.45); }
.finder-btn:hover { background:linear-gradient(180deg,#f2b400 0%,#d59200 100%); transform:translateY(-1px); box-shadow:0 8px 20px rgba(226,156,0,.55); }
.finder-btn svg { width:18px; height:18px; }
.hero-trust { display:flex; align-items:center; gap:18px; margin-top:24px; flex-wrap:wrap; }
.hero-trust .ht { display:flex; align-items:baseline; gap:7px; }
.hero-trust .ht b { font-family:'Sora',sans-serif; font-size:18px; font-weight:700; color:var(--ink); }
.hero-trust .ht span { font-size:13px; color:var(--muted); font-weight:500; }
.hero-trust .sep { width:1px; height:20px; background:var(--line2); }

/* Telefon maketi */
.hero-visual { position:relative; display:flex; justify-content:center; }
.hero-visual::before { content:''; position:absolute; width:300px; height:300px; background:radial-gradient(circle,var(--yellow) 0%, rgba(255,205,0,.12) 55%, transparent 70%); top:50%; left:50%; transform:translate(-50%,-50%); opacity:.5; z-index:0; }
.phone { position:relative; z-index:1; width:232px; background:#0f0f12; border-radius:38px; padding:10px; box-shadow:var(--shadow-lg); }
.phone-notch { position:absolute; top:11px; left:50%; transform:translateX(-50%); width:120px; height:26px; background:#0f0f12; border-radius:0 0 16px 16px; z-index:3; }
.phone-screen { position:relative; border-radius:32px; overflow:hidden; background:#fff; aspect-ratio:9/19.2; display:flex; flex-direction:column; }
.ps-top { padding:30px 18px 14px; display:flex; align-items:center; gap:10px; background:#fff; }
.ps-top .ps-loc { flex:1; }
.ps-top .ps-loc small { display:block; font-size:9px; font-weight:700; letter-spacing:.5px; text-transform:uppercase; color:var(--muted); }
.ps-top .ps-loc strong { font-family:'Sora',sans-serif; font-size:13.5px; color:var(--ink); font-weight:700; }
.ps-top .ps-av { width:30px; height:30px; border-radius:50%; background:var(--yellow); display:grid; place-items:center; color:var(--ink); }
.ps-map { flex:1; position:relative; background:
   linear-gradient(0deg, rgba(0,0,0,.04), rgba(0,0,0,.04)),
   repeating-linear-gradient(58deg,#eef0f3 0 26px, #e7eaee 26px 28px),
   repeating-linear-gradient(-32deg,transparent 0 40px,rgba(0,0,0,.03) 40px 42px);
   background-color:#eef0f3; }
.ps-map .road { position:absolute; background:#fff; box-shadow:0 0 0 1px rgba(0,0,0,.04); }
.ps-map .road.r1 { top:0; bottom:0; left:36%; width:14px; transform:rotate(8deg); }
.ps-map .road.r2 { left:0; right:0; top:44%; height:13px; transform:rotate(-4deg); }
.ps-pin { position:absolute; top:38%; left:52%; transform:translate(-50%,-100%); z-index:2; }
.ps-pin svg { width:34px; height:34px; filter:drop-shadow(0 6px 8px rgba(0,0,0,.25)); }
.ps-pin.alt { top:60%; left:24%; opacity:.55; }
.ps-pin.alt svg { width:24px; height:24px; }
.ps-card { background:#fff; border-top:1px solid var(--line); padding:15px 16px 18px; }
.ps-card .pc-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:4px; }
.ps-card .pc-name { font-family:'Sora',sans-serif; font-size:14.5px; font-weight:700; color:var(--ink); }
.ps-card .pc-badge { font-size:9px; font-weight:700; color:#0a7c38; background:#e6f7ee; padding:3px 8px; border-radius:20px; }
.ps-card .pc-meta { font-size:11px; color:var(--muted); margin-bottom:12px; }
.ps-card .pc-btn { background:linear-gradient(180deg,#f8bd06 0%,#e29c00 100%); color:#fff; border-radius:12px; padding:11px; text-align:center; font-family:'Sora',sans-serif; font-size:13px; font-weight:700; display:flex; align-items:center; justify-content:center; gap:7px; text-shadow:0 1px 2px rgba(105,62,0,.35); }
.ps-card .pc-btn svg { width:15px; height:15px; }

/* ── TRUST STRIP ── */
.trust { border-top:2px solid var(--yellow); border-bottom:1px solid var(--line); background:var(--bg3); }
.trust-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.trust-cell { padding:30px 22px; text-align:center; border-right:1px solid var(--line); }
.trust-cell:last-child { border-right:none; }
.trust-n { font-family:'Sora',sans-serif; font-size:34px; font-weight:800; color:var(--ink); line-height:1; }
.trust-n .pct { color:var(--yellow-deep); }
.trust-l { font-size:13.5px; color:var(--text2); margin-top:8px; font-weight:500; }

/* ── SECTION ── */
.section { padding:88px 0; }
.section.gray { background:var(--bg2); }
.section.dark { background:var(--ink); color:#fff; }
.sec-head { margin-bottom:46px; max-width:680px; }
.sec-head.center { margin-left:auto; margin-right:auto; text-align:center; }
.sec-kicker { font-family:'Sora',sans-serif; font-size:12.5px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:#8a5e00; margin-bottom:14px; }
.section.dark .sec-kicker { color:var(--yellow); }
.sec-head h2 { font-size:clamp(28px,3.5vw,42px); font-weight:800; line-height:1.1; color:var(--ink); }
.section.dark .sec-head h2 { color:#fff; }
.sec-head p { font-size:17px; color:var(--text2); margin-top:14px; }
.section.dark .sec-head p { color:rgba(255,255,255,.62); }
.sec-head.row { display:flex; align-items:flex-end; justify-content:space-between; gap:20px; max-width:none; flex-wrap:wrap; }
.link-all { font-family:'Sora',sans-serif; font-size:14px; font-weight:600; color:var(--ink); text-decoration:none; display:inline-flex; align-items:center; gap:8px; padding:11px 20px; border:1.5px solid var(--line2); border-radius:50px; transition:all .2s; white-space:nowrap; }
.link-all:hover { border-color:var(--ink); background:var(--ink); color:#fff; }

/* ── ÖNE ÇIKAN İLLER ── */
.feat-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.feat-card { position:relative; background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:24px; text-decoration:none; transition:all .25s; overflow:hidden; }
.feat-card::after { content:''; position:absolute; inset:0; border-radius:inherit; border:1.5px solid transparent; transition:border-color .25s; pointer-events:none; }
.feat-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:34px; }
.feat-pin { width:42px; height:42px; background:var(--bg2); color:var(--ink); border-radius:12px; display:grid; place-items:center; transition:all .25s; }
.feat-pin svg { width:21px; height:21px; }
.feat-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); border-color:transparent; }
.feat-card:hover::after { border-color:var(--yellow); }
.feat-card:hover .feat-pin { background:var(--yellow); }
.feat-plaka { font-family:'Sora',sans-serif; font-size:15px; font-weight:700; color:var(--text2); font-variant-numeric:tabular-nums; }
.feat-name { font-family:'Sora',sans-serif; font-size:22px; font-weight:700; color:var(--ink); margin-bottom:5px; }
.feat-meta { font-size:13.5px; color:var(--text2); font-weight:500; }
.feat-meta b { color:var(--ink); font-weight:700; }

/* ── NASIL ÇALIŞIR ── */
.steps { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.step { background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); padding:32px 28px; transition:all .2s; }
.step:hover { box-shadow:var(--shadow); }
.step-n { font-family:'Sora',sans-serif; font-size:13px; font-weight:700; color:#8a5e00; margin-bottom:16px; }
.step-ic { width:52px; height:52px; background:var(--ink); color:var(--yellow); border-radius:14px; display:grid; place-items:center; margin-bottom:18px; }
.step-ic svg { width:25px; height:25px; }
.step h3 { font-size:19px; font-weight:700; color:var(--ink); margin-bottom:8px; }
.step p { font-size:14.5px; color:var(--text2); line-height:1.65; }

/* ── PLAKA SIRALI İL LİSTESİ ── */
.plaka-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.plaka-card { display:flex; align-items:center; gap:13px; background:#fff; border:1px solid var(--line2); border-radius:14px; padding:11px 14px 11px 11px; text-decoration:none; transition:all .2s; }
.plaka-card:hover { border-color:var(--ink); transform:translateY(-3px); box-shadow:var(--shadow-sm); }
.plaka-badge { font-family:'Sora',sans-serif; font-size:15px; font-weight:800; color:var(--ink); background:var(--bg2); border-radius:10px; width:46px; height:46px; display:grid; place-items:center; flex-shrink:0; font-variant-numeric:tabular-nums; letter-spacing:-.02em; transition:all .2s; }
.plaka-card:hover .plaka-badge { background:var(--yellow); }
.plaka-info { display:flex; flex-direction:column; min-width:0; }
.plaka-name { font-size:14.5px; font-weight:600; color:var(--ink); line-height:1.2; }
.plaka-sub { font-size:11.5px; color:var(--text2); margin-top:3px; }
.plaka-sub b { color:var(--text2); font-weight:700; }

/* ── UYGULAMA CTA (dark) ── */
.appcta { position:relative; background:var(--ink); color:#fff; overflow:hidden; }
.appcta::before { content:''; position:absolute; width:520px; height:520px; right:-120px; top:-160px; background:radial-gradient(circle,rgba(255,205,0,.16),transparent 65%); pointer-events:none; }
.appcta-grid { display:grid; grid-template-columns:1fr .8fr; gap:48px; align-items:center; padding:80px 0; position:relative; z-index:1; }
.appcta .badge-soon { display:inline-flex; align-items:center; gap:8px; background:rgba(255,205,0,.14); border:1px solid rgba(255,205,0,.3); color:var(--yellow); font-family:'Sora',sans-serif; font-size:12px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; padding:7px 14px; border-radius:50px; margin-bottom:22px; }
.appcta h2 { font-size:clamp(28px,3.5vw,42px); font-weight:800; line-height:1.1; margin-bottom:18px; }
.appcta h2 .y { color:var(--yellow); }
.appcta p { font-size:17px; color:rgba(255,255,255,.66); line-height:1.65; margin-bottom:24px; max-width:480px; }
.app-feats { list-style:none; margin:0 0 30px; display:grid; gap:12px; }
.app-feats li { display:flex; align-items:center; gap:12px; font-size:15px; color:rgba(255,255,255,.86); }
.app-feats li svg { width:20px; height:20px; color:var(--yellow); flex-shrink:0; }
.store-row { display:flex; gap:14px; flex-wrap:wrap; }
.store-btn { display:flex; align-items:center; gap:11px; background:#fff; color:var(--ink); border-radius:14px; padding:11px 18px; text-decoration:none; transition:transform .2s; position:relative; }
.store-btn:hover { transform:translateY(-2px); }
.store-btn svg { width:24px; height:24px; }
.store-btn .st { display:flex; flex-direction:column; line-height:1.15; }
.store-btn .st small { font-size:10px; color:var(--text2); font-weight:500; }
.store-btn .st strong { font-family:'Sora',sans-serif; font-size:15px; font-weight:700; }
.store-btn .soon-tag { position:absolute; top:-9px; right:-6px; background:var(--yellow); color:var(--ink); font-size:8.5px; font-weight:800; letter-spacing:.5px; padding:2px 7px; border-radius:20px; }
.appcta-visual { display:flex; justify-content:center; }
.appcta-visual .phone { width:262px; }

/* ── REHBER MAKALE ── */
.guide { max-width:760px; margin:0 auto; }
.guide h2 { font-size:clamp(27px,3.5vw,38px); font-weight:800; line-height:1.14; color:var(--ink); margin-bottom:22px; }
.guide h3 { font-size:21px; font-weight:700; color:var(--ink); margin:34px 0 10px; }
.guide p { font-size:16.5px; color:var(--text2); line-height:1.85; margin-bottom:16px; }
.guide a { color:var(--ink); font-weight:600; text-decoration:underline; text-underline-offset:3px; text-decoration-color:var(--yellow-deep); }
.guide-more { display:none; }
.guide-more.open { display:block; animation:fmenuIn .25s ease; }
.guide-toggle { margin-top:22px; display:inline-flex; align-items:center; gap:9px; background:none; border:1.5px solid var(--line2); border-radius:50px; padding:12px 22px; font-family:'Sora',sans-serif; font-size:14.5px; font-weight:600; color:var(--ink); cursor:pointer; transition:all .2s; }
.guide-toggle:hover { border-color:var(--ink); background:var(--ink); color:#fff; }
.guide-toggle svg { width:17px; height:17px; transition:transform .25s; }
.guide-toggle.open svg { transform:rotate(180deg); }

/* ── FAQ ── */
.faq { max-width:820px; margin:0 auto; }
.faq-item { background:#fff; border:1px solid var(--line2); border-radius:var(--r); margin-bottom:12px; overflow:hidden; transition:border-color .2s; }
.faq-item[open] { border-color:var(--ink); }
.faq-item summary { list-style:none; cursor:pointer; padding:22px 24px; display:flex; align-items:center; justify-content:space-between; gap:16px; font-family:'Sora',sans-serif; font-size:16.5px; font-weight:700; color:var(--ink); }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary .pm { flex-shrink:0; width:26px; height:26px; border-radius:8px; background:var(--bg2); display:grid; place-items:center; transition:all .2s; position:relative; }
.faq-item summary .pm::before, .faq-item summary .pm::after { content:''; position:absolute; background:var(--ink); border-radius:2px; }
.faq-item summary .pm::before { width:12px; height:2.5px; }
.faq-item summary .pm::after { width:2.5px; height:12px; transition:transform .2s; }
.faq-item[open] summary .pm { background:var(--yellow); }
.faq-item[open] summary .pm::after { transform:scaleY(0); }
.faq-item .faq-a { padding:0 24px 22px; font-size:15px; color:var(--text2); line-height:1.75; }

/* ── FOOTER ── */
.footer { background:var(--yellow); color:rgba(0,0,0,.66); padding:64px 0 30px; }
.footer-grid { display:grid; grid-template-columns:2.2fr 1fr 1fr 1fr; gap:44px; margin-bottom:46px; }
.footer-brand .logo a { color:var(--ink); }
.footer-brand .logo-badge { background:var(--ink); color:var(--yellow); }
.footer-brand .logo-word { color:var(--ink); }
.footer-brand .logo-word .dot { color:rgba(0,0,0,.5); }
.footer-brand p { font-size:14px; color:rgba(0,0,0,.6); line-height:1.7; max-width:280px; margin-top:18px; }
.footer-col h3 { font-family:'Sora',sans-serif; font-size:13px; font-weight:700; color:var(--ink); margin-bottom:18px; }
.footer-col ul { list-style:none; }
.footer-col li { margin-bottom:12px; }
.footer-col a { color:rgba(0,0,0,.62); font-size:14px; text-decoration:none; transition:color .15s; }
.footer-col a:hover { color:var(--ink); }
.footer-bottom { border-top:1px solid rgba(0,0,0,.14); padding-top:26px; display:flex; align-items:center; justify-content:space-between; gap:14px; flex-wrap:wrap; }
.footer-bottom p { font-size:13px; color:rgba(0,0,0,.55); margin:0; }
.footer-bottom .disclaimer { width:100%; font-size:11.5px; color:rgba(0,0,0,.45); line-height:1.6; margin-top:6px; }
.footer-bottom .credit a { color:var(--ink); font-weight:600; text-decoration:underline; text-underline-offset:2px; }

/* ── SCROLL TOP ── */
.scroll-top { position:fixed; bottom:28px; right:28px; width:48px; height:48px; background:var(--ink); border:none; border-radius:14px; display:grid; place-items:center; cursor:pointer; opacity:0; visibility:hidden; transform:translateY(10px); transition:all .3s; z-index:9998; box-shadow:var(--shadow); }
.scroll-top.show { opacity:1; visibility:visible; transform:translateY(0); }
.scroll-top:hover { background:#000; }
.scroll-top svg { width:22px; height:22px; color:var(--yellow); }

/* ── RESPONSIVE ── */
@media (max-width:980px) {
  .hero-grid { grid-template-columns:1fr; gap:40px; padding:48px 0 60px; }
  .hero-content { text-align:center; }
  .hero-eyebrow { margin-left:auto; margin-right:auto; }
  .hero h1 { font-size:clamp(32px,7vw,46px); }
  .hero p.lead { margin-left:auto; margin-right:auto; }
  .finder { margin-left:auto; margin-right:auto; }
  .hero-trust { justify-content:center; }
  .hero-visual { order:2; }
  .phone { width:210px; }
  .feat-grid { grid-template-columns:repeat(2,1fr); }
  .appcta-grid { grid-template-columns:1fr; gap:44px; text-align:center; }
  .appcta p { margin-left:auto; margin-right:auto; }
  .app-feats { max-width:340px; margin-left:auto; margin-right:auto; }
  .store-row { justify-content:center; }
  .badge-soon { }
}
@media (max-width:768px) {
  .nav { display:none; }
  .hamburger { display:flex; }
  .finder-row { grid-template-columns:1fr; }
  .finder-btn { padding:15px; justify-content:center; }
  .trust-grid { grid-template-columns:1fr 1fr; }
  .trust-cell:nth-child(2) { border-right:none; }
  .trust-cell:nth-child(1),.trust-cell:nth-child(2) { border-bottom:1px solid var(--line); }
  .steps { grid-template-columns:1fr; gap:16px; }
  .section { padding:60px 0; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:30px; }
  .footer-brand { grid-column:1/-1; }
  .plaka-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:480px) {
  .feat-grid { grid-template-columns:1fr; }
  .trust-grid { grid-template-columns:1fr; }
  .trust-cell { border-right:none!important; border-bottom:1px solid var(--line); }
  .trust-cell:last-child { border-bottom:none; }
  .hero h1 .acc { white-space:normal; }
  .plaka-grid { grid-template-columns:1fr; }
}

/* ══════════════════════════════════════════════
   ALT SAYFALAR (il / ilçe / kurumsal / yasal)
══════════════════════════════════════════════ */
/* Breadcrumb */
.crumb { background:var(--bg3); border-bottom:1px solid var(--line); }
.crumb ol { list-style:none; display:flex; flex-wrap:wrap; align-items:center; gap:8px; padding:13px 0; margin:0; font-size:13px; }
.crumb li { display:flex; align-items:center; gap:8px; }
.crumb a { color:var(--text2); text-decoration:none; font-weight:500; }
.crumb a:hover { color:var(--ink); }
.crumb li[aria-current] span { color:var(--ink); font-weight:600; }
.crumb .sep { color:var(--line2); }

/* Sayfa başlığı */
.page-head { background:linear-gradient(180deg,#fffdf6,#faf5e7); padding:46px 0 42px; }
.page-head h1 { font-size:clamp(27px,4vw,42px); font-weight:800; color:var(--ink); line-height:1.1; letter-spacing:-.02em; }
.page-head .ph-lead { font-size:17px; color:var(--text2); margin-top:14px; max-width:700px; line-height:1.6; }
.page-head .ph-meta { display:flex; flex-wrap:wrap; gap:10px; margin-top:22px; }
.ph-pill { display:inline-flex; align-items:center; gap:7px; background:#fff; border:1px solid var(--line2); border-radius:50px; padding:8px 15px; font-size:13px; font-weight:600; color:var(--ink); }
.ph-pill b { color:var(--yellow-deep); }

/* Reklam alanı (AdSense) */
.ad-label { display:block; text-align:center; font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--muted); margin:8px 0 6px; }
.ad-slot { margin:0 auto 8px; max-width:970px; min-height:100px; display:flex; align-items:center; justify-content:center; background:var(--bg2); border:1px dashed var(--line2); border-radius:14px; overflow:hidden; }
.ad-slot::before { content:'Reklam alanı'; font-size:11px; color:var(--muted); }
.ad-slot ins { display:block; width:100%; }

/* İl sayfası — ilçeye göre durak grubu */
.idg { margin-bottom:30px; }
.idg:last-child { margin-bottom:0; }
.idg-title { display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:14px; padding-bottom:10px; border-bottom:1px solid var(--line); }
.idg-title h3 { font-size:19px; font-weight:700; color:var(--ink); display:flex; align-items:center; gap:9px; }
.idg-title h3 .cnt { font-size:13px; font-weight:600; color:var(--muted); }
.idg-title a { font-size:13px; font-weight:600; color:var(--yellow-deep); text-decoration:none; white-space:nowrap; }
.idg-title a:hover { color:var(--ink); }
@media (max-width:560px){
  .idg-title { flex-direction:column; align-items:flex-start; gap:6px; }
  .idg-title h3 { flex-wrap:wrap; }
}

/* İlçeler menüsü (üst kompakt nav) */
.ilce-menu { background:#fff; border-bottom:1px solid var(--line); position:sticky; top:74px; z-index:90; }
.ilce-menu .container { padding-top:18px; padding-bottom:18px; }
.im-title { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); margin-bottom:12px; }
.im-chips { display:flex; flex-wrap:wrap; gap:8px; }
.im-chip { display:inline-flex; align-items:center; gap:8px; background:var(--bg2); border:1px solid var(--line2); border-radius:50px; padding:8px 15px; font-size:13.5px; font-weight:600; color:var(--ink); text-decoration:none; transition:all .15s; }
.im-chip:hover { background:var(--ink); color:#fff; border-color:var(--ink); transform:translateY(-1px); }
.im-chip .n { font-size:12px; font-weight:700; color:var(--muted); }
.im-chip:hover .n { color:var(--yellow); }
@media (max-width:768px){
  .ilce-menu { top:75px; }
  .im-chips { flex-wrap:nowrap; overflow-x:auto; padding-bottom:4px; -webkit-overflow-scrolling:touch; }
  .im-chip { flex-shrink:0; }
}

/* İki sütun: sol ilçe menüsü + sağ durak listesi */
.list-layout { display:grid; grid-template-columns:264px 1fr; gap:30px; align-items:start; }
.ilce-side { position:sticky; top:96px; }
.ilce-side .is-title { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--muted); margin:0 4px 10px; }
.ilce-side nav { display:flex; flex-direction:column; gap:3px; background:#fff; border:1px solid var(--line); border-radius:16px; padding:8px; max-height:calc(100vh - 130px); overflow-y:auto; }
.ilce-side a { display:flex; align-items:center; justify-content:space-between; gap:10px; padding:11px 14px; border-radius:11px; text-decoration:none; color:var(--ink); font-weight:600; font-size:14px; transition:background .15s,color .15s; }
.ilce-side a:hover { background:var(--bg2); }
.ilce-side a .n { font-size:12px; font-weight:700; color:var(--muted); background:var(--bg2); border-radius:20px; padding:2px 9px; flex-shrink:0; }
.ilce-side a:hover .n { background:var(--yellow); color:var(--ink); }
.list-main { min-width:0; }
@media (max-width:900px){
  .list-layout { grid-template-columns:minmax(0,1fr); gap:14px; }
  .ilce-side { position:static; min-width:0; }
  .ilce-side nav { flex-direction:row; flex-wrap:nowrap; overflow-x:auto; max-height:none; gap:8px; -webkit-overflow-scrolling:touch; }
  .ilce-side a { white-space:nowrap; flex-shrink:0; border:1px solid var(--line2); border-radius:50px; }
}

/* ══════════════════════════════════════════════
   DURAK PROFİLİ — sade / kurumsal (v2)
══════════════════════════════════════════════ */
.durak-head { background:var(--bg3); border-bottom:1px solid var(--line); }
.durak-head .container { padding:34px 24px; display:flex; align-items:flex-start; justify-content:space-between; gap:26px; flex-wrap:wrap; }
.dh-main { display:flex; gap:16px; align-items:center; min-width:0; }
.dh-avatar { width:58px; height:58px; border-radius:15px; background:var(--ink); color:var(--yellow); display:grid; place-items:center; flex-shrink:0; }
.dh-avatar svg { width:30px; height:30px; }
.dh-main h1 { font-size:clamp(22px,3vw,31px); font-weight:800; color:var(--ink); line-height:1.14; letter-spacing:-.02em; }
.dh-meta { display:flex; align-items:center; gap:9px; flex-wrap:wrap; margin-top:9px; font-size:14px; color:var(--text2); font-weight:500; }
.dh-meta .rating { color:var(--ink); font-weight:700; }
.dh-meta .rating small { color:var(--muted); font-weight:500; }
.dh-meta .open { color:#0a6e34; font-weight:700; }
.dh-meta .dot { color:var(--line2); }
.dh-actions { display:flex; gap:9px; flex-wrap:wrap; align-items:center; }
.btn-primary { display:inline-flex; align-items:center; gap:8px; background:linear-gradient(180deg,#f8bd06,#e29c00); color:#fff; text-shadow:0 1px 2px rgba(105,62,0,.35); border:none; border-radius:12px; padding:12px 22px; font-family:'Sora',sans-serif; font-weight:700; font-size:14.5px; text-decoration:none; cursor:pointer; box-shadow:0 4px 12px rgba(226,156,0,.35); }
.btn-primary:hover { filter:brightness(.97); }
.btn-ghost { display:inline-flex; align-items:center; gap:8px; background:#fff; color:var(--ink); border:1.5px solid var(--line2); border-radius:12px; padding:12px 18px; font-family:'Sora',sans-serif; font-weight:600; font-size:14px; text-decoration:none; cursor:pointer; transition:border-color .15s; }
.btn-ghost:hover { border-color:var(--ink); }
.btn-ghost.wa { color:#1aa651; }
.btn-primary svg,.btn-ghost svg { width:16px; height:16px; }

.durak-cols { display:grid; grid-template-columns:1fr 1fr; gap:24px; align-items:start; }
.info-panel { background:#fff; border:1px solid var(--line); border-radius:18px; overflow:hidden; }
.ip-row { display:flex; gap:14px; padding:19px 24px; border-bottom:1px solid var(--line); }
.ip-row:last-child { border-bottom:none; }
.ip-row > svg { width:20px; height:20px; color:var(--yellow-deep); flex-shrink:0; margin-top:2px; }
.ip-k { font-size:11.5px; font-weight:700; text-transform:uppercase; letter-spacing:.05em; color:var(--muted); margin-bottom:4px; }
.ip-v { font-size:15px; color:var(--ink); font-weight:600; line-height:1.5; }
.ip-v a { color:var(--ink); text-decoration:none; }
.ip-v a:hover { color:var(--yellow-deep); }
.ip-chips { display:flex; flex-wrap:wrap; gap:7px; }
.ip-chips span { background:var(--bg2); border:1px solid var(--line2); border-radius:50px; padding:5px 12px; font-size:12.5px; font-weight:600; color:var(--text2); }

@media (max-width:768px){
  .durak-head .container { flex-direction:column; gap:18px; padding:26px 24px; }
  .dh-actions { width:100%; }
  .dh-actions .btn-primary { flex:1 1 100%; justify-content:center; }
  .dh-actions .btn-ghost { flex:1 1 calc(50% - 5px); justify-content:center; }
  .durak-cols { grid-template-columns:1fr; }
}

/* ══════════════════════════════════════════════
   BLOG
══════════════════════════════════════════════ */
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.blog-card { display:flex; flex-direction:column; background:#fff; border:1px solid var(--line); border-radius:18px; overflow:hidden; text-decoration:none; transition:transform .25s, box-shadow .25s, border-color .25s; }
.blog-card:hover { transform:translateY(-5px); box-shadow:var(--shadow); border-color:var(--line2); }
.blog-thumb { height:168px; position:relative; overflow:hidden; background:#f3b600; }
.blog-thumb svg { width:100%; height:100%; display:block; }
.blog-thumb .cat { position:absolute; top:13px; left:13px; background:rgba(15,15,18,.9); color:#fff; font-size:11px; font-weight:700; padding:5px 12px; border-radius:50px; letter-spacing:.02em; z-index:1; }

/* Blog detay kapak banner */
.blog-cover { max-width:1020px; margin:0 auto 30px; height:300px; border-radius:20px; overflow:hidden; border:1px solid var(--line2); }
.blog-cover svg { width:100%; height:100%; display:block; }

/* Okuma ilerleme çubuğu */
.read-progress { position:fixed; top:0; left:0; height:3px; width:0; background:linear-gradient(90deg,#f3b600,#ffce00); z-index:1100; transition:width .1s linear; }
.blog-body { padding:22px; display:flex; flex-direction:column; flex:1; }
.blog-body h3 { font-size:18px; font-weight:700; color:var(--ink); line-height:1.32; margin-bottom:9px; }
.blog-body p { font-size:14px; color:var(--text2); line-height:1.6; margin-bottom:16px; flex:1; }
.blog-meta { display:flex; align-items:center; justify-content:space-between; gap:6px; flex-wrap:wrap; font-size:13px; color:var(--muted); font-weight:500; }
.blog-grid.rel { grid-template-columns:repeat(2,1fr); }
@media (max-width:600px){ .blog-grid.rel { grid-template-columns:1fr; } }
.blog-meta .more { color:var(--ink); font-weight:700; }

/* Blog detay: içindekiler + içerik */
.article-layout { display:grid; grid-template-columns:248px 1fr; gap:42px; align-items:start; max-width:1020px; margin:0 auto; }
.toc { position:sticky; top:96px; background:#fff; border:1px solid var(--line); border-radius:18px; padding:20px; box-shadow:var(--shadow-sm); }
.toc h4 { display:flex; align-items:center; gap:9px; font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--muted); margin-bottom:14px; padding-bottom:14px; border-bottom:1px solid var(--line); }
.toc h4 svg { width:16px; height:16px; color:var(--yellow-deep); }
.toc ol { list-style:none; display:flex; flex-direction:column; gap:2px; padding:0; margin:0; }
.toc a { display:flex; align-items:center; gap:11px; padding:9px 11px; border-radius:11px; text-decoration:none; transition:background .15s; }
.toc a .t-num { width:24px; height:24px; border-radius:8px; background:var(--bg2); display:grid; place-items:center; font-size:12.5px; font-weight:700; color:var(--text2); flex-shrink:0; transition:all .15s; }
.toc a .t-label { font-size:13.5px; font-weight:500; color:var(--text2); line-height:1.35; transition:color .15s; }
.toc a:hover { background:var(--bg2); }
.toc a:hover .t-num { background:var(--line2); }
.toc a:hover .t-label { color:var(--ink); }
.toc a.active { background:var(--yellow-soft); }
.toc a.active .t-num { background:var(--yellow); color:var(--ink); }
.toc a.active .t-label { color:var(--ink); font-weight:700; }
.article-body { min-width:0; }
.article-body > h2 { font-size:25px; font-weight:800; color:var(--ink); margin:34px 0 12px; scroll-margin-top:92px; letter-spacing:-.01em; }
.article-body > h2:first-child { margin-top:0; }
.article-body p { font-size:16.5px; color:var(--text2); line-height:1.85; margin-bottom:16px; }
.article-body ul { margin:6px 0 18px; padding-left:20px; }
.article-body li { font-size:16px; color:var(--text2); line-height:1.8; margin-bottom:8px; }
.article-body a { color:var(--ink); text-decoration:underline; text-underline-offset:3px; text-decoration-color:var(--yellow-deep); font-weight:600; }
.article-meta { display:flex; align-items:center; gap:10px; flex-wrap:wrap; font-size:14px; color:var(--text2); margin-top:14px; }
.article-meta .cat { background:var(--yellow); color:var(--ink); font-weight:700; font-size:12px; padding:5px 12px; border-radius:50px; }
.article-meta .dot { color:var(--line2); }

@media (max-width:900px){ .blog-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:860px){
  .article-layout { grid-template-columns:1fr; gap:18px; }
  .toc { position:static; }
}
@media (max-width:600px){ .blog-grid{ grid-template-columns:1fr; } }

/* İlçe listesi başlık */
.list-head { display:flex; align-items:flex-end; justify-content:space-between; flex-wrap:wrap; gap:14px; margin-bottom:26px; }
.list-head h2 { font-size:clamp(22px,3vw,30px); font-weight:800; color:var(--ink); }
.list-head p { font-size:14px; color:var(--text2); margin-top:6px; }

/* Durak kartı */
.durak-list { display:grid; gap:14px; }
.durak-card { display:grid; grid-template-columns:1fr auto; gap:18px; align-items:center; background:#fff; border:1px solid var(--line); border-radius:16px; padding:20px 22px; transition:box-shadow .2s, border-color .2s; }
.durak-card:hover { box-shadow:var(--shadow); border-color:var(--line2); }
.durak-info h3 { font-size:17.5px; font-weight:700; color:var(--ink); margin-bottom:7px; display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.durak-badge { font-size:11px; font-weight:700; color:#0a7c38; background:#e6f7ee; padding:3px 9px; border-radius:20px; }
.durak-meta { display:flex; flex-wrap:wrap; gap:6px 16px; font-size:13.5px; color:var(--text2); }
.durak-meta span { display:inline-flex; align-items:center; gap:6px; }
.durak-meta svg { width:15px; height:15px; color:var(--muted); flex-shrink:0; }
.durak-actions { display:flex; gap:10px; }
.btn-call { display:inline-flex; align-items:center; gap:8px; background:linear-gradient(180deg,#f8bd06,#e29c00); color:#fff; text-shadow:0 1px 2px rgba(105,62,0,.35); border-radius:12px; padding:12px 18px; font-family:'Sora',sans-serif; font-weight:700; font-size:14px; text-decoration:none; white-space:nowrap; }
.btn-call:hover { filter:brightness(.96); }
.btn-map { display:inline-flex; align-items:center; gap:8px; background:#fff; border:1.5px solid var(--line2); color:var(--ink); border-radius:12px; padding:12px 16px; font-family:'Sora',sans-serif; font-weight:600; font-size:14px; text-decoration:none; white-space:nowrap; }
.btn-map:hover { border-color:var(--ink); }
.btn-call svg,.btn-map svg { width:16px; height:16px; }

/* Yasal/kurumsal metin (guide ile aynı + listeler) */
.guide ul { margin:6px 0 18px; padding-left:20px; }
.guide li { font-size:16px; color:var(--text2); line-height:1.8; margin-bottom:8px; }
.guide h2.lg { font-size:clamp(26px,3.5vw,34px); }
.guide .upd { font-size:13.5px; color:var(--muted); margin-bottom:24px; }

/* İletişim */
.contact-grid { display:grid; grid-template-columns:1.15fr .85fr; gap:40px; align-items:start; }
.cform { display:grid; gap:15px; }
.cform .fld label { font-size:13px; font-weight:600; color:var(--ink); margin-bottom:6px; display:block; }
.cform input,.cform textarea { width:100%; border:1.5px solid var(--line2); border-radius:12px; padding:12px 14px; font-family:'Inter',sans-serif; font-size:15px; color:var(--ink); }
.cform input:focus,.cform textarea:focus { outline:none; border-color:var(--yellow); box-shadow:0 0 0 3px rgba(255,205,0,.18); }
.cform button { background:linear-gradient(180deg,#f8bd06,#e29c00); color:#fff; text-shadow:0 1px 2px rgba(105,62,0,.35); border:none; border-radius:12px; padding:14px; font-family:'Sora',sans-serif; font-weight:700; font-size:15px; cursor:pointer; }
.cinfo { background:var(--bg2); border:1px solid var(--line); border-radius:16px; padding:26px; }
.cinfo h3 { font-size:16px; font-weight:700; margin-bottom:16px; color:var(--ink); }
.cinfo .ci-row { display:flex; gap:12px; margin-bottom:16px; font-size:14px; color:var(--text2); }
.cinfo .ci-row svg { width:18px; height:18px; color:var(--yellow-deep); flex-shrink:0; margin-top:2px; }
.cinfo a { color:var(--ink); font-weight:600; text-decoration:none; }

/* Çerez onayı */
.cookie { position:fixed; left:16px; right:16px; bottom:16px; z-index:9999; max-width:560px; margin:0 auto; background:var(--ink); color:#e6e6ea; border-radius:16px; padding:18px 20px; box-shadow:var(--shadow-lg); display:none; }
.cookie.show { display:block; animation:fmenuIn .25s ease; }
.cookie p { font-size:13.5px; line-height:1.6; color:#c9c9d2; margin:0 0 14px; }
.cookie a { color:var(--yellow); text-decoration:underline; }
.cookie-actions { display:flex; gap:10px; flex-wrap:wrap; }
.cookie button { border:none; border-radius:10px; padding:10px 18px; font-family:'Sora',sans-serif; font-weight:700; font-size:13.5px; cursor:pointer; }
.ck-accept { background:var(--yellow); color:var(--ink); }
.ck-reject { background:rgba(255,255,255,.12); color:#fff; }

@media (max-width:768px){
  .contact-grid { grid-template-columns:1fr; gap:28px; }
  .durak-card { grid-template-columns:1fr; }
  .durak-actions { width:100%; }
  .btn-call { flex:1; justify-content:center; }
}

/* ── DURAK DETAY (firma sayfası) ── */
.durak-info h3 a { color:inherit; text-decoration:none; }
.durak-info h3 a:hover { color:var(--yellow-deep); }
.dd-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; align-items:stretch; }
.dd-card { background:#fff; border:1px solid var(--line); border-radius:18px; padding:26px; }
.dd-phone-label { font-size:12px; font-weight:700; letter-spacing:.5px; text-transform:uppercase; color:var(--muted); }
.dd-phone { font-family:'Sora',sans-serif; font-size:27px; font-weight:800; color:var(--ink); letter-spacing:-.02em; margin:4px 0 16px; }
.dd-call-big { display:flex; align-items:center; justify-content:center; gap:10px; background:linear-gradient(180deg,#f8bd06,#e29c00); color:#fff; text-shadow:0 1px 2px rgba(105,62,0,.35); border-radius:14px; padding:16px; font-family:'Sora',sans-serif; font-weight:700; font-size:16.5px; text-decoration:none; }
.dd-call-big:hover { filter:brightness(.97); }
.dd-call-big svg { width:18px; height:18px; }
.dd-rows { margin-top:22px; display:grid; gap:16px; }
.dd-row { display:flex; gap:12px; font-size:14.5px; color:var(--text2); line-height:1.55; }
.dd-row > svg { width:18px; height:18px; color:var(--yellow-deep); flex-shrink:0; margin-top:2px; }
.dd-row b { color:var(--ink); font-weight:700; display:block; margin-bottom:2px; }
.dd-map { border:1px solid var(--line); border-radius:18px; overflow:hidden; min-height:360px; display:flex; flex-direction:column; background:var(--bg2); }
.dd-map iframe { width:100%; flex:1; min-height:320px; border:0; display:block; }
.dd-map .btn-map { border-radius:0; border:none; border-top:1px solid var(--line); justify-content:center; padding:15px; }
.nearby-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(230px,1fr)); gap:12px; }
.nearby-card { display:block; background:#fff; border:1px solid var(--line2); border-radius:14px; padding:16px 18px; text-decoration:none; transition:all .2s; }
.nearby-card:hover { border-color:var(--ink); transform:translateY(-3px); box-shadow:var(--shadow-sm); }
.nearby-card .nc-name { display:block; font-family:'Sora',sans-serif; font-weight:700; font-size:15px; color:var(--ink); line-height:1.3; }
.nearby-card .nc-meta { display:block; font-size:12.5px; color:var(--muted); margin-top:4px; }
@media (max-width:768px){ .dd-grid{ grid-template-columns:1fr } }

/* ── DURAK PROFİLİ (işletme profili) ── */
.profile-cover { position:relative; background:linear-gradient(140deg,#ffe271 0%,#ffcd00 58%,#f2b400 100%); overflow:hidden; border-bottom:1px solid var(--yellow-deep); }
.profile-cover::after { content:''; position:absolute; left:0; right:0; bottom:0; height:70px; background:repeating-linear-gradient(90deg, rgba(0,0,0,.10) 0 24px, transparent 24px 54px); -webkit-mask-image:linear-gradient(transparent,#000); mask-image:linear-gradient(transparent,#000); pointer-events:none; }
.profile-top { display:flex; align-items:flex-start; gap:22px; padding:40px 0 22px; position:relative; z-index:1; }
.pf-avatar { width:86px; height:86px; border-radius:22px; background:var(--ink); display:grid; place-items:center; color:var(--yellow); flex-shrink:0; box-shadow:0 12px 26px rgba(0,0,0,.2); }
.pf-avatar svg { width:48px; height:48px; }
.pf-head { flex:1; min-width:0; }
.pf-head h1 { font-size:clamp(25px,4vw,40px); font-weight:800; color:var(--ink); line-height:1.08; letter-spacing:-.02em; }
.pf-sub { display:flex; align-items:center; gap:10px; flex-wrap:wrap; margin-top:11px; font-size:14px; color:rgba(0,0,0,.7); font-weight:600; }
.pf-stars { color:#1a1a1a; letter-spacing:2px; font-size:15px; }
.pf-stars .e { color:rgba(0,0,0,.25); }
.pf-status { background:rgba(10,110,52,.16); color:#0a6e34; font-weight:700; padding:4px 11px; border-radius:20px; font-size:12.5px; }
.pf-loc { display:flex; align-items:center; gap:7px; margin-top:11px; font-size:14px; color:rgba(0,0,0,.72); font-weight:500; }
.pf-loc svg { width:16px; height:16px; flex-shrink:0; }
.pf-verify { display:inline-flex; align-items:center; gap:7px; background:rgba(15,15,18,.9); color:#fff; font-size:12px; font-weight:600; padding:8px 14px; border-radius:50px; flex-shrink:0; }
.pf-verify svg { width:15px; height:15px; color:var(--yellow); }
.pf-actions { display:flex; gap:10px; flex-wrap:wrap; padding-bottom:30px; position:relative; z-index:1; }
.pf-btn { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,.92); color:var(--ink); border:1px solid rgba(0,0,0,.12); border-radius:12px; padding:12px 18px; font-family:'Sora',sans-serif; font-weight:600; font-size:14px; text-decoration:none; cursor:pointer; transition:all .15s; }
.pf-btn:hover { background:#fff; transform:translateY(-2px); box-shadow:0 6px 16px rgba(0,0,0,.12); }
.pf-btn svg { width:17px; height:17px; }
.pf-btn.primary { background:var(--ink); color:#fff; border-color:var(--ink); }
.pf-btn.primary:hover { background:#000; }
.pf-btn.wa { background:#25d366; color:#fff; border-color:#1fb955; }
.info-cards { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.pcard { background:#fff; border:1px solid var(--line); border-radius:18px; padding:24px 26px; }
.pcard h3 { font-size:16.5px; font-weight:700; color:var(--ink); margin-bottom:16px; display:flex; align-items:center; gap:9px; }
.pcard h3 svg { width:18px; height:18px; color:var(--yellow-deep); }
.chips { display:flex; flex-wrap:wrap; gap:9px; }
.chip { background:var(--bg2); border:1px solid var(--line2); border-radius:50px; padding:9px 15px; font-size:13.5px; font-weight:600; color:var(--ink); display:inline-flex; align-items:center; gap:7px; }
.chip svg { width:14px; height:14px; color:var(--yellow-deep); }
.hours-table { width:100%; border-collapse:collapse; }
.hours-table td { padding:10px 0; border-bottom:1px solid var(--line); font-size:14.5px; }
.hours-table tr:last-child td { border-bottom:none; }
.hours-table td:first-child { color:var(--text2); }
.hours-table td:last-child { text-align:right; font-weight:600; color:var(--ink); }
.hours-table tr.today td:first-child { color:var(--ink); font-weight:700; }
.hours-table .open-now { color:#0a6e34; font-weight:700; }
@media (max-width:768px){
  .profile-top { flex-direction:column; align-items:flex-start; gap:14px; padding:30px 0 18px; }
  .pf-avatar { width:62px; height:62px; border-radius:16px; }
  .pf-avatar svg { width:34px; height:34px; }
  .pf-head h1 { font-size:25px; line-height:1.12; }
  .pf-sub, .pf-loc { margin-top:9px; }
  .pf-verify { order:0; }
  .pf-actions { gap:8px; padding-bottom:26px; }
  .pf-actions .pf-btn { flex:1 1 calc(50% - 4px); justify-content:center; }
  .info-cards { grid-template-columns:1fr; }
}

/* Mobil footer: başlıklar dışında açılır-kapanır (akordeon) */
@media (max-width:600px) {
  .footer { padding:40px 0 26px; }
  .footer-grid { grid-template-columns:1fr; gap:0; margin-bottom:22px; }
  .footer-brand { grid-column:auto; margin-bottom:10px; }
  .footer-col h3 { margin-bottom:0; padding:15px 2px; border-top:1px solid rgba(0,0,0,.12); display:flex; align-items:center; justify-content:space-between; cursor:pointer; user-select:none; }
  .footer-col h3::after { content:'+'; font-size:21px; font-weight:300; line-height:1; opacity:.5; }
  .footer-col.open h3::after { content:'\2212'; }
  .footer-col ul { max-height:0; overflow:hidden; transition:max-height .25s ease; }
  .footer-col.open ul { max-height:340px; padding:2px 2px 14px; }
}
