/* ========================================= */
/* SECTION FAQ (Design Accordéon)            */
/* ========================================= */
.faq-section {
    padding: 80px 20px;
    background-color: #f8fafc; /* Gris très léger */
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Titres de catégorie */
.faq-category-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    color: var(--navy);
    margin-top: 60px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.faq-category-title:first-child { margin-top: 0; }

/* Item FAQ */
.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.faq-item:hover {
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    border-color: #cbd5e1;
}

/* Question (Cliquable) */
.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: 0.3s;
}

.faq-question h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
    line-height: 1.4;
}

/* Icône + / - */
.faq-icon {
    font-size: 1rem;
    color: var(--blue);
    transition: transform 0.3s ease;
}

/* Réponse (Cachée par défaut) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease;
    background-color: #fcfcfc;
    border-top: 1px solid transparent;
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

/* --- ÉTAT ACTIF (OUVERT) --- */
.faq-item.active {
    border-color: var(--blue);
}

.faq-item.active .faq-question {
    background-color: #fff;
}

.faq-item.active .faq-question h4 {
    color: var(--blue);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* La croix */
    color: var(--navy);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    border-top-color: #f0f0f0;
    padding-top: 15px;
}