.hero-banner {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.banner-slide.active {
    opacity: 1;
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 200px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out 0.3s;
}

.banner-slide.active .banner-content {
    opacity: 1;
    transform: translateY(0);
}

.banner-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.banner-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    padding: 20px;
    cursor: pointer;
    font-size: 24px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    opacity: 0.7;
    backdrop-filter: blur(5px);
}

.banner-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transform: scale(1.1);
}

.banner-btn:active {
    transform: scale(0.95);
}

.banner-btn.prev {
    left: 20px;
}

.banner-btn.next {
    right: 20px;
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-banner {
        height: 400px;
    }
    
    .banner-content {
        padding: 100px 20px;
    }
    
    .banner-btn {
        padding: 15px;
        font-size: 20px;
        width: 50px;
        height: 50px;
    }
    
    .banner-btn.prev {
        left: 10px;
    }
    
    .banner-btn.next {
        right: 10px;
    }
}
