/* =====================================================
   Fun & Calm – FAQ  |  fcfq-faq.css
   ===================================================== */

.fcfq-faq {
    padding: 72px 48px;
    font-family: 'Mulish', sans-serif;
    background: #7FA6B1;
    box-sizing: border-box;
}

/* ── En-tête ── */
.fcfq-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
    margin: 0 0 12px;
}

.fcfq-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 500;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 10px;
}

.fcfq-intro {
    font-size: 15px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.85;
    font-weight: 300;
    max-width: 560px;
    margin: 0 0 32px;
}

/* ── Liste FAQ ── */
.fcfq-list {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

/* ── Item ── */
.fcfq-item {
    background: rgba(255, 255, 255, .95);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .3);
    transition: border-color .2s;
}

.fcfq-item.fcfq-open {
    border-color: #fff;
}

/* ── Question ── */
.fcfq-q {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 16px;
    transition: background .2s;
    box-sizing: border-box;
}

.fcfq-q:hover {
    background: rgba(127, 166, 177, .08);
}

.fcfq-item.fcfq-open .fcfq-q {
    background: rgba(127, 166, 177, .1);
}

.fcfq-q-text {
    font-size: 14px;
    font-weight: 600;
    color: #2C2420;
    flex: 1;
    line-height: 1.4;
}

.fcfq-icon {
    font-size: 20px;
    color: #7FA6B1;
    transition: transform .3s;
    flex-shrink: 0;
    font-weight: 300;
    line-height: 1;
    display: inline-block;
}

.fcfq-item.fcfq-open .fcfq-icon {
    transform: rotate(45deg);
}

/* ── Réponse ── */
.fcfq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
    font-size: 14px;
    color: #7A6F68;
    line-height: 1.8;
    font-weight: 300;
    padding: 0 20px;
    box-sizing: border-box;
}

.fcfq-item.fcfq-open .fcfq-a {
    max-height: 400px;
    padding: 0 20px 16px;
}

.fcfq-a p    { margin: 0 0 10px; }
.fcfq-a p:last-child { margin-bottom: 0; }
.fcfq-a strong { color: #2C2420; font-weight: 600; }
.fcfq-a a    { color: #527A87; text-decoration: none; }
.fcfq-a a:hover { text-decoration: underline; }

/* ── Footer CTA ── */
.fcfq-footer {
    margin-top: 20px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.fcfq-footer p {
    font-size: 14px;
    color: rgba(255, 255, 255, .85);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.fcfq-footer p strong { color: #fff; font-weight: 600; }

.fcfq-footer-btn {
    background: #fff;
    color: #527A87 !important;
    padding: 10px 22px;
    border-radius: 40px;
    font-family: 'Mulish', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s, color .2s;
    line-height: 1;
}

.fcfq-footer-btn:hover {
    background: #2C2420;
    color: #fff !important;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .fcfq-faq    { padding: 56px 24px; }
    .fcfq-footer { flex-direction: column; }
}
