/* Video background for contact section */

.contact-section {
    position: relative !important;
    overflow: hidden !important;
    min-height: 100vh !important;
}

.contact-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.contact-video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(26, 26, 26, 0.8),
        rgba(26, 26, 26, 0.6)
    );
    z-index: 0;
    pointer-events: none;
}

.contact-section .container {
    position: relative !important;
    z-index: 1 !important;
}