* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== HEADER ===== */
header {
    background: #1e3a2f;
    color: white;
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo h1 {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ===== MENU HAMBURGER ===== */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    padding: 5px 10px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 1.8rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover, nav a.active {
    color: #f5b042;
}

/* ===== RESPONSIVE HEADER ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1e3a2f;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 10px 15px rgba(0,0,0,0.2);
    }

    nav.active {
        max-height: 350px;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav ul li {
        border-bottom: 1px solid #2e5a48;
    }

    nav ul li a {
        display: block;
        padding: 14px 20px;
        text-align: center;
    }
}

/* ===== HERO (ACCUEIL) ===== */
.hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero h2 span {
    color: #f5b042;
}

.hero p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.hero-buttons {
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    margin: 0 8px;
    transition: all 0.2s;
}

.btn-primary {
    background: #f5b042;
    color: #1e3a2f;
}

.btn-primary:hover {
    background: #e09d2c;
    transform: scale(1.02);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1da15a;
}

/* ===== EXPORT (ACCUEIL) ===== */
.export {
    background: #f8f7f2;
    padding: 40px 0;
    text-align: center;
}

.export h3 {
    color: #1e3a2f;
    font-size: 1.5rem;
}

.flags {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.2rem;
    font-size: 1.1rem;
    font-weight: 500;
    flex-wrap: wrap;
}

/* ===== PRODUITS EN VEDETTE (ACCUEIL) ===== */
.featured {
    padding: 70px 0;
    background: white;
}

.featured h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #1e3a2f;
}

.product-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.product-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    max-width: 280px;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    border-radius: 16px;
    margin: 0 auto;
}

.product-card h4 {
    margin: 1rem 0 0.5rem;
    font-size: 1.4rem;
    color: #1e3a2f;
}

.product-card p {
    color: #555;
    margin-bottom: 1rem;
}

.btn-small {
    display: inline-block;
    padding: 10px 24px;
    background: #1e3a2f;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 500;
    transition: background 0.2s;
}

.btn-small:hover {
    background: #2e5a48;
}

/* ===== PAGE À PROPOS ===== */
.about-history {
    padding: 60px 0;
}

.about-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    color: #1e3a2f;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.about-image {
    flex: 1;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    max-height: 400px;
    width: auto;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.vision {
    background: #f8f7f2;
    padding: 60px 0;
    text-align: center;
}

.vision h2 {
    color: #1e3a2f;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.vision-text {
    font-size: 1.5rem;
    font-style: italic;
    color: #f5b042;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.difference {
    padding: 60px 0;
}

.difference h2 {
    text-align: center;
    color: #1e3a2f;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.diff-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.diff-card:hover {
    transform: translateY(-5px);
}

.diff-card i {
    font-size: 2.5rem;
    color: #f5b042;
    margin-bottom: 1rem;
}

.diff-card h3 {
    color: #1e3a2f;
    margin-bottom: 0.5rem;
}

/* ===== PAGE PRODUITS DÉTAILLÉS ===== */
.products-detailed {
    padding: 60px 0;
}

.product-item {
    display: flex;
    gap: 2.5rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    padding: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.product-item img {
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 20px;
    flex: 1;
}

.product-info {
    flex: 2;
}

.product-info h2 {
    color: #1e3a2f;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.product-info p {
    margin-bottom: 0.8rem;
}

.product-info .btn-primary {
    display: inline-block;
    margin-top: 1rem;
    background: #25D366;
    color: white;
}

.product-info .btn-primary:hover {
    background: #1da15a;
}

/* ===== PAGE TÉMOIGNAGES ===== */
.temoignages {
    padding: 60px 0;
    background: #f8f7f2;
}

.temoignage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.temoignage-card {
    background: white;
    border-radius: 24px;
    padding: 1.8rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.temoignage-card:hover {
    transform: translateY(-5px);
}

.stars {
    color: #f5b042;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.temoignage-text {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #3a3a3a;
}

.client h4 {
    color: #1e3a2f;
    margin-bottom: 0.2rem;
}

.client span {
    font-size: 0.85rem;
    color: #777;
}

/* ===== PAGE FAQ ===== */
.faq-section {
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
}

.faq-question {
    padding: 1.2rem 1.5rem;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: #1e3a2f;
}

.faq-question i {
    color: #f5b042;
    transition: transform 0.2s;
}

.faq-item.active .faq-question i {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 1.5rem;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #555;
    border-top: none;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.2rem 1.5rem;
    border-top: 1px solid #eee;
}

/* ===== PAGE CONTACT ===== */
.contact-info {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background: #f8f7f2;
    border-radius: 20px;
    transition: transform 0.2s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 2.2rem;
    color: #f5b042;
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
    color: #1e3a2f;
}

.btn-whatsapp-small {
    display: inline-block;
    margin-top: 1rem;
    padding: 8px 20px;
    background: #25D366;
    color: white;
    border-radius: 40px;
    text-decoration: none;
    font-size: 0.85rem;
}

.contact-form-section {
    background: #f8f7f2;
    padding: 60px 0;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    margin: 8px 0 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f5b042;
}

.map {
    padding: 60px 0;
}

.map-container {
    margin-top: 1.5rem;
    border-radius: 20px;
    overflow: hidden;
}

.map-note {
    text-align: center;
    margin-top: 1rem;
    font-weight: 500;
    color: #1e3a2f;
}

/* ===== FOOTER ===== */
footer {
    background: #0f2b21;
    color: #e0e0e0;
    padding: 45px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-grid h4 {
    color: #f5b042;
    margin-bottom: 0.8rem;
}

.footer-grid a {
    color: #f5b042;
    text-decoration: none;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid #2e5a48;
    font-size: 0.85rem;
}

/* ===== WHATSAPP FLOTTANT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    text-decoration: none;
    transition: transform 0.2s;
    z-index: 99;
}

.whatsapp-float:hover {
    transform: scale(1.07);
}

/* ===== PAGE HEADER COMMUN ===== */
.page-header {
    background: #1e3a2f;
    color: white;
    text-align: center;
    padding: 60px 0 40px;
}

.page-header h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

/* ===== RESPONSIVE GLOBAL ===== */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 80%;
        margin: 0;
    }

    .about-grid {
        flex-direction: column;
    }

    .product-item {
        flex-direction: column;
        text-align: center;
    }

    .product-item img {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.8rem;
    }

    .difference-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}
/* Version minimaliste centrée */
.info-supp {
    padding: 60px 0;
    background: #f8f7f2;
}

.info-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.info-box h3 {
    color: #1e3a2f;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.info-box ul {
    list-style: none;
    display: inline-block;
    text-align: left;
    margin: 0 auto 2rem auto;
    padding-left: 0;
}

.info-box ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
}

.info-box ul li:before {
    content: "✓";
    color: #f5b042;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    background: #f5b042;
    color: #1e3a2f;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
}
/* ===== SECTION CALL TO ACTION (TESTEZ NOTRE TOURTEAU) ===== */
.cta-tourteau {
    background: linear-gradient(135deg, #1e3a2f 0%, #2a5a48 100%);
    padding: 70px 20px;
    text-align: center;
    margin: 40px 0 0;
    position: relative;
    overflow: hidden;
}

.cta-tourteau::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-tourteau .container {
    position: relative;
    z-index: 2;
}

.cta-tourteau h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.cta-tourteau p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-tourteau .btn-primary {
    background: #f5b042;
    color: #1e3a2f;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border: none;
    cursor: pointer;
}

.cta-tourteau .btn-primary:hover {
    background: #e09d2c;
    transform: scale(1.05);
    box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.cta-tourteau .btn-primary i {
    margin-right: 8px;
}

/* Version mobile */
@media (max-width: 768px) {
    .cta-tourteau {
        padding: 50px 20px;
    }
    
    .cta-tourteau h3 {
        font-size: 1.5rem;
    }
    
    .cta-tourteau p {
        font-size: 1rem;
    }
    
    .cta-tourteau .btn-primary {
        padding: 12px 32px;
        font-size: 1rem;
    }
}