:root {
    --primary: #1e293b;
    --primary-light: #334155;
    --secondary: #2563eb;
    --secondary-hover: #1d4ed8;
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --success: #10b981;
    --bg-light: #f8fafc;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --card-border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 30px -10px rgba(0,0,0,0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============ TOP BAR ============ */
.top-bar {
    background: var(--primary);
    color: #cbd5e1;
    font-size: 12px;
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 8px;
}

.top-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fcd34d;
    font-weight: 600;
    font-size: 11px;
}

.top-contacts {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.top-contacts a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.top-contacts a:hover {
    color: white;
}

/* ============ HEADER ============ */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.logo span {
    color: var(--secondary);
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s ease;
}

nav a:hover {
    color: var(--secondary);
}

.nav-btn {
    background: var(--secondary);
    color: white !important;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
    white-space: nowrap;
}

.nav-btn:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: var(--primary);
    cursor: pointer;
    padding: 5px;
}

/* ============ HERO ============ */
.hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 70px 20px 60px;
    text-align: center;
    position: relative;
}

.hero-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-tag {
    background: rgba(37, 99, 235, 0.2);
    color: #93c5fd;
    border: 1px solid rgba(147, 197, 253, 0.3);
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

.hero h1 span {
    color: #60a5fa;
}

.hero p {
    font-size: 16px;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--secondary);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
    transition: transform 0.2s, background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.btn-primary:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.25);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
}

.hero-contact {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.phone-link {
    color: white;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.phone-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.phone-link i {
    color: #60a5fa;
}

/* ============ STATS ============ */
.stats-bar {
    max-width: 1100px;
    margin: -30px auto 50px;
    background: white;
    border-radius: 16px;
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 10;
    text-align: center;
}

.stat-item h3 {
    font-size: 28px;
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 2px;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
}

/* ============ SECTIONS ============ */
section {
    padding: 50px 15px;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-subtitle {
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
}

/* ============ CALENDRIER ============ */
.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.date-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.date-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.date-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.badge-private { background: #fee2e2; color: #b91c1c; }
.badge-public { background: #dbeafe; color: #1d4ed8; }

.date-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary);
}

.date-list {
    list-style: none;
    margin-bottom: 20px;
}

.date-list li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--card-border);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.date-list li i {
    color: var(--secondary);
    flex-shrink: 0;
}

/* ============ DESTINATIONS ============ */
.destinations-section {
    background: white;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.dest-card {
    background: var(--bg-light);
    border-radius: 14px;
    padding: 25px;
    border: 1px solid var(--card-border);
}

.dest-card h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dest-card h4 i {
    color: var(--secondary);
}

.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.badge-pill {
    background: white;
    border: 1px solid var(--card-border);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-main);
}

.dest-note {
    background: #f0f9ff;
    border-left: 4px solid #3b82f6;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #1e40af;
}

.dest-note i {
    color: #3b82f6;
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.dest-note strong {
    font-weight: 600;
}

/* ============ TARIFS ============ */
.pricing-section {
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border-radius: 18px;
    padding: 25px 20px;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border: 2px solid var(--secondary);
    box-shadow: var(--shadow-md);
}

.ribbon-featured {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    white-space: nowrap;
}

.pricing-header h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 3px;
}

.pricing-header p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.price-box {
    background: #f1f5f9;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-card.featured .price-box {
    background: #eff6ff;
}

.price-main {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
}

.price-cfa {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 20px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 6px 0;
    font-size: 13px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.pricing-features li i.fa-check { color: var(--success); flex-shrink: 0; margin-top: 3px; }
.pricing-features li i.fa-times { color: #cbd5e1; flex-shrink: 0; margin-top: 3px; }
/* .disabled remplace par .not-included : plus de barrure trompeuse (voir bloc AJOUTS) */

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 13px;
    padding: 10px 20px;
}

/* ============ ADDON ============ */
.addon-box {
    margin-top: 25px;
    background: #fffbeb;
    border: 1px dashed var(--accent-dark);
    border-radius: 14px;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.addon-info h4 {
    color: #92400e;
    font-size: 14px;
    margin-bottom: 3px;
}

.addon-info p {
    color: #78350f;
    font-size: 13px;
}

.addon-price {
    font-weight: 800;
    font-size: 16px;
    color: #b45309;
}

/* ============ TÉMOIGNAGES ============ */
.testimonials-section {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.testi-card {
    background: var(--bg-light);
    border: 1px solid var(--card-border);
    border-radius: 14px;
    padding: 22px;
    position: relative;
    transition: transform 0.2s;
}

.testi-card:hover {
    transform: translateY(-3px);
}

.testi-stars {
    color: #f59e0b;
    font-size: 12px;
    margin-bottom: 12px;
}

.testi-text {
    font-size: 13px;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 15px;
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.testi-details h4 {
    font-size: 14px;
    color: var(--primary);
}

.testi-details p {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============ CONTACT ============ */
.contact-section {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.contact-box {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow-lg);
    color: var(--text-main);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group.full {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--primary);
}

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 13px;
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    margin-top: 3px;
    color: var(--text-muted);
}

.form-checkbox input {
    width: auto;
}

/* ============ TOAST ============ */
.toast {
    display: none;
    background: #dcfce7;
    color: #15803d;
    padding: 12px;
    border-radius: 8px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    border: 1px solid #bbf7d0;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: transform 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* ============ FOOTER ============ */
footer {
    background: #0b1120;
    color: #94a3b8;
    padding: 35px 15px 20px;
    font-size: 12px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 25px;
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    gap: 20px;
}

.footer-col h4 {
    color: white;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-col a {
    color: inherit;
    text-decoration: none;
}

.footer-col a:hover {
    color: white;
}

.footer-legal-badge {
    background: rgba(255,255,255,0.05);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
}

/* ============ RESPONSIVE ============ */
/* Tablette */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -20px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile paysage */
@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }

    .stats-bar {
        grid-template-columns: 1fr;
        margin-top: -15px;
        padding: 15px;
    }

    .stat-item h3 {
        font-size: 24px;
    }

    /* Menu mobile */
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 15px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        gap: 10px;
    }

    nav ul.active {
        display: flex;
    }

    nav a {
        font-size: 14px;
        padding: 8px 0;
        display: block;
        width: 100%;
        text-align: center;
    }

    .nav-btn {
        display: block;
        text-align: center;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .phone-link {
        font-size: 11px;
        padding: 7px 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .addon-box {
        flex-direction: column;
        text-align: center;
    }
}

/* Mobile petit */
@media (max-width: 480px) {
    section {
        padding: 35px 10px;
    }

    .hero {
        padding: 50px 15px 40px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero-tag {
        font-size: 10px;
    }

    .hero-contact {
        flex-direction: column;
        align-items: center;
    }

    .date-card {
        padding: 20px 15px;
    }

    .dest-card {
        padding: 18px 15px;
    }

    .pricing-card {
        padding: 20px 15px;
    }

    .testi-card {
        padding: 18px 15px;
    }

    .contact-box {
        padding: 18px 15px;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        font-size: 22px;
        bottom: 15px;
        right: 15px;
    }
}

/* ============================================================
   AJOUTS, Plan d'améliorations (Sept. 2026)
   ============================================================ */

/* --- Skip link accessibilité --- */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 10001;
    background: var(--secondary);
    color: #fff;
    padding: 12px 20px;
    border-radius: 0 0 6px 0;
    font-weight: 600;
}
.skip-link:focus {
    left: 0;
}

/* Focus visible homogène (accessibilité clavier) */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 2px;
}

/* --- Contacts mobiles dans le header (top-bar cachée < 768px) --- */
.header-contacts-mobile {
    display: none;
    gap: 8px;
    align-items: center;
}
.header-contacts-mobile a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid var(--card-border);
    color: var(--secondary);
    background: #fff;
}
.header-contacts-mobile a.wa {
    color: #25D366;
    border-color: rgba(37, 211, 102, .35);
}

/* --- Section « Comment ça marche » --- */
.process-section {
    background: #fff;
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 10px;
}
.process-step {
    position: relative;
    background: var(--bg-light);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 26px 20px 22px;
    text-align: center;
}
.process-step .step-num {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.process-step h3 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 8px;
}
.process-step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}
.process-step .step-icon {
    color: var(--accent);
    font-size: 20px;
    margin-bottom: 10px;
}
.process-step:not(:last-child)::after {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--card-border);
    font-size: 18px;
}

/* --- FAQ --- */
.faq-section {
    background: var(--bg-light);
}
.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    overflow: hidden;
}
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 18px 50px 18px 20px;
    font-weight: 600;
    color: var(--primary);
    font-size: 15px;
    position: relative;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--secondary);
    font-size: 13px;
    transition: transform .25s ease;
}
.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}
.faq-item .faq-answer {
    padding: 0 20px 20px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.75;
}
.faq-item .faq-answer strong {
    color: var(--text-main);
}

/* --- Pricing : « non inclus » sans barrure trompeuse --- */
.pricing-features li.not-included {
    color: #94a3b8;
}
.pricing-features li.not-included i {
    color: #cbd5e1;
}
.pricing-features li.not-included .tag-non-inclus {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: #94a3b8;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 1px 6px;
    margin-left: 6px;
    white-space: nowrap;
}

/* --- Section À propos --- */
.about-section {
    background: #fff;
}
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 40px;
    align-items: start;
}
.about-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 14px;
    font-size: 15px;
}
.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 22px;
}
.about-value {
    background: var(--bg-light);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 16px;
}
.about-value i {
    color: var(--secondary);
    font-size: 18px;
    margin-bottom: 8px;
    display: block;
}
.about-value h4 {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 4px;
}
.about-value p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}
.about-card {
    background: var(--bg-light);
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 24px;
}
.about-card h4 {
    font-size: 15px;
    color: var(--primary);
    margin-bottom: 14px;
}
.about-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.about-card li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}
.about-card li i {
    color: var(--success);
    margin-top: 3px;
}
.about-placeholder {
    border: 2px dashed var(--card-border);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 18px;
}

/* --- Témoignages enrichis --- */
.testi-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}
.testi-tag {
    font-size: 11px;
    font-weight: 600;
    background: var(--bg-light);
    border: 1px solid var(--card-border);
    color: var(--text-muted);
    border-radius: 4px;
    padding: 3px 8px;
}

/* --- Bouton retour en haut --- */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--card-border);
    background: #fff;
    color: var(--primary);
    font-size: 17px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    z-index: 998;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--primary);
    color: #fff;
}

/* --- Formulaire : validation, upload, états --- */
.form-control.invalid {
    border-color: var(--accent-dark);
    background: #fffbeb;
}
.field-error {
    display: none;
    color: #b45309;
    font-size: 12px;
    margin-top: 5px;
    font-weight: 500;
}
.field-error.show {
    display: block;
}
.form-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 5px;
}
.phone-field {
    display: flex;
    gap: 8px;
}
.phone-field select {
    flex: 0 0 auto;
    width: 150px;
}
.phone-field input {
    flex: 1 1 auto;
    min-width: 0;
}
.file-drop {
    border: 2px dashed var(--card-border);
    border-radius: 8px;
    padding: 18px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    transition: border-color .2s, background .2s;
}
.file-drop:hover,
.file-drop.dragover {
    border-color: var(--secondary);
    background: #f0f7ff;
}
.file-drop i {
    font-size: 22px;
    color: var(--secondary);
    display: block;
    margin-bottom: 8px;
}
.file-drop span {
    font-size: 13px;
    color: var(--text-muted);
}
.file-list {
    list-style: none;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.file-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    background: var(--bg-light);
    border: 1px solid var(--card-border);
    border-radius: 6px;
    padding: 8px 12px;
}
.file-list li button {
    border: none;
    background: none;
    color: #991b1b;
    cursor: pointer;
    font-size: 14px;
}
.consent-box {
    font-size: 13px;
    line-height: 1.6;
}
.consent-box a {
    color: var(--secondary);
    text-decoration: underline;
}
button[disabled] {
    opacity: .65;
    cursor: not-allowed;
}

/* --- Notifications --- */
.notif {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 340px;
    padding: 14px 20px;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: var(--shadow-lg);
    z-index: 10000;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity .3s ease, transform .3s ease;
    pointer-events: none;
}
.notif.show {
    opacity: 1;
    transform: translateY(0);
}
.notif.success {
    background: var(--success);
}
.notif.error {
    background: #991b1b;
}

/* --- Pages internes (légales, blog, destinations) --- */
.page-hero {
    background: var(--primary);
    color: #fff;
    padding: 55px 20px 45px;
    text-align: center;
}
.page-hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
    line-height: 1.3;
}
.page-hero p {
    color: #cbd5e1;
    max-width: 720px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
}
.breadcrumb {
    font-size: 13px;
    color: var(--text-muted);
    padding: 16px 0;
}
.breadcrumb a {
    color: var(--secondary);
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.legal-content {
    max-width: 820px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 40px;
}
.legal-content h2 {
    font-size: 20px;
    color: var(--primary);
    margin: 32px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--card-border);
}
.legal-content h2:first-child {
    margin-top: 0;
}
.legal-content h3 {
    font-size: 16px;
    color: var(--primary);
    margin: 22px 0 8px;
}
.legal-content p,
.legal-content li {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 15px;
}
.legal-content p {
    margin-bottom: 12px;
}
.legal-content ul,
.legal-content ol {
    margin: 0 0 14px 22px;
}
.legal-content li {
    margin-bottom: 6px;
}
.legal-content a {
    color: var(--secondary);
}
.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 18px;
    font-size: 14px;
}
.legal-content th,
.legal-content td {
    border: 1px solid var(--card-border);
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
}
.legal-content th {
    background: var(--bg-light);
    color: var(--primary);
    font-weight: 600;
}
.legal-content td {
    color: var(--text-muted);
}
.legal-updated {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 24px;
}
.todo-flag {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-left: 4px solid var(--accent);
    border-radius: 6px;
    padding: 12px 16px;
    margin: 14px 0;
    font-size: 13px;
    color: #92400e;
    line-height: 1.6;
}
.todo-flag strong {
    color: #78350f;
}

/* --- Blog --- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.blog-card {
    background: #fff;
    border: 1px solid var(--card-border);
    border-radius: 8px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.blog-card .blog-cat {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--secondary);
    margin-bottom: 10px;
}
.blog-card h3 {
    font-size: 17px;
    color: var(--primary);
    margin-bottom: 10px;
    line-height: 1.4;
}
.blog-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}
.blog-card a {
    color: var(--secondary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}
.blog-card a:hover {
    text-decoration: underline;
}

/* --- Page d'erreur --- */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}
.error-page .code {
    font-size: 96px;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 12px;
}
.error-page h1 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 12px;
}
.error-page p {
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 26px;
    line-height: 1.7;
}
.error-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Liens légaux du footer --- */
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a {
    font-size: 14px;
}
.footer-bottom a {
    color: inherit;
    text-decoration: underline;
}
.footer-address {
    font-style: normal;
    line-height: 1.8;
}

/* --- Responsive des ajouts --- */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
    .process-step:nth-child(2)::after {
        display: none;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}

@media (max-width: 768px) {
    .header-contacts-mobile {
        display: flex;
    }
    .legal-content {
        padding: 24px 18px;
    }
    .page-hero h1 {
        font-size: 24px;
    }
    .phone-field {
        flex-direction: column;
    }
    .phone-field select {
        width: 100%;
    }
    .back-to-top {
        bottom: 78px;
        right: 15px;
        width: 42px;
        height: 42px;
    }
    .notif {
        left: 15px;
        right: 15px;
        max-width: none;
    }
    .error-page .code {
        font-size: 68px;
    }
}

@media (max-width: 560px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    .process-step::after {
        display: none !important;
    }
    .about-values {
        grid-template-columns: 1fr;
    }
    .legal-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Respect des préférences de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================================
   PROMOTION, prix barré + prix promotionnel
   ============================================================ */

/* Bandeau au-dessus de la grille tarifaire */
.promo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #991b1b, #b91c1c);
    color: #fff;
    border-radius: 8px;
    padding: 14px 22px;
    margin-bottom: 26px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.promo-banner i {
    font-size: 18px;
}
.promo-banner strong {
    font-size: 16px;
    font-weight: 700;
}
.promo-banner span {
    font-size: 14px;
    opacity: .92;
}

/* Ancien prix, barré en rouge */
.price-was {
    font-size: 16px;
    font-weight: 600;
    color: #991b1b;
    text-decoration: line-through;
    text-decoration-color: #dc2626;
    text-decoration-thickness: 2px;
    margin-bottom: 2px;
}
.price-cfa .cfa-was {
    color: #991b1b;
    text-decoration: line-through;
    text-decoration-color: #dc2626;
    text-decoration-thickness: 1.5px;
    margin-right: 5px;
    font-weight: 600;
}

/* Mention de fin de promotion sous les cartes */
.promo-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 18px;
}
.promo-note strong {
    color: var(--text-main);
}

@media (max-width: 768px) {
    .promo-banner {
        flex-direction: column;
        gap: 6px;
        padding: 14px 16px;
    }
    .promo-banner strong {
        font-size: 15px;
    }
}

/* ============================================================
   IMAGES D'ARTICLE
   ============================================================ */

.article-figure {
    margin: 0 0 26px;
}
.article-figure img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    border: 1px solid var(--card-border);
    background: var(--bg-light);
}
.article-figure figcaption {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 10px;
}
.article-figure figcaption .credit {
    display: block;
    font-size: 12px;
    opacity: .85;
    margin-top: 3px;
}
.article-figure figcaption .credit a {
    color: inherit;
}

/* Illustration de tête, format paysage large */
.article-figure.hero img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

/* Marque dans l'en-tête */
.logo-mark {
    flex-shrink: 0;
    display: block;
    border-radius: 7px;
}

@media (max-width: 480px) {
    .logo {
        font-size: 17px;
        gap: 7px;
    }
    .logo-mark {
        width: 26px;
        height: 26px;
    }
}
