/* =========================================================
   HABILLAGE DU FORMULAIRE DE RÉSERVATION (FIX DÉFINITIF)
   ========================================================= */

/* La carte blanche qui contient tout le formulaire */
.la-clim-landing .booking-card {
    padding: 30px;
    border: 1px solid var(--la-border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(16, 24, 40, 0.06);
}

/* Titres des étapes (1, 2, 3) */
.la-clim-landing .step-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--la-dark);
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

/* Les badges bleus avec les chiffres */
.la-clim-landing .step-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-right: 12px;
    color: #ffffff;
    background: var(--la-primary);
    border-radius: 10px;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(18, 104, 232, 0.2);
}

/* Libellés des champs (NOM, EMAIL, etc.) */
.la-clim-landing #form-rdv .form-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--la-dark);
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}

/* Inputs, Textarea et Selects */
.la-clim-landing #form-rdv .form-control,
.la-clim-landing #form-rdv .form-select {
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 2px solid #eef1f6;
    background-color: #f8fafc;
    color: var(--la-dark);
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* Focus sur les champs */
.la-clim-landing #form-rdv .form-control:focus,
.la-clim-landing #form-rdv .form-select:focus {
    border-color: var(--la-primary);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(18, 104, 232, 0.1);
    outline: none;
}

/* Le gros bouton de validation final */
.la-clim-landing #form-rdv .btn-submit {
    width: 100%;
    min-height: 56px;
    border-radius: 14px;
    background: var(--la-primary);
    color: #ffffff;
    font-weight: 800;
    font-size: 17px;
    border: none;
    box-shadow: 0 10px 24px rgba(18, 104, 232, 0.25);
    transition: all 0.2s ease;
    cursor: pointer;
}

.la-clim-landing #form-rdv .btn-submit:hover {
    background: var(--la-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(18, 104, 232, 0.32);
}

/* Ajustements marges des blocs d'étapes */
.la-clim-landing .booking-step {
    padding-bottom: 20px;
}
.la-clim-landing .booking-step + .booking-step {
    padding-top: 25px;
    border-top: 1px solid var(--la-border);
}

/* Flatpickr input spécifique */
.la-clim-landing .flatpickr-input[readonly] {
    background-color: #f8fafc;
}



/* =========================================================
   BLOC DE CONFIRMATION MODERNE (SUCCÈS)
   ========================================================= */

.booking-confirmation-box {
    text-align: center;
    padding: 30px 15px;
    animation: apparitionDouce 0.4s ease-out;
}

@keyframes apparitionDouce {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.booking-conf-icon {
    font-size: 56px;
    color: #139b62; /* Magnifique vert succès */
    margin-bottom: 20px;
    line-height: 1;
}

.booking-confirmation-box h3 {
    font-size: 26px;
    font-weight: 800;
    color: #101828;
    margin-bottom: 12px;
}

.booking-confirmation-box p {
    font-size: 16px;
    color: #475467;
    max-width: 460px;
    margin-inline: auto;
    margin-bottom: 15px;
}

.booking-confirmation-box .small-notice {
    font-size: 14px;
    color: #667085;
    background-color: #f0fdf4; /* Fond vert très léger */
    border: 1px solid #b9f6ca;
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.btn-conf-retour {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 10px 24px;
    border: 2px solid #e4e7ec;
    border-radius: 12px;
    color: #344054 !important;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none !important;
    background: #ffffff;
    transition: all 0.2s ease;
}

.btn-conf-retour:hover {
    background: #f8fafc;
    border-color: #d0d5dd;
    transform: translateY(-1px);
}
