/* Banner Carousel Styles */
.banner-section {
    position: relative;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    overflow: hidden;
}

.banner-carousel {
    position: relative;
    width: 100%;
    height: 600px;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    pointer-events: none;
}

.banner-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.banner-picture {
    width: 100%;
    height: 100%;
    display: block;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Navigation Buttons */
.banner-prev,
.banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.banner-prev:hover,
.banner-next:hover {
    background: rgba(0, 166, 127, 0.95);
    transform: translateY(-50%) scale(1.1);
}

.banner-prev:hover svg,
.banner-next:hover svg {
    stroke: white;
}

.banner-prev {
    left: 20px;
}

.banner-next {
    right: 20px;
}

.banner-prev svg,
.banner-next svg {
    stroke: #015457;
    transition: stroke 0.3s ease;
}

/* Indicators */
.banner-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.banner-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.banner-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.banner-indicator.active {
    background: #00A67F;
    border-color: white;
    width: 32px !important;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-carousel {
        height: calc(100vh - 152px);
    }
    
    .banner-prev,
    .banner-next {
        width: 40px;
        height: 40px;
    }
    
    .banner-prev {
        left: 10px;
    }
    
    .banner-next {
        right: 10px;
    }
    
    .banner-prev svg,
    .banner-next svg {
        width: 24px;
        height: 24px;
    }
    
    .banner-indicators {
        bottom: 20px;
        gap: 8px;
    }
    
    .banner-indicator {
        width: 10px;
        height: 10px;
    }
    
    .banner-indicator.active {
        width: 24px;
    }
}

@media (max-width: 530px) {
    .banner-carousel {
        height: calc(100vh - 300px);
    }
}

@media (max-width: 480px) {    
    .banner-prev,
    .banner-next {
        width: 35px;
        height: 35px;
    }
}
