/* Styles pour la section FAQ */
.faq-section {
    padding: 4rem 0;
    background-color: transparent;
  }
  
  .faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
  }
  
  .faq-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 15px auto 0;
    border-radius: 2px;
  }
  
  .faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  .faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
  }
  
  .faq-item:last-child {
    border-bottom: none;
  }
  
  .faq-question {
    padding: 1.25rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    position: relative;
  }
  
  .faq-question h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    padding-right: 2rem;
    transition: color 0.3s ease;
  }
  
  .faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
  }
  
  .faq-icon::before,
  .faq-icon::after {
    content: "";
    position: absolute;
    background-color: var(--primary-02);
    transition: all 0.3s ease;
  }
  
  .faq-icon::before {
    top: 9px;
    left: 0;
    width: 100%;
    height: 2px;
  }
  
  .faq-icon::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 100%;
  }
  
  .faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
  }
  
  .faq-answer p {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-secondary);
  }
  
  .faq-answer p b {
    color: var(--text-primary);
    font-weight: 600;
  }
  
  .faq-answer p u {
    text-decoration: none;
    color: var(--primary-02);
    font-weight: 500;
  }
  
  /* Effets de survol */
  .faq-question:hover h3 {
    color: var(--primary-02);
  }
  
  .faq-item:hover {
    transform: translateX(5px);
  }
  
  /* Mode sombre */
  [data-theme="dark"] .faq-item {
    border-color: rgba(255, 255, 255, 0.1);
  }

  /* ===== Correctifs mobile pour l'icône "+" de la FAQ ===== */
  @media (max-width: 767px) {
    .faq-question {
      min-height: 44px !important; /* zone tactile suffisante */
      padding: 0.9rem 0 !important;
      gap: 0.5rem !important;
    }

    .faq-question h3 {
      padding-right: 1rem !important; /* éviter chevauchement avec l'icône */
    }

    .faq-icon {
      width: 24px !important;
      height: 24px !important;
      color: var(--text-primary) !important;
    }

    .faq-icon::before,
    .faq-icon::after {
      background-color: currentColor !important; /* hérite de .faq-icon */
      transition: transform 0.25s ease, opacity 0.2s ease !important;
    }

    /* Barre horizontale centrée */
    .faq-icon::before {
      top: 50% !important;
      left: 2px !important;
      width: calc(100% - 4px) !important;
      height: 2px !important;
      transform: translateY(-50%) !important;
    }

    /* Barre verticale centrée */
    .faq-icon::after {
      top: 2px !important;
      left: 50% !important;
      width: 2px !important;
      height: calc(100% - 4px) !important;
      transform: translateX(-50%) !important;
    }

    /* État ouvert: transformer "+" en "-" en masquant la barre verticale */
    .faq-item.active .faq-icon {
      color: var(--primary-02) !important; /* indicateur visuel d'ouverture */
    }

    .faq-item.active .faq-icon::after {
      opacity: 0 !important;
      transform: translateX(-50%) rotate(90deg) !important; /* conserver transition fluide */
    }
  }

  /* Styles pour la section Contact - Mobile First */


/* Styles améliorés pour la section Contact avec fond spécial */
.contact-section {
    padding: 4rem 0;
    background-color: #081D27; /* Fond spécial demandé */
    position: relative;
    color: white;
  }
  
  .contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
  }
  
  .contact-section .section-title {
    color: white;
    margin-bottom: 1.5rem;
  }
  
  .contact-section .section-title::after {
    background: var(--gradient-primary);
  }
  
  .contact-description {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-03-start); /* Utilisation correcte de la variable CSS */
    font-size: 1.1rem;
    line-height: 1.6;
  }
  
  .contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
  }
  
  /* Formulaire multi-étapes */
  .multi-step-form-container {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
  }
  
  .multi-step-form {
    padding: 2rem;
  }
  
  /* Indicateur de progression */
  .form-progress {
    margin-bottom: 2rem;
  }
  
  .progress-bar {
    height: 4px;
    background-color: #e5e7eb;
    border-radius: 2px;
    margin-bottom: 0.75rem;
    overflow: hidden;
  }
  
  .progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    width: 25%; /* Étape 1 initiale */
    transition: width 0.3s ease;
  }
  
  .step-indicators {
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
  }
  
  .step-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d1d5db;
    position: relative;
    transition: all 0.3s ease;
  }
  
  .step-indicator.active {
    background-color: var(--primary-02);
    transform: scale(1.2);
  }
  
  /* Étapes du formulaire */
  .form-step {
    display: none;
  }
  
  .form-step.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
  }
  
  .step-title {
    font-size: 1.4rem;
    color: #1f2937;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  .step-description {
    text-align: center;
    margin-bottom: 1.75rem;
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  /* Options d'intérêt (checkboxes) - Version améliorée avec style personnalisé */
  .interest-options-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  
  .interest-option-simple {
    position: relative;
  }
  
  .interest-option-simple input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .interest-option-simple label {
    display: flex;
    align-items: center;
    padding: 0.7rem 0.5rem 0.7rem 2.5rem; /* Augmentation du padding left */
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    color: #1f2937;
    font-size: 0.9rem;
  }
  
  /* Nouveau style pour les checkboxes avec icône SVG */
  .interest-option-simple label::before {
    content: '';
    position: absolute;
    left: 0.9rem; /* Position ajustée */
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1.5px solid #d1d5db;
    border-radius: 4px;
    background-color: white;
    transition: all 0.2s ease;
    box-sizing: border-box;
  }
  
  .interest-option-simple input[type="checkbox"]:checked + label {
    background-color: rgba(52, 179, 250, 0.08);
    border-color: var(--primary-02);
  }
  
  .interest-option-simple input[type="checkbox"]:checked + label::before {
    background-color: var(--primary-02);
    border-color: var(--primary-02);
  }
  
  .interest-option-simple input[type="checkbox"]:checked + label::after {
    content: '';
    position: absolute;
    left: 1.3rem; /* Position ajustée */
    top: 50%;
    transform: translateY(-65%) rotate(45deg);
    width: 5px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
  }
  
  /* Ajustement pour la dernière option (qui est spéciale) */
  .interest-option-simple:last-child {
    grid-column: span 2;
  }
  
  /* Options de rôle (radio buttons) */
  .role-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 2rem;
  }
  
  .role-option {
    position: relative;
  }
  
  .role-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .role-option label {
    display: flex;
    align-items: center;
    padding: 0.9rem 1rem;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #1f2937;
  }
  
  .option-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    color: #6b7280;
    transition: color 0.3s ease;
  }
  
  .option-icon svg {
    width: 20px;
    height: 20px;
  }
  
  .role-option input[type="radio"]:checked + label {
    background-color: rgba(52, 179, 250, 0.08);
    border-color: var(--primary-02);
  }
  
  .role-option input[type="radio"]:checked + label .option-icon {
    color: var(--primary-02);
  }
  
  /* Formulaire de contact avec marges améliorées */
  .form-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
  }
  
  .form-field {
    position: relative;
  }
  
  .form-field.full-width {
    grid-column: 1 / -1;
  }
  
  .form-field label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1f2937;
    font-weight: 500;
    font-size: 0.9rem;
  }
  
  .required {
    color: #f43f5e;
    margin-left: 2px;
  }
  
  .form-field input,
  .form-field textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background-color: white;
    color: #1f2937;
    transition: all 0.3s ease;
    font-family: var(--font-family);
    box-sizing: border-box; /* Garantie que la largeur inclut padding et bordure */
    margin: 0; /* Réinitialiser les marges */
  }
  
  .form-field input:focus,
  .form-field textarea:focus {
    border-color: var(--primary-02);
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 179, 250, 0.2);
  }
  
  /* Pièce jointe */
  .attachment-question {
    margin-bottom: 2rem;
  }
  
  .attachment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  .attachment-option {
    position: relative;
  }
  
  .attachment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .attachment-option label {
    display: flex;
    align-items: center;
    padding: 0.9rem 0.5rem 0.9rem 2.5rem; /* Augmentation du padding left */
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    color: #1f2937;
    font-size: 0.9rem;
  }
  
  .attachment-option label::before {
    content: '';
    position: absolute;
    left: 0.9rem; /* Position ajustée */
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1.5px solid #d1d5db;
    border-radius: 50%;
    background-color: white;
    transition: all 0.2s ease;
    box-sizing: border-box;
  }
  
  .attachment-option input[type="radio"]:checked + label {
    background-color: rgba(52, 179, 250, 0.08);
    border-color: var(--primary-02);
  }
  
  .attachment-option input[type="radio"]:checked + label::before {
    border: 5px solid var(--primary-02);
    box-sizing: border-box;
  }
  
  .attachment-upload {
    display: none;
    background-color: #f9fafb;
    border: 2px dashed var(--primary-02);
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .attachment-upload.active {
    display: block;
  }
  
  .file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #6b7280;
  }
  
  .file-upload-label svg {
    width: 32px;
    height: 32px;
    color: var(--primary-02);
    margin-bottom: 0.75rem;
  }
  
  .upload-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .upload-title {
    font-size: 0.95rem;
    color: #1f2937;
    margin-bottom: 0.25rem;
  }
  
  .upload-subtitle {
    font-size: 0.8rem;
    color: #6b7280;
  }
  
  input[type="file"] {
    display: none;
  }
  
  .selected-file {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #1f2937;
    background-color: rgba(52, 179, 250, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    display: none;
  }
  
  .selected-file.active {
    display: block;
  }
  
  /* Navigation du formulaire */
  .form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
    border: none;
  }
  
  .btn-prev {
    background-color: #f9fafb;
    color: #6b7280;
    border: 1px solid #d1d5db;
  }
  
  .btn-prev:hover {
    background-color: #f3f4f6;
    color: #374151;
  }
  
  .btn-next,
  .btn-submit {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .btn-next:hover,
  .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    filter: brightness(1.05);
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Options de démo (radio buttons simples) */
  .demo-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }
  
  .demo-option {
    position: relative;
  }
  
  .demo-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .demo-option label {
    display: flex;
    align-items: center;
    padding: 0.9rem 0.5rem 0.9rem 2.5rem;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    color: #1f2937;
    font-size: 0.9rem;
    justify-content: center;
  }
  
  .demo-option label::before {
    content: '';
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    border: 1.5px solid #d1d5db;
    border-radius: 50%;
    background-color: white;
    transition: all 0.2s ease;
    box-sizing: border-box;
  }
  
  .demo-option input[type="radio"]:checked + label {
    background-color: rgba(52, 179, 250, 0.08);
    border-color: var(--primary-02);
  }
  
  .demo-option input[type="radio"]:checked + label::before {
    border: 5px solid var(--primary-02);
    box-sizing: border-box;
  }