.elementor-378 .elementor-element.elementor-element-5e46c41{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-7229771 *//* -------------------- GLOBAL -------------------- */
body {
    font-family: "Inter", sans-serif;
    background: #f0f4f7;
    margin: 0;
    padding: 20px;
}

#csl-wrapper {
    max-width: 900px;
    margin: auto;
}

form {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    border: 2px solid #00c4cc;
    box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* -------------------- TITRE -------------------- */
.form-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 25px;
    color: #222;
    font-weight: 800;
}

/* -------------------- PROGRESS BAR -------------------- */
#progress-container {
    width: 100%;
    height: 8px;
    background: #e6e6e6;
    border-radius: 5px;
    margin-bottom: 20px;
}

#progress-bar {
    height: 8px;
    width: 0%;
    background: linear-gradient(90deg, #00c4cc, #009fa5);
    border-radius: 5px;
    transition: width .35s ease;
}

/* -------------------- FORM STEPS -------------------- */
.form-step {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity .4s, transform .4s;
}

.form-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0px);
}

/* -------------------- CHOICE GRID -------------------- */
.choice-grid {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.choice-card {
    flex: 1;
    min-width: 30%;
    padding: 18px;
    background: #f9f9f9;
    border-radius: 12px;
    border: 2px solid transparent;
    text-align: center;
    cursor: pointer;
    transition: .3s;
    font-size: 17px;
}

.choice-card:hover {
    border-color: #00c4cc;
}

.choice-card input {
    display: none;
}

.choice-card input:checked + span {
    color: #00c4cc;
    font-weight: 700;
}

/* -------------------- INPUTS -------------------- */
input, select {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #bbb;
    font-size: 15px;
    margin-bottom: 12px;
}

input:focus, select:focus {
    border-color: #00c4cc;
    outline: none;
}

/* -------------------- BUTTONS -------------------- */
button {
    background: #00c4cc;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 14px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 600;
    margin-top: 20px;
}

button:hover {
    background: #0096a0;
}

.prev-btn {
    background: #ddd;
    color: #444;
}

.prev-btn:hover {
    background: #cfcfcf;
}

/* -------------------- ERROR TEXT -------------------- */
.error {
    color: red;
    font-size: 14px;
    margin: 5px 0 12px 0;
    display: none;
}

/* -------------------- OPTIONS GRID -------------------- */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.option-card {
    border-radius: 12px;
    border: 2px solid transparent;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    transition: .3s;
    text-align: center;
    padding-bottom: 8px;
}

.option-card:hover {
    border-color: #00c4cc;
}

/* Image inside card */
.option-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

/* Hide checkbox/radio */
.option-card input {
    display: none;
}

/* Selected visual state */
.option-card input:checked + img {
    filter: brightness(0.75);
    border-bottom: 2px solid #00c4cc;
}

.option-card input:checked ~ span {
    color: #00c4cc;
    font-weight: 700;
}

/* Text below image */
.option-card span {
    display: block;
    font-weight: 600;
    padding-top: 8px;
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 600px) {
    form {
        padding: 25px;
    }

    .form-title {
        font-size: 22px;
    }

    .choice-card {
        min-width: 100%;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */