/* ==========================================
   PREMIUM HERO SLIDER STYLES
   ========================================== */

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    margin-bottom: 0;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.7) 40%,
            rgba(0, 0, 0, 0.3) 70%,
            transparent 100%),
        linear-gradient(to top,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
    padding: 0 50px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 20px 0;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
    font-size: 1.1rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-meta .rating {
    background: rgba(255, 193, 7, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    color: #ffc107;
    font-weight: 600;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.hero-meta .rating i {
    color: #ffc107;
    margin-right: 5px;
}

.hero-meta span:not(.rating) {
    color: #ccc;
    font-weight: 500;
}

.hero-desc {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #ddd;
    margin-bottom: 35px;
    max-width: 600px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-btns .btn {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-btns .btn-lg {
    background: linear-gradient(135deg, #e50914 0%, #b20710 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

.hero-btns .btn-lg::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-btns .btn-lg:hover::before {
    left: 100%;
}

.hero-btns .btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(229, 9, 20, 0.5);
}

.hero-btns .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.hero-btns .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Swiper Navigation Buttons */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
    background: rgba(229, 9, 20, 0.8);
    transform: scale(1.1);
}

.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
    font-size: 24px;
    font-weight: bold;
}

/* Swiper Pagination */
.heroSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: #e50914;
    width: 40px;
    border-radius: 6px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-content {
        max-width: 550px;
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .hero-slider-container {
        height: 70vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-desc {
        font-size: 1rem;
        -webkit-line-clamp: 2;
    }

    .hero-content {
        padding: 0 25px;
    }

    .hero-btns .btn {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .heroSwiper .swiper-button-next,
    .heroSwiper .swiper-button-prev {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-meta {
        font-size: 0.9rem;
        gap: 12px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
}