
/* =============================================
   FORMULAIRE DE CONTACT - COULEURS NIGER
   ============================================= */

/* Sous-titre "PRENEZ CONTACT" */
.contact-form-wrap2 .section__title .sub-title {
    color: #FF8200 !important;  /* Orange Niger */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

/* Titre "Je suis à votre écoute" */
.contact-form-wrap2 .section__title .title {
    color: #00A650 !important;  /* Vert Niger - FORCE MAXIMALE */
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.contact-form-wrap2 .section__title .title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #FF8200, #FFFFFF, #00A650);  /* Dégradé Niger */
}

/* Champs de formulaire - ETAT NORMAL */
.contact__form .form-control.style-white,
.contact__form textarea.form-control.style-white {
    border: 2px solid #e0e0e0 !important;
    transition: all 0.3s ease;
    color: #000000 !important;  /* Texte NOIR - FORCE MAXIMALE */
    background-color: #FFFFFF !important;
}

/* Placeholder - PLUS VISIBLE */
.contact__form .form-control.style-white::placeholder,
.contact__form textarea.form-control.style-white::placeholder {
    color: #666666 !important;  /* Gris foncé au lieu de gris clair */
    opacity: 1;
}

/* AU SURVOL (HOVER) */
.contact__form .form-control.style-white:hover,
.contact__form textarea.form-control.style-white:hover {
    border-color: #FF8200 !important;  /* Orange Niger au survol */
    box-shadow: 0 0 0 3px rgba(255, 130, 0, 0.1) !important;
}

/* AU FOCUS (QUAND ON CLIQUE) */
.contact__form .form-control.style-white:focus,
.contact__form textarea.form-control.style-white:focus {
    border-color: #00A650 !important;  /* Vert Niger au focus */
    box-shadow: 0 0 0 4px rgba(0, 166, 80, 0.15) !important;
    outline: none !important;
    color: #000000 !important;
}

/* Labels - TEXTE NOIR */
.contact__form label,
.contact__form .form-label {
    color: #000000 !important;  /* Noir - FORCE MAXIMALE */
    font-weight: 600;
}

/* Bouton de soumission */
.contact__form button[type="submit"],
.contact__form .btn {
    background: linear-gradient(135deg, #FF8200 0%, #E67600 100%) !important;  /* Orange Niger */
    border: none !important;
    color: #FFFFFF !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 14px 30px !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 130, 0, 0.3);
    cursor: pointer;
}

/* Bouton au survol - SE SOULÈVE ET S'ASSOMBRIT */
.contact__form button[type="submit"]:hover,
.contact__form .btn:hover {
    background: linear-gradient(135deg, #E67600 0%, #CC6900 100%) !important;
    transform: translateY(-3px) !important;  /* Se soulève de 3px */
    box-shadow: 0 8px 25px rgba(255, 130, 0, 0.5) !important;
}

/* Bouton quand on clique dessus */
.contact__form button[type="submit"]:active,
.contact__form .btn:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(255, 130, 0, 0.3) !important;
}

/* Image captcha */
.contact__form img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #f0f0f0;
    display: block;
}

/* Textarea */
.contact__form textarea.form-control.style-white {
    min-height: 150px;
    resize: vertical;
}

/* Responsive - MOBILE */
@media (max-width: 768px) {
    .contact__form .btn,
    .contact__form button[type="submit"] {
        width: 100%;
        text-align: center;
    }
    
    .contact__form .form-control.style-white,
    .contact__form textarea.form-control.style-white {
        font-size: 14px;
    }
}
