/* --- BÖLÜM ARKA PLANI --- */
.iletisim-giris-section {
    background-color: #041e42; /* Görseldeki koyu lacivert ton */
    padding: 100px 0;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    overflow: hidden;
}

/* --- YAN YANA YERLEŞİM (FLEXBOX) --- */
.iletisim-giris-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* --- SOL TARAF (METİNLER) --- */
.iletisim-sol-metin {
    flex: 1;
    max-width: 600px;
}

.iletisim-sol-metin h2 {
    font-size: clamp(36px, 5vw, 52px); /* Ekrana göre otomatik boyutlanan başlık */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.iletisim-sol-metin p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85); /* Hafif transparan beyaz metin */
    margin: 0;
}

/* --- SAĞ TARAF (ORGANİK GÖRSEL) --- */
.iletisim-sag-gorsel {
    flex: 1;
    display: flex;
    justify-content: flex-end; /* Resmi sağa yasla */
}

.blob-resim-kapsayici {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1; /* Tam kare bir alan ayırıyoruz */
    overflow: hidden;
    /* KANKACIM İŞTE SİHİR BURADA: Organik Blob Şekli */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    /* Hafif bir nefes alma animasyonu (Opsiyonel ama çok şık durur) */
    animation: blobMorph 8s ease-in-out infinite alternate;
}

.blob-resim-kapsayici img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Resmi şeklin içine tam oturtur */
}

/* Resmi canlı gösteren şekil değiştirme animasyonu */
@keyframes blobMorph {
    0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 991px) {
    .iletisim-giris-flex {
        flex-direction: column; /* Mobilde alt alta al */
        text-align: center;
    }
    .iletisim-sol-metin {
        margin-bottom: 40px;
    }
    .iletisim-sag-gorsel {
        justify-content: center;
    }
    .blob-resim-kapsayici {
        max-width: 400px;
    }
}