/* ═══════════════════════════════════════════════════════
   AMÉLIORATIONS FAQ - Accordéons plus visibles et engageants
   ═══════════════════════════════════════════════════════ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 2rem 0;
}

.faq-item {
  background: var(--dark3, #111626);
  border: 1px solid var(--border, #1c2437);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.15s;
}

.faq-item:hover {
  border-color: rgba(201, 169, 110, 0.3);
  box-shadow: 0 4px 16px rgba(201, 169, 110, 0.08);
  transform: translateY(-1px);
}

.faq-item[open] {
  border-color: rgba(201, 169, 110, 0.4);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.12);
}

.faq-q {
  cursor: pointer;
  padding: 1.2rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: #e9eef7;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(201, 169, 110, 0.03);
  transition: background 0.2s, color 0.2s;
  user-select: none;
  position: relative;
}

.faq-q:hover {
  background: rgba(201, 169, 110, 0.08);
  color: var(--gold, #c9a96e);
}

.faq-q:focus {
  outline: 2px solid var(--gold, #c9a96e);
  outline-offset: -2px;
}

/* Icône chevron personnalisée */
.faq-q::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gold, #c9a96e);
  border-bottom: 2px solid var(--gold, #c9a96e);
  transform: rotate(45deg);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-top: -4px;
}

.faq-item[open] .faq-q::after {
  transform: rotate(-135deg);
  margin-top: 2px;
}

/* Cacher le triangle par défaut */
.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q::marker {
  display: none;
}

.faq-a {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: #b8c7e0;
  line-height: 1.8;
  font-size: 0.98rem;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-a strong {
  color: #e9eef7;
  font-weight: 600;
}

.faq-a a {
  color: var(--gold, #c9a96e);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 110, 0.3);
  transition: border-color 0.2s;
}

.faq-a a:hover {
  border-bottom-color: var(--gold, #c9a96e);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-q {
    padding: 1rem 1.2rem;
    font-size: 0.98rem;
  }
  
  .faq-a {
    padding: 0 1.2rem 1.2rem 1.2rem;
    font-size: 0.94rem;
  }
}
