.vxr_hero2_main_box {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #0a0806;
}

.vxr_hero2_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 8, 6, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 184, 0, 0.15);
    transition: all 0.3s ease;
}

.vxr_hero2_header.scrolled {
    padding: 15px 0;
    background: rgba(10, 8, 6, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.vxr_hero2_header_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.vxr_hero2_logo {
    flex-shrink: 0;
    z-index: 1001;
}

.vxr_hero2_logo img {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.vxr_hero2_logo:hover img {
    transform: scale(1.05);
}

.vxr_hero2_nav {
    display: flex;
    align-items: center;
    gap: 35px;
    flex: 1;
    justify-content: center;
}

.vxr_hero2_nav_link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.vxr_hero2_nav_link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFB800;
    transition: width 0.3s ease;
}

.vxr_hero2_nav_link:hover {
    color: #FFB800;
}

.vxr_hero2_nav_link:hover::after {
    width: 100%;
}

.vxr_hero2_header_right {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-shrink: 0;
}

.vxr_hero2_contact_info {
    display: flex;
    align-items: center;
}

.vxr_hero2_phone {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #FFB800;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.vxr_hero2_phone i {
    font-size: 18px;
}

.vxr_hero2_phone:hover {
    color: #ffc933;
    transform: translateY(-2px);
}

.vxr_hero2_btn_quote {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #FFB800;
    color: #FFB800;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
}

.vxr_hero2_btn_quote:hover {
    background: #FFB800;
    color: #0a0806;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 184, 0, 0.4);
}

.vxr_hero2_mobile_toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.vxr_hero2_mobile_toggle span {
    width: 30px;
    height: 3px;
    background: #FFB800;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.vxr_hero2_mobile_toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.vxr_hero2_mobile_toggle.active span:nth-child(2) {
    opacity: 0;
}

.vxr_hero2_mobile_toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.vxr_hero2_video_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vxr_hero2_video_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.vxr_hero2_video_bg.vxr_hero2_video_active {
    opacity: 1;
}

.vxr_hero2_video_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgb(10 8 6 / 87%) 0%, rgb(30 22 15 / 55%) 100%);
    z-index: 2;
}

.vxr_hero2_content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 150px 0 100px;
}

.vxr_hero2_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.vxr_hero2_title {
    font-size: 64px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 25px;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.vxr_hero2_subtitle {
    font-size: 24px;
    color: #f5f5f5;
    margin: 0 0 50px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.vxr_hero2_buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.vxr_hero2_btn {
    padding: 18px 45px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vxr_hero2_btn_primary {
    background: #FFB800;
    color: #0a0806;
    border: 2px solid #FFB800;
}

.vxr_hero2_btn_primary:hover {
    background: #ffc933;
    border-color: #ffc933;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.5);
}

.vxr_hero2_btn_secondary {
    background: transparent;
    color: #FFB800;
    border: 2px solid #FFB800;
}

.vxr_hero2_btn_secondary:hover {
    background: rgba(255, 184, 0, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.3);
}

.vxr_hero2_features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.vxr_hero2_feature_item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.vxr_hero2_feature_item i {
    color: #FFB800;
    font-size: 24px;
}

.vxr_hero2_scroll_indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: #FFB800;
    font-size: 24px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@media (max-width: 1200px) {
    .vxr_hero2_nav {
        gap: 25px;
    }

    .vxr_hero2_nav_link {
        font-size: 15px;
    }

    .vxr_hero2_title {
        font-size: 52px;
    }

    .vxr_hero2_subtitle {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .vxr_hero2_header_container {
        padding: 0 30px;
        gap: 20px;
    }

    .vxr_hero2_nav {
        display: none;
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background: rgba(10, 8, 6, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 25px;
        border-bottom: 2px solid rgba(255, 184, 0, 0.2);
        max-height: calc(100vh - 90px);
        overflow-y: auto;
    }

    .vxr_hero2_nav.active {
        display: flex;
    }

    .vxr_hero2_header_right {
        gap: 20px;
    }

    .vxr_hero2_mobile_toggle {
        display: flex;
    }

    .vxr_hero2_title {
        font-size: 48px;
    }

    .vxr_hero2_features {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .vxr_hero2_header {
        padding: 15px 0;
    }

    .vxr_hero2_header_container {
        padding: 0 20px;
    }

    .vxr_hero2_logo img {
        height: 40px;
    }

    .vxr_hero2_nav {
        top: 70px;
    }

    .vxr_hero2_nav_link {
        font-size: 16px;
        padding: 10px 0;
        width: 100%;
        text-align: center;
    }

    .vxr_hero2_header_right {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .vxr_hero2_phone {
        font-size: 15px;
    }

    .vxr_hero2_btn_quote {
        padding: 10px 25px;
        font-size: 14px;
    }

    .vxr_hero2_container {
        padding: 0 20px;
    }

    .vxr_hero2_title {
        font-size: 36px;
    }

    .vxr_hero2_subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .vxr_hero2_buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .vxr_hero2_btn {
        width: 100%;
        padding: 16px 35px;
    }

    .vxr_hero2_features {
        flex-direction: column;
        gap: 25px;
    }

    .vxr_hero2_content {
        padding: 100px 0 80px;
    }
}

@media (max-width: 480px) {
    .vxr_hero2_title {
        font-size: 28px;
    }

    .vxr_hero2_subtitle {
        font-size: 16px;
    }

    .vxr_hero2_btn {
        font-size: 14px;
        padding: 14px 30px;
    }
}