/* ===== Contact Section - Video Background Style ===== */
.vs-quote-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
                url('../images/contact-bg.jpg') center/cover no-repeat fixed;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.vs-quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Side - Form */
.vs-quote-left {
    color: #fff;
}

.vs-quote-header {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 40px;
}

.vs-quote-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.2;
    color: #fff;
    border-right: 2px solid rgba(255,255,255,0.3);
    padding-right: 25px;
}

.vs-quote-header h2 span {
    display: block;
    color: #00e676;
    font-weight: 600;
}

.vs-quote-header p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 280px;
}

/* Form Styling */
.vs-quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.vs-quote-form input,
.vs-quote-form select {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.vs-quote-form input::placeholder {
    color: rgba(255,255,255,0.5);
}

.vs-quote-form select {
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.vs-quote-form select option {
    background: #1a1a2e;
    color: #fff;
}

.vs-quote-form input:focus,
.vs-quote-form select:focus {
    outline: none;
    border-color: #00e676;
    background: rgba(0,230,118,0.08);
}

.vs-quote-form .vs-submit-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: #fff;
    padding: 16px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vs-quote-form .vs-submit-btn:hover {
    background: #00e676;
    border-color: #00e676;
    color: #1a1a2e;
}

.vs-quote-form .vs-submit-btn i {
    font-size: 1.1rem;
}

/* Right Side - Video */
.vs-quote-right {
    position: relative;
}

.vs-video-box {
    position: relative;
    background: rgba(0,0,0,0.5);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.vs-video-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vs-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
}

.vs-video-icon {
    width: 70px;
    height: 70px;
    border: 2px solid rgba(0,230,118,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vs-video-icon i {
    color: #00e676;
    font-size: 28px;
}

.vs-video-text {
    text-align: center;
    color: #fff;
}

.vs-video-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.vs-video-text h3 span {
    color: #00e676;
}

.vs-video-text p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
}

.vs-play-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vs-play-btn:hover {
    background: #00e676;
}

.vs-play-btn i {
    color: #fff;
    font-size: 18px;
    margin-left: 3px;
}

/* Responsive */
@media (max-width: 991px) {
    .vs-quote-section {
        padding: 70px 0;
    }
    .vs-quote-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .vs-quote-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .vs-quote-section {
        padding: 50px 0;
    }
    .vs-quote-header {
        flex-direction: column;
        gap: 15px;
    }
    .vs-quote-header h2 {
        font-size: 1.6rem;
        border-right: none;
        border-bottom: 2px solid rgba(255,255,255,0.3);
        padding-right: 0;
        padding-bottom: 15px;
    }
    .vs-quote-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .vs-quote-header h2 {
        font-size: 1.4rem;
    }
}

/* ===== Wave Divider ===== */
.vs-wave-divider {
    background: transparent;
    margin-top: -1px;
    line-height: 0;
}

.vs-wave-divider svg {
    width: 100%;
    height: 80px;
    display: block;
}

.vs-wave-divider svg path {
    fill: #0f0f1a;
}
