
/* =============================================
   RENDEZ-VOUS - CHARTE PETITPOUSS
   Jaune luxueux #D4A800 / Gris foncé #1A1D20
   ============================================= */

/* Titre du formulaire */
.appointment-form-wrap .section__title .title {
    color: #1A1D20 !important;
    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: #D4A800;
}

/* Champs de formulaire */
.appointment__form .form-control.style-border3,
.appointment__form .form-select.style-border3 {
    border: 2px solid #e0e0e0 !important;
    transition: all 0.3s ease;
    color: #1A1D20 !important;
    background-color: #FFFFFF !important;
}

/* Placeholder */
.appointment__form .form-control.style-border3::placeholder,
.appointment__form .form-select.style-border3::placeholder {
    color: #888 !important;
    opacity: 1;
}

/* Au survol */
.appointment__form .form-control.style-border3:hover,
.appointment__form .form-select.style-border3:hover {
    border-color: #D4A800 !important;
    box-shadow: 0 0 0 3px rgba(212, 168, 0, 0.1) !important;
}

/* Au focus */
.appointment__form .form-control.style-border3:focus,
.appointment__form .form-select.style-border3:focus {
    border-color: #D4A800 !important;
    box-shadow: 0 0 0 4px rgba(212, 168, 0, 0.15) !important;
    outline: none !important;
    color: #1A1D20 !important;
}

/* Icônes des champs */
.appointment__form .form-icon-right2 svg,
.appointment__form .form-icon-right2 i {
    color: #D4A800 !important;
    fill: #D4A800 !important;
    transition: all 0.3s ease;
}

/* Icônes au focus */
.appointment__form .form-group:focus-within .form-icon-right2 svg,
.appointment__form .form-group:focus-within .form-icon-right2 i {
    color: #1A1D20 !important;
    fill: #1A1D20 !important;
    transform: scale(1.1);
}

/* Labels */
.appointment__form label,
.appointment__form .form-label {
    color: #1A1D20 !important;
    font-weight: 600;
}

/* Bouton de soumission */
.appointment__form button[type="submit"],
.appointment__form .btn {
    background: #D4A800 !important;
    border: none !important;
    color: #1A1D20 !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(212, 168, 0, 0.3);
    cursor: pointer;
}

/* Bouton au survol */
.appointment__form button[type="submit"]:hover,
.appointment__form .btn:hover {
    background: #1A1D20 !important;
    color: #D4A800 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(26, 29, 32, 0.3) !important;
}

/* Bouton au clic */
.appointment__form button[type="submit"]:active,
.appointment__form .btn:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(212, 168, 0, 0.3) !important;
}

/* Image captcha */
.appointment__form img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #f0f0f0;
    display: block;
}

/* Select */
.appointment__form .form-select.style-border3 {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #1A1D20 !important;
}

.appointment__form .form-select.style-border3 option {
    color: #1A1D20 !important;
    padding: 10px;
}

/* Responsive */
@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;
    }
}
