/* Modern Hero Slider */
.hero-slider {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
}

.hero-slides {
    position: relative;
    width: 100%;
    height: 90vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 100, 251, 0.85) 0%, rgba(147, 243, 68, 0.75) 100%);
    z-index: 1;
}

.hero-slide .hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    color: white;
    animation: heroSlideIn 1s ease-out;
}

.hero-slider .hero-title {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.2;
    font-weight: 800;
}

.hero-slider .hero-subtitle {
    font-size: clamp(1.2rem, 3.2vw, 1.6rem);
    font-weight: 600;
    margin-bottom: 1.25rem;
    opacity: 0.95;
}

.hero-slider .hero-description {
    font-size: clamp(1rem, 2.8vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-slider .hero-actions {
    display: flex;
    justify-content: center;
}

.hero-slider .hero-btn {
    padding: 0.95rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 999px;
    min-width: 0;
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.hero-prev,
.hero-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: var(--secondary-color);
    width: 30px;
    border-radius: 6px;
    border-color: white;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .hero-slider {
        min-height: 70vh;
    }
    
    .hero-slides {
        height: 70vh;
    }
    
    .hero-controls {
        padding: 0 1rem;
    }
    
    .hero-prev,
    .hero-next {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .hero-indicators {
        bottom: 1rem;
    }
}

@media (max-width: 600px) {
    .hero-slider {
        min-height: 65vh;
    }

    .hero-slides {
        height: 65vh;
    }

    .hero-slide .hero-content {
        padding: 1.5rem 1.25rem;
    }

    .hero-slider .hero-title {
        font-size: 1.85rem;
    }

    .hero-slider .hero-subtitle {
        display: none;
    }

    .hero-slider .hero-description {
        font-size: 0.9rem;
    }

    .hero-slider .hero-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.95rem;
    }

    .hero-prev,
    .hero-next {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }

    .hero-indicators {
        gap: 0.5rem;
    }
}

@media (max-width: 420px) {
    .hero-slider {
        min-height: 60vh;
    }

    .hero-slides {
        height: 60vh;
    }

    .hero-slide .hero-content {
        padding: 1.25rem 1rem;
    }

    .hero-slider .hero-title {
        font-size: 1.7rem;
    }

    .hero-slider .hero-subtitle {
        display: none;
    }

    .hero-slider .hero-description {
        font-size: 0.85rem;
    }

    .hero-slider .hero-btn {
        width: auto;
        padding: 0.65rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-indicators {
        bottom: 0.75rem;
    }
}


