/* --- SECTION FAQ (Style Cartes Modernes) --- */
.section-faq {
    padding: 100px 0;
    background-color: #f9f9f9; /* Fond très léger pour détacher les cartes */
}/* Correctif Font Awesome FAQ */
.accordion-header-custom::before {
    font-family: "Font Awesome 6 Free"; /* Nom exact */
    font-weight: 900; /* Solid style */
    content: "\f059"; /* Code icône Question */
    /* ... le reste ne change pas ... */
}


.faq-header { text-align: center; margin-bottom: 60px; }
.faq-eyebrow {
    font-family: 'Dancing Script', cursive;
    color: var(--primary); font-size: 3rem; transform: rotate(-2deg); display: inline-block;
    margin-bottom: 10px;
}

/* Accordéon Style "Cartes" */
.custom-accordion {
    max-width: 800px; margin: 0 auto;
    display: flex; flex-direction: column; gap: 15px; /* Espace entre les questions */
}

.accordion-item-custom {
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header-custom {
    padding: 20px 25px;
    cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 700; font-size: 1.1rem; color: var(--text-dark);
    transition: background 0.2s;
}

/* Icône Question à gauche */
.accordion-header-custom::before {
    content: '\f059'; /* Fa-question-circle */
    font-family: "Font Awesome 6 Free"; font-weight: 400;
    margin-right: 15px; color: #ddd; font-size: 1.2rem; transition: 0.3s;
}

/* État Hover & Active */
.accordion-item-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    border-color: var(--secondary); /* Bordure Jaune au survol */
}
.accordion-item-custom.active {
    border-color: var(--primary); /* Bordure Verte si ouvert */
    box-shadow: 0 10px 25px rgba(64, 96, 78, 0.1);
}
.accordion-item-custom.active .accordion-header-custom {
    background: #f4fcf7; /* Fond vert très pâle */
    color: var(--primary);
}
.accordion-item-custom.active .accordion-header-custom::before {
    color: var(--primary); font-weight: 900;
}

/* Flèche à droite */
.accordion-icon {
    width: 30px; height: 30px;
    background: #f0f0f0; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #888; transition: transform 0.3s; font-size: 0.8rem;
}
.accordion-item-custom.active .accordion-icon {
    transform: rotate(180deg);
    background: var(--primary); color: white;
}

.accordion-body-custom {
    display: none;
    padding: 0 25px 25px 65px; /* Indentation alignée avec le texte */
    color: #555; line-height: 1.7; font-size: 1rem;
    background: white; /* Reste blanc */
}
.accordion-item-custom.active .accordion-body-custom { display: block; }


/* Contact CTA */
.faq-footer { text-align: center; margin-top: 60px; }
.btn-contact {
    background-color: var(--primary); color: white;
    padding: 15px 40px; border-radius: 50px;
    font-weight: 800; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px;
    text-decoration: none; display: inline-block; transition: 0.3s;
    box-shadow: 0 4px 15px rgba(64, 96, 78, 0.3);
}
.btn-contact:hover {
    background-color: #2f4a3a; color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(64, 96, 78, 0.4);
}


/* --- FOOTER (Dark Grey & Logo Image) --- */
footer {
    background-color: #222; /* Gris presque noir */
    color: #ccc;
    padding: 80px 0 40px;
    font-size: 0.9rem;
    border-top: 5px solid var(--secondary); /* Ligne jaune décorative */
}

.footer-logo-img {
    height: 50px; /* Ajustez selon la taille réelle */
    width: auto;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-desc {
    font-size: 0.95rem; line-height: 1.6; max-width: 300px; margin-bottom: 30px;
}

.social-icon {
    width: 36px; height: 36px; border: 1px solid #555; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; transition: 0.3s; text-decoration: none;
}
.social-icon:hover { background: var(--secondary); border-color: var(--secondary); color: #333; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: #ccc; text-decoration: none; text-transform: uppercase; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px; transition: 0.2s;
}
.footer-links a:hover { color: white; text-decoration: underline; }

/* --- COOKIE BANNER (floating card, bottom-right) --- */
.cookie-banner {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    max-width: 380px;
    width: calc(100vw - 44px);
}

.cookie-banner__inner {
    background: #ffffff;
    border: 1px solid rgba(17,24,39,.10);
    border-radius: 18px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.18);
}

.cookie-banner__title {
    font-weight: 900;
    letter-spacing: -0.2px;
    color: var(--primary);
    margin: 0;
}

.cookie-banner__desc {
    color: rgba(31,41,55,.82);
    font-size: 0.92rem;
    line-height: 1.45;
}

.cookie-banner__link {
    color: var(--primary);
    font-weight: 800;
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    padding: 10px 14px;
    cursor: pointer;
    font-size: 0.86rem;
    letter-spacing: .2px;
    transition: .15s ease;
}

.cookie-btn--primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 10px 22px rgba(234,170,66,.22);
}

.cookie-btn--primary:hover {
    filter: brightness(.97);
    transform: translateY(-1px);
}

.cookie-btn--secondary {
    background: rgba(64,95,78,.10);
    color: var(--primary);
    border: 1px solid rgba(64,95,78,.18);
}

.cookie-btn--secondary:hover {
    background: rgba(64,95,78,.14);
}

.cookie-banner--hidden {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

@media (max-width: 480px) {
    .cookie-banner {
        right: 14px;
        bottom: 14px;
        width: calc(100vw - 28px);
        max-width: none;
    }
    .cookie-btn {
        width: 100%;
    }
}
