/* ============================================
   HERO SLIDER STYLES
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 0;
    /* Remove default section padding to fix gap */
}

.hero-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(12, 27, 51, 0.85) 0%, rgba(12, 27, 51, 0.7) 100%); */
    background: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding-top: 72px;
}

.hero-title {
    font-size: clamp(2.25rem, 5.5vw, 3.75rem);
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.75rem;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Owl Carousel Custom Styling */
.home-slider .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
}

.home-slider .owl-nav button {
    position: absolute;
    width: 48px;
    height: 48px;
    background: transparent !important;
    color: var(--white) !important;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 1.25rem;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.home-slider .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: scale(1.08);
}

.home-slider .owl-nav .owl-prev {
    left: 30px;
}

.home-slider .owl-nav .owl-next {
    right: 30px;
}

.home-slider .owl-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.home-slider .owl-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.35) !important;
    border-radius: 2px;
    transition: all var(--transition-normal);
}

.home-slider .owl-dot.active {
    background: var(--white) !important;
    width: 22px;
    border-radius: 2px;
}

/* Animated Elements */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content>* {
    animation: slideInUp 0.8s ease-out backwards;
}

.hero-title {
    animation-delay: 0.2s;
}

.hero-subtitle {
    animation-delay: 0.4s;
}

.hero-buttons {
    animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding-top: 96px;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.95rem, 2.5vw, 1.1rem);
    }

    .home-slider .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .home-slider .owl-nav .owl-prev {
        left: 15px;
    }

    .home-slider .owl-nav .owl-next {
        right: 15px;
    }

    .home-slider .owl-dots {
        bottom: 16px;
    }
}