/* Section Contact */
.contact-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.contact-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.05;
    pointer-events: none;
}

/* Masquer la vidéo sur mobile */
@media (max-width: 768px) {
    .contact-bg-video {
        display: none;
    }
}

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

.contact-info {
    background: var(--gradient-1);
    border-radius: 20px;
    padding: 3rem;
    color: white;
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.5rem;
}

.contact-form {
    background: var(--light-color);
    border-radius: 20px;
    padding: 3rem;
}

.form-control {
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.1);
    transform: translateY(-2px);
}

.contact-map {
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}