/* --- Güvendiğimiz Markalar Bölümü --- */
.trusted-brands-section {
    background-color: #fcfbf8; 
    padding: 100px 0;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden; /* Animasyon dışarı taşmasın diye */
}

/* --- YENİ: Animasyon Ayarları --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px); /* 40 piksel aşağıdan başlar */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0); /* Kendi orijinal konumuna gelir */
}

/* Sağ tarafın sol taraftan biraz daha geç gelmesi için gecikme (Çok şık durur) */
.delay-1 {
    transition-delay: 0.2s;
}

/* --- Ana Konteyner --- */
.brands-container {
    display: flex;
    gap: 60px;
    align-items: center; 
}

/* Sol Resim Alanı */
.brands-left {
    flex: 1;
    width: 50%;
}

.brands-left img {
    width: 100%;
    height: auto;
    border-radius: 12px; 
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    display: block;
}

/* Sağ İçerik Alanı */
.brands-right {
    flex: 1;
    width: 50%;
}

.brands-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.brands-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.brands-divider {
    width: 60px;
    height: 3px;
    background-color: var(--gold);
    margin-bottom: 30px;
}

.brands-text p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* 4'lü Özellikler Alanı (Masaüstü) */
.brands-features {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 45px;
    margin-bottom: 45px;
}

.b-feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.b-feature-item i {
    font-size: 28px;
    color: var(--gold);
}

.b-feature-item h5 {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}

.b-feature-item p {
    font-size: 11px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* İstatistik Kutusu (Masaüstü) */
.brands-stats {
    display: flex;
    justify-content: space-between;
    background-color: #f7f4ee; 
    border: 1px solid #ebe5dc;
    padding: 30px 25px;
    border-radius: 10px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.stat-item i {
    font-size: 30px;
    color: var(--gold);
}

.stat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-text strong {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.stat-text span {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 500;
}

/* --- Mobil Uyumluluk (Burası okunaklı hale getirildi) --- */
@media (max-width: 1100px) {
    .trusted-brands-section {
        padding: 60px 0;
    }

    .brands-container {
        flex-direction: column; 
        gap: 40px;
    }

    .brands-left, .brands-right {
        width: 100%;
    }

    .brands-title {
        font-size: 32px;
    }

    /* YENİ: Mobilde Özellikleri 2x2 Izgara (Grid) Yapıyoruz */
    .brands-features {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 kolon */
        gap: 25px 15px; /* Satır ve sütun boşlukları */
        margin-top: 35px;
        margin-bottom: 35px;
    }

    .b-feature-item {
        text-align: center;
        align-items: center;
        gap: 10px;
    }

    .b-feature-item i {
        font-size: 26px; /* İkonlar belirginleşti */
    }

    .b-feature-item h5 {
        font-size: 12px; /* Yazılar okunaklı hale geldi */
    }

    .b-feature-item p {
        font-size: 11px; /* Paragraf rahat okunuyor */
    }

    /* YENİ: Mobilde İstatistik Kutusunu 2x2 Izgara Yapıyoruz */
    .brands-stats {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 kolon */
        gap: 20px 15px;
        padding: 20px;
    }

    .stat-item {
        flex-direction: column; 
        text-align: center;
        gap: 8px;
    }

    .stat-item i {
        font-size: 24px;
    }

    .stat-text {
        align-items: center;
    }

    .stat-text strong {
        font-size: 18px; /* Rakamlar tekrar büyüdü */
    }

    .stat-text span {
        font-size: 11px; /* Açıklamalar okunaklı */
    }
}

@media (max-width: 400px) {
    .brands-title { font-size: 28px; }
    /* Telefon çok küçükse bile 2'li grid bozulmaz, yazılar ideal kalır */
}