/* ============================================================
   NOVIABOT — FAQ MINIMALISTE (3 colonnes → réponses au-dessus)
============================================================ */

/* ===== ROW ===== */
.faq-row-minimal {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: 1200px;
  margin: 2.7em auto 2.6em auto;
  padding: 0 1.2em;
  position: relative;
  pointer-events: none;
  font-size: 1.19em;
  z-index: 5;
}


/* ===== ITEM ===== */
.faq-item-minimal {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  width: 34vw;
  min-width: 270px;
  max-width: 520px;
  margin: 0;
  position: relative;
  pointer-events: auto;
}

/* Alignements */
.faq-left      { margin-left: 1.2em; }
.faq-center    { margin: 0 auto; align-items: center; }
.faq-right     { margin-right: 1.2em; align-items: flex-end; }

/* ===== QUESTION ===== */
.faq-question-minimal {
  font-weight: 800;
  font-size: 1.42rem;
  color: #fff;
  cursor: pointer;
  padding: 0.75em 0.9em 0.48em 0.12em;
  background: none !important;
  border: none !important;
  outline: none;
  letter-spacing: 0.01em;
  text-align: left;
  transition: color 0.18s ease;
  z-index: 2;
}

.faq-center .faq-question-minimal { text-align: center; width: 100%; }
.faq-right  .faq-question-minimal { text-align: right;  width: 100%; }

.faq-question-minimal:hover,
.faq-item-minimal:focus-within .faq-question-minimal {
  color: #12e0ff;
}

/* ===== ANSWER (au-dessus) ===== */
.faq-answer-minimal {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 600;

  opacity: 0;
  max-height: 0;
  pointer-events: none;
  overflow: hidden;

  padding-bottom: 0.65em;
  margin-bottom: 0.28em;
  text-align: inherit;

  transform: translateY(10px) scale(0.99);
  transition: all 0.32s cubic-bezier(.57,.2,.29,1.26);

  z-index: 1;
}

/* Hover → afficher réponse */
.faq-item-minimal:hover .faq-answer-minimal,
.faq-item-minimal:focus-within .faq-answer-minimal {
  opacity: 1;
  max-height: 180px;
  pointer-events: auto;
  transform: translateY(-2px) scale(1.03);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1000px) {
  .faq-row-minimal {
    flex-direction: column;
    align-items: center;
    gap: 1.8em;
  }

  .faq-item-minimal {
    width: 98vw;
    max-width: 99vw;
    margin: 0 auto;
    min-width: 0;
    align-items: center !important;
  }

  .faq-question-minimal,
  .faq-answer-minimal {
    text-align: center !important;
    width: 100% !important;
  }

  .faq-left,
  .faq-right {
    margin: 0;
  }
}
/* === FIX FINAL POSITION FAQ — NOVIABOT === */
.faq-row-minimal {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-start !important;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 3rem 0 !important;
}

.faq-item-minimal {
  flex: 0 0 auto !important;
  width: 32% !important;
  margin: 0 !important;
}

/* 1cm offset left/right */
.faq-left {
  margin-left: 1.2rem !important;
}

.faq-right {
  margin-right: 1.2rem !important;
}

/* Center stays centered */
.faq-center {
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
}

/* ===== LIEN "Voir toutes les questions" → /faq.html (SEO) ===== */
.faq-seeall-row {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0.4rem 0 2.6rem 0;
}

.faq-seeall-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  color: #18e7ff;
  font-weight: 800;
  font-size: 1.08rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  padding: 0.45em 1.15em;
  border: 1.5px solid #18e7ff4d;
  border-radius: 999px;
  background: #18e7ff14;
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}

.faq-seeall-link:hover {
  color: #fff;
  border-color: #18e7ffaa;
  background: #18e7ff26;
  transform: translateY(-2px);
}

/* Variante mobile (dans l'accordéon) */
.faq-seeall-mobile {
  display: inline-flex;
  margin: 1.1em auto 0 auto;
}
