/* ==================================================
   HERO SECTION
   ================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 700px;
    background: var(--primary-black);
}

.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroScale 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.5) 50% 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: flex-end;
    max-width: 1280px;
    margin: auto;
    padding: 0 40px;
    width: 100%;
}

.hero-content .container {
    width: 100%;
}

.hero-text {
    width: 100%;
    margin-top: 200px;
}

.hero-text h1 {
    max-width: 800px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(50px, 8vw, 120px);
    line-height: 0.95;
    letter-spacing: -2px;
    font-weight: 1000;
    color: #ffffff;
    margin-bottom: 28px;
    text-transform: uppercase;
}

.hero-text h1 .text-yellow {
    color: var(--accent-yellow);
    display: block;
}

.hero-text p {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 550px;
}

.start-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-yellow);
    color: #ffffff;
    padding: 18px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0px;
    transition: all 0.3s ease;
}

.start-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    background: #ffffff;
    color: var(--accent-yellow);
}

.hero-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.watch-video {
    background: #ffffff;
    color: var(--primary-black);
    border-radius: 50px;
    padding: 8px 8px 8px 28px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.watch-video:hover {
    background: var(--accent-yellow);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Watch Video text underline effect */
.watch-video span {
    position: relative;
    color: var(--primary-black);
}

.watch-video span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0%;
    height: 1.5px;
    background-color: var(--primary-black);
    transition: width 0.3s ease;
}

.watch-video:hover span::after {
    width: 100%;
}

.video-images {
    display: flex;
    align-items: center;
}

.single-video-img img {
    width: 80px;
    height: 46px;
    object-fit: cover;
    border-radius: 30px;
    transition: transform 0.3s ease;
}

.hero-decor {
    position: absolute;
    width: 180px;
    height: 26px;
    background: var(--accent-yellow);
    z-index: 10;
}

/* Black bar underneath the yellow bar */
.hero-decor::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 26px;
    background: var(--primary-black);
    top: 26px;
    z-index: -1;
}

/* ========================================================= LEFT DECOR ========================================================= */
.hero-decor-left {
    left: 0;
}

.hero-decor-left::after {
    left: 0;
}

/* ========================================================= RIGHT DECOR ========================================================= */
.hero-decor-right {
    right: 0;
}

.hero-decor-right::after {
    right: 0;
}

/* ==================================================
   HERO RESPONSIVE (MIGRATED FROM RESPONSIVE.CSS)
   ================================================== */
@media (max-width: 1199px) {
    .hero-text h1 {
        font-size: clamp(40px, 6vw, 80px);
    }
}

@media (max-width: 991px) {
    .hero-section {
        height: auto;
        min-height: 600px;
    }

    .hero-content {
        padding: 120px 20px 0;
        align-items: center;
        /* Center content to prevent top overflow */
    }

    .hero-text {
        margin-top: 0;
        padding-bottom: 60px;
    }

    .hero-text h1 {
        font-size: clamp(38px, 8vw, 70px);
    }

    .hero-text p {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 70svh;
    }

    .hero-content {
        padding-top: 120px;
        /* Push content further down */
    }

    .hero-text {
        padding-bottom: 40px;
        margin-top: 0;
        text-align: left;
    }

    .hero-text h1 {
        font-size: 56px;
        letter-spacing: -1.5px;
        margin-left: 0;
        margin-right: 0;
    }

    .hero-text p {
        font-size: 16px;
        margin-left: 0;
        margin-right: 0;
    }

    .start-btn {
        font-size: 16px;
        padding: 14px 28px;
    }

    .watch-video {
        font-size: 15px;
    }
    
    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 479px) {
    .hero-text h1 {
        font-size: 48px;
        letter-spacing: -1px;
    }

    .start-btn {
        width: 100%;
        text-align: center;
        font-size: 15px;
        padding: 14px 20px;
    }

    .watch-video {
        width: 100%;
        justify-content: flex-start;
    }
    
    .single-video-img img {
        width: 60px;
        height: 34px;
    }
}

/* ==================================================
   VIDEO MODAL