/* Hero Slider Controls */
.hero-slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-prev,
.hero-next {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(201, 169, 97, 0.8);
    border-color: #c9a961;
    transform: scale(1.1);
}

.hero-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

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

.hero-dots .dot.active {
    background: #c9a961;
    border-color: #c9a961;
    width: 14px;
    height: 14px;
}

.hero-dots .dot:hover {
    background: rgba(201, 169, 97, 0.8);
    transform: scale(1.2);
}

/* Responsive Hero Slider Controls */
@media (max-width: 768px) {
    .hero-slider-controls {
        bottom: 20px;
        gap: 15px;
    }
    
    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .hero-dots .dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-dots .dot.active {
        width: 12px;
        height: 12px;
    }
}


