/*=================================
    Hero Video Section Styles
==================================*/

.hero-video-area {
    position: relative;
    height: calc(100vh - 140px);
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
    background-color: #080a10;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(8, 10, 16, 0.95) 0%,
            rgba(8, 10, 16, 0.8) 35%,
            rgba(8, 10, 16, 0.4) 100%);
    z-index: -1;
}

.hero-video-content {
    position: relative;
    z-index: 10;
    padding-top: 100px;
}

.hero-subtitle {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-subtitle img {
    width: 20px;
    filter: brightness(0) invert(1);
}

.hero-video-title {
    font-size: 82px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-video-title .text-theme {
    color: var(--theme-color);
    position: relative;
    display: inline-block;
}

.hero-video-title .text-theme::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--theme-color);
    opacity: 0.2;
    z-index: -1;
}

.hero-video-text {
    font-size: 20px;
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 45px;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 400;
}

.hero-btn-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-btn-group .btn-premium {
    background: var(--theme-color);
    color: #fff !important;
    padding: 18px 38px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: none;
    box-shadow: 0 10px 25px rgba(224, 18, 36, 0.3);
}

.hero-btn-group .btn-premium:hover {
    background: #fff;
    color: var(--theme-color) !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.hero-btn-group .btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff !important;
    padding: 18px 38px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hero-btn-group .btn-glass:hover {
    background: rgba(255, 255, 255, 1);
    color: var(--title-color) !important;
    border-color: #fff;
    transform: translateY(-5px);
}

.hero-floating-info {
    position: absolute;
    bottom: 60px;
    right: 80px;
    background: rgba(15, 17, 23, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 35px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 20;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-floating-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--theme-color);
    border-radius: 15px 0 0 15px;
}

.hero-floating-info .info-icon {
    width: 55px;
    height: 55px;
    background: var(--theme-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(224, 18, 36, 0.3);
}

.hero-floating-info .info-body .info-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.hero-floating-info .info-body .info-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.hero-shape-left {
    position: absolute;
    top: 15%;
    left: -100px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.hero-shape-right {
    position: absolute;
    bottom: 10%;
    right: -100px;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

/* Animations */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 1399px) {
    .hero-video-title {
        font-size: 68px;
    }

    .hero-floating-info {
        right: 40px;
    }
}

@media (max-width: 1199px) {
    .hero-video-area {
        min-height: 750px;
    }

    .hero-video-title {
        font-size: 60px;
    }

    .hero-video-text {
        font-size: 18px;
    }
}

@media (max-width: 991px) {
    .hero-video-area {
        margin-top: 0;
        height: auto;
        padding: 120px 0 120px;
        min-height: auto;
    }

    .hero-video-content {
        text-align: center;
        padding-top: 0;
    }

    .hero-subtitle {
        justify-content: center;
    }

    .hero-video-title {
        font-size: 52px;
        margin-bottom: 25px;
    }

    .hero-video-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btn-group {
        justify-content: center;
    }

    .hero-floating-info {
        display: none;
    }

    .hero-shape-left,
    .hero-shape-right {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-video-title {
        font-size: 42px;
        line-height: 1.2;
    }

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

    .hero-btn-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn-group a {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-video-title {
        font-size: 34px;
    }
}