/* nobetcinoterbul.com — v2 tasarım */
:root {
	--bg: #f4f6fb; --bg2: #ffffff; --bg3: #eef2f9; --card: #ffffff; --border: #e3e8f2; --border2: #cfd8e8;
	--text: #0f172a; --text2: #334155; --muted: #64748b; --faint: #94a3b8;
	--primary: #0f3d91; --primary2: #1d4ed8; --primary-soft: rgba(29,78,216,.10); --accent: #d4a017; --accent-soft: rgba(212,160,23,.14);
	--ok: #15803d; --ok-soft: rgba(22,163,74,.12); --warn: #b45309; --warn-soft: rgba(245,158,11,.14); --bad: #b91c1c; --bad-soft: rgba(220,38,38,.12);
	--sun: #7c3aed; --sun-soft: rgba(124,58,237,.12);
	--radius: 16px; --radius-sm: 10px; --shadow: 0 1px 2px rgba(15,23,42,.05), 0 8px 24px rgba(15,23,42,.06); --shadow-lg: 0 20px 50px rgba(15,23,42,.14);
	--grad: linear-gradient(120deg, #0f3d91 0%, #1d4ed8 60%, #0ea5e9 130%);
	--font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
	--header-h: 68px;
}
[data-theme="dark"] {
	--bg: #0b1120; --bg2: #111a2e; --bg3: #0e1729; --card: #131d33; --border: #22304a; --border2: #2f3f5e;
	--text: #e8edf7; --text2: #c4cddc; --muted: #8b98b0; --faint: #5f6d87;
	--primary: #3b82f6; --primary2: #60a5fa; --primary-soft: rgba(59,130,246,.16); --accent: #fbbf24; --accent-soft: rgba(251,191,36,.14);
	--ok: #4ade80; --ok-soft: rgba(34,197,94,.14); --warn: #fbbf24; --bad: #f87171;
	--sun: #c084fc; --sun-soft: rgba(168,85,247,.16);
	--shadow: 0 1px 2px rgba(0,0,0,.35), 0 10px 28px rgba(0,0,0,.35); --shadow-lg: 0 24px 60px rgba(0,0,0,.5);
	--grad: linear-gradient(120deg, #1e3a8a 0%, #2563eb 60%, #0891b2 130%);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; font-size: 15.5px; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
h1, h2, h3, h4 { margin: 0; line-height: 1.2; letter-spacing: -.02em; }
p { margin: 0; }
button { font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }
.container.narrow { max-width: 860px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--primary); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 2000; }
.skip-link:focus { left: 8px; }
.center { text-align: center; } .mt { margin-top: 18px; } .muted { color: var(--muted); font-weight: 600; }
:focus-visible { outline: 3px solid rgba(29,78,216,.4); outline-offset: 2px; border-radius: 6px; }

/* Buttons & inputs */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 18px; border-radius: 12px; font-weight: 700; font-size: .92rem; border: 1px solid transparent; cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s, border-color .15s; white-space: nowrap; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 20px rgba(29,78,216,.28); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(29,78,216,.36); }
.btn-ghost { background: var(--card); color: var(--text); border-color: var(--border2); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-block { width: 100%; }
.btn-call { background: var(--ok); color: #fff; }
.btn-call:hover { filter: brightness(1.08); }
.btn-map { background: var(--primary); color: #fff; }
.btn-map:hover { filter: brightness(1.1); }
.link-btn { background: none; border: 0; color: var(--muted); font-size: .78rem; font-weight: 600; cursor: pointer; padding: 4px 0; }
.link-btn:hover { color: var(--primary); text-decoration: underline; }
.input { background: var(--card); border: 1px solid var(--border2); border-radius: 12px; padding: 10px 14px; color: var(--text); font: inherit; font-size: .92rem; min-width: 220px; }
.input:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px var(--primary-soft); }
.icon-btn { width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border2); background: var(--card); color: var(--text2); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: .15s; }
.icon-btn:hover { border-color: var(--primary); color: var(--primary); }
.chip { display: inline-flex; align-items: center; gap: 6px; background: var(--card); border: 1px solid var(--border2); color: var(--text2); border-radius: 999px; padding: 7px 13px; font-size: .84rem; font-weight: 600; transition: .15s; }
.chip b { color: var(--primary); }
.chip:hover, .chip.is-active { border-color: var(--primary); color: var(--primary); background: var(--primary-soft); }
.chip-sm { padding: 5px 11px; font-size: .8rem; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-row.center { justify-content: center; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; display: inline-block; }
.dot.live { background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.25); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* Status pill */
.status-pill { display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: 999px; font-size: .74rem; font-weight: 800; letter-spacing: .04em; border: 1px solid; }
.status-pill.is-open { background: var(--ok-soft); color: var(--ok); border-color: rgba(22,163,74,.35); }
.status-pill.is-soon { background: var(--warn-soft); color: var(--warn); border-color: rgba(245,158,11,.4); }
.status-pill.is-closed { background: var(--bad-soft); color: var(--bad); border-color: rgba(220,38,38,.3); }
.status-pill .dot { animation: pulse 1.8s infinite; }

/* Topbar */
.topbar { background: var(--text); color: #cbd5e1; font-size: .8rem; }
[data-theme="dark"] .topbar { background: #070c18; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding-top: 7px; padding-bottom: 7px; flex-wrap: wrap; }
.topbar-status { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.topbar-text strong { color: #fff; }
.topbar-weekend b { color: var(--accent); }
@media (max-width: 860px) { .topbar-right { display: none; } .topbar-text { display: none; } }

/* Header */
.site-header { position: sticky; top: 0; z-index: 900; background: color-mix(in srgb, var(--bg2) 88%, transparent); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.site-header::after { content: ""; display: block; height: 3px; background: var(--grad); }
.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 18px; }
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.brand-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--grad); color: #fff; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 6px 16px rgba(29,78,216,.35); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-title { font-weight: 800; font-size: 1.08rem; letter-spacing: -.02em; }
.brand-sub { font-size: .66rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: .08em; margin-top: 3px; }
.main-nav { display: flex; gap: 2px; margin-left: 12px; }
.nav-link { padding: 8px 12px; border-radius: 10px; font-size: .9rem; font-weight: 600; color: var(--text2); }
.nav-link:hover { background: var(--bg3); color: var(--text); }
.nav-link.is-active { background: var(--primary-soft); color: var(--primary); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.btn-search { padding: 10px 16px; }
.icon-btn .ic-moon { display: none; } [data-theme="dark"] .icon-btn .ic-sun { display: none; } [data-theme="dark"] .icon-btn .ic-moon { display: block; }
.hamburger { display: none; flex-direction: column; gap: 4px; }
.hamburger span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; display: block; transition: .2s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); } .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; } .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mobile-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 12px 20px 16px; border-top: 1px solid var(--border); background: var(--bg2); }
.mobile-nav[hidden] { display: none; }
.mobile-nav a { padding: 11px 12px; border-radius: 10px; background: var(--bg3); font-weight: 600; font-size: .9rem; }
@media (max-width: 960px) { .main-nav { display: none; } .hamburger { display: inline-flex; } .btn-search span { display: none; } .btn-search { width: 42px; padding: 0; } }

/* ===== Header v2 ===== */
.utilbar { background: #0a1224; color: #b6c2d9; font-size: .78rem; border-bottom: 1px solid rgba(255,255,255,.06); }
[data-theme="dark"] .utilbar { background: #060b17; }
.utilbar-inner { height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 14px; overflow: hidden; }
.ub-left, .ub-right { display: flex; align-items: center; gap: 10px; white-space: nowrap; min-width: 0; }
.ub-date { color: #fff; font-weight: 700; }
.ub-sep { width: 1px; height: 14px; background: rgba(255,255,255,.18); }
.ub-text { color: #9fb0cc; overflow: hidden; text-overflow: ellipsis; }
.ub-item { display: inline-flex; align-items: center; gap: 6px; padding-left: 12px; border-left: 1px solid rgba(255,255,255,.12); }
.ub-item:first-child { border-left: 0; padding-left: 0; }
.ub-item i { font-style: normal; color: #7d8ca8; }
.ub-item b { color: #fff; font-variant-numeric: tabular-nums; }
.ub-item b:has(+ *) { color: #fde68a; }
.ub-clock b { color: #fde68a; }
.utilbar .status-pill { padding: 3px 9px; font-size: .66rem; }
.site-header { transition: box-shadow .2s; }
.site-header.is-stuck { box-shadow: 0 10px 30px rgba(15,23,42,.12); }
[data-theme="dark"] .site-header.is-stuck { box-shadow: 0 10px 30px rgba(0,0,0,.45); }
.site-header.is-stuck .utilbar { display: none; }
.header-inner { height: 78px; gap: 14px; }
.brand { gap: 12px; padding: 4px 6px 4px 0; border-radius: 14px; transition: background .15s; }
.brand:hover { background: var(--bg3); }
.brand-icon { width: 50px; height: 50px; border-radius: 15px; position: relative; box-shadow: 0 8px 22px rgba(29,78,216,.38), inset 0 1px 0 rgba(255,255,255,.35); }
.brand-icon::after { content: ""; position: absolute; right: -3px; bottom: -3px; width: 16px; height: 16px; border-radius: 50%; background: var(--accent); border: 3px solid var(--bg2); }
.brand-title { font-size: 1.28rem; font-weight: 800; letter-spacing: -.03em; }
.brand-title em { font-style: normal; color: var(--primary); }
[data-theme="dark"] .brand-title em { color: #93c5fd; }
.brand-sub { color: var(--muted); font-size: .66rem; letter-spacing: .06em; font-weight: 700; }
.header-search { flex: 1; max-width: 460px; height: 46px; display: flex; align-items: center; gap: 10px; padding: 0 10px 0 14px; background: var(--bg3); border: 1.5px solid var(--border2); border-radius: 14px; color: var(--muted); font: inherit; font-size: .9rem; cursor: text; text-align: left; transition: .15s; margin: 0 6px; }
.header-search:hover, .header-search:focus-visible { border-color: var(--primary); background: var(--card); box-shadow: 0 0 0 4px var(--primary-soft); color: var(--text2); }
.header-search svg { color: var(--primary); flex-shrink: 0; }
.hs-placeholder { flex: 1; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.header-search kbd { font-family: inherit; font-size: .7rem; font-weight: 800; color: var(--muted); background: var(--card); border: 1px solid var(--border2); border-bottom-width: 2px; border-radius: 6px; padding: 2px 8px; }
.main-nav { margin-left: 0; gap: 2px; align-items: center; }
.nav-item { position: relative; display: flex; align-items: center; }
.nav-link { display: inline-flex; align-items: center; gap: 7px; padding: 10px 13px; font-size: .9rem; font-weight: 700; border-radius: 12px; color: var(--text2); }
.nav-link svg { color: var(--primary); opacity: .85; }
.nav-link .chev { color: var(--muted); transition: transform .2s; }
.nav-item:hover .chev, .nav-item:focus-within .chev { transform: rotate(180deg); }
.nav-link.is-active { background: var(--primary-soft); color: var(--primary); }
[data-theme="dark"] .nav-link.is-active { color: #93c5fd; }
.mega { position: absolute; left: 0; top: calc(100% + 10px); width: 560px; display: none; grid-template-columns: 1.2fr 1fr; gap: 6px; background: var(--card); border: 1px solid var(--border2); border-radius: 18px; padding: 12px; box-shadow: var(--shadow-lg); z-index: 950; }
.mega::before { content: ""; position: absolute; left: 34px; top: -7px; width: 14px; height: 14px; background: var(--card); border-left: 1px solid var(--border2); border-top: 1px solid var(--border2); transform: rotate(45deg); }
.nav-item::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 14px; }
.nav-item:hover .mega, .nav-item:focus-within .mega { display: grid; animation: drop .18s ease; }
@keyframes drop { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.mega-col { display: flex; flex-direction: column; gap: 2px; padding: 6px; }
.mega-col:first-child { border-right: 1px solid var(--border); }
.mega-title { font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); padding: 4px 8px 8px; }
.mega-link { display: flex; align-items: center; gap: 10px; padding: 7px 8px; border-radius: 10px; transition: .12s; }
.mega-link:hover { background: var(--primary-soft); }
.mega-link .plate { width: 34px; height: 34px; font-size: .8rem; }
.mega-link b { display: block; font-size: .88rem; line-height: 1.15; }
.mega-link small { color: var(--muted); font-size: .72rem; }
.mega-link--plain { justify-content: space-between; }
.mega-link--plain b { font-weight: 600; }
.mega-all { margin-top: 6px; padding: 9px 10px; border-radius: 10px; background: var(--primary); color: #fff; font-weight: 700; font-size: .84rem; text-align: center; }
.header-actions { gap: 8px; }
.icon-btn { width: 44px; height: 44px; border-radius: 13px; }
.btn-gold { background: linear-gradient(135deg, #f3c34a, #d4a017); color: #1f1300 !important; box-shadow: 0 8px 20px rgba(212,160,23,.35); height: 44px; padding: 0 16px; border-radius: 13px; }
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(212,160,23,.45); }
.btn-search-m { display: none; }
.mobile-nav { padding: 12px 20px 16px; display: block; }
.mobile-nav[hidden] { display: none !important; }
.mobile-search { width: 100%; display: flex; align-items: center; gap: 10px; height: 46px; padding: 0 14px; border-radius: 12px; border: 1.5px solid var(--border2); background: var(--bg3); color: var(--muted); font: inherit; font-size: .92rem; margin-bottom: 10px; cursor: pointer; }
.mobile-search svg { color: var(--primary); }
.mobile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mobile-grid a { padding: 11px 12px; border-radius: 10px; background: var(--bg3); font-weight: 600; font-size: .9rem; }
.mobile-grid a.is-gold { grid-column: 1 / -1; background: linear-gradient(135deg, #f3c34a, #d4a017); color: #1f1300; text-align: center; font-weight: 800; }
.mobile-status { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-top: 12px; font-size: .78rem; color: var(--muted); }
.nav-link, .btn-near { white-space: nowrap; }
.header-search { flex: 1 1 280px; min-width: 200px; }
.main-nav { flex-shrink: 0; }
@media (max-width: 1240px) { .header-search { max-width: 320px; } .btn-near span { display: none; } .btn-near { width: 44px; padding: 0; } .brand-sub { display: none; } }
@media (max-width: 1100px) { .nav-link svg:not(.chev) { display: none; } .nav-link { padding: 10px 10px; } }
@media (max-width: 960px) { .ub-sep { display: none; } }
@media (max-width: 1060px) { .ub-right .ub-item:not(.ub-clock) { display: none; } }
@media (max-width: 960px) {
	.header-inner { height: 66px; }
	.header-search, .main-nav, .btn-near { display: none; }
	.btn-search-m { display: inline-flex; }
	.brand-icon { width: 42px; height: 42px; border-radius: 12px; }
	.brand-title { font-size: 1.1rem; } .brand-sub { display: none; }
	.utilbar-inner { height: 32px; }
	.ub-right { display: none; }
	.ub-text { display: none; }
}
@media (max-width: 420px) { .ub-date { display: none; } }

/* Search modal */
.search-modal { position: fixed; inset: 0; z-index: 1500; }
.search-modal[hidden] { display: none; }
.search-modal-backdrop { position: absolute; inset: 0; background: rgba(2,6,23,.6); backdrop-filter: blur(4px); }
.search-modal-box { position: relative; max-width: 640px; margin: 8vh auto 0; background: var(--card); border: 1px solid var(--border2); border-radius: 20px; box-shadow: var(--shadow-lg); overflow: hidden; }
.search-modal-input { display: flex; align-items: center; gap: 10px; padding: 8px 12px 8px 18px; border-bottom: 1px solid var(--border); color: var(--muted); }
.search-modal-input input { flex: 1; border: 0; background: transparent; font: inherit; font-size: 1.05rem; color: var(--text); padding: 12px 4px; outline: none; }
.search-close { border: 0; background: var(--bg3); color: var(--text2); width: 34px; height: 34px; border-radius: 9px; cursor: pointer; }
.search-results { max-height: 60vh; overflow: auto; padding: 8px; }
.search-hint { padding: 22px 14px; color: var(--muted); font-size: .9rem; text-align: center; }
.sr-item { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 12px; }
.sr-item:hover, .sr-item.is-focus { background: var(--primary-soft); }
.sr-item .plate { flex-shrink: 0; }
.sr-item .sr-type { margin-left: auto; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.sr-item small { color: var(--muted); display: block; font-size: .78rem; }
.sr-item mark { background: var(--accent-soft); color: inherit; border-radius: 3px; padding: 0 2px; }

/* Breadcrumb */
.breadcrumb-bar { background: var(--bg2); border-bottom: 1px solid var(--border); font-size: .8rem; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 10px 0; color: var(--muted); }
.breadcrumb li + li::before { content: "›"; margin-right: 6px; color: var(--faint); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: var(--text); font-weight: 700; }

/* Hero */
.hero { background: var(--grad); color: #fff; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: radial-gradient(800px 320px at 12% -10%, rgba(255,255,255,.22), transparent 60%), radial-gradient(600px 300px at 95% 110%, rgba(255,255,255,.14), transparent 60%); }
.hero-inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(300px, 1fr); gap: 36px; padding: 52px 20px 48px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.3); border-radius: 999px; padding: 5px 12px; margin-bottom: 14px; }
.page-hero .eyebrow { background: var(--primary-soft); color: var(--primary); border-color: transparent; }
.hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.hero h1 em { font-style: normal; color: #fde68a; }
.hero p { color: rgba(255,255,255,.88); font-size: 1.05rem; max-width: 60ch; margin-bottom: 20px; }
.hero-search { display: flex; align-items: center; gap: 8px; background: #fff; border-radius: 16px; padding: 6px 6px 6px 16px; color: #64748b; box-shadow: 0 16px 40px rgba(2,6,23,.3); max-width: 640px; }
.hero-search input { flex: 1; min-width: 0; border: 0; font: inherit; font-size: 1rem; padding: 10px 6px; color: #0f172a; outline: none; }
.hero-results { max-width: 640px; background: #fff; color: #0f172a; border-radius: 14px; margin-top: 8px; box-shadow: var(--shadow-lg); padding: 6px; }
.hero-results[hidden] { display: none; }
.hero-quick { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-top: 16px; font-size: .84rem; color: rgba(255,255,255,.8); }
.hero-quick .chip { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); color: #fff; }
.hero-quick .chip:hover { background: #fff; color: var(--primary); }
.hero-status { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.3); border-radius: 20px; padding: 20px; backdrop-filter: blur(8px); }
.hs-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 10px; }
.hero-status .status-pill { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.4); color: #fff; }
.hero-status.is-open .status-pill { background: rgba(34,197,94,.3); }
.hs-time { font-weight: 800; font-size: 1.3rem; font-variant-numeric: tabular-nums; }
.hs-desc { color: rgba(255,255,255,.88); font-size: .9rem; margin-bottom: 14px; }
.hs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.hs-grid div { background: rgba(2,6,23,.25); border-radius: 12px; padding: 10px 12px; }
.hs-grid span { font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.7); font-weight: 700; display: block; }
.hs-grid strong { font-size: 1.05rem; display: block; }
.hs-grid small { color: rgba(255,255,255,.7); font-size: .74rem; }
.hero-status .btn-ghost { background: #fff; color: var(--primary); border-color: transparent; }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; padding: 34px 20px 30px; gap: 20px; } }

/* Page hero */
.page-hero { background: var(--bg2); border-bottom: 1px solid var(--border); padding: 30px 0 26px; }
.page-hero h1 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin: 12px 0 10px; }
.ph-top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ph-date { color: var(--muted); font-size: .84rem; font-weight: 600; }
.lead { color: var(--text2); font-size: 1rem; max-width: 80ch; }
.plate { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 10px; background: var(--primary-soft); color: var(--primary); font-weight: 800; font-size: .92rem; border: 1px solid rgba(29,78,216,.25); flex-shrink: 0; }
.plate-lg { width: auto; padding: 0 12px; height: 34px; font-size: .9rem; }
.plate-lg::before { content: "PLAKA "; font-size: .66rem; letter-spacing: .06em; margin-right: 4px; opacity: .8; }
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 10px; margin: 18px 0; }
.stat { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 12px 14px; box-shadow: var(--shadow); }
.stat span { font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; display: block; }
.stat strong { font-size: 1.25rem; display: block; color: var(--primary); }
.stat small { color: var(--muted); font-size: .76rem; }
.ph-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* Sections & cards */
.section { padding: 40px 0; }
.section-tight { padding: 22px 0; }
.section-alt { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.section-head h2 { font-size: 1.5rem; font-weight: 800; }
.section-head p { color: var(--muted); margin-top: 4px; }
.section-head.center { justify-content: center; text-align: center; flex-direction: column; align-items: center; }
.section-tools { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.seg { display: inline-flex; background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 3px; }
.seg-btn { border: 0; background: transparent; padding: 7px 12px; border-radius: 9px; font-weight: 700; font-size: .82rem; color: var(--muted); cursor: pointer; }
.seg-btn.is-active { background: var(--card); color: var(--text); box-shadow: var(--shadow); }
.card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); margin-bottom: 18px; }
.card-title { font-size: 1.05rem; font-weight: 800; margin-bottom: 14px; padding-left: 12px; position: relative; }
.card-title::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 4px; border-radius: 4px; background: var(--grad); }
.content h2 { font-size: 1.2rem; margin: 20px 0 8px; } .content h2:first-child { margin-top: 0; }
.content h3 { font-size: 1rem; margin: 16px 0 6px; color: var(--primary); }
.content p, .content li { color: var(--text2); font-size: .95rem; line-height: 1.75; }
.content p { margin-bottom: 10px; }
.content ul { padding-left: 20px; margin: 6px 0 12px; }
.article h2 { padding-top: 6px; }
.two-col { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 22px; align-items: start; }
@media (max-width: 960px) { .two-col { grid-template-columns: 1fr; } }
.link-list { list-style: none; margin: 0; padding: 0; }
.link-list li { padding: 8px 0; border-bottom: 1px dashed var(--border); font-size: .9rem; font-weight: 600; }
.link-list li:last-child { border-bottom: 0; }
.link-list a:hover { color: var(--primary); }
.empty { text-align: center; color: var(--muted); padding: 30px; }
.empty-card { background: var(--card); border: 1px dashed var(--border2); border-radius: var(--radius); padding: 26px; text-align: center; margin-bottom: 14px; }
.empty-card h2 { font-size: 1.15rem; margin-bottom: 8px; } .empty-card p { color: var(--text2); }
.verify-note { margin-top: 18px; background: var(--accent-soft); border: 1px solid rgba(212,160,23,.4); border-radius: 12px; padding: 12px 16px; font-size: .86rem; color: var(--text2); }
.verify-note a { color: var(--primary); font-weight: 700; text-decoration: underline; }

/* City grid */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 10px; }
.city-grid.is-list { grid-template-columns: 1fr; gap: 6px; }
.city-card { display: flex; align-items: center; gap: 12px; background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 12px 14px; transition: .18s; box-shadow: var(--shadow); }
.city-card:hover { transform: translateY(-2px); border-color: var(--primary); }
.city-card[hidden] { display: none; }
.city-info { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.city-name { font-weight: 800; font-size: .98rem; }
.city-meta { font-size: .76rem; color: var(--muted); }
.city-arrow { color: var(--primary); font-weight: 800; }
.region-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 10px; }
.region-card { background: var(--card); border: 1px solid var(--border); border-left: 4px solid var(--primary); border-radius: 14px; padding: 14px 16px; display: flex; flex-direction: column; gap: 2px; transition: .18s; }
.region-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.region-card span { color: var(--muted); font-size: .8rem; }
.region-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }

/* Info & guides */
.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.info-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; box-shadow: var(--shadow); }
.info-icon { font-size: 1.6rem; margin-bottom: 8px; }
.info-card h3 { font-size: 1rem; margin-bottom: 6px; }
.info-card p { color: var(--text2); font-size: .9rem; }
.guide-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 10px; margin-top: 16px; }
.guide-link { display: flex; align-items: center; gap: 12px; background: var(--bg2); border: 1px solid var(--border); border-radius: 14px; padding: 12px 14px; transition: .15s; }
.guide-link:hover { border-color: var(--primary); }
.guide-link strong { display: block; font-size: .9rem; } .guide-link small { color: var(--muted); }
.guide-ico { width: 38px; height: 38px; border-radius: 10px; background: var(--primary-soft); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.guide-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px; }
.guide-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; gap: 10px; box-shadow: var(--shadow); transition: .18s; }
.guide-card:hover { transform: translateY(-3px); border-color: var(--primary); }
.guide-card h2 { font-size: 1.1rem; }
.guide-card p { color: var(--text2); font-size: .9rem; flex: 1; }
.guide-meta { color: var(--primary); font-weight: 700; font-size: .84rem; }
.cta-inline { margin-top: 22px; background: var(--primary-soft); border-radius: 14px; padding: 16px 18px; display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }

/* Today box */
.today-box { background: linear-gradient(120deg, var(--ok-soft), transparent 70%), var(--card); border: 1px solid rgba(22,163,74,.35); border-radius: var(--radius); padding: 16px 18px; }
.today-head { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.today-head span:last-child { color: var(--muted); font-size: .84rem; margin-left: auto; }
.today-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 8px; }
.today-item { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; display: flex; flex-direction: column; }
.today-item b { font-size: .9rem; } .today-item span { color: var(--muted); font-size: .78rem; }
.today-item:hover { border-color: var(--ok); }

/* Filters & list */
.filter-bar { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.filter-group { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-btn { background: var(--card); border: 1px solid var(--border2); color: var(--text2); padding: 7px 13px; border-radius: 999px; font-weight: 600; font-size: .82rem; cursor: pointer; transition: .15s; }
.filter-btn small { color: var(--muted); margin-left: 3px; }
.filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.is-active { background: var(--primary); border-color: var(--primary); color: #fff; }
.filter-btn.is-active small { color: rgba(255,255,255,.8); }
.list-head { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-bottom: 14px; }
.list-head h2 { font-size: 1.35rem; font-weight: 800; }
.list-count { color: var(--muted); font-size: .84rem; font-weight: 600; }
.notary-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; }

/* Notary card */
.notary-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; display: flex; flex-direction: column; gap: 10px; box-shadow: var(--shadow); transition: .18s; position: relative; }
.notary-card:hover { transform: translateY(-3px); border-color: var(--primary); box-shadow: var(--shadow-lg); }
.notary-card[hidden] { display: none; }
.notary-card.is-today { border-color: rgba(22,163,74,.5); }
.notary-card.is-today::before { content: "BUGÜN NÖBETÇİ"; position: absolute; top: -10px; right: 14px; background: var(--ok); color: #fff; font-size: .62rem; font-weight: 800; letter-spacing: .08em; padding: 3px 9px; border-radius: 999px; }
.nc-head { display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
.nc-district { display: inline-flex; align-items: center; gap: 5px; background: var(--primary-soft); color: var(--primary); border-radius: 8px; padding: 4px 9px; font-size: .74rem; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.nc-day { font-size: .72rem; font-weight: 800; padding: 4px 9px; border-radius: 8px; }
.nc-day.is-saturday { background: var(--accent-soft); color: var(--warn); }
.nc-day.is-sunday { background: var(--sun-soft); color: var(--sun); }
.nc-name { font-size: 1.1rem; font-weight: 800; }
.nc-address { font-style: normal; color: var(--text2); font-size: .9rem; padding-left: 22px; position: relative; }
.nc-address::before { content: "📍"; position: absolute; left: 0; top: 0; font-size: .9rem; }
.nc-hours { background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; font-size: .84rem; display: grid; gap: 4px; }
.nc-hours div { display: flex; justify-content: space-between; gap: 10px; }
.nc-hours span { color: var(--muted); } .nc-hours strong.ok { color: var(--ok); }
.nc-notes { color: var(--muted); font-size: .8rem; }
.nc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: auto; padding-top: 8px; border-top: 1px solid var(--border); }
.nc-tools { display: flex; gap: 14px; justify-content: flex-end; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 0 16px; }
.faq-item summary { cursor: pointer; padding: 13px 0; font-weight: 700; font-size: .95rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-weight: 900; color: var(--primary); font-size: 1.2rem; }
.faq-item[open] summary::after { content: "–"; }
.faq-a { padding: 0 0 14px; color: var(--text2); font-size: .9rem; line-height: 1.7; }

/* Sidebar bits */
.cal { display: grid; gap: 8px; }
.cal-item { background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; display: grid; }
.cal-item span { font-size: .68rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
.cal-item strong { font-size: 1.05rem; } .cal-item small { color: var(--muted); font-size: .76rem; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; margin: 14px 0; }
.contact-box { background: var(--bg3); border: 1px solid var(--border); border-radius: 12px; padding: 12px 14px; display: grid; gap: 2px; }
.contact-box span { font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 700; }
.contact-box a { color: var(--primary); font-weight: 700; }
.e404 { font-size: 5rem; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1; margin-bottom: 8px; }
.center h1 { font-size: 1.6rem; margin-bottom: 10px; }

/* Footer */
.site-footer { background: #0b1120; color: #a5b4c8; margin-top: 30px; padding: 46px 0 22px; border-top: 4px solid transparent; border-image: var(--grad) 1; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 34px; margin-bottom: 28px; }
.footer-logo { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 1.1rem; margin-bottom: 12px; }
.footer-logo .brand-icon { width: 36px; height: 36px; }
.footer-brand p { font-size: .88rem; line-height: 1.65; margin-bottom: 12px; }
.footer-note { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 10px 12px; font-size: .76rem; line-height: 1.5; color: #8b98b0; }
.footer-note strong { color: #e2e8f0; }
.footer-updated { margin-top: 10px; font-size: .76rem; color: #6b7590; }
.footer-col h3 { color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px; }
.footer-col h3.mt { margin-top: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 7px; font-size: .88rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; font-size: .78rem; color: #6b7590; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badges span { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 999px; padding: 4px 10px; }
@media (max-width: 960px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* Mobile CTA & to-top */
.mobile-cta { display: none; }
.to-top { position: fixed; right: 18px; bottom: 18px; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border2); background: var(--card); color: var(--text); font-weight: 800; cursor: pointer; box-shadow: var(--shadow-lg); opacity: 0; transform: translateY(10px); transition: .25s; z-index: 800; }
.to-top.show { opacity: 1; transform: none; }
@media (max-width: 768px) {
	body { padding-bottom: 72px; font-size: 15px; }
	.mobile-cta { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; position: fixed; left: 0; right: 0; bottom: 0; padding: 10px 12px calc(10px + env(safe-area-inset-bottom)); background: color-mix(in srgb, var(--bg2) 92%, transparent); backdrop-filter: blur(12px); border-top: 1px solid var(--border); z-index: 850; }
	.to-top { bottom: 82px; right: 12px; }
	.notary-grid { grid-template-columns: 1fr; }
	.nc-tools { justify-content: space-between; }
	.stat-row { grid-template-columns: 1fr 1fr; }
	.section { padding: 28px 0; }
	.section-head h2 { font-size: 1.25rem; }
	.hero-search { padding-left: 12px; } .hero-search .btn { padding: 10px 14px; }
	.cta-inline { flex-direction: column; align-items: flex-start; }
}
@media print {
	.topbar, .site-header, .site-footer, .mobile-cta, .to-top, .filter-bar, .ph-actions, .nc-tools, .breadcrumb-bar, .sidebar { display: none !important; }
	body { background: #fff; color: #000; }
	.notary-card { break-inside: avoid; box-shadow: none; }
}
