/* ============================================================
   Wrapper FAQ + Conseil (layout côte à côte sur desktop)
   ============================================================ */

.faq-conseil-wrapper {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    gap: 32px;
}

.faq-conseil-wrapper .faq-block {
    margin-top: 0;
}

@media (min-width: 1024px) {
    .faq-conseil-wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }

    .faq-conseil-wrapper .faq-block {
        flex: 1 1 0;
        min-width: 0;
    }

    .conseil-bloc {
        flex: 0 0 280px;
        width: 280px;
        position: sticky;
        top: 100px;
    }
}

/* ============================================================
   Bloc Conseil
   ============================================================ */

.conseil-bloc {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 28px 22px;
    color: #fff;
}

/* Icône cercle jaune */

.conseil-icon {
    width: 52px;
    height: 52px;
    background: #FFD60A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

/* Titre */

html body .conseil-titre {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFD60A;
    font-family: "Roboto Condensed", sans-serif;
    line-height: 1.2;
    margin: 0 0 14px;
    padding: 0;
    border: none;
}

/* Paragraphe */

.conseil-paragraphe {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.65;
    margin-bottom: 24px;
}

.conseil-paragraphe p {
    margin-bottom: 0;
}

.conseil-paragraphe strong,
.conseil-paragraphe b {
    color: #fff;
    font-weight: 600;
}

/* Boutons */

html body .conseil-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 18px;
    border-radius: 8px;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.15s ease;
    margin-bottom: 10px;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
    color: #000;
}

.conseil-btn:last-of-type {
    margin-bottom: 0;
}

.conseil-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
    text-decoration: none;
}

.conseil-btn-icon {
    flex-shrink: 0;
}

/* Bouton Demander un devis */

.conseil-btn--devis {
    background: #FFD60A;
    color: #111;
}

.conseil-btn--devis:hover {
    color: #111;
}

/* Bloc téléphone + horaires */

.conseil-contact {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.conseil-telephone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFF;
    margin: 0 0 4px;
}

.conseil-horaires {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    padding-left: 20px;
}
