.video-background {
    position: relative;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.te-slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.content-over-video {
    position: relative;
    z-index: 3;
}

.banner-video-container {
    height: calc(100vh - 100px);
    align-items: stretch;
    justify-content: flex-start;
    display: flex;
}

.banner-video-content-card {
    background-color: #ffffff66;
    border-radius: 10px;
    padding: 20px;
}

.cp-2 {
    width: 100%;
}

.banner-contact-form {
    display: flex;
    align-items: stretch;
    gap: 14px;
    width: 100%;
    margin-top: 28px;
    margin-bottom: 20px;
}

.banner-contact-form input,
.banner-submit-btn {
    height: 52px;
    border: 0;
    font-size: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 32px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px) saturate(135%);
    -webkit-backdrop-filter: blur(16px) saturate(135%);
}

.banner-contact-form input {
    min-width: 0;
    flex: 1 1 160px;
    padding: 0 18px;
    color: #fff;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.24));
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.18);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.banner-contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.84);
}

.banner-contact-form input:focus {
    outline: none;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.3));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 16px 38px rgba(0, 0, 0, 0.34), 0 0 0 3px rgba(242, 103, 34, 0.18);
}

.banner-captcha-box {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    height: 52px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.24));
    border: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 32px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(16px) saturate(135%);
    -webkit-backdrop-filter: blur(16px) saturate(135%);
    overflow: hidden;
}

.banner-captcha-box img {
    display: block;
    width: 140px;
    height: 52px;
    object-fit: cover;
    background: rgba(255, 255, 255, 0.92);
}

.banner-captcha-box button {
    width: 48px;
    height: 52px;
    border: 0;
    color: #fff;
    background: rgba(0, 0, 0, 0.18);
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.banner-captcha-box button:hover {
    background: rgba(242, 103, 34, 0.72);
    transform: rotate(18deg);
}

.banner-submit-btn {
    flex: 0 0 150px;
    padding: 0 22px;
    color: #fff;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.28));
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.banner-submit-btn:hover {
    color: #fff;
    background: linear-gradient(135deg, rgba(242, 103, 34, 0.86), rgba(0, 0, 0, 0.34));
}

@media (min-width: 768px) {
    .cp-2 {
        width: calc(100vw / 2);
    }
}

@media (max-width: 1199px) {
    .banner-contact-form {
        flex-wrap: wrap;
    }

    .banner-contact-form input {
        flex: 1 1 calc(50% - 14px);
    }

    .banner-captcha-box,
    .banner-submit-btn {
        flex: 1 1 calc(50% - 14px);
    }
}

@media (max-width: 575px) {
    .banner-contact-form {
        gap: 10px;
    }

    .banner-contact-form input,
    .banner-captcha-box,
    .banner-submit-btn {
        flex-basis: 100%;
    }

    .banner-captcha-box img {
        flex: 1 1 auto;
        width: auto;
    }
}
