/* --- MARKALAR BÖLÜMÜ (brands.css) - SADECE OTO ANİMASYON --- */

.brands-section {
    padding: 60px 0 30px 0;
    background-color: #ffffff;
}

.brands-grid {
    display: flex;
    flex-wrap: nowrap; /* Masaüstünde tek şerit */
    justify-content: space-between;
    align-items: center;
    gap: 15px; 
    width: 100%;
    margin-top: 25px;
}

.brand-box {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 15px 5px; 
    
    /* Esnek yapı */
    flex: 1; 
    min-width: 0;
    
    color: #37474f;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    cursor: default;
    
    /* DOMİNO ANİMASYONU (Sadece bu çalışacak) */
    animation: dominoWave 8s infinite ease-in-out;
    
    /* Hover geçişlerini kaldırdık, sadece auto-animasyon var */
}

/* --- ANİMASYON (Otomatik Dalgalanma) --- */
@keyframes dominoWave {
    0%, 100% {
        border-color: #e0e0e0;
        color: #37474f;
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    }
    5% { /* Parlama Anı */
        border-color: #cea06b; 
        color: #cea06b;
        transform: scale(1.05); /* %5 Büyüme */
        box-shadow: 0 10px 20px rgba(206, 160, 107, 0.25);
    }
    10% { /* Normale Dönüş */
        border-color: #e0e0e0;
        color: #37474f;
        transform: scale(1);
        box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    }
}

/* GECİKMELER (Sırayla yanmaları için) */
.brand-box:nth-child(1) { animation-delay: 0s; }
.brand-box:nth-child(2) { animation-delay: 1s; }
.brand-box:nth-child(3) { animation-delay: 2s; }
.brand-box:nth-child(4) { animation-delay: 3s; }
.brand-box:nth-child(5) { animation-delay: 4s; }
.brand-box:nth-child(6) { animation-delay: 5s; }
.brand-box:nth-child(7) { animation-delay: 6s; }
.brand-box:nth-child(8) { animation-delay: 7s; }

/* HOVER BLOĞU TAMAMEN SİLİNDİ - MOUSE ETKİSİZ */

/* --- MOBİL UYUM --- */
@media (max-width: 992px) {
    .brands-section { padding: 40px 0 20px 0; }
    .brands-grid { flex-wrap: wrap; gap: 10px; }
    .brand-box { flex: 0 0 45%; font-size: 0.9rem; padding: 12px 5px; margin-bottom: 5px; }
}