/* Oak Fusion Slider - ZamDates Style */

.oak-fusion-hero {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 450px;
    max-height: 650px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-burgundy) 100%);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 8px 30px rgba(139, 38, 53, 0.3);
}

/* ZamDates-style Tab Indicators */
.carousel-indicators.oak-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
    display: flex;
    gap: 8px;
    z-index: 15;
    list-style: none;
    padding: 0;
}

.carousel-indicators.oak-indicators button {
    width: auto;
    height: 35px;
    border-radius: 25px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.4);
    margin: 0;
    padding: 8px 18px;
    text-indent: 0;
    opacity: 0.8;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
    font-size: 11px;
    font-weight: 600;
    color: white;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.carousel-indicators.oak-indicators button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.carousel-indicators.oak-indicators button:hover:before {
    left: 100%;
}

.carousel-indicators.oak-indicators button:after {
    content: attr(data-slide-title);
    position: relative;
    z-index: 2;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    display: block;
}

.carousel-indicators.oak-indicators button.active {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.95) 0%, rgba(29, 78, 216, 0.95) 100%);
    border-color: rgba(255, 255, 255, 0.9);
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4);
    color: #ffffff;
}

.carousel-indicators.oak-indicators button:hover {
    opacity: 1;
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(30, 64, 175, 0.8);
    box-shadow: 0 3px 12px rgba(30, 64, 175, 0.3);
}

/* Responsive tab indicators */
@media (max-width: 768px) {
    .hero-slider-container {
        height: 55vh;
        min-height: 350px;
        border-radius: 0 0 15px 15px;
    }
    
    .carousel-indicators.oak-indicators {
        bottom: 15px;
        gap: 5px;
    }
    
    .carousel-indicators.oak-indicators button {
        height: 32px;
        padding: 6px 14px;
        font-size: 10px;
    }
    
    .oak-fusion-hero .oak-control {
        width: 45px;
        height: 45px;
    }
    
    .oak-fusion-hero .oak-control.carousel-control-prev {
        left: 15px;
    }
    
    .oak-fusion-hero .oak-control.carousel-control-next {
        right: 15px;
    }
    
    .oak-fusion-hero .oak-arrow i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-slider-container {
        height: 50vh;
        min-height: 300px;
        border-radius: 0 0 10px 10px;
    }
    
    .carousel-indicators.oak-indicators {
        bottom: 12px;
        gap: 4px;
    }
    
    .carousel-indicators.oak-indicators button {
        height: 28px;
        padding: 4px 10px;
        font-size: 9px;
        border-radius: 15px;
    }
    
    .oak-fusion-hero .oak-control {
        width: 40px;
        height: 40px;
    }
    
    .oak-fusion-hero .oak-control.carousel-control-prev {
        left: 10px;
    }
    
    .oak-fusion-hero .oak-control.carousel-control-next {
        right: 10px;
    }
    
    .oak-fusion-hero .oak-arrow i {
        font-size: 14px;
    }
}