.project-gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        margin-top: 26px;
    }

    .project-gallery-card {
        display: block;
        width: 100%;
        padding: 0;
        background: rgba(255,255,255,.03);
        border: 1px solid var(--border);
        border-radius: 18px;
        overflow: hidden;
        text-align: left;
        cursor: pointer;
        box-shadow: 0 14px 34px rgba(0,0,0,.12);
    }

    .project-gallery-image-wrap {
        display: block;
        width: 100%;
        height: 260px;
        overflow: hidden;
        background: #0b1320;
    }

    .project-gallery-image {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .project-gallery-caption {
        display: block;
        padding: 12px 16px 14px;
        font-size: 14px;
        font-weight: 700;
        color: #fff;
        background: rgba(10,22,40,.96);
    }

    .project-image-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: none;
        background: rgba(0,0,0,.5);
        color: #fff;
        font-size: 26px;
        cursor: pointer;
        z-index: 3;
    }

        .project-image-nav.prev {
            left: 10px;
        }

        .project-image-nav.next {
            right: 10px;
        }

        .project-image-nav:hover {
            background: rgba(232,49,26,.9);
        }

/* =========================================================
   SEO PAGES LIGHT THEME
   İlçe / sektör / landing sayfaları için açık tema düzeltmeleri
   Dosya yolu önerisi: wwwroot/web-tema/css/seo-pages.css
   ========================================================= */

/* ANA SEO SECTION */
.seo-landing {
    background: #f6f8fc;
    padding-top: 80px;
    padding-bottom: 80px;
}

.seo-landing .section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.seo-landing .section-label {
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 2px;
}

.seo-landing .section-title {
    color: #0f172a !important;
}

.seo-landing .section-desc {
    color: #334155 !important;
    line-height: 1.8;
}

/* ZENGİN İÇERİK KUTUSU */
.seo-rich-box {
    background: #ffffff;
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 22px;
    padding: 38px;
    margin-top: 28px;
    box-shadow: 0 12px 34px rgba(15,23,42,.06);
}

.seo-rich-box h1,
.seo-rich-box h2,
.seo-rich-box h3,
.seo-rich-box strong {
    color: #0f172a !important;
}

.seo-rich-box h2 {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 16px;
    margin-top: 30px;
    font-weight: 800;
    font-family: 'Barlow Condensed', sans-serif;
}

.seo-rich-box h2:first-child {
    margin-top: 0;
}

.seo-rich-box h3 {
    font-size: 24px;
    margin-bottom: 14px;
    font-weight: 700;
}

.seo-rich-box p,
.seo-rich-box li,
.seo-rich-box span {
    color: #334155 !important;
    line-height: 1.85;
    font-size: 16px;
}

/* SEO LİSTELER */
.seo-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 24px;
}

.seo-list li {
    position: relative;
    padding: 12px 0 12px 30px;
    border-bottom: 1px solid rgba(15,23,42,.08);
    color: #0f172a !important;
    font-weight: 600;
}

.seo-list li:last-child {
    border-bottom: none;
}

.seo-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--accent);
    font-weight: 900;
}

.seo-list a {
    color: #0f172a !important;
    text-decoration: none;
}

.seo-list a:hover {
    color: var(--accent) !important;
}

/* CTA KUTUSU */
.seo-cta-box {
    background: linear-gradient(135deg,#ffffff 0%,#f6f8fc 100%);
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 22px;
    padding: 42px;
    margin-top: 28px;
    box-shadow: 0 14px 38px rgba(15,23,42,.06);
}

.seo-cta-box h2 {
    color: #0f172a !important;
    margin-bottom: 12px;
    font-size: 30px;
    font-weight: 800;
    font-family: 'Barlow Condensed', sans-serif;
}

.seo-cta-box p {
    color: #475569 !important;
    line-height: 1.8;
}

.seo-cta-box .hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.seo-cta-box .btn-secondary {
    background: #ffffff;
    color: #0f172a !important;
    border: 1px solid rgba(15,23,42,.12);
    box-shadow: 0 8px 20px rgba(15,23,42,.05);
}

.seo-cta-box .btn-secondary:hover {
    background: #fff5f2;
    border-color: var(--accent);
    color: var(--accent) !important;
}

/* PROJE GALERİSİ */
.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 26px;
}

.project-gallery-card {
    display: block;
    width: 100%;
    padding: 0;
    background: #ffffff;
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 18px;
    overflow: hidden;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(15,23,42,.08);
    transition: all .25s ease;
}

.project-gallery-card:hover {
    transform: translateY(-3px);
    border-color: rgba(232,49,26,.30);
    box-shadow: 0 18px 42px rgba(15,23,42,.12);
}

.project-gallery-image-wrap {
    display: block;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: #f1f5f9;
}

.project-gallery-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .35s ease;
}

.project-gallery-card:hover .project-gallery-image {
    transform: scale(1.04);
}

.project-gallery-caption {
    display: block;
    padding: 12px 16px 14px;
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    background: #ffffff;
}

/* MODAL */
.project-image-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
}

.project-image-modal.show {
    display: block;
}

.project-image-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.84);
}

.project-image-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(92vw,1000px);
    margin: 40px auto;
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 20px 80px rgba(0,0,0,.45);
}

.project-image-modal-dialog img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 10px;
    display: block;
    background: #000;
}

.project-image-modal-title {
    color: #0f172a;
    font-size: 15px;
    font-weight: 700;
    margin-top: 12px;
}

.project-image-modal-close {
    position: absolute;
    top: 8px;
    right: 12px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(15,23,42,.12);
    color: #0f172a;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.project-image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 26px;
    cursor: pointer;
    z-index: 3;
}

.project-image-nav.prev {
    left: 10px;
}

.project-image-nav.next {
    right: 10px;
}

.project-image-nav:hover {
    background: rgba(232,49,26,.9);
}

/* MOBİL */
@media (max-width: 900px) {
    .seo-landing {
        padding-top: 54px;
        padding-bottom: 54px;
    }

    .project-gallery-grid {
        grid-template-columns: 1fr;
    }

    .project-gallery-image-wrap {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .seo-rich-box,
    .seo-cta-box {
        padding: 26px;
        border-radius: 18px;
    }

    .seo-rich-box h2,
    .seo-cta-box h2 {
        font-size: 26px;
    }

    .seo-rich-box h3 {
        font-size: 22px;
    }

    .seo-rich-box p,
    .seo-rich-box li,
    .seo-rich-box span {
        font-size: 15px;
    }

    .seo-cta-box .hero-btns {
        flex-direction: column;
    }

    .seo-cta-box .hero-btns a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }


}
/* =========================================================
   ILCE PAGE STYLES
   ========================================================= */

.ilce-hero {
    background: linear-gradient(135deg,#ffffff 0%,#f6f8fc 100%);
    border-bottom: 1px solid rgba(15,23,42,.10);
    padding: 70px 5% 60px;
}

.ilce-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.ilce-breadcrumb {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

    .ilce-breadcrumb a {
        color: #64748b;
        text-decoration: none;
    }

        .ilce-breadcrumb a:hover {
            color: var(--accent);
        }

.ilce-label {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.ilce-hero-title {
    font-size: clamp(34px,5vw,58px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    color: #0f172a;
}

.ilce-hero-sub {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 760px;
}

.ilce-hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* WRAPPER */
.ilce-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
    align-items: start;
}

.ilce-main {
    min-width: 0;
}

/* CONTENT */
.ilce-content {
    font-size: 17px;
    line-height: 1.9;
    color: #334155;
}

    .ilce-content h2 {
        font-size: 32px;
        font-weight: 800;
        margin: 42px 0 18px;
        color: #0f172a;
        line-height: 1.3;
    }

    .ilce-content h3 {
        font-size: 24px;
        font-weight: 700;
        margin: 32px 0 14px;
        color: #0f172a;
    }

    .ilce-content p {
        margin-bottom: 20px;
        color: #334155;
    }

    .ilce-content ul,
    .ilce-content ol {
        margin: 18px 0 22px 24px;
    }

    .ilce-content li {
        margin-bottom: 10px;
        color: #334155;
    }

    .ilce-content strong {
        color: #0f172a;
        font-weight: 700;
    }

    .ilce-content a {
        color: var(--accent);
        text-decoration: none;
    }

        .ilce-content a:hover {
            text-decoration: underline;
        }

/* INLINE CTA */
.blog-inline-cta {
    background: linear-gradient(135deg,#ffffff 0%,#f6f8fc 100%);
    border: 1px solid rgba(15,23,42,.10);
    border-radius: 20px;
    padding: 28px;
    margin-top: 40px;
    display: flex;
    gap: 22px;
    align-items: center;
    box-shadow: 0 14px 34px rgba(15,23,42,.06);
}

.blog-inline-cta-body strong {
    color: #0f172a;
    display: block;
    margin-bottom: 6px;
    font-size: 18px;
}

.blog-inline-cta-body p {
    color: #475569;
    margin: 0;
}

.blog-inline-cta-icon {
    font-size: 42px;
}

.blog-inline-cta-actions {
    margin-left: auto;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* SIDEBAR */
.blog-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* MOBİL */
@media (max-width: 900px) {

    .ilce-wrapper {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .blog-inline-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-inline-cta-actions {
        margin-left: 0;
        width: 100%;
    }

        .blog-inline-cta-actions a {
            flex: 1;
            text-align: center;
        }
}

@media (max-width: 768px) {

    .ilce-hero {
        padding: 54px 5% 44px;
    }

    .ilce-hero-title {
        font-size: 38px;
    }

    .ilce-hero-sub {
        font-size: 16px;
    }

    .ilce-content {
        font-size: 16px;
    }

        .ilce-content h2 {
            font-size: 28px;
        }

        .ilce-content h3 {
            font-size: 22px;
        }

    .blog-inline-cta {
        padding: 24px;
    }
}