/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 0;
}

.slide-content {
    position: relative;
    z-index: 10;
    color: var(--neutral-white);
    max-width: 800px;
    padding: 0 var(--space-6);
}

.slide-title {
    font-size: var(--text-6xl);
    font-weight: var(--weight-bold);
    line-height: 1.1;
    margin-bottom: var(--space-6);
    color: var(--neutral-white);
}

.slide-text {
    font-size: var(--text-xl);
    margin-bottom: var(--space-10);
    color: var(--neutral-200);
    max-width: 600px;
}

.slider-controls {
    position: absolute;
    bottom: var(--space-10);
    right: var(--space-10);
    z-index: 20;
    display: flex;
    gap: var(--space-4);
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--neutral-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

@media (max-width: 768px) {
    .slide-title {
        font-size: var(--text-4xl);
    }

    .slide-text {
        font-size: var(--text-lg);
    }
}