/* ============================================================
   Türkiye Firma Rehberi — Glassmorphism Light / macOS Theme
   ============================================================ */

:root {
  --bg: #eef1f7;
  --bg-grad-1: #ffffff;
  --bg-grad-2: #f0f4fb;
  --glass-bg: rgba(255, 255, 255, 0.62);
  --glass-bg-strong: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.65);
  --stroke: rgba(60, 72, 110, 0.10);
  --shadow: 0 8px 32px rgba(31, 38, 90, 0.12);
  --shadow-sm: 0 2px 12px rgba(31, 38, 90, 0.08);
  --ink: #1b2030;
  --ink-soft: #565d74;
  --ink-faint: #8a91a8;
  --accent: #4377f0;
  --accent-2: #7a5af0;
  --accent-3: #2ec4b6;
  --green: #22c55e;
  --red: #ef4444;
  --amber: #f59e0b;
  --radius: 20px;
  --radius-sm: 14px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background:
    radial-gradient(1200px 800px at 80% -10%, #e6ecff 0%, transparent 55%),
    radial-gradient(900px 600px at -10% 30%, #e8f6f4 0%, transparent 50%),
    radial-gradient(800px 700px at 110% 60%, #f3ecff 0%, transparent 55%),
    linear-gradient(180deg, var(--bg-grad-1), var(--bg-grad-2));
  background-attachment: fixed;
  color: var(--ink);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
svg { flex-shrink: 0; }

/* ---- Arka plan bloblar ---- */
.blob { position: fixed; border-radius: 50%; filter: blur(90px); opacity: .5; z-index: -1; pointer-events: none; }
.blob-a { width: 520px; height: 520px; background: #c7d4ff; top: -180px; right: -120px; }
.blob-b { width: 460px; height: 460px; background: #c3f0ea; bottom: -160px; left: -140px; }
.blob-c { width: 380px; height: 380px; background: #e6d5ff; top: 40%; left: 55%; }

.container { width: min(1180px, 92%); margin-inline: auto; }

/* ================= HEADER ================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  background: rgba(255, 255, 255, 0.62);
  border-bottom: 1px solid var(--stroke);
  box-shadow: 0 4px 24px rgba(31, 38, 90, 0.06);
}

/* Üst bilgi çubuğu */
.topbar {
  border-bottom: 1px solid rgba(60, 72, 110, 0.08);
  background: linear-gradient(120deg, rgba(67, 119, 240, 0.06), rgba(122, 90, 240, 0.05));
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 34px; }
.topbar-tagline { font-size: 12px; font-weight: 600; color: var(--ink-faint); letter-spacing: .2px; }
.topbar-links { display: flex; align-items: center; }
.topbar-links .lang-switch { background: rgba(255, 255, 255, 0.85); border: 1px solid var(--stroke); padding: 3px; border-radius: 9px; display: flex; gap: 2px; }
.topbar-links .lang-switch a { font-size: 11px; font-weight: 700; color: var(--ink-faint); padding: 3px 8px; border-radius: 7px; transition: all .18s; }
.topbar-links .lang-switch a:hover { color: var(--accent); }
.topbar-links .lang-switch a.active { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; box-shadow: 0 3px 8px rgba(67,119,240,.3); }

.header-inner { display: flex; align-items: center; gap: 20px; height: 66px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; font-size: 17px; letter-spacing: -0.2px; }
.brand-mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff; box-shadow: 0 6px 16px rgba(67,119,240,.35);
}
.main-nav { display: flex; gap: 2px; margin-left: auto; }
.main-nav a {
  color: var(--ink-soft); font-weight: 600; font-size: 14px; padding: 8px 14px;
  border-radius: 10px; transition: background .18s, color .18s;
  position: relative;
}
.main-nav a:hover { color: var(--ink); background: rgba(255,255,255,.85); }
.main-nav a.active { color: var(--accent); background: rgba(67, 119, 240, 0.10); font-weight: 700; }
.main-nav a.active::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 2px;
  border-radius: 2px; background: linear-gradient(90deg, var(--accent), var(--accent-2));
}
.header-actions { display: flex; align-items: center; gap: 12px; }

/* Header arama */
.header-search {
  display: flex; align-items: center; gap: 8px; padding: 8px 12px;
  border-radius: 12px; background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--stroke); color: var(--ink-faint);
  transition: border-color .18s, box-shadow .18s, width .2s;
  width: 210px;
}
.header-search:focus-within { border-color: rgba(67, 119, 240, 0.45); box-shadow: 0 0 0 3px rgba(67, 119, 240, 0.12); width: 260px; }
.header-search input { flex: 1; border: none; background: transparent; outline: none; font-size: 13.5px; font-family: inherit; color: var(--ink); min-width: 0; }
.header-search input::placeholder { color: var(--ink-faint); }

.lang-switch { display: flex; gap: 2px; background: rgba(255,255,255,.7); border: 1px solid var(--stroke); padding: 3px; border-radius: 10px; }
.lang-switch a { font-size: 11px; font-weight: 700; color: var(--ink-faint); padding: 4px 7px; border-radius: 7px; transition: all .18s; }
.lang-switch a.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.icon-btn { display: none; background: none; border: none; cursor: pointer; color: var(--ink); padding: 6px; border-radius: 8px; }

/* ================= HERO ================= */
.hero { padding: 64px 0 40px; }
.hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.hero-badge {
  font-size: 13px; font-weight: 600; color: var(--accent);
  background: rgba(255,255,255,.7); border: 1px solid var(--stroke);
  padding: 6px 16px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.hero-title { font-size: clamp(30px, 5.2vw, 52px); font-weight: 800; letter-spacing: -1.4px; line-height: 1.12; background: linear-gradient(120deg, #1b2030, #3a4a8c); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { color: var(--ink-soft); font-size: 17px; max-width: 640px; }

/* Arama kutusu */
.hero-search {
  display: flex; align-items: center; gap: 10px; width: min(620px, 100%);
  padding: 8px 8px 8px 18px; border-radius: 16px;
  background: var(--glass-bg-strong); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border); box-shadow: var(--shadow-sm);
}
.hero-search input { flex: 1; border: none; background: transparent; outline: none; font-size: 15px; font-family: inherit; color: var(--ink); }
.hero-search input::placeholder { color: var(--ink-faint); }
.hero-search button {
  border: none; cursor: pointer; font-family: inherit; font-weight: 700; font-size: 14px; color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  padding: 10px 22px; border-radius: 11px; box-shadow: 0 6px 16px rgba(67,119,240,.35);
  transition: transform .15s, box-shadow .15s;
}
.hero-search button:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(67,119,240,.45); }

/* Stats */
.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 14px; width: 100%; max-width: 640px; margin-top: 10px; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 18px 12px; }
.stat-num { font-size: 30px; font-weight: 800; letter-spacing: -1px; background: linear-gradient(120deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat span:last-child { font-size: 12.5px; font-weight: 600; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .4px; }

/* ================= GLASS ================= */
.glass-panel {
  background: var(--glass-bg); backdrop-filter: blur(20px) saturate(150%); -webkit-backdrop-filter: blur(20px) saturate(150%);
  border: 1px solid var(--glass-border); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 28px;
}
.glass-card {
  background: var(--glass-bg); backdrop-filter: blur(16px) saturate(150%); -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid var(--glass-border); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm);
}

/* ================= SECTIONS ================= */
.section { padding: 36px 0; }
.section-tight { padding: 8px 0 0; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.section-head h2 { font-size: 24px; font-weight: 800; letter-spacing: -.5px; }
.link-more { font-weight: 700; font-size: 14px; }

.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 18px; }

/* ================= CARDS ================= */
.card { display: flex; flex-direction: column; gap: 8px; padding: 18px; color: var(--ink); transition: transform .2s, box-shadow .2s, border-color .2s; }
.card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(31,38,90,.16); border-color: rgba(255,255,255,.95); }
.card-title { font-weight: 700; font-size: 15.5px; line-height: 1.35; letter-spacing: -.2px; color: var(--ink); }
.card-loc { font-size: 13px; color: var(--ink-soft); }
.card-meta { font-size: 13px; color: var(--ink-faint); display: flex; align-items: center; gap: 6px; }
.card-meta .rev { font-size: 12px; }
.card-pin { font-size: 22px; }

.sector-card { min-height: 96px; }
.city-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.city-card { align-items: flex-start; }

/* Biz card */
.biz-card { position: relative; overflow: hidden; }
.biz-top { border-radius: 10px; overflow: hidden; background: #f2f5fb; min-height: 120px; display: block; }
.biz-photo { display: block; width: 100%; height: auto; max-height: 220px; object-fit: cover; }
.biz-photo img { width: 100%; height: 220px; object-fit: cover; transition: transform .35s; }
.biz-card:hover .biz-photo img { transform: scale(1.04); }
.biz-avatar { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 14px; font-size: 24px; font-weight: 800; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.biz-card > .biz-avatar { align-self: flex-start; }
.biz-body { display: flex; flex-direction: column; gap: 6px; }
.biz-call { font-weight: 600; font-size: 13px; }

/* Stars */
.stars { color: var(--amber); font-size: 13px; letter-spacing: 1px; line-height: 1; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
  background: rgba(255,255,255,.7); border: 1px solid var(--stroke);
  padding: 8px 14px; border-radius: 999px; transition: all .18s;
}
.chip:hover { background: #fff; color: var(--accent); border-color: rgba(67,119,240,.4); transform: translateY(-1px); }
.chip span { color: var(--ink-faint); margin-left: 2px; }
.chip-static { cursor: default; }

/* Pagination */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 30px; flex-wrap: wrap; }
.page-btn {
  min-width: 38px; height: 38px; display: grid; place-items: center;
  font-weight: 700; font-size: 14px; color: var(--ink-soft);
  background: rgba(255,255,255,.7); border: 1px solid var(--stroke); border-radius: 11px;
  transition: all .18s;
}
.page-btn:hover { color: var(--accent); border-color: rgba(67,119,240,.4); }
.page-btn.active { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; border-color: transparent; box-shadow: 0 6px 14px rgba(67,119,240,.3); }
.page-dot { align-self: center; color: var(--ink-faint); }

/* ================= PAGE HERO / BREADCRUMB ================= */
.page-hero { padding: 26px 0; }
.page-hero h1 { font-size: clamp(24px, 3.4vw, 34px); font-weight: 800; letter-spacing: -.6px; margin-top: 6px; }
.page-hero p { color: var(--ink-soft); margin-top: 4px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; font-size: 13px; color: var(--ink-faint); }
.breadcrumb a { color: var(--ink-faint); font-weight: 600; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span:last-child { color: var(--ink-soft); }

.empty { text-align: center; color: var(--ink-faint); padding: 60px 0; font-size: 16px; }

/* ================= FIRMA DETAY ================= */
.bizdetail { position: relative; }

/* Arka plan foto (blur) */
.biz-backdrop {
  position: absolute; inset: 0 0 0 0; height: 460px; z-index: 0;
  background-size: cover; background-position: center; filter: blur(6px) saturate(1.2);
  transform: scale(1.1); opacity: 0.35; pointer-events: none;
}
.biz-backdrop-shade {
  position: absolute; top: 0; left: 0; right: 0; height: 460px; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,.35), var(--bg-grad-2) 96%);
}
.bizdetail .container { position: relative; z-index: 1; }

/* Hero */
.biz-hero { padding: 26px 0 8px; }
.biz-hero-body { display: flex; justify-content: space-between; align-items: flex-end; gap: 28px; flex-wrap: wrap; margin-top: 22px; }
.biz-hero-main { display: flex; flex-direction: column; gap: 10px; max-width: 640px; }
.biz-hero-main h1 { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -1px; line-height: 1.15; }
.chip-sector {
  display: inline-block; width: fit-content; font-size: 12.5px; font-weight: 700;
  color: var(--accent); background: rgba(255,255,255,.85); border: 1px solid rgba(67,119,240,.3);
  padding: 6px 14px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.biz-hero-loc { color: var(--ink-soft); font-size: 15px; display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.biz-hero-loc .loc-phone { color: var(--ink); font-weight: 600; }
.biz-hero-meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.biz-hero-meta .rev { font-size: 13px; color: var(--ink-faint); }
.today-hours { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; color: var(--ink-soft); font-weight: 600; }
.today-hours .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; }
.today-hours .dot.open { background: var(--green); box-shadow: 0 0 6px var(--green); }
.today-hours .dot.closed { background: var(--red); box-shadow: 0 0 6px var(--red); }
.biz-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* Genel card başlık satırı */
.card-title-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.card-title-row h2 { font-size: 17px; font-weight: 800; letter-spacing: -.3px; }
.card-ico { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; font-size: 16px; background: linear-gradient(135deg, rgba(67,119,240,.12), rgba(122,90,240,.12)); }
.card-title-row .badge { margin-left: auto; }

/* Layout: ana kolon + yan panel */
.biz-layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr); gap: 24px; align-items: start; margin-top: 26px; }
.biz-main { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.biz-side { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 86px; }

/* Galeri */
.gallery-card { padding: 12px; }
.gallery-main { position: relative; border-radius: 12px; overflow: hidden; background: linear-gradient(135deg, #eef2fb, #f6f3ff); min-height: 300px; display: grid; place-items: center; cursor: zoom-in; }
.gallery-main img { width: 100%; max-height: 520px; object-fit: cover; transition: transform .3s ease; }
.gallery-empty .biz-avatar { width: 110px; height: 110px; font-size: 48px; border-radius: 22px; }
.gallery-count {
  position: absolute; right: 12px; bottom: 12px; font-size: 12px; font-weight: 700; color: #fff;
  background: rgba(20, 26, 46, .55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 5px 12px; border-radius: 999px; border: 1px solid rgba(255,255,255,.25);
}
.gallery-zoom {
  position: absolute; right: 12px; top: 12px; width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.85); border: 1px solid var(--stroke); font-size: 16px; cursor: pointer;
  backdrop-filter: blur(6px); display: grid; place-items: center; opacity: .7; transition: opacity .2s;
}
.gallery-zoom:hover { opacity: 1; }
.gallery-nav {
  position: absolute; inset: 0; display: flex; justify-content: space-between; padding: 0 8px;
  pointer-events: none;
}
.gallery-nav-btn {
  pointer-events: all; width: 32px; height: 64px; border-radius: 8px; border: 1px solid var(--stroke);
  background: rgba(255,255,255,.8); font-size: 18px; font-weight: 700; color: var(--ink);
  cursor: pointer; backdrop-filter: blur(6px); opacity: .6; transition: opacity .2s;
}
.gallery-nav-btn:hover { opacity: 1; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(auto-fill, minmax(76px, 1fr)); gap: 10px; margin-top: 12px; }
.thumb { border: 2px solid transparent; background: none; padding: 0; border-radius: 10px; overflow: hidden; cursor: pointer; transition: border-color .18s, transform .18s; }
.thumb:hover { transform: translateY(-2px); }
.thumb.active { border-color: var(--accent); }
.thumb img { width: 100%; height: 64px; object-fit: cover; }

/* Hakkında + Harita */
.about-card, .map-card { padding: 22px; }
.about-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.65; }
.map-card .map-wrap { border-radius: 12px; overflow: hidden; aspect-ratio: 16/8; background: #e9f0fb; }
.map-card .map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Yan panel kartları */
.contact-card, .hours-card { padding: 22px; }
.directions-card {
  display: flex; align-items: center; gap: 12px; padding: 18px 20px;
  color: var(--ink); text-decoration: none;
  background: linear-gradient(120deg, rgba(67,119,240,.10), rgba(122,90,240,.08));
  transition: transform .18s, box-shadow .18s;
}
.directions-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); color: var(--accent); }
.dir-label { font-weight: 800; font-size: 15px; }
.dir-sub { font-size: 12.5px; color: var(--ink-faint); }

.social-row { display: flex; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(60,72,110,.08); }
.social-btn {
  display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  background: rgba(255,255,255,.85); border: 1px solid var(--stroke); font-size: 18px;
  transition: transform .16s, box-shadow .16s;
}
.social-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.info-row { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(60,72,110,.07); }
.info-row:last-of-type { border-bottom: none; }
.info-row .ico { font-size: 18px; margin-top: 2px; }
.info-row div { display: flex; flex-direction: column; min-width: 0; }
.info-row strong { font-size: 12px; text-transform: uppercase; letter-spacing: .4px; color: var(--ink-faint); }
.info-row span, .info-row a { font-size: 14.5px; color: var(--ink); overflow-wrap: anywhere; }
.info-row a:hover { color: var(--accent); }
.info-row small { font-size: 12.5px; color: var(--ink-faint); }

.hours-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.hours-table td { padding: 6px 4px; }
.hours-table tr.today td { font-weight: 700; color: var(--accent); background: rgba(67,119,240,.06); border-radius: 6px; }
.hours-table td:last-child { text-align: right; color: var(--ink-soft); }
.muted { color: var(--ink-faint); font-size: 14px; }

.badge { font-size: 11.5px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }
.badge-open { background: rgba(34,197,94,.14); color: #16a34a; }
.badge-closed { background: rgba(239,68,68,.12); color: #dc2626; }

.rating-big { font-size: 20px; font-weight: 800; }

.info-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px; font-family: inherit; font-weight: 700; font-size: 14px;
  padding: 11px 20px; border-radius: 12px; border: none; cursor: pointer; transition: transform .15s, box-shadow .15s;
}
.btn-icon { display: grid; place-items: center; font-size: 16px; }
.btn-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; box-shadow: 0 6px 16px rgba(67,119,240,.35); }
.btn-primary:hover { transform: translateY(-1px); }
.btn-wa { background: linear-gradient(135deg, #25d366, #128c7e); color: #fff; box-shadow: 0 6px 16px rgba(37,211,102,.3); }

/* Kopyala butonu */
.copy-addr {
  margin-left: 6px; background: rgba(67,119,240,.08); border: 1px solid rgba(67,119,240,.2);
  border-radius: 7px; padding: 2px 6px; font-size: 13px; cursor: pointer; opacity: .6;
  transition: opacity .2s, background .2s;
}
.copy-addr:hover { opacity: 1; background: rgba(67,119,240,.15); }
.copy-addr.copied { opacity: 1; color: var(--green); }

/* Rapor linki */
.biz-report { position: fixed; right: 16px; bottom: 16px; z-index: 40; }
.report-link {
  display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px); border: 1px solid var(--stroke); color: var(--ink-faint);
  font-size: 12px; font-weight: 600; padding: 7px 12px; border-radius: 999px;
}
.report-link:hover { color: var(--accent); border-color: rgba(67,119,240,.4); }

/* Mobil sticky CTA (mobilde gosterilir) */
.mobile-cta {
  display: none; position: fixed; inset: auto 0 0 0; z-index: 40;
  background: rgba(255,255,255,.9); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--stroke); box-shadow: 0 -4px 18px rgba(31,38,90,.10);
  padding: 8px 10px; height: 62px;
}
.mobile-cta .mcta-btn {
  flex: 1; display: grid; place-items: center; height: 46px; border-radius: 12px;
  font-size: 12px; font-weight: 700; text-decoration: none; transition: transform .15s, box-shadow .15s;
}
.mcta-call { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; box-shadow: 0 6px 16px rgba(67,119,240,.35); }
.mcta-wa { background: linear-gradient(135deg, #25d366, #128c7e); color: #fff; }
.mcta-dir { background: rgba(255,255,255,.8); border: 1px solid var(--stroke); color: var(--ink); }
.mcta-call:hover, .mcta-wa:hover, .mcta-dir:hover { transform: translateY(-1px); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.92);
  display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .25s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 95vw; max-height: 95vh; object-fit: contain; }
.lightbox .lb-close {
  position: absolute; top: 16px; right: 16px; width: 40px; height: 40px;
  border-radius: 8px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  color: #fff; font-size: 18px; cursor: pointer; display: grid; place-items: center;
}
.lightbox .lb-nav { position: absolute; inset: 0; display: flex; justify-content: space-between; padding: 0 12px; pointer-events: none; }
.lightbox .lb-nav-btn {
  pointer-events: all; width: 44px; height: 44px; border-radius: 8px; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25); color: #fff; font-size: 20px; font-weight: 700;
  cursor: pointer; display: grid; place-items: center; transition: background .2s;
}
.lightbox .lb-nav-btn:hover { background: rgba(255,255,255,.25); }
.lightbox-counter { position: absolute; bottom: 16px; color: rgba(255,255,255,.7); font-size: 13px; }

/* Arka görünüm: stars grid vs */

/* ================= ABOUT / MISC ================= */
.prose .about-card { padding: 30px; }
.prose h2 { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.prose p { color: var(--ink-soft); font-size: 15.5px; max-width: 720px; }
.prose .hero-stats { margin-top: 24px; }

/* ================= FOOTER ================= */
.site-footer {
  margin-top: 40px; padding: 46px 0 20px;
  background: rgba(255,255,255,.5); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-top: 1px solid var(--stroke);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 34px; }
.footer-col h4 { font-size: 15px; font-weight: 800; margin-bottom: 12px; }
.footer-col p { color: var(--ink-soft); font-size: 14px; max-width: 420px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a { color: var(--ink-soft); font-size: 14px; }
.footer-col ul a:hover { color: var(--accent); }
.footer-stats { display: flex; gap: 18px; margin-top: 14px; flex-wrap: wrap; }
.footer-stats strong { font-size: 18px; }
.footer-stats span { font-size: 12.5px; color: var(--ink-faint); }
.footer-bottom { border-top: 1px solid var(--stroke); margin-top: 30px; padding-top: 16px; text-align: center; color: var(--ink-faint); font-size: 13px; }

/* ================= 404 ================= */
.notfound { display: grid; place-items: center; padding: 70px 0; }
.nf-panel { text-align: center; max-width: 460px; padding: 44px; }
.nf-code { font-size: 72px; font-weight: 800; letter-spacing: -3px; background: linear-gradient(120deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.nf-panel h1 { font-size: 22px; font-weight: 800; margin: 10px 0 6px; }
.nf-panel p { color: var(--ink-soft); margin-bottom: 20px; }

/* ================= RATE CARD ================= */
.rate-card { padding: 22px; }
.rate-current { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--ink-soft); }
.rate-current .rate-label { font-weight: 600; color: var(--ink); }
.rate-current #rateAvg { font-size: 22px; font-weight: 800; background: linear-gradient(120deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.rate-current .rate-count { color: var(--ink-faint); font-weight: 500; }
.rate-trigger { text-align: center; margin-top: 8px; }
.rate-input { text-align: center; margin-top: 10px; }
.rate-hint { font-size: 13px; color: var(--ink-faint); margin-bottom: 10px; }
.rate-stars { display: inline-flex; gap: 6px; }
.rstar {
  display: grid; place-items: center; width: 44px; height: 44px; font-size: 22px;
  color: var(--ink-faint); background: transparent; border: none; cursor: pointer;
  transition: transform .12s, color .12s;
}
.rstar:hover { transform: scale(1.15); }
.rstar:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
.rstar.selected,
.rstar[data-selected="true"] { color: var(--amber); transform: scale(1.1); }
.rstar.preview { color: var(--amber); opacity: .8; }
.rate-input .btn { margin-top: 12px; }
.rate-input .btn-ghost { margin-left: 8px; }
.rate-msg { margin-top: 10px; font-size: 13.5px; min-height: 20px; font-weight: 600; }
.rate-msg.success { color: var(--green); }
.rate-msg.error { color: var(--red); }

/* ================= RESPONSIVE ================= */
@media (max-width: 960px) {
  .biz-layout { grid-template-columns: 1fr; }
  .biz-side { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-search { width: 180px; }
  .header-search:focus-within { width: 210px; }
}
@media (max-width: 720px) {
  .topbar-tagline { display: none; }
  .topbar-inner { justify-content: flex-end; }
  .main-nav {
    position: fixed; inset: 66px auto auto 0; right: 0; flex-direction: column;
    background: rgba(255,255,255,.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--stroke); padding: 12px 16px; gap: 2px;
    transform: translateY(-130%); transition: transform .25s ease; box-shadow: var(--shadow);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 12px; font-size: 15px; border-radius: 12px; }
  .icon-btn { display: block; }
  .header-search { display: none; }
  .grid { grid-template-columns: repeat(auto-fill, minmax(100%, 1fr)); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 40px 0 24px; }
  .section-head h2 { font-size: 20px; }
   .biz-hero-body { flex-direction: column; align-items: flex-start; }
   .biz-hero-actions { width: 100%; }
   .biz-hero-actions .btn { flex: 1; justify-content: center; }
   .gallery-main img { max-height: 320px; }

   /* Mobil sticky CTA gosterilsin */
   .mobile-cta { display: flex; }
   .biz-report { display: none; }
   .biz-detail { padding-bottom: 74px; }

   /* Hero meta mobilde tek sutun */
   .biz-hero-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
   .today-hours { font-size: 13px; }
   .hero-actions-row { display: contents; }
}
@media (max-width: 480px) {
  .gallery-main img { max-height: 260px; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); }
  .gallery-thumbs .thumb img { height: 56px; }
  .biz-hero-main h1 { font-size: clamp(22px, 5vw, 30px); }
  .mcta-btn { font-size: 10px; }
}