/* İzmir Su Kaçağı - Modern SEO Optimized Styles */
:root {
    --primary: #0066cc;
    --primary-dark: #004d99;
    --primary-light: #e6f2ff;
    --accent: #00b4d8;
    --accent-dark: #0096b7;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --call: #e11d48;
    --call-dark: #be123c;
    --dark: #0f172a;
    --gray-900: #1e293b;
    --gray-700: #334155;
    --gray-500: #64748b;
    --gray-300: #cbd5e1;
    --gray-100: #f1f5f9;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1);
    --radius: 12px;
    --radius-lg: 16px;
    --transition: .25s ease;
    --header-h: 76px;
    --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --text-sm: 0.9375rem;
    --text-base: 1.0625rem;
    --text-lg: 1.1875rem;
}

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

html {
    font-size: 17px;
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
    font-family: var(--font);
    font-size: var(--text-base);
    line-height: 1.75;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }

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

.skip-link {
    position: absolute; top: -100px; left: 16px; z-index: 9999;
    background: var(--primary); color: var(--white); padding: 8px 16px;
    border-radius: var(--radius); font-weight: 600;
}
.skip-link:focus { top: 16px; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--dark); line-height: 1.25;
    font-weight: 700; letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.125rem, 5vw, 3.125rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.375rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.625rem); letter-spacing: -0.015em; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.section-label {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--accent);
    margin-bottom: .75rem;
}

.section-title { margin-bottom: 1rem; }
.section-desc { color: var(--gray-500); max-width: 640px; font-size: var(--text-lg); line-height: 1.7; }
.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .875rem 1.75rem; border-radius: var(--radius);
    font-weight: 600; font-size: var(--text-base); line-height: 1;
    border: 2px solid transparent; cursor: pointer;
    transition: all var(--transition); text-decoration: none;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--white); }

.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: var(--white); color: var(--white); }

.btn-whatsapp { background: #25d366; color: var(--white); border-color: #25d366; }
.btn-whatsapp:hover { background: #1da851; color: var(--white); }

.btn-phone { background: var(--primary-light); color: var(--primary); border-color: transparent; padding: .625rem 1rem; font-size: var(--text-sm); }
.btn-phone:hover { background: var(--primary); color: var(--white); }

.btn-lg { padding: 1.0625rem 2rem; font-size: 1.0625rem; }
.btn-sm { padding: .5625rem 1rem; font-size: var(--text-sm); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.35); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); border-color: var(--white); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary-dark); border-color: var(--white); font-weight: 700; }
.btn-white:hover { background: var(--gray-100); border-color: var(--gray-100); color: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-lg); }

/* Header */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-100);
    height: var(--header-h);
    transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: var(--header-h); gap: 1.5rem;
}

.logo {
    display: flex; align-items: center; gap: .75rem;
    color: var(--dark); text-decoration: none; flex-shrink: 0;
}
.logo:hover { color: var(--primary); }
.logo-icon { width: 40px; height: 40px; color: var(--primary); }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text strong { font-size: 1.125rem; font-weight: 800; letter-spacing: -0.02em; }
.logo-text small { font-size: .75rem; color: var(--gray-500); font-weight: 500; }

.desktop-nav .nav-list { display: flex; align-items: center; gap: .125rem; }
.desktop-nav a {
    display: block; padding: .5rem .6875rem; color: var(--gray-700);
    font-weight: 500; font-size: var(--text-sm); border-radius: 8px;
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--primary); background: var(--primary-light); }

.has-dropdown { position: relative; }
.dropdown {
    position: absolute; top: 100%; left: 0; min-width: 240px;
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow-lg); padding: .5rem;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: all var(--transition);
    border: 1px solid var(--gray-100);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { font-size: var(--text-sm); white-space: nowrap; }
.dropdown li + li { margin-top: 2px; }

.header-cta .btn-phone span { display: none; }
@media (min-width: 1100px) { .header-cta .btn-phone span { display: inline; } }

.mobile-toggle {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    background: none; border: none; cursor: pointer;
    width: 44px; height: 44px; padding: 10px;
    border-radius: 10px; transition: background var(--transition);
    z-index: 1002;
}
.mobile-toggle:hover { background: var(--gray-100); }
.mobile-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--dark); border-radius: 2px;
    transition: transform .3s ease, opacity .2s ease;
    transform-origin: center;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(15,23,42,.5);
    opacity: 0; visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
}
.nav-overlay.is-open {
    opacity: 1; visibility: visible;
    pointer-events: auto;
}
body.menu-open .site-header { z-index: 10002; }
body.menu-open .mobile-toggle { z-index: 10003; }

.nav-see-all { font-weight: 600; color: var(--primary) !important; }

.mobile-drawer { display: none; }

body.menu-open { overflow: hidden; }
body.menu-open .floating-cta { display: none; }

/* Hero */
.hero {
    position: relative; padding: calc(var(--header-h) + 3.5rem) 0 4.5rem;
    background: #0b3d6e;
    color: var(--white); overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(0,102,204,.35) 0%, transparent 55%);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center;
}

.hero-lead {
    font-size: .875rem; font-weight: 600; color: rgba(255,255,255,.85);
    margin-bottom: 1rem; letter-spacing: .01em;
}
.hero h1 {
    color: var(--white); margin-bottom: 1.25rem;
    font-size: clamp(1.875rem, 4.5vw, 2.75rem);
    line-height: 1.2; font-weight: 800;
}
.hero-desc {
    font-size: var(--text-lg); color: rgba(255,255,255,.92);
    margin-bottom: 1.75rem; max-width: 540px; line-height: 1.8;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .875rem; margin-bottom: 1.75rem; }
.hero .btn-outline { border-color: rgba(255,255,255,.45); color: var(--white); }
.hero .btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); color: var(--white); }

.hero-points {
    list-style: none; display: flex; flex-direction: column; gap: .625rem;
    padding: 1.25rem 0 0; border-top: 1px solid rgba(255,255,255,.15);
}
.hero-points li {
    position: relative; padding-left: 1.125rem;
    font-size: var(--text-base); color: rgba(255,255,255,.88); line-height: 1.6;
}
.hero-points li::before {
    content: ''; position: absolute; left: 0; top: .55em;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
}

.hero-aside { display: flex; flex-direction: column; gap: 1.25rem; }
.hero-visual {
    border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
}
.hero-photo { width: 100%; height: auto; object-fit: cover; aspect-ratio: 4/3; }

/* Gallery */
.gallery-section { background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gallery-grid-inline { grid-template-columns: repeat(3, 1fr); margin: 1.5rem 0 2rem; }
.gallery-item {
    position: relative; border: none; padding: 0; cursor: pointer; border-radius: var(--radius-lg);
    overflow: hidden; background: var(--gray-100); text-align: left; aspect-ratio: 4/3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,.88) 0%, rgba(15,23,42,.2) 55%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem;
    opacity: 0; transition: opacity var(--transition); color: var(--white);
}
.gallery-item:hover .gallery-overlay, .gallery-item:focus-visible .gallery-overlay { opacity: 1; }
.gallery-overlay h3 { font-size: .9375rem; color: var(--white); margin-bottom: .35rem; }
.gallery-overlay p { font-size: .75rem; opacity: .9; line-height: 1.5; margin: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.gallery-zoom {
    position: absolute; top: 1rem; right: 1rem; width: 36px; height: 36px;
    background: rgba(255,255,255,.2); backdrop-filter: blur(4px); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.gallery-zoom svg { width: 18px; height: 18px; color: var(--white); }

.page-hero-image {
    background-size: cover; background-position: center; position: relative;
}
.page-hero-image::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,61,122,.88) 0%, rgba(0,102,204,.75) 100%);
}
.page-hero-image .container { position: relative; z-index: 1; }
.page-hero-image h1, .page-hero-image p, .page-hero-image .breadcrumb a, .page-hero-image .breadcrumb span { color: var(--white); }
.page-hero-image .breadcrumb a:hover { color: var(--accent); }
.page-hero-svg { background-size: cover; background-position: center top; }
.gallery-item img[src$=".svg"] { object-fit: contain; background: var(--primary-light); padding: 1rem; }
.content-figure img[src$=".svg"] { object-fit: contain; background: var(--gray-100); }

.content-figure { margin: 0 0 1.5rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-100); }
.content-figure img { width: 100%; height: auto; aspect-ratio: 16/10; object-fit: cover; }
.content-figure figcaption { padding: .75rem 1rem; font-size: .8125rem; color: var(--gray-500); background: var(--gray-50); border-top: 1px solid var(--gray-100); }

.faq-category-nav {
    display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem;
    padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-100);
}
.faq-category-nav a {
    font-size: .8125rem; font-weight: 600; color: var(--primary);
    background: var(--primary-light); padding: .5rem .875rem;
    border-radius: 999px; transition: all var(--transition);
}
.faq-category-nav a:hover { background: var(--primary); color: var(--white); }
.faq-category-block { margin-bottom: 3rem; scroll-margin-top: 6rem; }
.faq-category-title {
    font-size: 1.375rem; margin-bottom: 1.25rem; color: var(--gray-900);
    padding-bottom: .75rem; border-bottom: 2px solid var(--primary-light);
}

.lightbox {
    position: fixed; inset: 0; z-index: 9999; background: rgba(15,23,42,.92);
    display: flex; align-items: center; justify-content: center; padding: 2rem;
    opacity: 0; visibility: hidden; transition: all var(--transition);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox-inner { max-width: 960px; width: 100%; text-align: center; }
.lightbox img { max-width: 100%; max-height: 75vh; border-radius: var(--radius); margin: 0 auto 1rem; }
.lightbox-caption { color: var(--gray-300); font-size: .9375rem; max-width: 640px; margin: 0 auto; }
.lightbox-close {
    position: absolute; top: 1.5rem; right: 1.5rem; background: rgba(255,255,255,.15);
    border: none; color: var(--white); width: 44px; height: 44px; border-radius: 50%;
    cursor: pointer; font-size: 1.5rem; line-height: 1;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }

/* Stats Bar */
.stats-bar {
    background: var(--white); margin-top: -2rem; position: relative; z-index: 2;
    border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
    padding: 2rem; margin-left: 20px; margin-right: 20px; max-width: 1160px; margin-inline: auto;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat-number { font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-weight: 800; color: var(--primary); line-height: 1.15; }
.stat-label { font-size: var(--text-sm); color: var(--gray-500); margin-top: .375rem; font-weight: 500; }

/* Sections */
section { padding: 5rem 0; }
section:nth-child(even):not(.hero):not(.footer-cta):not(.cta-banner):not(.gallery-section) { background: var(--gray-100); }

/* Service Cards */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.service-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 0; border: 1px solid var(--gray-100);
    transition: all var(--transition); display: flex; flex-direction: column; overflow: hidden;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.service-card-image { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--gray-100); }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.service-card-image img[src$=".svg"] { object-fit: contain; background: var(--primary-light); padding: .5rem; }
.service-card:hover .service-card-image img { transform: scale(1.04); }
.service-card-body { padding: 1.5rem 1.75rem 1.75rem; display: flex; flex-direction: column; flex-grow: 1; }
.service-card-body h3 a { color: var(--dark); }
.service-card-body h3 a:hover { color: var(--primary); }
.service-icon {
    width: 56px; height: 56px; background: var(--primary-light);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.25rem; color: var(--primary);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: .75rem; font-size: 1.1875rem; }
.service-card p { color: var(--gray-500); font-size: var(--text-base); flex-grow: 1; margin-bottom: 1.25rem; line-height: 1.7; }
.service-link {
    display: inline-flex; align-items: center; gap: .375rem;
    font-weight: 600; font-size: .875rem; color: var(--primary);
}
.service-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* Process Steps */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.process-step {
    padding: 1.75rem 1.5rem;
    background: var(--white); border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100); position: relative;
}
.process-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px; background: var(--primary-light); color: var(--primary);
    border-radius: 8px; font-weight: 800; font-size: .875rem;
    margin-bottom: 1rem;
}
.process-step h3 { font-size: 1.0625rem; margin-bottom: .5rem; }
.process-step p { font-size: var(--text-sm); color: var(--gray-500); line-height: 1.7; }

/* District Cards */
.districts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.district-card {
    background: var(--white); border-radius: var(--radius);
    padding: 1rem 1.25rem; border: 1px solid var(--gray-100);
    transition: all var(--transition);
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.district-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.district-thumb {
    width: 96px; height: 72px; object-fit: cover; border-radius: var(--radius-sm);
    flex-shrink: 0; background: var(--gray-100);
}
.district-card h3 { font-size: 1.0625rem; }
.district-card span { font-size: var(--text-sm); color: var(--gray-500); display: block; margin-top: .25rem; line-height: 1.55; }
.page-hero-image .hero-meta { color: rgba(255,255,255,.9); }
.district-arrow { color: var(--primary); flex-shrink: 0; }
.district-arrow svg { width: 20px; height: 20px; }

/* Why Us */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 1.25rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-check {
    width: 28px; height: 28px; background: #d1fae5; color: var(--success);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 2px;
}
.why-check svg { width: 14px; height: 14px; }
.why-item strong { display: block; color: var(--dark); margin-bottom: .25rem; }
.why-item p { font-size: var(--text-base); color: var(--gray-500); margin: 0; line-height: 1.7; }

.why-aside {
    background: var(--gray-100); border-radius: var(--radius-lg);
    padding: 2rem; border: 1px solid var(--gray-100);
}
.why-aside h3 { font-size: 1.125rem; margin-bottom: 1.25rem; }
.symptom-list {
    list-style: none; display: flex; flex-direction: column; gap: .75rem;
    margin-bottom: 1.5rem;
}
.symptom-list li {
    position: relative; padding-left: 1.25rem;
    font-size: var(--text-base); color: var(--gray-700); line-height: 1.65;
}
.symptom-list li::before {
    content: ''; position: absolute; left: 0; top: .55em;
    width: 7px; height: 7px; border-radius: 50%; background: var(--primary);
}
.why-aside-note {
    font-size: .9375rem; color: var(--gray-500);
    margin-bottom: 1.25rem; line-height: 1.65;
}

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--white); border-radius: var(--radius);
    border: 1px solid var(--gray-100); margin-bottom: .75rem; overflow: hidden;
}
.faq-question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem 1.5rem; background: none; border: none; cursor: pointer;
    font-family: var(--font); font-size: var(--text-base); font-weight: 600;
    color: var(--dark); text-align: left; gap: 1rem;
}
.faq-question svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--primary); transition: transform var(--transition); }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
}
.faq-answer-inner { padding: 0 1.5rem 1.25rem; color: var(--gray-500); font-size: var(--text-base); line-height: 1.75; }
.faq-item.active .faq-answer { max-height: 300px; }

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white); padding: 4rem 0; text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { opacity: .9; margin-bottom: 2rem; font-size: var(--text-lg); max-width: 600px; margin-inline: auto; line-height: 1.7; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* Page Hero (inner pages) */
.page-hero {
    padding: calc(var(--header-h) + 3rem) 0 3rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { opacity: .9; font-size: var(--text-lg); max-width: 700px; line-height: 1.75; }
.breadcrumb {
    display: flex; flex-wrap: wrap; gap: .5rem; align-items: center;
    font-size: .875rem; margin-bottom: 1.5rem; opacity: .8;
}
.breadcrumb a { color: var(--white); }
.breadcrumb a:hover { opacity: .7; }
.breadcrumb span { opacity: .5; }

/* Content Page */
.content-page { padding: 4rem 0; }
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; }
.content-main h2 { margin: 2rem 0 1rem; }
.content-main h2:first-child { margin-top: 0; }
.content-main h3 { margin: 1.5rem 0 .75rem; }
.content-main p { margin-bottom: 1rem; }
.content-main ul.content-list { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.5rem; }
.content-main ul.content-list li { margin-bottom: .5rem; color: var(--gray-700); }

.sidebar-card {
    background: var(--gray-100); border-radius: var(--radius-lg);
    padding: 2rem; position: sticky; top: calc(var(--header-h) + 20px);
}
.sidebar-card h3 { margin-bottom: 1.25rem; font-size: 1.125rem; }
.sidebar-card .btn { width: 100%; margin-bottom: .75rem; }
.sidebar-links { margin-top: 1.5rem; }
.sidebar-links h4 { font-size: .875rem; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-500); margin-bottom: .75rem; }
.sidebar-links a {
    display: block; padding: .5rem 0; font-size: .9375rem;
    color: var(--gray-700); border-bottom: 1px solid var(--gray-300);
}
.sidebar-links a:last-child { border-bottom: none; }
.sidebar-links a:hover { color: var(--primary); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.5rem; background: var(--gray-100); border-radius: var(--radius);
}
.contact-item-icon {
    width: 48px; height: 48px; background: var(--primary-light);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    color: var(--primary); flex-shrink: 0;
}
.contact-item-icon svg { width: 22px; height: 22px; }
.contact-item strong { display: block; color: var(--dark); margin-bottom: .25rem; }
.contact-item a { font-size: 1.0625rem; font-weight: 600; }

.contact-whatsapp-box {
    background: var(--white); border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg); padding: 2rem;
    display: flex; flex-direction: column; gap: 1.25rem;
}
.contact-whatsapp-box h3 { margin: 0; font-size: 1.375rem; }
.contact-whatsapp-box > p { color: var(--gray-500); margin: 0; line-height: 1.7; }
.contact-whatsapp-tips {
    list-style: none; margin: 0; padding: 1.25rem 1.5rem;
    background: var(--gray-100); border-radius: var(--radius);
    display: flex; flex-direction: column; gap: .625rem;
}
.contact-whatsapp-tips li {
    position: relative; padding-left: 1.125rem;
    font-size: var(--text-sm); color: var(--gray-700);
}
.contact-whatsapp-tips li::before {
    content: ''; position: absolute; left: 0; top: .55em;
    width: 6px; height: 6px; border-radius: 50%; background: #25d366;
}
.contact-whatsapp-btn { width: 100%; font-size: 1.0625rem; padding: 1.0625rem 1.5rem; }
.contact-whatsapp-btn svg { width: 22px; height: 22px; }
.contact-phone-btn { width: 100%; }
.contact-whatsapp-note {
    font-size: var(--text-sm); color: var(--gray-500);
    margin: 0; line-height: 1.65; text-align: center;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: var(--text-sm); margin-bottom: .5rem; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: .8125rem 1rem; border: 1px solid var(--gray-300);
    border-radius: 8px; font-family: var(--font); font-size: var(--text-base);
    transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group-checkbox { margin-bottom: 1.5rem; }
.checkbox-label {
    display: flex; align-items: flex-start; gap: .75rem;
    font-size: var(--text-sm); line-height: 1.65; color: var(--gray-500); cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
    width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0;
    accent-color: var(--primary); cursor: pointer;
}
.checkbox-label a { text-decoration: underline; }

/* Mahalle tags & grid */
.mahalle-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.5rem 0; }
.mahalle-tag {
    background: var(--primary-light); color: var(--primary);
    padding: .375rem .875rem; border-radius: 50px;
    font-size: .8125rem; font-weight: 500;
}
.mahalle-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem; margin: 1.5rem 0 2rem;
}
.mahalle-card {
    background: var(--white); border: 1px solid var(--gray-100);
    border-radius: var(--radius); padding: 1.25rem 1.5rem;
    transition: all var(--transition); display: flex; flex-direction: column;
}
.mahalle-card:hover {
    border-color: var(--primary); box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.mahalle-card h3 { font-size: 1rem; margin-bottom: .5rem; color: var(--dark); }
.mahalle-card p {
    font-size: .8125rem; color: var(--gray-500); line-height: 1.6;
    flex-grow: 1; margin-bottom: .75rem;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.mahalle-card-link {
    font-size: .8125rem; font-weight: 600; color: var(--primary);
}

.hero-meta { font-size: .9375rem; color: var(--gray-500); margin-top: .75rem; }
.leak-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; margin: 1rem 0 1.5rem; }
.leak-card {
    background: var(--gray-50); border: 1px solid var(--gray-100);
    border-radius: var(--radius); padding: 1.25rem;
}
.leak-card h3 { font-size: .9375rem; margin-bottom: .5rem; color: var(--dark); }
.leak-card p { font-size: .8125rem; color: var(--gray-600); line-height: 1.6; margin: 0; }
.warning-list li { color: var(--gray-700); }
.detect-steps {
    list-style: none; padding: 0; margin: 1rem 0 1.5rem;
    display: flex; flex-direction: column; gap: 1rem; counter-reset: detect;
}
.detect-steps li {
    counter-increment: detect; padding: 1rem 1.25rem 1rem 3.5rem;
    background: var(--white); border: 1px solid var(--gray-100);
    border-radius: var(--radius); position: relative;
}
.detect-steps li::before {
    content: counter(detect); position: absolute; left: 1.25rem; top: 1rem;
    width: 1.75rem; height: 1.75rem; background: var(--primary-light);
    color: var(--primary); border-radius: 50%; font-weight: 700; font-size: .8125rem;
    display: flex; align-items: center; justify-content: center;
}
.detect-steps li strong { display: block; font-size: .9375rem; margin-bottom: .25rem; }
.detect-steps li span { font-size: .8125rem; color: var(--gray-600); line-height: 1.6; }
.sidebar-highlight p { font-size: .9375rem; font-weight: 600; color: var(--dark); margin: 0; }

.lead-text { font-size: var(--text-lg); line-height: 1.8; color: var(--gray-700); margin-bottom: 1.5rem; }
.content-note { font-size: .9375rem; color: var(--gray-500); margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-100); }
.sidebar-highlight { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--gray-300); }
.sidebar-highlight h4 { font-size: .8125rem; text-transform: uppercase; letter-spacing: .05em; color: var(--gray-500); margin-bottom: .5rem; }
.sidebar-highlight a { font-weight: 600; font-size: .9375rem; }
.region-intro { max-width: 800px; margin-bottom: 3rem; }
.region-intro h2 { margin-bottom: 1rem; }
.region-section { margin-bottom: 3rem; }
.region-section:last-child { margin-bottom: 0; }
.region-header { margin-bottom: 1.5rem; }
.region-header h2 { font-size: 1.375rem; margin-bottom: .5rem; }
.region-header p { color: var(--gray-500); font-size: .9375rem; }

/* Footer CTA */
section.footer-cta {
    background: linear-gradient(135deg, #003d7a 0%, var(--primary) 45%, #0077cc 100%);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}
.footer-cta::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 85% 40%, rgba(255,255,255,.12) 0%, transparent 55%);
    pointer-events: none;
}
.footer-cta-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 2rem;
    position: relative; z-index: 1;
}
.footer-cta-badge {
    display: inline-block;
    background: var(--white);
    color: var(--primary-dark);
    font-size: .75rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .08em;
    padding: .4rem .95rem; border-radius: 100px;
    margin-bottom: .875rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
section.footer-cta .footer-cta-text h2 {
    color: #ffffff;
    font-size: clamp(1.625rem, 3.5vw, 2.125rem);
    font-weight: 800;
    margin-bottom: .625rem;
    text-shadow: 0 2px 4px rgba(0,0,0,.25);
    letter-spacing: -.01em;
}
section.footer-cta .footer-cta-text p {
    color: #ffffff;
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.6;
    opacity: 1;
    text-shadow: 0 1px 3px rgba(0,0,0,.2);
    max-width: 520px;
}
.footer-cta-actions { display: flex; gap: 1rem; flex-shrink: 0; }
.footer-cta-actions .btn { box-shadow: 0 4px 14px rgba(0,0,0,.2); }
.footer-cta-actions .btn-whatsapp { font-weight: 700; }

/* Footer */
.site-footer {
    background: var(--dark);
    color: var(--gray-300);
    padding: 0 0 2rem;
}
.footer-trust {
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 2rem 0;
    background: rgba(255,255,255,.02);
}
.footer-trust-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.footer-trust-list li {
    display: flex; align-items: center; gap: .875rem;
    font-size: .875rem; color: var(--gray-500);
}
.footer-trust-list strong { color: var(--white); font-weight: 600; }
.footer-trust-icon {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(0,180,216,.12);
    color: var(--accent); flex-shrink: 0;
}
.footer-trust-icon svg { width: 22px; height: 22px; }

.site-footer > .container { padding-top: 3.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 2.5rem; margin-bottom: 3rem; }
.footer-brand p { font-size: .9375rem; margin: 1rem 0 1.5rem; line-height: 1.7; color: var(--gray-500); }
.footer-contact { display: flex; flex-direction: column; gap: .75rem; }
.footer-contact-item {
    display: flex; align-items: center; gap: .75rem;
    color: var(--gray-300); font-weight: 500; font-size: .9375rem;
}
.footer-contact-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); }
.footer-contact-item:hover { color: var(--white); }
.footer-contact-address { cursor: default; }
.footer-logo { color: var(--white); margin-bottom: .5rem; }
.footer-logo .logo-icon { color: var(--accent); }

.footer-links h3 {
    color: var(--white); font-size: var(--text-sm);
    text-transform: uppercase; letter-spacing: .06em;
    margin-bottom: 1.25rem;
}
.footer-subheading { margin-top: 2rem; }
.footer-links ul { margin: 0; }
.footer-links a {
    display: block; color: var(--gray-500);
    font-size: var(--text-sm); padding: .35rem 0;
    transition: color var(--transition), padding-left var(--transition);
}
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-link-accent { color: var(--accent) !important; font-weight: 600; }
.footer-link-accent:hover { color: var(--white) !important; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 2rem; text-align: center;
}
.footer-legal-bar {
    display: flex; flex-wrap: wrap; justify-content: center;
    gap: .5rem 1.5rem; margin-bottom: 1.25rem;
}
.footer-legal-bar a {
    color: var(--gray-500); font-size: .8125rem; font-weight: 500;
    position: relative;
}
.footer-legal-bar a:hover { color: var(--accent); }
.footer-legal-bar a:not(:last-child)::after {
    content: '·';
    position: absolute; right: -.9rem;
    color: rgba(255,255,255,.2); pointer-events: none;
}
.footer-copyright { font-size: .8125rem; color: var(--gray-500); margin-bottom: .5rem; }
.footer-keywords { font-size: .75rem !important; opacity: .45; max-width: 720px; margin: 0 auto; }

/* Legal pages */
.page-hero-legal { padding-bottom: 2.5rem; }
.legal-updated { font-size: .9375rem; color: var(--gray-500); margin-top: .5rem; }
.legal-page { padding-top: 3rem; padding-bottom: 4rem; }
.legal-layout {
    display: grid; grid-template-columns: 240px 1fr; gap: 3rem;
    align-items: start;
}
.legal-sidebar {
    position: sticky; top: calc(var(--header-h) + 24px);
    background: var(--gray-100); border-radius: var(--radius-lg);
    padding: 1.25rem; border: 1px solid var(--gray-100);
}
.legal-nav { display: flex; flex-direction: column; gap: .25rem; }
.legal-nav-link {
    display: block; padding: .625rem 1rem;
    border-radius: 8px; font-size: .875rem; font-weight: 500;
    color: var(--gray-700); transition: all var(--transition);
}
.legal-nav-link:hover { background: var(--white); color: var(--primary); }
.legal-nav-link.active {
    background: var(--primary); color: var(--white);
    box-shadow: var(--shadow-sm);
}
.legal-document { max-width: 760px; }
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 {
    font-size: 1.25rem; margin-bottom: 1rem;
    padding-bottom: .75rem;
    border-bottom: 2px solid var(--primary-light);
}
.legal-section p { font-size: .9375rem; line-height: 1.8; color: var(--gray-700); }
.legal-section .content-list { margin: 1rem 0 0; padding-left: 1.25rem; list-style: disc; }
.legal-section .content-list li {
    font-size: .9375rem; line-height: 1.7; color: var(--gray-700);
    margin-bottom: .5rem;
}
/* Rehber & vaka kartları */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.guides-grid-compact { margin-bottom: 1.5rem; }
.guide-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: box-shadow var(--transition), border-color var(--transition);
}
.guide-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}
.guide-card-meta, .guide-hero-meta {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-bottom: .75rem;
    flex-wrap: wrap;
}
.guide-tag {
    display: inline-block;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--primary);
    background: rgba(0, 102, 204, .08);
    padding: .25rem .625rem;
    border-radius: 999px;
}
.guide-read-time {
    font-size: .8125rem;
    color: var(--gray-500);
}
.guide-card h3 {
    font-size: 1.0625rem;
    margin-bottom: .625rem;
    line-height: 1.4;
}
.guide-card h3 a { color: var(--dark); }
.guide-card h3 a:hover { color: var(--primary); }
.guide-card p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.guide-lead {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.guide-related-service {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
}

.cases-section {
    padding: 4rem 0;
    background: var(--gray-100);
}
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.cases-grid-compact {
    grid-template-columns: repeat(3, 1fr);
    margin-top: .5rem;
}
.case-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.case-card-compact p {
    font-size: var(--text-sm);
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}
.case-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .5rem;
    margin-bottom: .75rem;
    flex-wrap: wrap;
}
.case-location {
    font-size: .8125rem;
    font-weight: 600;
    color: var(--primary);
}
.case-duration {
    font-size: .75rem;
    color: var(--gray-500);
}
.case-card h3 {
    font-size: 1rem;
    margin-bottom: .5rem;
    line-height: 1.4;
}
.case-building {
    font-size: var(--text-sm);
    color: var(--gray-500);
    margin-bottom: 1rem;
}
.case-details {
    display: grid;
    gap: .75rem;
    margin: 0 0 1rem;
}
.case-details dt {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--gray-500);
    margin-bottom: .125rem;
}
.case-details dd {
    font-size: var(--text-sm);
    color: var(--gray-700);
    line-height: 1.5;
    margin: 0;
}
.case-related-link {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--primary);
}
.case-related-link:hover { text-decoration: underline; }

.legal-contact-note {
    margin-top: 2.5rem; padding: 1.25rem 1.5rem;
    background: var(--primary-light); border-radius: var(--radius);
    font-size: .9375rem; color: var(--gray-700);
}

/* Cookie banner */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 -8px 32px rgba(0,0,0,.25);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
    max-width: 1200px; margin: 0 auto; padding: 1.25rem 20px;
    display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.cookie-banner-text strong {
    display: block; color: var(--white); font-size: var(--text-base); margin-bottom: .25rem;
}
.cookie-banner-text p {
    font-size: var(--text-sm); color: var(--gray-500); margin: 0; line-height: 1.65; max-width: 640px;
}
.cookie-banner-text a { color: var(--accent); text-decoration: underline; }
.cookie-banner-text a:hover { color: var(--white); }
.cookie-banner-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-banner.visible + .floating-cta { bottom: 110px; transition: bottom .4s cubic-bezier(.4,0,.2,1); }

/* Floating CTA */
.floating-cta {
    position: fixed; bottom: 24px; right: 24px; z-index: 999;
    display: flex; flex-direction: column; gap: 12px;
}
.float-btn {
    width: 56px; height: 56px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-lg); transition: all var(--transition);
    color: var(--white);
}
.float-btn svg { width: 26px; height: 26px; }
.float-btn:hover { transform: scale(1.08); color: var(--white); }
.float-whatsapp { background: #25d366; }
.float-phone {
    background: var(--call);
    width: 60px; height: 60px;
    border: 3px solid var(--white);
    box-shadow: 0 4px 20px rgba(225, 29, 72, .45);
    animation: ring 2s infinite;
}
.float-phone:hover {
    background: var(--call-dark);
    box-shadow: 0 6px 24px rgba(225, 29, 72, .55);
}

@keyframes ring {
    0%, 100% { box-shadow: 0 4px 20px rgba(225, 29, 72, .45); }
    50% { box-shadow: 0 4px 20px rgba(225, 29, 72, .45), 0 0 0 10px rgba(225, 29, 72, .22); }
}

/* Cards grid for listing pages */
.cards-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid, .why-grid, .content-grid, .contact-grid { grid-template-columns: 1fr; }
    .services-grid, .districts-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-cta-inner { flex-direction: column; text-align: center; }
    .footer-cta-actions { justify-content: center; flex-wrap: wrap; }
    .footer-trust-list { grid-template-columns: repeat(2, 1fr); }
    .legal-layout { grid-template-columns: 1fr; }
    .legal-sidebar { position: static; }

    .gallery-grid, .gallery-grid-inline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
    .desktop-nav { display: none; }
    .mobile-toggle { display: flex; }
    .nav-overlay { display: block; }

    .mobile-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; right: 0; bottom: 0;
        width: min(320px, 86vw);
        background: var(--white);
        z-index: 10001;
        transform: translateX(100%);
        transition: transform .3s ease;
        box-shadow: -4px 0 24px rgba(0,0,0,.15);
    }
    .mobile-drawer.is-open { transform: translateX(0); }

    .mobile-drawer-head {
        display: flex; align-items: center; justify-content: space-between;
        padding: 0 1rem 0 1.25rem;
        min-height: var(--header-h);
        border-bottom: 1px solid var(--gray-100);
        flex-shrink: 0;
    }
    .mobile-drawer-head span { font-weight: 700; font-size: 1.0625rem; color: var(--dark); }
    .mobile-drawer-close {
        display: flex; align-items: center; justify-content: center;
        width: 44px; height: 44px;
        border: none; background: transparent; color: var(--dark);
        cursor: pointer; border-radius: 8px;
    }
    .mobile-drawer-close svg { width: 22px; height: 22px; }
    .mobile-drawer-close:hover { background: var(--gray-100); }

    .mobile-drawer-body {
        flex: 1; overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .mobile-nav-list { list-style: none; margin: 0; padding: 0; }
    .mobile-nav-list > li { border-bottom: 1px solid var(--gray-100); }
    .mobile-nav-list > li > a {
        display: block; padding: 1.0625rem 1.25rem;
        font-size: var(--text-base); font-weight: 500; color: var(--gray-700);
    }
    .mobile-nav-list > li > a:hover,
    .mobile-nav-list > li > a.active { background: var(--gray-100); color: var(--primary); }

    .mobile-nav-details { border: none; }
    .mobile-nav-details summary {
        display: flex; align-items: center; justify-content: space-between;
        padding: 1.0625rem 1.25rem;
        font-size: var(--text-base); font-weight: 500; color: var(--gray-700);
        cursor: pointer; list-style: none;
    }
    .mobile-nav-details summary::-webkit-details-marker { display: none; }
    .mobile-nav-details summary::after {
        content: ''; width: 8px; height: 8px;
        border-right: 2px solid var(--gray-500);
        border-bottom: 2px solid var(--gray-500);
        transform: rotate(45deg); transition: transform .2s ease;
        margin-left: 1rem; flex-shrink: 0;
    }
    .mobile-nav-details[open] summary { color: var(--primary); background: var(--primary-light); }
    .mobile-nav-details[open] summary::after { transform: rotate(-135deg); }
    .mobile-nav-details ul {
        list-style: none; margin: 0; padding: 0;
        background: var(--gray-100);
    }
    .mobile-nav-details ul a {
        display: block; padding: .8125rem 1.25rem .8125rem 2rem;
        font-size: var(--text-sm); color: var(--gray-700);
    }
    .mobile-nav-details ul a:hover { color: var(--primary); background: rgba(0,102,204,.06); }

    .mobile-drawer-foot {
        padding: 1rem 1.25rem 1.25rem;
        border-top: 1px solid var(--gray-100);
        background: var(--gray-100);
        flex-shrink: 0;
    }
    .mobile-drawer-call {
        display: flex; flex-direction: column;
        padding: .875rem 1rem; margin-bottom: .75rem;
        background: var(--white); border-radius: var(--radius);
        border: 1px solid var(--gray-100); color: var(--dark);
    }
    .mobile-drawer-call strong { font-size: 1.125rem; }
    .mobile-drawer-call small { font-size: .75rem; color: var(--gray-500); margin-top: .125rem; }
    .mobile-drawer-foot .btn { width: 100%; }

    .header-cta { display: none; }

    .guides-grid, .guides-grid-compact, .cases-grid, .cases-grid-compact { grid-template-columns: 1fr; }
    .services-grid, .districts-grid, .process-grid, .cards-grid-2, .gallery-grid, .gallery-grid-inline { grid-template-columns: 1fr; }
    .hero-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-trust-list { grid-template-columns: 1fr; }
    .footer-cta-actions { flex-direction: column; width: 100%; }
    .footer-cta-actions .btn { width: 100%; }
    .cookie-banner-inner { flex-direction: column; text-align: center; }
    .cookie-banner-actions { width: 100%; justify-content: center; }
    .footer-legal-bar a:not(:last-child)::after { display: none; }
    section { padding: 3.5rem 0; }
    .hero { padding-bottom: 4rem; }
    .stats-bar { margin-top: -1.5rem; padding: 1.5rem; }
    .sidebar-card { position: static; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .stats-grid { grid-template-columns: 1fr; }
}