/* Hero Slider Styles */
.hero-slider {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
}

.slides-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Removed background overlay to show banner images clearly */
.slide-background::before {
    display: none;
}

.hero-slider .hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    color: white;
}

.hero-slider .hero-text h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero-slider .hero-subtitle {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.hero-slider .hero-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.hero-slider .hero-features li {
    color: white;
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
}

.hero-slider .hero-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Navigation arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 3rem;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

/* Dots indicator */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Promo badge in slider */
.hero-slider .promo-badge {
    position: absolute;
    top: 50px;
    right: 50px;
    z-index: 10;
}

/* Responsive */
@media (max-width: 768px) {
    .slider-container {
        height: 250px;
    }
    
    .slide-background {
        background-size: cover;
        background-position: center;
    }
    
    .hero-slider .hero-content {
        padding: 15px;
        justify-content: center;
    }
    
    .hero-slider .hero-text {
        text-align: center;
    }
    
    .hero-slider .hero-text h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-slider .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-slider .hero-features {
        display: none;
    }
    
    .slider-nav {
        font-size: 1.2rem;
        padding: 0.3rem;
        width: 30px;
        height: 30px;
        background: rgba(255, 255, 255, 0.8);
        color: #333;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-nav.prev {
        left: 5px;
    }
    
    .slider-nav.next {
        right: 5px;
    }
    
    .slider-dots {
        bottom: 10px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-slider .promo-badge {
        top: 10px;
        right: 10px;
        width: 70px;
        height: 70px;
        font-size: 0.7rem;
    }
}