
/* =============================================
   FORMULAIRE DE RENDEZ-VOUS - COULEURS NIGER
   ============================================= */

/* Titre du formulaire */
.appointment-form-wrap .section__title .title {
    color: #00A650 !important;  /* Vert Niger - FORCE MAXIMALE */
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.appointment-form-wrap .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 */
.appointment__form .form-control.style-border3,
.appointment__form .form-select.style-border3 {
    border: 2px solid #e0e0e0 !important;
    transition: all 0.3s ease;
    color: #000000 !important;  /* Texte NOIR - FORCE MAXIMALE */
    background-color: #FFFFFF !important;
}

/* Placeholder - PLUS VISIBLE */
.appointment__form .form-control.style-border3::placeholder,
.appointment__form .form-select.style-border3::placeholder {
    color: #666666 !important;  /* Gris foncé au lieu de gris clair */
    opacity: 1;
}

/* AU SURVOL (HOVER) */
.appointment__form .form-control.style-border3:hover,
.appointment__form .form-select.style-border3: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) */
.appointment__form .form-control.style-border3:focus,
.appointment__form .form-select.style-border3: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;
}

/* Icônes des champs - ETAT NORMAL */
.appointment__form .form-icon-right2 svg,
.appointment__form .form-icon-right2 i {
    color: #00A650 !important;  /* Vert Niger */
    fill: #00A650 !important;
    transition: all 0.3s ease;
}

/* Icônes au focus avec le champ */
.appointment__form .form-group:focus-within .form-icon-right2 svg,
.appointment__form .form-group:focus-within .form-icon-right2 i {
    color: #FF8200 !important;  /* Orange Niger au focus */
    fill: #FF8200 !important;
    transform: scale(1.1);
}

/* Labels - TEXTE NOIR */
.appointment__form label,
.appointment__form .form-label {
    color: #000000 !important;  /* Noir - FORCE MAXIMALE */
    font-weight: 600;
}

/* Bouton de soumission */
.appointment__form button[type="submit"],
.appointment__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 */
.appointment__form button[type="submit"]:hover,
.appointment__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 */
.appointment__form button[type="submit"]:active,
.appointment__form .btn:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(255, 130, 0, 0.3) !important;
}

/* Image captcha */
.appointment__form img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #f0f0f0;
    display: block;
}

/* Style pour le select */
.appointment__form .form-select.style-border3 {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #000000 !important;
}

/* Options dans le select */
.appointment__form .form-select.style-border3 option {
    color: #000000 !important;
    padding: 10px;
}

/* Responsive - MOBILE */
@media (max-width: 768px) {
    .appointment__form .btn,
    .appointment__form button[type="submit"] {
        width: 100%;
        text-align: center;
    }
    
    .appointment__form .form-control.style-border3,
    .appointment__form .form-select.style-border3 {
        font-size: 14px;
    }
}
