/* Brands Carousel Section */
.brands-section {
    padding: 60px 0;
    background: #f9fafb;
}

.brands-section .section-title {
    margin-bottom: 50px;
}

.brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 20px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s;
    text-decoration: none;
}

.brand-logo:hover {
    border-color: #1e40af;
    box-shadow: 0 5px 15px rgba(30, 64, 175, 0.1);
    transform: translateY(-5px);
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

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

/* Splide customization */
.splide__arrow {
    background: #000000;
    opacity: 1;
    width: 45px;
    height: 45px;
}

.splide__arrow:hover {
    background: #ef4444;
}

.splide__arrow svg {
    fill: white;
}

.splide__arrow--prev {
    left: -20px;
}

.splide__arrow--next {
    right: -20px;
}

.splide__pagination {
    bottom: -35px;
}

.splide__pagination__page {
    background: #d1d5db;
}

.splide__pagination__page.is-active {
    background: #000000;
}

/* Responsive */
@media (max-width: 768px) {
    .splide__arrow {
        width: 35px;
        height: 35px;
    }
    
    .splide__arrow--prev {
        left: 0;
    }
    
    .splide__arrow--next {
        right: 0;
    }
    
    .brand-logo {
        height: 100px;
        padding: 15px;
    }
}