.elementor-7001 .elementor-element.elementor-element-74de4e8:not(.elementor-motion-effects-element-type-background), .elementor-7001 .elementor-element.elementor-element-74de4e8 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FDFDFC;}.elementor-7001 .elementor-element.elementor-element-74de4e8{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;margin-top:-21px;margin-bottom:0px;padding:40px 0px 0px 0px;}.elementor-7001 .elementor-element.elementor-element-74de4e8 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}.elementor-7001 .elementor-element.elementor-element-68d3a42:not(.elementor-motion-effects-element-type-background), .elementor-7001 .elementor-element.elementor-element-68d3a42 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FDFDFC;}.elementor-7001 .elementor-element.elementor-element-68d3a42{transition:background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;}.elementor-7001 .elementor-element.elementor-element-68d3a42 > .elementor-background-overlay{transition:background 0.3s, border-radius 0.3s, opacity 0.3s;}@media(min-width:768px){.elementor-7001 .elementor-element.elementor-element-cd54776{width:20%;}.elementor-7001 .elementor-element.elementor-element-f0b9a1e{width:59.333%;}.elementor-7001 .elementor-element.elementor-element-863d9d6{width:20%;}}/* Start custom CSS for shortcode, class: .elementor-element-16848dc *//* --- Variables de Design --- */
:root {
    --cri-blue: #275d9a;
    --cri-green: #92C022;
    --cri-text: #2d3748;
    --cri-border: #e2e8f0;
    --cri-bg-light: #f8fafc;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#cri-form-container {
    max-width: 900px;
    margin: 40px auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    font-family: 'Montserrat', sans-serif;
}

/* --- Barre de Progression --- */
.cri-progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
    padding: 0 20px;
}

.cri-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    flex: 1;
}

.cri-step-number {
    width: 35px;
    height: 35px;
    background: #edf2f7;
    color: #a0aec0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: var(--transition);
    border: 2px solid transparent;
}

.cri-progress-step.active .cri-step-number {
    background: var(--cri-blue);
    color: white;
    box-shadow: 0 0 0 5px rgba(39, 93, 154, 0.15);
}

.cri-progress-step.completed .cri-step-number {
    background: var(--cri-green);
    color: white;
}

.cri-step-label {
    font-size: 11px;
    font-weight: 600;
    color: #718096;
    text-transform: uppercase;
    text-align: center;
}

.cri-progress-line {
    height: 2px;
    background: #edf2f7;
    flex: 1;
    margin: 0 -25px 25px -25px;
    position: relative;
    top: -12px;
}

/* --- Structure du Corps --- */
.cri-form-body {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.cri-image-column {
    flex: 0 0 280px;
    display: flex;
    justify-content: center;
}

.cri-image-circle {
    width: 260px;
    height: 260px;
    background: var(--cri-bg-light);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.cri-image-circle img {
    max-width: 80%;
    transition: transform 0.5s ease;
}

.cri-form-column {
    flex: 1;
}

/* --- Champs Floating Label --- */
.form-group.floating-label-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group.floating-label-group input, 
.form-group.floating-label-group select, 
.form-group.floating-label-group textarea {
    width: 100%;
    padding: 16px 16px 8px;
    border: 1.5px solid var(--cri-border);
    border-radius: 12px;
    font-size: 15px;
    color: var(--cri-text);
    background: transparent;
    transition: var(--transition);
}

.form-group.floating-label-group label {
    position: absolute;
    left: 16px;
    top: 16px;
    color: #a0aec0;
    pointer-events: none;
    transition: var(--transition);
    font-size: 15px;
}

.form-group.floating-label-group input:focus ~ label,
.form-group.floating-label-group input:not(:placeholder-shown) ~ label {
    top: 6px;
    font-size: 11px;
    font-weight: 700;
    color: var(--cri-blue);
}

/* --- Checkbox Modernes (UNIQUE & CENTRÉE) --- */
.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 15px;
}

.checkbox-item {
    background: var(--cri-bg-light);
    padding: 12px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.checkbox-item:hover {
    background: #edf2f7;
}

/* Style de la case elle-même */
.checkbox-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--cri-border);
    border-radius: 6px;
    background: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: var(--transition);
    flex-shrink: 0;
    margin: 0;
}

/* État Coché */
.checkbox-item input[type="checkbox"]:checked {
    background-color: #275d9a;
    border-color: #275d9a;
}

/* L'icône Check Blanche */
.checkbox-item input[type="checkbox"]::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.2s;
    margin-top: -2px; /* Centrage optique */
}

.checkbox-item input[type="checkbox"]:checked::after {
    opacity: 1;
}

/* Style du texte à côté */
.checkbox-item label {
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    margin-left: 12px;
    flex: 1;
    position: relative;
}

/* SÉCURITÉ : On supprime toute icône générée par l'ancien code sur le label */
.checkbox-item label::after, 
.checkbox-item label::before {
    display: none !important;
    content: none !important;
}

/* --- Options de Localisation --- */
.location-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.location-group input[type="radio"] {
    display: none;
}

.location-group span {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff;
    border: 1.5px solid var(--cri-border);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.location-group input[type="radio"]:checked + span {
    background: var(--cri-blue);
    color: white;
    border-color: var(--cri-blue);
}

/* --- Navigation --- */
.cri-form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--cri-border);
}

.btn-nav {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-continue {
    background: var(--cri-blue);
    color: #000;
    margin-left: auto;
}
.btn-continue:hover{
    color: #c5ba90 !important;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .cri-form-body { flex-direction: column; }
    .cri-image-column { display: none; }
    .checkbox-group { grid-template-columns: 1fr; }
    .cri-progress-bar { 
        padding: 0;
       
        }
    .cri-step-label { display: none; }
    .cri-progress-step.active+.cri-progress-line ,.cri-progress-line{

         margin-bottom:-10px;
    }
}

/*bloc 3 *//* End custom CSS */