 :root {
    --e-global-color-primary: #145f38;
  }
  .card-bg-subtle {
    background-image: url('https://diabyfatoumat6-ckyjz.wpcomstaging.com/wp-content/uploads/2026/01/3903-copie-1.png');
    background-repeat: no-repeat;
    background-size: 100px;
    background-position: top right;
    opacity: 0.04;
    filter: grayscale(1);
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 0;
  }


/* ============================================================
   DESIGN GLOBAL "FLEURY EN COMMUN" - FOCUS CHECKBOX MINIMAL
   ============================================================ */

/* 1. Conteneur Global du Formulaire */
.fec-form-wrapper, .axe-card {
    background: #ffffff;
    padding: 45px;
    border-radius: 14px;
    box-shadow: 0 0 5px rgba(13, 33, 66, 0.06);
    border: 1px solid #edf2f7;
    font-family: inherit;
}

@media (max-width: 768px) {
    .fec-form-wrapper, .frm-fluent-form {
        padding: 16px;
			box-shadow: 0 0 3px rgba(13, 33, 66, 0.03);
    }
}

#fluentform_6 {
	padding: 0px;
}

@media (max-width: 1024px) {
  #fluentform_6 .axe-card {
    padding: 6px 15px;
  }
}


/* 2. Titres et Labels */
.fec-form-wrapper .ff-el-group { margin-bottom: 30px !important; }
.fec-form-wrapper label { 
    color: #0d2142 !important; 
    font-weight: 700 !important; 
    font-size: 15px !important;
    margin-bottom: 10px !important;
    display: block;
}

/* 3. Inputs Texte, Email, Tel - Larges et bien visibles */
.fec-input :is(input, textarea) {
    width: 100% !important;
    background: #ffffff !important;
    border: 1.5px solid #d1d5db !important; 
    border-radius: 12px !important;
    padding: 16px 20px !important;
    font-size: 16px !important;
    color: #0d2142 !important;
    transition: all 0.3s ease !important;
}

.fec-input :is(input, textarea):focus {
    border-color: #1b7a4d !important;
    box-shadow: 0 0 0 4px rgba(27, 122, 77, 0.12) !important;
    outline: none !important;
}

/* 4. SECTION CHECKBOX (Modifiée : Juste la couleur, pas d'icône) */
.fec-check-group input[type="checkbox"] {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    width: 24px !important;
    height: 24px !important;
    border: 2px solid #cbd5e1 !important;
    border-radius: 6px !important;
    background: #fff !important;
    margin-right: 12px !important;
    cursor: pointer !important;
    position: relative !important;
    display: inline-block !important;
    vertical-align: middle !important;
    transition: all 0.2s ease-in-out !important;
}

/* On supprime tout contenu (icônes/checks) pouvant être généré */
.fec-check-group input[type="checkbox"]::before,
.fec-check-group input[type="checkbox"]::after {
    content: none !important;
    display: none !important;
}

/* État coché : fond vert uniquement */
.fec-check-group input[type="checkbox"]:checked {
    background-color: #1b7a4d !important;
    border-color: #1b7a4d !important;
    transform: scale(1.05); /* Effet discret de pression */
}

/* 5. SECTION RADIO (Conservée comme précédemment) */
.fec-radio-group input[type="radio"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 24px !important;
    height: 24px !important;
    border: 2px solid #cbd5e1 !important;
    border-radius: 50% !important;
    background: #fff !important;
    margin-right: 12px !important;
    cursor: pointer !important;
    position: relative !important;
    display: inline-block !important;
    vertical-align: middle !important;
    transition: all 0.2s ease !important;
}

.fec-radio-group input[type="radio"]:checked {
    border-color: #1b7a4d !important;
    background-color: #1b7a4d !important;
}

.fec-radio-group input[type="radio"]:checked::after {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 8px !important;
    height: 8px !important;
    background: white !important;
    border-radius: 50% !important;
    display: block !important;
}

/* 6. Bouton de Soumission Créatif */
.fec-submit-container button.ff-btn-submit {
    background: #1b7a4d !important;
    border: none !important;
    padding: 18px 25px !important;
    border-radius: 10px !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    color: #fff !important;
    cursor: pointer !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    box-shadow: 0 8px 20px rgba(27, 122, 77, 0.2) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fec-submit-container button.ff-btn-submit:hover {
    box-shadow: 0 12px 25px rgba(27, 122, 77, 0.3) !important;
    background: #1F8A4C !important;
}

/* Espacement du texte à côté des boutons/check */
.ff-el-form-check label {
    cursor: pointer;
    font-size: 15px;
    color: #4a5568;
    font-weight: 400 !important;
}

/*questionaire programe*/
.axe-card {
  position: relative;
  background-color: #ffffff;
  border: 1px solid #f3f4f6; /* gray-100 */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* shadow-sm */
  border-radius: 1rem; /* rounded-2xl */
  padding: 1.5rem; /* p-6 */
  transition: all 0.2s ease-in-out;
	margin-bottom: 20px;
}

/* hover:border-[var(--e-global-color-primary)]/30 */
.axe-card:hover {
  border-color: color-mix(
    in srgb,
    var(--e-global-color-primary) 30%,
    transparent
  );
}






.elementor-138 .elementor-element.elementor-element-119b58d6 {
	z-index: 0!important;
}


.elementor-shape-bottom {
  bottom: -1px;
	min-width: 100% !important;
}
.elementor-shape {
  direction: ltr;
  left: 0;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
	min-width: 100% !important;
}

.elementor-shape[data-negative="false"].elementor-shape-bottom, .elementor-shape[data-negative="true"].elementor-shape-top {
  transform: rotate(180deg);
	min-width: 100% !important;
}

.elementor-138 .elementor-element.elementor-element-3956c4410 > .elementor-shape-bottom svg {
	min-width: 100vw !important;

}