.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 75vh;
        min-height: 450px;
    }
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(21, 53, 91, 0.915), rgba(21, 53, 91, 0.861));
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 1rem;
    max-width: 1500px;
    animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 2.0rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: bold;
    color: white;
}

@media (min-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 4.2rem;
    }
}

.hero-content .highlight {
    color: var(--secondary, #f59e0b);
}

.hero-content p {
    font-size: 1rem;
    max-width: 32rem;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 640px) {
    .hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .hero-content p {
        font-size: 0.8rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
}

.btn-primary,
.btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 9999px;
    transition: all 0.3s ease;
    min-width: 160px;
}

@media (max-width: 640px) {
    .btn-primary,
    .btn-secondary {
        padding: 0.65rem 1.2rem;
        font-size: 0.95rem;
        min-width: 140px;
    }
}

.btn-primary {
    background: var(--secondary, #f59e0b);
    color: white;
}

.btn-primary:hover {
    background: #e68a00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    border: 2px solid var(--secondary, #f59e0b);
    color: var(--secondary, #f59e0b);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--secondary, #f59e0b);
    color: white;
    transform: translateY(-3px);
}


/* Navigation & Dots */

.hero-nav {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
    backdrop-filter: blur(4px);
}

.hero-nav:hover {
    background: var(--secondary, #f59e0b);
}

.hero-nav.prev {
    left: 1.5rem;
}

.hero-nav.next {
    right: 1.5rem;
}

@media (max-width: 768px) {
    .hero-nav {
        width: 40px;
        height: 40px;
    }
    .hero-nav.prev {
        left: 1rem;
    }
    .hero-nav.next {
        right: 1rem;
    }
}

.hero-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.dot {
    width: 20px;
    height: 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--secondary, #f59e0b);
    transform: scale(1.3);
    width: 30px;
}