/* Modern Hero Controls */
.swiper-pagination {
    position: static !important;
    width: auto !important;
    display: flex;
    gap: 8px;
}

.swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 1.5px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--bs-primary);
    width: 45px;
}

/* Hero Navigation Buttons */
.hero-prev,
.hero-next {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
}

.hero-prev:focus,
.hero-next:focus {
    outline: none;
}

/* Hero Button */
.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background: var(--bs-primary);
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.hero-button:hover {
    background: var(--bs-primary-dark, #0056b3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Hero Navigation */
.hero-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 30px;
    padding: 10px 20px;
    max-width: 300px;
}

.hero-buttons {
    display: flex;
    gap: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-navigation {
        max-width: 250px;
        padding: 8px 15px;
    }
    
    .swiper-pagination-bullet {
        width: 20px;
    }
    
    .swiper-pagination-bullet-active {
        width: 35px;
    }
    
    .hero-prev,
    .hero-next {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .hero-navigation {
        max-width: 200px;
        padding: 6px 12px;
    }
    
    .hero-prev,
    .hero-next {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

@media (max-width: 1200px) {
    .slide-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .fullscreen-slider {
        height: 100vh;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }

    .button-text {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .slider-controls {
        padding: 0 20px;
        bottom: 30px;
    }

    .control-group {
        padding: 12px 20px;
    }
    
    .slider-prev,
    .slider-next {
    width: 40px;
    height: 40px;
    }
}

@media (max-width: 576px) {
    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .button-text {
        padding: 12px 24px;
    }

    .control-group {
        border-radius: 25px;
        padding: 10px 15px;
    }
}

@media (max-height: 600px) {
    .fullscreen-slider {
        height: 100vh;
        min-height: 500px;
    }
}
