/* ============================================
       PROJELER PAGE - KURUMSAL TASARIM
       ============================================ */
    :root {
        --prj-primary: #ff7a1a;
        --prj-primary-dark: #e66a0a;
        --prj-bg-dark: #0b1426;
        --prj-bg-alt: #0f1b30;
        --prj-text: #e5ecf8;
        --prj-text-muted: #94a3b8;
        --prj-border: rgba(255, 255, 255, 0.08);
        --prj-glass: rgba(255, 255, 255, 0.03);
    }

    .projects-page .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
    }

    /* Hero */
    .projects-hero {
        background: linear-gradient(135deg, var(--prj-bg-dark) 0%, var(--prj-bg-alt) 100%);
        padding: 140px 0 80px;
        position: relative;
        overflow: hidden;
    }

    .projects-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 80% 50% at 20% 20%, rgba(255, 122, 26, 0.12), transparent),
            radial-gradient(ellipse 60% 40% at 80% 80%, rgba(37, 99, 235, 0.08), transparent);
        pointer-events: none;
    }

    .projects-hero .container {
        position: relative;
        z-index: 2;
        text-align: center;
    }

    .projects-hero .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(255, 122, 26, 0.12);
        border: 1px solid rgba(255, 122, 26, 0.25);
        color: var(--prj-primary);
        padding: 10px 20px;
        border-radius: 50px;
        font-size: 0.95rem;
        font-weight: 600;
        margin-bottom: 24px;
    }

    .projects-hero h1 {
        font-size: clamp(2rem, 5vw, 3rem);
        font-weight: 800;
        color: #fff !important;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .projects-hero h1 span {
        background: linear-gradient(135deg, var(--prj-primary), #ffae42);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .projects-hero .hero-lead {
        font-size: 1.2rem;
        color: var(--prj-text-muted) !important;
        max-width: 700px;
        margin: 0 auto 40px;
        line-height: 1.7;
    }

    /* Stats */
    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 50px;
        flex-wrap: wrap;
    }

    .hero-stat {
        text-align: center;
    }

    .hero-stat strong {
        display: block;
        font-size: 2.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--prj-primary), #ffae42);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .hero-stat span {
        color: var(--prj-text-muted);
        font-size: 0.95rem;
    }

    /* Sections */
    .prj-section {
        padding: 80px 0;
    }

    .prj-section.bg-dark {
        background: var(--prj-bg-dark);
    }

    .prj-section.bg-alt {
        background: linear-gradient(180deg, var(--prj-bg-alt) 0%, var(--prj-bg-dark) 100%);
    }

    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-subtitle {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--prj-primary);
        font-weight: 600;
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 12px;
    }

    .section-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        font-weight: 800;
        color: #fff !important;
        margin-bottom: 16px;
    }

    .section-lead {
        font-size: 1.1rem;
        color: var(--prj-text-muted) !important;
        max-width: 600px;
        margin: 0 auto;
    }

    /* ============================================
       BOLGE KARTLARI - ANI GöRÜNÜM
       ============================================ */
    .regions-showcase {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    @media (max-width: 992px) {
        .regions-showcase {
            grid-template-columns: 1fr;
            gap: 24px;
        }
    }

    .region-box {
        background: linear-gradient(180deg, var(--prj-glass) 0%, rgba(255, 255, 255, 0.01) 100%);
        border: 1px solid var(--prj-border);
        border-radius: 20px;
        overflow: hidden;
        transition: all 0.4s ease;
    }

    .region-box:hover {
        border-color: rgba(255, 122, 26, 0.3);
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    }

    .region-box-header {
        padding: 30px;
        text-align: center;
        position: relative;
    }

    .region-box-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
    }

    .region-box.edirne .region-box-header::before {
        background: linear-gradient(90deg, #2563eb, #3b82f6);
    }

    .region-box.kirklareli .region-box-header::before {
        background: linear-gradient(90deg, #16a34a, #22c55e);
    }

    .region-box.tekirdag .region-box-header::before {
        background: linear-gradient(90deg, #dc2626, #ef4444);
    }

    .region-box-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        font-size: 2rem;
        color: #fff;
    }

    .region-box.edirne .region-box-icon {
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    }

    .region-box.kirklareli .region-box-icon {
        background: linear-gradient(135deg, #16a34a, #15803d);
        box-shadow: 0 10px 30px rgba(22, 163, 74, 0.3);
    }

    .region-box.tekirdag .region-box-icon {
        background: linear-gradient(135deg, #dc2626, #b91c1c);
        box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
    }

    .region-box h2 {
        color: #fff !important;
        font-size: 1.6rem;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .region-box .region-desc {
        color: var(--prj-text-muted);
        font-size: 0.95rem;
        margin-bottom: 16px;
    }

    .region-box .project-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 122, 26, 0.15);
        color: var(--prj-primary);
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 600;
    }

    /* İLÇE LİSTESİ */
    .region-box-districts {
        padding: 24px 30px 30px;
        border-top: 1px solid var(--prj-border);
        background: rgba(0, 0, 0, 0.2);
    }

    .districts-title {
        color: var(--prj-text-muted);
        font-size: 0.85rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .districts-title i {
        color: var(--prj-primary);
    }

    .districts-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    @media (max-width: 576px) {
        .districts-grid {
            grid-template-columns: 1fr;
        }
    }

    .district-link {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px 16px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--prj-border);
        border-radius: 12px;
        color: var(--prj-text);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: all 0.3s ease;
    }

    .district-link:hover {
        background: rgba(255, 122, 26, 0.12);
        border-color: rgba(255, 122, 26, 0.3);
        color: #fff;
        transform: translateX(5px);
    }

    .district-link i {
        color: var(--prj-primary);
        font-size: 0.85rem;
    }

    .district-link .arrow {
        margin-left: auto;
        opacity: 0;
        transition: all 0.3s ease;
        font-size: 0.8rem;
    }

    .district-link:hover .arrow {
        opacity: 1;
        transform: translateX(3px);
    }

    /* ============================================
       KATEGORİLER
       ============================================ */
    .categories-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 16px;
    }

    @media (max-width: 1200px) {
        .categories-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media (max-width: 768px) {
        .categories-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 576px) {
        .categories-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    .cat-card {
        background: var(--prj-glass);
        border: 1px solid var(--prj-border);
        border-radius: 16px;
        padding: 24px 16px;
        text-align: center;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .cat-card:hover {
        background: rgba(255, 122, 26, 0.1);
        border-color: rgba(255, 122, 26, 0.3);
        transform: translateY(-5px);
    }

    .cat-card .cat-icon {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        background: linear-gradient(135deg, rgba(255, 122, 26, 0.15), rgba(255, 122, 26, 0.05));
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 14px;
        font-size: 1.4rem;
        color: var(--prj-primary);
        transition: all 0.3s ease;
    }

    .cat-card:hover .cat-icon {
        background: linear-gradient(135deg, var(--prj-primary), var(--prj-primary-dark));
        color: #fff;
        transform: scale(1.1);
    }

    .cat-card span {
        color: #fff;
        font-size: 0.9rem;
        font-weight: 600;
        display: block;
    }

    /* CTA */
    .prj-cta {
        background: linear-gradient(135deg, var(--prj-primary), var(--prj-primary-dark));
        padding: 80px 0;
        text-align: center;
        position: relative;
    }

    .prj-cta::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .prj-cta .container {
        position: relative;
        z-index: 2;
    }

    .prj-cta h2 {
        color: #fff !important;
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        font-weight: 800;
        margin-bottom: 16px;
    }

    .prj-cta p {
        color: rgba(255, 255, 255, 0.9) !important;
        font-size: 1.2rem;
        max-width: 600px;
        margin: 0 auto 30px;
    }

    .cta-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-white {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 32px;
        background: #fff;
        color: var(--prj-primary-dark);
        border-radius: 12px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    .btn-white:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    }

    .btn-outline-white {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 16px 32px;
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255, 255, 255, 0.4);
        border-radius: 12px;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-outline-white:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: #fff;
    }
