/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f5f5f5;
    color: #1f222a;
    overflow-x: hidden;
}

/* HEADER */
.site-logo {
    display: block;
    margin: 20px auto;
    max-width: 180px;
    height: auto;
}

/* HERO SUPPORT */
#support-hero {
    background-color: #1f222a;
    color: #fff;
    padding: 60px 20px;
}

.support-hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    flex-wrap: wrap;
}

.support-hero-text {
    flex: 1 1 400px;
}

.support-hero-text h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #edbf1e;
}

.support-hero-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.support-hero-image {
    flex: 1 1 400px;
    text-align: center;
}

.support-hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    display: inline-block;
}

/* CONTENU SUPPORT */
#support-content {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

.support-section {
    margin-bottom: 40px;
}

.support-section h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #edbf1e;
}

.support-section p {
    font-size: 1rem;
    line-height: 1.6;
    color: #1f222a;
}

.support-section ul {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.support-section li {
    margin-bottom: 10px;
}

.support-section a {
    color: #edbf1e;
    text-decoration: none;
}

.support-section a:hover {
    text-decoration: underline;
}

/* FOOTER */
footer {
    background-color: #1f222a;
    color: #fff;
    padding: 50px 20px 20px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    justify-content: space-between;
}

.footer-about, .footer-links, .footer-legal {
    flex: 1 1 200px;
    min-width: 200px;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 15px;
}

.footer-container h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #edbf1e;
}

.footer-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-container ul li {
    margin-bottom: 8px;
}

.footer-container ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-container ul li a:hover {
    color: #edbf1e;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #aaa;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .support-hero-container {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 15px;
        text-align: center;
    }

    .support-hero-text h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .support-hero-text p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .support-hero-image img {
        max-width: 90%;
        height: auto;
        margin: 0 auto;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .support-hero-container {
        gap: 10px;
    }

    .support-hero-text h1 {
        font-size: 1.6rem;
    }

    .support-hero-text p {
        font-size: 0.95rem;
    }

    .support-hero-image img {
        max-width: 95%;
    }
}



/* Modal FAQ */
.faq-modal {
    display: none; /* masqué par défaut */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6); /* fond semi-transparent */
}

.faq-modal-content {
    background-color: #1f222a;
    color: #fff;
    margin: 10% auto;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    text-align: center;
    position: relative;
}

.faq-close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #edbf1e;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.faq-close:hover {
    color: #fff;
}







/* Bouton flottant */
#faq-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #edbf1e;
    color: #1f222a;
    border: none;
    padding: 15px 20px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    font-size: 1.2rem;
}

/* Chat modal */
.faq-chat {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 30px;
    width: 350px;
    max-height: 500px;
    background: #1f222a;
    color: #ffab04;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    flex-direction: column;
    z-index: 9998;
    overflow: hidden;
    font-family: 'Arial', sans-serif;
}

/* Chat header */
.faq-chat-header {
    background: #edbf1e;
    color: #1f222a;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

/* Close button */
.faq-chat-close {
    cursor: pointer;
    font-size: 1.5rem;
}

/* Chat body */
.faq-chat-body {
    padding: 15px;
    overflow-y: auto;
    flex: 1;
}

/* Messages */
.faq-message {
    margin-bottom: 15px;
    background: #2a2d38;
    padding: 10px 15px;
    border-radius: 8px;
}

.faq-message p {
    margin-top: 5px;
    color: #ffffff;
}

/* Scrollbar */
.faq-chat-body::-webkit-scrollbar {
    width: 6px;
}

.faq-chat-body::-webkit-scrollbar-thumb {
    background-color: #edbf1e;
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 480px) {
    .faq-chat {
        width: 90%;
        right: 5%;
        bottom: 70px;
        max-height: 400px;
    }
}





