/* Banner Slider Styles - Full Width */
.banner-slider-container {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    z-index: 1;
}

.banner-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.banner-slide-content {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
}

.banner-slide-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    display: block;
}

/* Darkening overlay for better pagination visibility */
.banner-slide-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.2) 70%,
        rgba(0, 0, 0, 0.4) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.banner-slide-content:hover img {
    transform: scale(1.05);
}

/* Navigation removed - using auto-scroll and touch/mouse gestures only */

/* Swiper Pagination - Site Design Match */
.banner-slider .swiper-pagination {
    bottom: 20px;
    text-align: center;
    z-index: 2;
    position: relative;
}

.banner-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background-color: rgba(255, 186, 35, 0.3);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.banner-slider .swiper-pagination-bullet-active {
    width: 48px;
    height: 12px;
    background-color: var(--secondary-color);
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(255, 186, 35, 0.5);
}

/* Responsive Design - Compact Full Width */
@media (max-width: 1200px) {
    .banner-slide-content {
        height: 500px;
    }
    
    .banner-slide-content img {
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 768px) {
    .banner-slide-content {
        height: 300px;
    }
    
    .banner-slide-content img {
        object-fit: cover;
        object-position: center;
    }
    
    /* Navigation buttons removed */
    
    .banner-slider .swiper-pagination {
        bottom: 15px;
    }
    
    .banner-slider .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    .banner-slide-content {
        height: 250px;
    }
    
    .banner-slide-content img {
        object-fit: cover;
        object-position: center;
    }
    
    /* Navigation buttons removed */
}

/* Ultra-wide screens */
@media (min-width: 1920px) {
    .banner-slide-content {
        height: 650px;
    }
    
    .banner-slide-content img {
        object-fit: cover;
        object-position: center;
    }
}

/* Very small screens */
@media (max-width: 320px) {
    .banner-slide-content {
        height: 200px;
    }
    
    .banner-slide-content img {
        object-fit: cover;
        object-position: center;
    }
}

/* Animation Effects */
.banner-slider .swiper-slide-active .banner-slide-content img {
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from {
        transform: scale(1.1);
        opacity: 0.8;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Loading Effect */
.banner-slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.banner-slide-content:hover::before {
    transform: translateX(100%);
}

/* Focus States for Accessibility */
.banner-slider .swiper-button-next:focus,
.banner-slider .swiper-button-prev:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.banner-slider .swiper-pagination-bullet:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}