/* Çalıştığımız Firmalar - bölüm kutusu */
.brand-section {
    padding: 0.5rem 0;
}

.tkm-section-brands {
    padding: 0.75rem 1rem;
    box-shadow: none;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
}

/* Marquee yapısı */
.brand-marquee {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.brand-track {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: brand-scroll 25s linear infinite;
    will-change: transform;
}

/* Logo boyutları */
.brand-logo {
    height: 85px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

.brand-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Kayan animasyon */
@keyframes brand-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Mobilde biraz küçültelim */
@media (max-width: 575.98px) {
    .brand-logo {
        height: 45px;
        max-width: 150px;
    }
}
