/* --- BÖLÜM VE ARKA PLAN --- */
.kurumsal3-section {
    position: relative;
    padding: 120px 0;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
    min-height: 600px;
}

.k3-bg-medya {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.k3-bg-video, .k3-bg-resim {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.k3-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Görseldeki gibi siyah ve sıcak turuncu/kırmızı tonlu bir geçiş */
    background: linear-gradient(90deg, rgba(10,5,0,0.85) 0%, rgba(200,40,0,0.4) 100%);
    z-index: 2;
}

/* --- YAN YANA YERLEŞİM --- */
.kurumsal3-section .container {
    position: relative;
    z-index: 3;
}

.kurumsal3-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* --- SOL: İÇERİK --- */
.k3-sol-icerik {
    flex: 1;
    max-width: 500px;
}

.k3-ana-baslik {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 50px;
}

.k3-madde {
    margin-bottom: 30px;
}

.k3-madde h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.k3-madde p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* --- SAĞ: EĞİMLİ GÖRSEL VE MAVİ KUTU --- */
.k3-sag-gorsel-alani {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end; /* Resmi sağa yasla */
}

/* Sihirli Paralelkenar (Skew) Etkisi */
.k3-egimli-kutu {
    width: 80%;
    height: 450px;
    transform: skewX(-12deg); /* Kutuyu -12 derece eğer */
    overflow: hidden;
    box-shadow: -15px 15px 30px rgba(0,0,0,0.5);
    border-right: 5px solid rgba(255,255,255,0.1);
}

.k3-egimli-kutu img {
    width: 120%; /* Köşelerde boşluk kalmaması için biraz büyük yapıyoruz */
    height: 100%;
    object-fit: cover;
    transform: skewX(12deg) translateX(-10%); /* Resmi geri düzelterek (12deg) yamulmayı önler */
}

/* Mavi İstatistik Kutusu */
.k3-mavi-kutu {
    position: absolute;
    bottom: 20px;
    left: 0; /* Resmin üzerine soldan binmesi için */
    background-color: #1a73e8; /* Parlak mavi */
    display: flex;
    gap: 40px;
    padding: 30px 40px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    z-index: 4;
}

.k3-stat {
    display: flex;
    flex-direction: column;
}

.stat-sayi {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-metin {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.9;
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 991px) {
    .kurumsal3-flex {
        flex-direction: column;
    }
    .k3-sol-icerik {
        max-width: 100%;
        margin-bottom: 50px;
    }
    .k3-sag-gorsel-alani {
        width: 100%;
        justify-content: center;
    }
    /* Mobilde yamukluğu iptal edip düzleştiriyoruz (kırılmaması için) */
    .k3-egimli-kutu {
        width: 100%;
        transform: skewX(0); 
        height: 300px;
    }
    .k3-egimli-kutu img {
        width: 100%;
        transform: skewX(0) translateX(0);
    }
    .k3-mavi-kutu {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
        width: 90%;
        justify-content: space-around;
        padding: 20px;
        gap: 20px;
    }
}