/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 50px 10%;
    background: linear-gradient(-45deg, 
         #2c0606, #123d0b, #093535, #3f0f27, #0b163b, rgb(57, 43, 11), #29430c, rgb(72, 17, 17)
    );
    color: #fff;
    border-radius: 10px;
    background-size: 400% 400%;
    animation: fluorescentBG 25s ease infinite;
}

@keyframes fluorescentBG {
    0% {background-position: 0% 50%;}
    25% {background-position: 50% 100%;}
    50% {background-position: 100% 50%;}
    75% {background-position: 50% 0%;}
    100% {background-position: 0% 50%;}
}

/* ===== TITRE ===== */
.contact-section h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    text-align: center;
}

/* ===== FORMULAIRES ===== */
.contact-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
}

.contact-section label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.contact-section input,
.contact-section select,
.contact-section textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    box-sizing: border-box;
}

.contact-section button {
    margin-top: 20px;
    padding: 12px 20px;
    background: #0a5f0a;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-section button:hover {
    background: #074a07;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .contact-section {
        padding: 40px 5%;
    }

    .contact-section form {
        padding: 15px;
    }

    .contact-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 30px 5%;
    }

    .contact-section h2 {
        font-size: 1.6rem;
    }

    .contact-section input,
    .contact-section select,
    .contact-section textarea,
    .contact-section button {
        font-size: 0.95rem;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 20px 3%;
    }

    .contact-section h2 {
        font-size: 1.4rem;
    }

    .contact-section input,
    .contact-section select,
    .contact-section textarea,
    .contact-section button {
        font-size: 0.9rem;
        padding: 6px;
    }
}
