*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --blue: #2563EB;
    --blue-hover: #3B82F6;
    --blue-dark: #1D4ED8;
    --indigo: #4F46E5;
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-300: #93c5fd;
    --navy: #0F2349;
    --navy-light: #1B3A6E;
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-900: #0f172a;
    --red: #2563EB;
    --red-dark: #1D4ED8;
    --red-light: #eff6ff;
    --grad: linear-gradient(135deg, #2563EB, #4F46E5);
    --radius: 12px;
    --radius-lg: 16px;
    --shadow: 0 1px 3px rgba(15,23,42,.06), 0 4px 16px rgba(15,23,42,.05);
    --shadow-lg: 0 8px 30px rgba(15,23,42,.10);
    --shadow-blue: 0 4px 14px rgba(37,99,235,.25);
}

body { font-family: 'Inter', sans-serif; color: var(--slate-700); background: var(--slate-50); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* HEADER */
.site-header { background: rgba(255,255,255,.95); backdrop-filter: blur(8px); border-bottom: 1px solid rgba(226,232,240,.7); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; gap: 32px; height: 68px; }
.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-mark { width: 36px; height: 36px; border-radius: 12px; background: var(--grad); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-blue); flex-shrink: 0; }
.logo-mark svg { width: 18px; height: 18px; }
.logo-text { line-height: 1.1; }
.logo-title { font-weight: 800; font-size: 1.15rem; letter-spacing: -.02em; color: var(--slate-900); }
.logo-title span { color: var(--blue); }
.logo-sub { font-size: .62rem; font-weight: 500; color: var(--slate-400); letter-spacing: .03em; margin-top: 2px; }
.main-nav { display: flex; align-items: center; gap: 26px; margin-left: auto; margin-right: 8px; }
.main-nav a { position: relative; padding: 6px 0; font-size: .9rem; font-weight: 500; color: var(--slate-700); transition: color .2s; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; border-radius: 2px; background: var(--blue); transition: width .3s; }
.main-nav a:hover { color: var(--blue-dark); }
.main-nav a:hover::after { width: 100%; }
.header-cta { display: inline-flex; align-items: center; gap: 8px; height: 36px; padding: 0 16px; border-radius: 8px; background: var(--grad); color: var(--white); font-size: .875rem; font-weight: 600; box-shadow: var(--shadow-blue); transition: filter .2s; flex-shrink: 0; }
.header-cta:hover { filter: brightness(1.1); }
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--slate-700); border-radius: 2px; transition: all .2s; }
.mobile-nav { display: none; flex-direction: column; padding: 12px 0 16px; border-top: 1px solid var(--slate-100); }
.mobile-nav a { padding: 10px 4px; font-size: .95rem; font-weight: 500; color: var(--slate-600); border-bottom: 1px solid var(--slate-100); }
.mobile-nav.open { display: flex; }

/* BREADCRUMB */
.breadcrumb-bar { background: var(--white); border-bottom: 1px solid var(--slate-200); }
.breadcrumb { display: flex; align-items: center; gap: 6px; padding: 10px 0; font-size: .85rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { color: var(--slate-400); }

/* HERO */
.hero { position: relative; overflow: hidden; background: radial-gradient(120% 100% at 50% 0%, #eff6ff 0%, #f8fafc 45%, #ffffff 100%); padding: 72px 0 60px; text-align: center; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(#cbd5e1 1px, transparent 1px); background-size: 22px 22px; opacity: .5; -webkit-mask-image: radial-gradient(120% 80% at 50% 0%, black 0%, transparent 70%); mask-image: radial-gradient(120% 80% at 50% 0%, black 0%, transparent 70%); }
.hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 7px 16px; margin-bottom: 24px; background: var(--white); border: 1px solid var(--blue-100); box-shadow: var(--shadow); font-size: .75rem; font-weight: 600; color: var(--slate-600); letter-spacing: .02em; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 999px; background: #22c55e; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.hero h1 { font-size: 3.2rem; font-weight: 900; line-height: 1.08; letter-spacing: -.03em; color: var(--slate-900); margin-bottom: 18px; max-width: 760px; }
.hero h1 span { background: linear-gradient(90deg, #2563EB, #4F46E5); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.hero p { font-size: 1.05rem; color: var(--slate-500); margin-bottom: 34px; max-width: 560px; }

/* HERO SEARCH CARD */
.hero-search { display: flex; align-items: center; gap: 10px; width: 100%; max-width: 620px; margin: 0 auto; background: var(--white); border: 1px solid var(--slate-200); border-radius: 9999px; padding: 6px 6px 6px 22px; box-shadow: 0 20px 45px rgba(148,163,184,.28); transition: border-color .2s, box-shadow .2s; }
.hero-search:focus-within { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(37,99,235,.12), 0 20px 45px rgba(148,163,184,.28); }
.hero-search .ara-ikon { width: 19px; height: 19px; flex: none; color: var(--slate-400); }
.hero-search input { flex: 1; min-width: 0; height: 50px; border: none; outline: none; background: none; font-size: .95rem; font-family: inherit; color: var(--slate-800); }
.hero-search input::placeholder { color: var(--slate-400); }
.hero-search input::-webkit-search-cancel-button { display: none; }
.hero-search-btn { flex: none; display: inline-flex; align-items: center; gap: 7px; height: 46px; padding: 0 24px; border: none; border-radius: 9999px; background: linear-gradient(135deg, #2563eb, #1e40af); color: #fff; font-size: .9rem; font-weight: 600; font-family: inherit; cursor: pointer; transition: opacity .2s, transform .2s; }
.hero-search-btn svg { width: 16px; height: 16px; }
.hero-search-btn:hover { opacity: .92; }
.hero-search-btn:active { transform: scale(.97); }

/* QUICK PILLS */
.quick-pills { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; margin-top: 24px; }
.quick-pills .lbl { font-size: .75rem; color: var(--slate-400); font-weight: 500; }
.pill { font-size: .75rem; font-weight: 500; padding: 6px 14px; border-radius: 999px; background: var(--white); color: var(--slate-600); border: 1px solid var(--slate-200); box-shadow: var(--shadow); transition: all .2s; }
.pill:hover { color: var(--blue-dark); border-color: var(--blue-300); background: var(--blue-50); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 11px 22px; border-radius: 12px; font-weight: 700; font-size: .875rem; cursor: pointer; border: none; font-family: inherit; transition: all .2s; }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-hover); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* STATS BAND */
.stats-section { background: var(--white); border-top: 1px solid var(--slate-100); border-bottom: 1px solid var(--slate-100); padding: 40px 0; color: inherit; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-item { display: flex; align-items: center; gap: 14px; padding: 18px 20px; border: 1px solid var(--slate-100); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow); text-align: left; }
.stat-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; flex-shrink: 0; }
.stat-icon.blue   { background: var(--blue-50); }
.stat-icon.indigo { background: #eef2ff; }
.stat-icon.sky    { background: #f0f9ff; }
.stat-icon.violet { background: #f5f3ff; }
.stat-item > div:last-child { min-width: 0; }
.stat-item .num { font-size: 1.5rem; font-weight: 800; color: var(--slate-900); display: block; line-height: 1.2; }
.stat-item .lbl { font-size: .8rem; color: var(--slate-500); white-space: nowrap; }

/* SECTIONS */
.section { padding: 64px 0; }
.section-alt { background: var(--white); }
.section-eyebrow { font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .15em; color: var(--blue); margin-bottom: 6px; }
.section-title { font-size: 1.55rem; font-weight: 700; color: var(--slate-900); margin-bottom: 8px; letter-spacing: -.01em; }
.section-sub { color: var(--slate-500); margin-bottom: 32px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 28px; flex-wrap: wrap; }
.section-head .section-title { margin-bottom: 0; }
.see-all { display: inline-flex; align-items: center; gap: 6px; font-size: .875rem; font-weight: 600; color: var(--blue); transition: color .2s; }
.see-all:hover { color: var(--blue-dark); }

/* POPULAR CITIES */
.cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.city-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); transition: all .3s; display: block; }
.city-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.city-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.city-card:hover img { transform: scale(1.05); }
.city-card .city-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,.2) 55%, transparent); }
.city-card .plaka-badge { position: absolute; top: 10px; right: 10px; background: rgba(0,0,0,.4); backdrop-filter: blur(4px); color: var(--white); font-size: .65rem; font-weight: 700; padding: 3px 8px; border-radius: 8px; border: 1px solid rgba(255,255,255,.2); }
.city-card .city-name { position: absolute; bottom: 0; left: 0; right: 0; padding: 12px 14px; }
.city-card .city-name h3 { font-size: .9rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.city-card .city-name span { font-size: .7rem; color: var(--blue-300); }

/* QUICK LINKS */
.quick-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 24px; }
.quick-link { display: flex; align-items: center; gap: 14px; padding: 20px; background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius); transition: all .2s; }
.quick-link:hover { border-color: var(--blue-300); box-shadow: var(--shadow-lg); transform: translateY(-1px); }
.quick-link-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--blue-50); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.3rem; }
.quick-link h3 { font-size: .9rem; font-weight: 600; color: var(--slate-900); }
.quick-link p { font-size: .8rem; color: var(--slate-500); }

/* HOW IT WORKS */
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 820px; margin: 0 auto; }
.how-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.how-icon { position: relative; width: 56px; height: 56px; border-radius: var(--radius-lg); background: var(--blue-50); border: 2px solid var(--blue-100); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 16px; }
.how-icon .step-num { position: absolute; top: -8px; right: -8px; width: 20px; height: 20px; background: var(--blue); color: var(--white); font-size: .65rem; font-weight: 900; border-radius: 999px; display: flex; align-items: center; justify-content: center; }
.how-step h3 { font-size: 1rem; font-weight: 700; color: var(--slate-900); margin-bottom: 6px; }
.how-step p { font-size: .875rem; color: var(--slate-500); }

/* IL LIST (district-grid) */
.district-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.district-item { display: flex; align-items: center; gap: 12px; padding: 13px 16px; background: var(--white); border: 1px solid var(--slate-200); border-radius: 12px; font-size: .9rem; font-weight: 600; color: var(--slate-800); transition: all .2s; text-align: left; }
.district-item:hover { border-color: var(--blue-300); box-shadow: var(--shadow-lg); transform: translateY(-1px); color: var(--blue-dark); }
.district-item .plaka { width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; transition: background .2s; }
.district-item:hover .plaka { background: var(--blue); }

/* CARDS */
.card { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); }
.card-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.card-title { font-size: 1.1rem; font-weight: 700; color: var(--slate-900); }
.card-header-navy { background: linear-gradient(135deg, var(--navy), var(--navy-light)); margin: -24px -24px 20px; padding: 20px 24px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; color: var(--white); }
.card-header-navy .card-title { color: var(--white); }
.card-header-navy p { font-size: .75rem; color: rgba(147,197,253,.8); }

/* INFO GRID */
.info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin-bottom: 24px; }
.info-item { background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: 10px; padding: 12px 16px; }
.info-item label { display: block; font-size: .75rem; color: var(--slate-500); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px; }
.info-item span { font-size: 1rem; font-weight: 600; color: var(--slate-900); }

/* TAGS / BADGES */
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { display: inline-block; padding: 5px 12px; background: var(--slate-100); border: 1px solid var(--slate-200); border-radius: 8px; font-size: .85rem; color: var(--slate-700); transition: all .2s; }
.tag:hover { background: var(--blue-50); border-color: var(--blue-300); color: var(--blue-dark); }
.tag-code { font-family: monospace; font-size: .9rem; background: var(--navy); color: var(--white); border-color: var(--navy); }
.tag-code:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* TABLE */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--slate-200); background: var(--white); }
table { width: 100%; border-collapse: collapse; }
th { background: var(--slate-50); padding: 10px 16px; text-align: left; font-size: .8rem; font-weight: 600; color: var(--slate-500); text-transform: uppercase; letter-spacing: .05em; border-bottom: 1px solid var(--slate-200); }
td { padding: 12px 16px; font-size: .9rem; border-bottom: 1px solid var(--slate-100); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--slate-50); }
td a { color: var(--blue); font-weight: 500; }
td a:hover { text-decoration: underline; }

/* PAGE HEADER */
.page-hero { background: var(--white); border-bottom: 1px solid var(--slate-200); padding: 36px 0 32px; }
.page-hero h1 { font-size: 1.9rem; font-weight: 800; letter-spacing: -.02em; color: var(--slate-900); margin-bottom: 8px; }
.page-hero p { color: var(--slate-500); max-width: 600px; }
.page-hero-meta { display: flex; gap: 24px; margin-top: 16px; flex-wrap: wrap; }
.page-hero-meta-item { display: flex; flex-direction: column; }
.page-hero-meta-item label { font-size: .75rem; color: var(--slate-400); text-transform: uppercase; letter-spacing: .05em; }
.page-hero-meta-item span { font-size: 1.1rem; font-weight: 700; color: var(--slate-900); }
.page-hero-img { width: 100%; max-height: 220px; object-fit: cover; border-radius: var(--radius); margin-top: 24px; }

/* DETAIL LAYOUT */
.detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 28px; padding: 36px 0; }
@media(max-width: 900px){ .detail-layout { grid-template-columns: 1fr; } }

/* MAP BOX */
.map-box { background: var(--slate-200); border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; color: var(--slate-500); font-size: .9rem; }
.map-box iframe { width: 100%; height: 100%; border: none; }

/* SEARCH FORM (inner pages) */
.search-section { background: var(--white); border-bottom: 1px solid var(--slate-200); padding: 28px 0; }
.search-tabs { display: flex; gap: 4px; margin-bottom: 20px; background: var(--slate-100); border-radius: 10px; padding: 4px; width: fit-content; }
.search-tab { padding: 8px 16px; border-radius: 8px; font-size: .9rem; font-weight: 500; cursor: pointer; border: none; background: none; color: var(--slate-600); transition: all .2s; font-family: inherit; }
.search-tab.active { background: var(--white); color: var(--blue-dark); box-shadow: var(--shadow); }
.search-form { display: flex; gap: 12px; flex-wrap: wrap; align-items: flex-end; }
.form-group { display: flex; flex-direction: column; gap: 6px; flex: 1; min-width: 180px; }
.form-group label { font-size: .85rem; font-weight: 500; color: var(--slate-700); }
.form-control { padding: 10px 14px; border: 1px solid var(--slate-300); border-radius: 10px; font-size: .95rem; font-family: inherit; outline: none; transition: all .2s; background: var(--white); }
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
select.form-control { cursor: pointer; }

/* RESULTS */
.results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 8px; flex-wrap: wrap; }
.results-header h2 { overflow-wrap: anywhere; min-width: 0; }
.results-count { font-size: .9rem; color: var(--slate-500); }
.pager { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.btn-outline { background: var(--white); color: var(--blue); border: 1px solid var(--slate-200); }
.btn-outline:hover { border-color: var(--blue); background: var(--blue-50); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-info-icon { width: 40px; height: 40px; background: var(--blue-50); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.contact-info-item h4 { font-weight: 600; font-size: .9rem; color: var(--slate-900); margin-bottom: 2px; }
.contact-info-item p { font-size: .9rem; color: var(--slate-500); }

/* ABOUT */
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 36px 0; }
.about-stat { text-align: center; padding: 24px; background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius); }
.about-stat .n { font-size: 2rem; font-weight: 800; color: var(--blue); }
.about-stat .l { font-size: .85rem; color: var(--slate-500); }

/* FOOTER */
.site-footer { background: var(--white); border-top: 1px solid rgba(226,232,240,.7); color: var(--slate-600); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1fr 1.3fr; gap: 32px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: .875rem; line-height: 1.7; color: var(--slate-500); max-width: 300px; }
.footer-links h4 { font-size: .75rem; font-weight: 700; color: var(--slate-400); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .12em; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .875rem; color: var(--slate-600); transition: color .2s; }
.footer-links a:hover { color: var(--blue-dark); }
.footer-contact h4 { font-size: .75rem; font-weight: 700; color: var(--slate-400); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .12em; }
.footer-contact p { font-size: .875rem; color: var(--slate-500); margin-bottom: 8px; }
.footer-bottom { border-top: 1px solid rgba(226,232,240,.7); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; font-size: .8rem; color: var(--slate-400); flex-wrap: wrap; gap: 12px; }
.footer-bottom nav { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom nav a { color: var(--slate-400); }
.footer-bottom nav a:hover { color: var(--slate-700); }

/* ALERT / NOTICE */
.notice { padding: 14px 18px; border-radius: 10px; font-size: .9rem; margin-bottom: 20px; }
.notice-info { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }

/* PAGINATION */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 8px 12px; border: 1px solid var(--slate-200); border-radius: 8px; font-size: .875rem; min-width: 36px; text-align: center; color: var(--slate-700); background: var(--white); }
.pagination a:hover { background: var(--blue-50); border-color: var(--blue-300); color: var(--blue-dark); }
.pagination .current { background: var(--blue); border-color: var(--blue); color: var(--white); }

/* HIGHLIGHT SEARCH */
.highlight { background: #fef3c7; padding: 0 2px; border-radius: 3px; }

/* RESPONSIVE */
@media(max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .cities-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width: 768px) {
    .hero { padding: 48px 0 44px; }
    .hero h1 { font-size: 2.1rem; }
    .quick-links { grid-template-columns: 1fr; }
    .main-nav, .header-cta { display: none; }
    .menu-toggle { display: flex; }
    .contact-grid { grid-template-columns: 1fr; }
    .district-grid { grid-template-columns: repeat(2, 1fr); }
    .cities-grid { grid-template-columns: repeat(2, 1fr); }
    .how-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media(max-width: 560px) {
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .stat-item { flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 16px 8px; }
    .stat-icon { width: 38px; height: 38px; border-radius: 10px; font-size: 1.05rem; }
    .stat-item .num { font-size: 1.2rem; }
    .stat-item .lbl { font-size: .72rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .about-stats { grid-template-columns: repeat(2, 1fr); }
    .district-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 1.75rem; }
    .hero-search { padding-left: 14px; gap: 6px; }
    .hero-search input { height: 46px; font-size: .9rem; }
    .hero-search-btn { height: 42px; padding: 0 16px; }
    .hero-search-btn svg { display: none; }
    .results-header { flex-direction: column; align-items: flex-start; gap: 4px; }
    .results-header h2 { font-size: .95rem !important; }
    th { padding: 7px 8px; font-size: .64rem; letter-spacing: .02em; }
    td { padding: 8px; font-size: .78rem; }
    td a { overflow-wrap: break-word; }
    td:first-child { white-space: nowrap; }
    .pager .btn { width: 100%; }
}

/* Mobil yatay taşma koruması */
html, body { overflow-x: clip; }
img { max-width: 100%; height: auto; }

/* ==========================================================
   DETAY SAYFALARI (il / ilçe / mahalle) — React ile birebir
   ========================================================== */

/* Lacivert immersive hero */
.detail-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #24509b 100%); color: var(--white); padding: 52px 0 96px; }
.detail-hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(147,197,253,.35) 1px, transparent 1px); background-size: 24px 24px; opacity: .35; }
.detail-hero-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.detail-hero-badge { display: inline-flex; align-items: center; gap: 8px; border-radius: 999px; padding: 6px 14px; margin-bottom: 16px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--blue-300); }
.detail-hero h1 { font-size: 2.4rem; font-weight: 900; letter-spacing: -.02em; line-height: 1.1; margin-bottom: 12px; color: var(--white); }
.detail-hero .detail-hero-sub { font-size: 1rem; color: rgba(219,234,254,.85); max-width: 640px; }
.detail-hero-img { flex-shrink: 0; width: 300px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.2); box-shadow: 0 20px 40px rgba(0,0,0,.3); }
.detail-hero-img img { display: block; width: 100%; height: 190px; object-fit: cover; }
.detail-hero-crumb { position: relative; z-index: 1; display: flex; align-items: center; gap: 6px; font-size: .8rem; color: rgba(191,219,254,.75); margin-bottom: 24px; flex-wrap: wrap; }
.detail-hero-crumb a { color: rgba(219,234,254,.9); }
.detail-hero-crumb a:hover { color: var(--white); text-decoration: underline; }
.detail-hero-crumb .sep { color: rgba(147,197,253,.5); }

/* Hero altına taşan istatistik kartları */
.stat-cards { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: -52px; }
.stat-card { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 18px 20px; }
.stat-card .ico { width: 38px; height: 38px; border-radius: 10px; background: var(--blue-50); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; margin-bottom: 10px; }
.stat-card .num { display: block; font-size: 1.35rem; font-weight: 800; color: var(--slate-900); line-height: 1.2; }
.stat-card .lbl { font-size: .75rem; color: var(--slate-500); font-weight: 500; }

/* Lacivert bilgi kartı (Posta Kodu Kaçtır?) */
.navy-card { background: linear-gradient(135deg, var(--navy), var(--navy-light)); border-radius: var(--radius-lg); padding: 28px; color: var(--white); box-shadow: var(--shadow-lg); }
.navy-card h2, .navy-card h3 { color: var(--white); font-size: 1.15rem; font-weight: 800; margin-bottom: 10px; }
.navy-card p { font-size: .9rem; color: rgba(219,234,254,.85); line-height: 1.7; }
.navy-card .kod-vurgu { display: inline-block; font-family: monospace; font-weight: 800; font-size: 1.05rem; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); border-radius: 8px; padding: 2px 10px; color: #93c5fd; }

/* Gradient üst-bağlantı kartı (il/ilçe'ye dön) */
.grad-link { display: flex; align-items: center; justify-content: space-between; gap: 16px; background: var(--grad); border-radius: var(--radius-lg); padding: 22px 26px; color: var(--white); box-shadow: var(--shadow-blue); transition: filter .2s, transform .2s; }
.grad-link:hover { filter: brightness(1.08); transform: translateY(-2px); }
.grad-link .t { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: rgba(219,234,254,.8); margin-bottom: 2px; }
.grad-link .n { font-size: 1.15rem; font-weight: 800; }
.grad-link .arrow { font-size: 1.4rem; flex-shrink: 0; }

/* Kopyalanabilir posta kodu kartları */
.code-hero { background: var(--white); border: 2px solid var(--blue-100); border-radius: var(--radius-lg); padding: 28px; text-align: center; box-shadow: var(--shadow-lg); }
.code-hero .lbl { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; color: var(--slate-400); margin-bottom: 8px; }
.code-hero .kod { font-family: monospace; font-size: 3rem; font-weight: 900; letter-spacing: .1em; color: var(--navy); line-height: 1.1; }
.code-hero .btn { margin-top: 14px; }
.code-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; }
.code-chip { display: flex; align-items: center; justify-content: space-between; gap: 8px; background: var(--white); border: 1px solid var(--slate-200); border-radius: 12px; padding: 12px 14px; cursor: pointer; transition: all .2s; font-family: inherit; }
.code-chip:hover { border-color: var(--blue-300); box-shadow: var(--shadow); }
.code-chip .kod { font-family: monospace; font-weight: 800; font-size: 1rem; color: var(--slate-900); }
.code-chip .cpy { font-size: .68rem; font-weight: 600; color: var(--blue); }
.code-chip.copied { border-color: #22c55e; background: #f0fdf4; }
.code-chip.copied .cpy { color: #16a34a; }

/* SSS Akordeon */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--white); border: 1px solid var(--slate-200); border-radius: var(--radius); overflow: hidden; }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 12px; width: 100%; padding: 16px 20px; background: none; border: none; cursor: pointer; font-family: inherit; font-size: .95rem; font-weight: 600; color: var(--slate-900); text-align: left; }
.faq-q .chev { flex-shrink: 0; transition: transform .25s; color: var(--slate-400); }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 18px; font-size: .9rem; color: var(--slate-600); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* Daha fazla göster */
.show-more-wrap { text-align: center; margin-top: 18px; }
.btn-more { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: 12px; border: 1px solid var(--slate-300); background: var(--white); color: var(--slate-700); font-weight: 600; font-size: .875rem; cursor: pointer; font-family: inherit; transition: all .2s; }
.btn-more:hover { border-color: var(--blue-300); color: var(--blue-dark); background: var(--blue-50); }
.gizli { display: none !important; }

/* İl filtre kutusu */
.filter-wrap { position: relative; max-width: 420px; margin-bottom: 26px; }
.filter-wrap svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--slate-400); }
.filter-wrap input { width: 100%; height: 46px; padding: 0 16px 0 42px; font-size: .9rem; font-family: inherit; background: var(--white); border: 1px solid var(--slate-200); border-radius: 12px; outline: none; color: var(--slate-800); transition: all .2s; box-shadow: var(--shadow); }
.filter-wrap input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }

/* Adres sihirbazı (stepper) */
.stepper { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 32px; flex-wrap: wrap; }
.step { display: flex; align-items: center; gap: 10px; }
.step .dot-num { width: 34px; height: 34px; border-radius: 999px; background: var(--slate-100); border: 2px solid var(--slate-200); color: var(--slate-500); font-size: .8rem; font-weight: 800; display: flex; align-items: center; justify-content: center; transition: all .25s; }
.step.active .dot-num { background: var(--blue); border-color: var(--blue); color: var(--white); box-shadow: var(--shadow-blue); }
.step.done .dot-num { background: #22c55e; border-color: #22c55e; color: var(--white); }
.step .step-lbl { font-size: .82rem; font-weight: 600; color: var(--slate-500); }
.step.active .step-lbl { color: var(--slate-900); }
.step-line { width: 48px; height: 2px; background: var(--slate-200); margin: 0 12px; }
.step-line.done { background: #22c55e; }
.adres-card { max-width: 720px; margin: 0 auto; }
.adres-sonuc { margin-top: 24px; }

@media(max-width: 900px) {
    .detail-hero-img { display: none; }
    .stat-cards { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 560px) {
    .detail-hero h1 { font-size: 1.7rem; }
    .stat-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
    .step-line { width: 20px; margin: 0 6px; }
    .step .step-lbl { display: none; }
    .code-hero .kod { font-size: 2.2rem; }
}

/* ================================================================
   REACT-PARİTE DETAY SAYFALARI (il / ilçe / mahalle)
   ================================================================ */
.dwrap { max-width: 1024px; margin: 0 auto; padding-left: 16px; padding-right: 16px; }
@media (min-width: 768px) { .dwrap { padding-left: 32px; padding-right: 32px; } }

/* --- Immersive hero --- */
.dhero { position: relative; overflow: hidden; }
.dhero-bg { position: absolute; inset: 0; }
.dhero-bg img { width: 100%; height: 100%; object-fit: cover; }
.dhero-grad { width: 100%; height: 100%; background: linear-gradient(135deg, #0b1e3f 0%, #1e3a8a 55%, #4338ca 100%); }
.dhero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(11,30,63,.92) 0%, rgba(11,30,63,.72) 45%, rgba(30,58,138,.35) 100%); }
.dhero-overlay.img { background: linear-gradient(105deg, rgba(11,30,63,.94) 0%, rgba(11,30,63,.80) 42%, rgba(30,58,138,.45) 100%); }
.dhero-dots { position: absolute; inset: 0; opacity: .15; pointer-events: none; background-image: radial-gradient(#fff 1px, transparent 1px); background-size: 26px 26px; }
.dhero-in { position: relative; z-index: 10; padding-top: 32px; padding-bottom: 112px; }
@media (min-width: 768px) { .dhero-in { padding-top: 40px; padding-bottom: 128px; } }
.dcrumb { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; font-size: .875rem; color: rgba(239,246,255,.9); margin-bottom: 40px; }
.dcrumb a { color: inherit; text-decoration: none; transition: color .15s; }
.dcrumb a:hover { color: #fff; }
.dcrumb svg { color: rgba(191,219,254,.5); flex-shrink: 0; }
.dcrumb .cur { color: #fff; font-weight: 500; }
.dhero-max { max-width: 42rem; }
.dhero-badges { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.dplaka { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.125rem; font-weight: 900; background: linear-gradient(135deg, rgba(37,99,235,.9), rgba(67,56,202,.9)); box-shadow: 0 20px 25px -5px rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.25); }
.dpill { padding: 6px 12px; border-radius: 9999px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: #eff6ff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); }
.dhero-title { font-size: 2.25rem; font-weight: 900; letter-spacing: -.025em; color: #fff; line-height: 1.05; }
.dhero-title .sub { display: block; color: rgba(191,219,254,.9); font-size: 1.5rem; font-weight: 700; margin-top: 4px; }
@media (min-width: 768px) { .dhero-title { font-size: 3.75rem; } .dhero-title .sub { font-size: 1.875rem; } }
.dhero-desc { color: rgba(239,246,255,.8); font-size: .875rem; margin-top: 20px; line-height: 1.65; max-width: 36rem; }
@media (min-width: 768px) { .dhero-desc { font-size: 1rem; } }
.dhero-desc strong { color: #fff; font-weight: 600; }
.dhero-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 80px; background: linear-gradient(to top, rgba(248,250,252,.5), transparent); pointer-events: none; }

/* --- Overlap istatistik kartları --- */
.dstats-wrap { position: relative; z-index: 20; margin-top: -80px; }
@media (min-width: 768px) { .dstats-wrap { margin-top: -96px; } }
.dstats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (min-width: 768px) { .dstats { grid-template-columns: repeat(4, 1fr); } }
.dstat { display: block; height: 100%; background: #fff; border: 1px solid #f1f5f9; border-radius: 16px; padding: 20px; box-shadow: 0 20px 25px -5px rgba(15,23,42,.06), 0 8px 10px -6px rgba(15,23,42,.04); transition: all .3s; text-decoration: none; color: inherit; }
.dstat:hover { transform: translateY(-4px); box-shadow: 0 25px 50px -12px rgba(30,58,138,.1); }
a.dstat:hover { border-color: #bfdbfe; }
.dstat-ico { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.ico-blue { background: #eff6ff; color: #2563eb; }
.ico-indigo { background: #eef2ff; color: #4f46e5; }
.ico-sky { background: #f0f9ff; color: #0284c7; }
.ico-violet { background: #f5f3ff; color: #7c3aed; }
.dstat-lbl { font-size: 11px; color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.dstat-val { font-size: 1.875rem; font-weight: 900; color: #0f172a; margin-top: 4px; letter-spacing: -.025em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dstat-val.sm { font-size: 1.25rem; }
@media (min-width: 768px) { .dstat-val.sm { font-size: 1.5rem; } }

/* --- Gövde & bölüm başlıkları --- */
.dbody { padding-top: 56px; padding-bottom: 56px; }
.eyebrow { font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: #2563eb; margin-bottom: 4px; }
.sec-title { font-size: 1.5rem; font-weight: 700; color: #0f172a; letter-spacing: -.025em; }
@media (min-width: 768px) { .sec-title { font-size: 1.875rem; } }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 24px; gap: 12px; }
.sec-count { font-size: .875rem; color: #94a3b8; font-weight: 500; flex-shrink: 0; }
.dsec { margin-bottom: 64px; }
.dsec-mt { margin-top: 80px; }
.dsec-mt16 { margin-top: 64px; }

/* --- Öne çıkan posta kodu kartı --- */
.pk-hero { border-radius: 24px; border: 1px solid #dbeafe; background: linear-gradient(to bottom right, #eff6ff, rgba(238,242,255,.6)); padding: 24px; }
@media (min-width: 768px) { .pk-hero { padding: 32px; } }
.pk-hero-in { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.pk-hero .lbl { font-size: 11px; color: rgba(37,99,235,.8); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.pk-hero .kod { font-size: 2.25rem; font-weight: 900; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; color: #0f172a; }
@media (min-width: 768px) { .pk-hero .kod { font-size: 3rem; } }
.pk-hero .kod.rng { font-size: 1.875rem; }
@media (min-width: 768px) { .pk-hero .kod.rng { font-size: 2.25rem; } }
.pk-hero .alt { font-size: .875rem; color: #64748b; margin-top: 10px; display: flex; align-items: center; gap: 6px; }
.pk-hero .alt svg { color: #3b82f6; }
.btn-copy { display: inline-flex; align-items: center; gap: 6px; padding: 12px 20px; border-radius: 12px; background: #fff; border: 1px solid #bfdbfe; color: #1d4ed8; font-size: .875rem; font-weight: 700; box-shadow: 0 1px 2px rgba(0,0,0,.05); cursor: pointer; transition: all .15s; flex-shrink: 0; font-family: inherit; }
.btn-copy:hover { background: #2563eb; color: #fff; border-color: #2563eb; }
.btn-copy:active { transform: scale(.95); }

/* --- Bağlı il / ilçe gradient kartı --- */
.grad-hero { display: block; border-radius: 24px; padding: 24px; color: #fff; position: relative; overflow: hidden; text-decoration: none; background: linear-gradient(135deg, #2563EB, #4F46E5); box-shadow: 0 10px 15px -3px rgba(30,58,138,.1); }
@media (min-width: 768px) { .grad-hero { padding: 28px; } }
.grad-hero .wm { position: absolute; right: -24px; bottom: -32px; opacity: .15; }
.grad-hero-in { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.grad-hero-l { display: flex; align-items: center; gap: 16px; }
.grad-hero .plk { width: 56px; height: 56px; border-radius: 16px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; font-size: 1.125rem; font-weight: 900; flex-shrink: 0; }
.grad-hero .t { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: #dbeafe; }
.grad-hero .n { font-size: 1.5rem; font-weight: 900; line-height: 1.25; }
@media (min-width: 768px) { .grad-hero .n { font-size: 1.875rem; } }
.grad-hero .go { display: none; align-items: center; gap: 6px; font-size: .875rem; font-weight: 700; color: rgba(255,255,255,.9); flex-shrink: 0; transition: gap .2s; }
@media (min-width: 640px) { .grad-hero .go { display: inline-flex; } }
.grad-hero:hover .go { gap: 10px; }

/* --- Hücre grid'leri (ilçe / mahalle kartları) --- */
.cellgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .cellgrid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .cellgrid.cols5 { grid-template-columns: repeat(5, 1fr); } .cellgrid.cols4 { grid-template-columns: repeat(4, 1fr); } }
.cell { position: relative; display: block; height: 100%; padding: 16px; border-radius: 16px; border: 1px solid #f1f5f9; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.05); text-decoration: none; transition: all .3s; overflow: hidden; }
.cell.center { text-align: center; padding: 20px 12px; }
.cell:hover { border-color: #bfdbfe; transform: translateY(-4px); box-shadow: 0 10px 15px -3px rgba(30,58,138,.05); }
.cell .top { position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(to right, #3b82f6, #6366f1); transform: scaleX(0); transition: transform .3s; }
.cell:hover .top { transform: scaleX(1); }
.cell .nm { font-size: .875rem; font-weight: 700; color: #1e293b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; transition: color .2s; }
.cell:hover .nm { color: #1d4ed8; }
.cell .sb { font-size: .75rem; color: #94a3b8; margin-top: 4px; }

/* --- Tümünü gör butonu --- */
.pillwrap { margin-top: 32px; display: flex; justify-content: center; }
.btn-pill { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 9999px; background: #fff; border: 1px solid #e2e8f0; color: #334155; font-weight: 700; font-size: .875rem; box-shadow: 0 1px 2px rgba(0,0,0,.05); cursor: pointer; transition: all .15s; font-family: inherit; }
.btn-pill:hover { border-color: #bfdbfe; color: #1d4ed8; box-shadow: 0 4px 6px -1px rgba(0,0,0,.1); }
.btn-pill .chev { transition: transform .3s; display: inline-flex; }
.btn-pill.acik .chev { transform: rotate(180deg); }

/* --- Genel bilgi (navy split) kartı --- */
.ginfo { margin-top: 24px; border-radius: 24px; border: 1px solid #f1f5f9; background: #fff; box-shadow: 0 10px 15px -3px rgba(15,23,42,.05); overflow: hidden; display: grid; }
@media (min-width: 768px) { .ginfo { grid-template-columns: 240px 1fr; } }
.ginfo-l { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 32px; background: linear-gradient(to bottom right, #0F2349, #1B3A6E); }
.ginfo-l .dots { position: absolute; inset: 0; opacity: .15; background-image: radial-gradient(#fff 1px, transparent 1px); background-size: 22px 22px; pointer-events: none; }
.ginfo-l .in { position: relative; }
.ginfo-l .lbl { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: rgba(191,219,254,.8); margin-bottom: 12px; }
.ginfo-l .kod { font-size: 2.25rem; font-weight: 900; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .12em; color: #fff; }
@media (min-width: 768px) { .ginfo-l .kod { font-size: 3rem; } }
.ginfo-l .plk { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; border-radius: 9999px; background: rgba(255,255,255,.1); color: #eff6ff; font-size: .75rem; font-weight: 700; border: 1px solid rgba(255,255,255,.2); }
.ginfo-r { padding: 28px; }
@media (min-width: 768px) { .ginfo-r { padding: 32px; } }
.ginfo-r h3 { font-size: 1.125rem; font-weight: 700; color: #0f172a; margin-bottom: 12px; }
.ginfo-r p { color: #475569; line-height: 1.65; }
.ginfo-r p + p { margin-top: 12px; }
.ginfo-r .hl { font-weight: 700; color: #1d4ed8; }
.ginfo-r .st { font-weight: 600; color: #0f172a; }

/* --- SSS akordeon (React stili) --- */
.faqx { display: flex; flex-direction: column; gap: 12px; }
.faqx-item { border-radius: 16px; border: 1px solid #f1f5f9; background: #fff; overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,.05); transition: all .3s; }
.faqx-item:hover { border-color: #dbeafe; }
.faqx-item.open { border-color: #bfdbfe; box-shadow: 0 10px 15px -3px rgba(30,58,138,.05); }
.faqx-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 20px; text-align: left; background: none; border: 0; cursor: pointer; font-family: inherit; font-size: 1rem; }
.faqx-q .qq { display: flex; align-items: center; gap: 12px; min-width: 0; font-weight: 700; color: #1e293b; }
.faqx-q .qi { width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: #eff6ff; color: #2563eb; transition: all .2s; }
.faqx-item.open .qi { background: #2563eb; color: #fff; }
.faqx-q .ch { flex-shrink: 0; color: #2563eb; transition: transform .3s; display: inline-flex; }
.faqx-item.open .ch { transform: rotate(180deg); }
.faqx-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s; }
.faqx-item.open .faqx-a { grid-template-rows: 1fr; }
.faqx-a > div { overflow: hidden; }
.faqx-a p { padding: 0 20px 20px 64px; color: #475569; line-height: 1.65; }

/* --- Harita + il bilgileri --- */
.map-grid { display: grid; gap: 24px; }
@media (min-width: 1024px) { .map-grid { grid-template-columns: 1fr 340px; } }
.map-frame { position: relative; height: 380px; border-radius: 24px; overflow: hidden; border: 1px solid #e2e8f0; box-shadow: 0 10px 15px -3px rgba(15,23,42,.05); background: #f1f5f9; z-index: 0; }
@media (min-width: 768px) { .map-frame { height: 460px; } }
.map-frame .leaflet-container { width: 100%; height: 100%; }
.il-harita-tooltip { background: #fff; border: 0; border-radius: 8px; box-shadow: 0 4px 12px rgba(15,23,42,.15); color: #0f172a; font-weight: 700; font-family: inherit; padding: 4px 10px; }
.ilinfo { background: #fff; border: 1px solid #f1f5f9; border-radius: 24px; padding: 24px; box-shadow: 0 10px 15px -3px rgba(15,23,42,.05); display: flex; flex-direction: column; }
.ilinfo h3 { font-size: .875rem; font-weight: 700; color: #0f172a; margin-bottom: 20px; }
.ilinfo-pk { margin-bottom: 20px; border-radius: 16px; border: 1px solid #dbeafe; background: linear-gradient(to bottom right, #eff6ff, rgba(238,242,255,.6)); padding: 16px; }
.ilinfo-pk .lbl { font-size: 11px; color: rgba(37,99,235,.8); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; }
.ilinfo-pk .row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.ilinfo-pk .kod { font-size: 1.875rem; font-weight: 900; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .15em; color: #0f172a; }
.ilinfo-pk .btn-copy { padding: 8px 14px; font-size: .75rem; }
.ilinfo-rows { display: flex; flex-direction: column; gap: 12px; }
.ilinfo-row { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 16px; background: rgba(248,250,252,.7); transition: background .2s; }
.ilinfo-row:hover { background: #f8fafc; }
.ilinfo-row .ri { width: 40px; height: 40px; border-radius: 12px; background: #fff; color: #2563eb; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 1px 2px rgba(0,0,0,.05); }
.ilinfo-row .rl { font-size: 11px; color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.ilinfo-row .rv { font-size: .875rem; font-weight: 700; color: #1e293b; }

/* --- Diğer posta kodları grid'i (mahalle) --- */
.pkx-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .pkx-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .pkx-grid { grid-template-columns: repeat(4, 1fr); } }
.pkx { position: relative; height: 100%; width: 100%; padding: 20px; border-radius: 16px; border: 1px solid #f1f5f9; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,.05); overflow: hidden; transition: all .2s; cursor: pointer; text-align: left; font-family: inherit; }
.pkx:hover { border-color: #bfdbfe; box-shadow: 0 4px 6px -1px rgba(0,0,0,.1); }
.pkx .top { position: absolute; left: 0; right: 0; top: 0; height: 2px; background: linear-gradient(to right, #3b82f6, #6366f1); }
.pkx-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.pkx .mi { width: 36px; height: 36px; border-radius: 8px; background: #eff6ff; color: #2563eb; display: flex; align-items: center; justify-content: center; }
.pkx .ci { color: #cbd5e1; display: inline-flex; transition: color .2s; }
.pkx:hover .ci { color: #3b82f6; }
.pkx.copied .ci { color: #2563eb; }
.pkx .kd { font-size: 1.5rem; font-weight: 900; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; letter-spacing: .05em; color: #0f172a; transition: color .2s; }
.pkx:hover .kd { color: #1d4ed8; }
.pkx .sb { font-size: 11px; color: #94a3b8; font-weight: 500; margin-top: 4px; text-transform: uppercase; letter-spacing: .05em; }

/* --- Bölüm altı sayfa arka planı ve geri bağlantısı --- */
.dpage { background: rgba(248,250,252,.5); min-height: 100vh; }
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: .875rem; font-weight: 600; color: #64748b; text-decoration: none; margin-top: 48px; transition: color .2s; }
.back-link:hover { color: #1d4ed8; }

/* --- Boş durum --- */
.dempty { padding: 48px 0; text-align: center; color: #94a3b8; background: #fff; border-radius: 24px; border: 1px solid #f1f5f9; }
.dempty svg { margin: 0 auto 12px; opacity: .3; display: block; }
.dempty p { font-weight: 500; }
