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

body{
font-family:Inter, Arial, sans-serif;
color:#222;
background:#f8f8f8;
line-height:1.6;
}

/* CONTAINER */

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

/* HEADER */

header{
position:fixed;
top:0;
left:0;
width:100%;
background:rgba(0,0,0,0.6);
backdrop-filter:blur(6px);
z-index:1000;
}

.navbar{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 20px;
color:white;
}

.navbar a{
color:white;
text-decoration:none;
margin-left:25px;
font-weight:500;
}

.navbar a:hover{
color:#d7a94b;
}

/* ============== HERO =============== */
/* ================= HERO PREMIUM ================= */

.hero-premium{
    position:relative;
    min-height:85vh;
    display:flex;
    align-items:center;
    background-size:cover;
    background-position:center;
    color:#fff;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,0,0,.65) 0%,
        rgba(0,0,0,.45) 40%,
        rgba(0,0,0,.2) 100%
    );
}

.hero-inner{
    position:relative;
    z-index:2;
}

.hero-text{
    max-width:640px;
}

.hero-kicker{
    display:inline-block;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.6px;
    font-weight:700;
    color:#38bdf8;
    margin-bottom:12px;
}

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

.hero p{
    font-size:18px;
    line-height:1.7;
    margin-bottom:26px;
    color:#e5e7eb;
}

.hero-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 26px;
    background:#2f9ed8;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:700;
    font-size:14px;
}

.btn-primary:hover{
    background:#278ec4;
}

.btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 22px;
    background:transparent;
    border:2px solid rgba(255,255,255,.6);
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:700;
    font-size:14px;
}

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

.intro-highlight{
    font-weight:600;
    color:#2f9ed8;
    margin-bottom:10px;
}

/* ================= MOBILE ================= */

@media (max-width: 768px){

    .hero-premium{
        min-height:70vh;
        text-align:center;
    }

    .hero-text{
        margin:0 auto;
    }

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

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

    .hero-actions{
        justify-content:center;
    }
}
/* ====================== TOUR GRID ========================== */

.tours-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:24px;
    margin-top:32px;
}

.tour-card{
    background:#f5f5f5;
    border:7px solid #ececec;
    box-shadow:0 4px 18px rgba(0,0,0,.08);
    overflow:hidden;
}

.tour-card-link,
.tour-card-link:hover,
.tour-card-link:focus,
.tour-card-link:visited{
    display:block;
    color:inherit;
    text-decoration:none;
}

.tour-image-wrap{
    position:relative;
    overflow:hidden;
    background:#ddd;
}

.tour-image{
    width:100%;
    height:230px;
    object-fit:cover;
    display:block;
}

/* PRIX SUR IMAGE - VERSION COMPACTE */
.tour-price{
    position:absolute;
    top:6px;
    left:6px;
    z-index:2;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:52px;
    height:24px;
    padding:0 7px;
    background:#ffffff;
    color:#ff5e00;
    font-size:14px;
    line-height:1;
    font-family:'Oswald', sans-serif;
    font-weight:600;
    border:1px solid #ffffff;
    box-shadow:0 1px 5px rgba(0,0,0,.18);
}

/* DUREE EN HAUT A DROITE */
.tour-duration-ribbon{
    position:absolute;
    top:0;
    right:0;
    width:58px;
    height:58px;
    overflow:hidden;
    z-index:1;
}

.tour-duration-ribbon::before{
    content:"";
    position:absolute;
    top:0;
    right:0;
    border-top:28px solid #f3f3f3;
    border-left:28px solid transparent;
    border-right:28px solid #f3f3f3;
    border-bottom:28px solid transparent;
}

.tour-duration-ribbon span{
    display:block;
    position:absolute;
    top:10px;
    right:2px;
    font-size:11px;
    font-family:'Oswald', sans-serif;
    font-weight:bold;
    color:#bf8665;
    transform:rotate(45deg);
    line-height:18px;
    transform-origin:33% 55%;
    text-transform:uppercase;
}

.tour-content{
    padding:16px 16px 14px;
    background:#f5f5f5;
}

.tour-title{
    margin:0;
    padding:0 0 10px 0;
    font-size:15px;
    line-height:19px;
    text-align:left;
    font-weight:700;
    border-bottom:1px solid #e8e8e8;
    color:#000;
    text-shadow:none;
    text-transform:uppercase;
    min-height:49px; /* 2 lignes = 19px x 2 */
}

/* METAS CENTREES */
.tour-meta{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;
    margin-top:12px;
    margin-bottom:14px;
    font-size:12px;
    color:#9a9a9a;
    text-transform:uppercase;
    font-weight:700;
    line-height:1.4;
    text-align:center;
}

.tour-meta span{
    display:inline-flex;
    align-items:center;
    gap:6px;
}

.tour-meta i{
    font-size:12px;
    color:#a7a7a7;
}

/* ACTIONS BAS */
.tour-actions{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-top:4px;
}

.tour-type-pill{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#2a8d97;
    color:#fff;
    font-size:13px;
    padding:8px 13px;
    border-radius:24px;
    text-transform:uppercase;
    font-weight:700;
    line-height:1;
    min-height:32px;
}

.tour-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#aa70e1;
    color:#fff;
    font-size:13px;
    font-weight:700;
    padding:8px 13px;
    border-radius:24px;
    text-transform:uppercase;
    line-height:1;

    min-height:32px;
}

.tour-btn:hover{
    background:#278ec4;
}

/* RESPONSIVE */
@media (max-width: 1100px){
    .tours-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px){
    .tours-grid{
        grid-template-columns:1fr;
    }

    .tour-image{
        height:210px;
    }
}
/* ============ CATEGORY GRID ============ */


.categories{
    margin-top:50px;
}

.categories h2{
    margin-bottom:24px;
}

.categories-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr 1fr;
    grid-template-rows:260px 220px;
    gap:16px;
}

.category-card{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:16px;
    text-decoration:none;
    height:100%;
}

/* Desert Tours — 50% largeur, pleine hauteur */
.category-card:first-child{
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

/* Day Trips — 25% haut droite */
.category-card:nth-child(2){
    grid-column: 3;
    grid-row: 1;
}

/* Morocco Tours — 25% haut droite */
.category-card:nth-child(3){
    grid-column: 4;
    grid-row: 1;
}

/* Travel Guide — 50% bas droite */
.category-card:nth-child(4){
    grid-column: 3 / 5;
    grid-row: 2;
}

.category-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .4s ease;
}

.category-card::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
}

.category-card h3{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    color:#fff;
    font-size:28px;
    font-weight:800;
    text-align:center;
    z-index:2;
}

.category-card:hover img{
    transform:scale(1.05);
}

/* Mobile*/
@media (max-width: 900px){
    .categories-grid{
        grid-template-columns:1fr 1fr;
        grid-template-rows:auto;
        min-height:auto;
    }
    .category-card:first-child,
    .category-card:nth-child(2),
    .category-card:nth-child(3),
    .category-card:nth-child(4){
        grid-column: auto;
        grid-row: auto;
        min-height:180px;
    }
}

@media (max-width: 600px){
    .categories-grid{
        grid-template-columns:1fr;
    }
    .category-card{
        height:180px;
        box-shadow:0 8px 20px rgba(0,0,0,.08);
    }
    .category-card h3{
        font-size:22px;
    }
}

/* ================= WHY US ================= */



.why-us{
    margin-top:70px;
    padding:60px 20px;
    background:#f1f5f9; /* un peu plus contrasté */
    border-radius:20px;
}

.why-us h2{
    text-align:center;
    margin-bottom:50px;
    font-size:34px;
    font-weight:800;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:24px;
}

.why-card{
    background:#ffffff;
    padding:32px 24px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:all .25s ease;
}

.why-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.why-card i{
    font-size:34px;
    color:#2f9ed8;
    margin-bottom:16px;
}

.why-card h3{
    margin-bottom:10px;
    font-size:16px;
    font-weight:700;
        margin-bottom:12px;
}

.why-card p{
    font-size:14px;
    color:#6b7280;
    line-height:1.7;
}

/* FOOTER */

/* ====================== FOOTER ========================== */

.site-footer{
    background:#111827;
    color:#d1d5db;
    margin-top:60px;
}

.footer-top{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1fr;
    gap:36px;
    padding-top:60px;
    padding-bottom:40px;
}

.footer-col h3{
    margin:0 0 16px;
    font-size:16px;
    line-height:1.3;
    font-weight:700;
    color:#ffffff;
}

.footer-col p{
    margin:0;
    font-size:14px;
    line-height:1.8;
    color:#cbd5e1;
}

.footer-logo{
    display:inline-block;
    margin-bottom:18px;
}

.footer-logo img{
    max-height:54px;
    width:auto;
    display:block;
}

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

.footer-col li{
    margin-bottom:10px;
    font-size:14px;
    line-height:1.7;
}

.footer-col a{
    color:#cbd5e1;
    text-decoration:none;
    transition:color .2s ease;
}

.footer-col a:hover{
    color:#38bdf8;
}

.footer-contact li{
    display:flex;
    align-items:flex-start;
    gap:10px;
}

.footer-contact i{
    color:#38bdf8;
    margin-top:3px;
    width:14px;
    flex:0 0 14px;
}

.footer-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:14px;
    min-height:42px;
    padding:0 18px;
    border-radius:8px;
    background:#2f9ed8;
    color:#ffffff !important;
    font-size:13px;
    font-weight:700;
    text-decoration:none;
}

.footer-btn:hover{
    background:#278ec4;
    color:#ffffff !important;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-bottom-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    padding-top:18px;
    padding-bottom:18px;
}

.footer-bottom p{
    margin:0;
    font-size:13px;
    color:#94a3b8;
}

.footer-bottom-links{
    display:flex;
    align-items:center;
    gap:18px;
}

.footer-bottom-links a{
    font-size:13px;
    color:#94a3b8;
    text-decoration:none;
}

.footer-bottom-links a:hover{
    color:#38bdf8;
}

@media (max-width: 1100px){
    .footer-top{
        grid-template-columns:1fr 1fr;
    }
}

@media (max-width: 700px){
    .footer-top{
        grid-template-columns:1fr;
        gap:28px;
        padding-top:42px;
        padding-bottom:30px;
    }

    .footer-bottom-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-bottom-links{
        flex-wrap:wrap;
        gap:12px 16px;
    }
}

/* ====================== HEADER ========================== */

.site-header{
    position:sticky;
    top:0;
    z-index:1000;
    background:#ffffff;
    border-bottom:1px solid rgba(0,0,0,0.05);
    box-shadow:0 6px 18px rgba(0,0,0,0.06);
}

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

.logo a{
    display:inline-flex;
    align-items:center;
}

.logo img{
    display:block;
    max-height:52px;
    width:auto;
    transition:transform .2s ease;
}

.logo img:hover{
    transform:scale(1.03);
}

.menu{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:24px;
    flex:1 1 auto;
}

.menu a{
    text-decoration:none;
    color:#1f2023;
    font-size:14px;
    font-weight:600;
    letter-spacing:.3px;
    transition:color .2s ease;
}

.menu a:hover{
    color:#2f9ed8;
}

.header-cta{
    flex:0 0 auto;
}

.btn-whatsapp{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:0 20px;
    border-radius:30px;

        background:#1da851;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
    line-height:1;
    box-shadow:0 6px 14px rgba(37,211,102,.35);
    transition:all .25s ease;
}

.btn-whatsapp:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(37,211,102,.45);
}

.menu-toggle{
    display:none;
    width:44px;
    height:44px;
    border:0;
    background:#f3f5f7;
    border-radius:8px;
    padding:0;
    cursor:pointer;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:5px;
}

.menu-toggle span{
    display:block;
    width:20px;
    height:2px;
    background:#1f2023;
    border-radius:2px;
}

/* ================= MOBILE ================= */

@media (max-width: 980px){

    .navbar{
        padding:12px 16px;
    }

    .logo img{
        max-height:46px;
    }

    .menu-toggle{
        display:flex;
        order:3;
    }

    .header-cta{
        order:2;
    }

    .btn-whatsapp{
        min-height:38px;
        padding:0 14px;
        font-size:12px;
    }

    .menu{
        display:none;
        position:absolute;
        top:100%;
        left:16px;
        right:16px;
        background:#ffffff;
        border:1px solid #ececec;
        border-radius:14px;
        box-shadow:0 12px 28px rgba(0,0,0,.08);
        padding:12px;
        flex-direction:column;
        align-items:stretch;
        gap:0;
    }

    .menu a{
        display:block;
        padding:14px 12px;
        border-bottom:1px solid #f0f0f0;
        font-size:14px;
    }

    .menu a:last-child{
        border-bottom:0;
    }

    .site-header.menu-open .menu{
        display:flex;
    }
}

@media (max-width: 640px){

    .navbar{
        gap:10px;
    }

    .logo img{
        max-height:40px;
    }

    .btn-whatsapp{
        padding:0 12px;
        font-size:11px;
    }

    .menu-toggle{
        width:40px;
        height:40px;
    }
}

/* ====================== FAQ ========================== */

.faq-section{
    padding-top:20px;
    padding-bottom:20px;
    padding:40px 20px 60px;
}

.faq-section h2{
    text-align:center;
    font-size:30px;
    font-weight:800;
    margin-bottom:30px;
}
.faq-section h2::after{
    content:"";
    display:block;
    width:60px;
    height:3px;
    background:#2f9ed8;
    margin:12px auto 0;
    border-radius:2px;
}

.faq-list{
    max-width:900px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:14px;
}

.faq-item{
    background:#ffffff;
    border:1px solid #e9ecef;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,.04);
    overflow:hidden;
}

.faq-question{
    list-style:none;
    cursor:pointer;
    padding:18px 20px;
    font-size:15px;
    font-weight:700;
    color:#1f2023;
    position:relative;
}

.faq-question::-webkit-details-marker{
    display:none;
}

.faq-question::after{
    content:"+";
    position:absolute;
    right:20px;
    top:50%;
    transform:translateY(-50%);
    font-size:20px;
    font-weight:700;
    color:#2f9ed8;
}

.faq-item[open] .faq-question::after{
    content:"–";
}

.faq-answer{
    padding:0 20px 18px;
}

.faq-answer p{
    margin:0;
    font-size:14px;
    line-height:1.8;
    color:#5b6570;
}

@media (max-width: 700px){
    .faq-question{
        padding:16px 16px;
        font-size:14px;
    }

    .faq-answer{
        padding:0 16px 16px;
    }
}

/* ====================== CTA BOOKING ========================== */
.cta-booking{
    position:relative;
    margin-top:40px;
        background:linear-gradient(135deg, #c86410 0%, #b6772c 100%);
    color:#ffffff;
    overflow:hidden;
}

.cta-booking::before{
    content:"";
    position:absolute;
    inset:0;
        background:radial-gradient(circle at top right, rgba(255,255,255,.10), transparent 32%);
    pointer-events:none;
}

.cta-booking-inner{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    padding-top:56px;
    padding-bottom:56px;
}

.cta-booking-text{
    max-width:700px;
}

.cta-kicker{
    display:inline-block;
    margin-bottom:10px;
    font-size:13px;
    line-height:1;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
        color:#ffe0c7;
}

.cta-booking h2{
    margin:0 0 14px;
    font-size:34px;
    line-height:1.2;
    font-weight:800;
    text-align:left;
    color:#ffffff;
        text-shadow:0 2px 8px rgba(0,0,0,.15);
}

.cta-booking p{
    margin:0;
    font-size:16px;
    line-height:1.8;
        color:#fff3e8;
}

.cta-booking-actions{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
    flex:0 0 auto;
}

.cta-btn-primary,
.cta-btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:46px;
    padding:0 20px;
    border-radius:8px;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    line-height:1;
    transition:all .2s ease;
}

.cta-btn-primary{
    background:#ffffff;
    color:#c86410;
}

.cta-btn-primary:hover{
    background:#f8fafc;
    transform:translateY(-1px);
}

.cta-btn-secondary{
    background:transparent;
            border:2px solid rgba(255,255,255,.6);
    color:#ffffff;
    
}

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

@media (max-width: 900px){
    .cta-booking-inner{
        flex-direction:column;
        align-items:flex-start;
    }

    .cta-booking h2{
        font-size:28px;
    }
}

@media (max-width: 640px){
    .cta-booking-inner{
        padding-top:42px;
        padding-bottom:42px;
    }

    .cta-booking h2{
        font-size:24px;
    }

    .cta-booking p{
        font-size:15px;
    }

    .cta-booking-actions{
        width:100%;
    }

    .cta-btn-primary,
    .cta-btn-secondary{
        width:100%;
    }
}

/* ====================== BREADCRUMBS ========================== */

.breadcrumbs{
    background:#f8fafc;
    border-bottom:1px solid #e9eef3;
}

.breadcrumbs .container{
    padding-top:14px;
    padding-bottom:14px;
}

.breadcrumbs-list{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
}

.breadcrumbs-item{
    display:inline-flex;
    align-items:center;
    font-size:13px;
    line-height:1.4;
    color:#64748b;
}

.breadcrumbs-item:not(:last-child)::after{
    content:"»";
    margin-left:8px;
    color:#172033;
}

.breadcrumbs-item a{
    color:#64748b;
    text-decoration:none;
}

.breadcrumbs-item a:hover{
    color:#2f9ed8;
}

.breadcrumbs-item span{
    color:#1f2937;
    font-weight:600;
}
/* =========================
   CONTACT PAGE
========================= */

.page-hero-contact{
    position: relative;
    padding: 80px 0 70px;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #fff;
}

.page-hero-inner{
    display: flex;
    align-items: center;
}

.page-hero-content{
    max-width: 760px;
}

.section-kicker{
    display: inline-block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f59e0b;
}

.page-hero-contact h1{
    margin: 0 0 16px;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.1;
    color: #fff;
}

.page-hero-contact p{
    margin: 0;
    max-width: 680px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
}

.contact-section{
    padding: 70px 0;
    background: #f8fafc;
}

.contact-grid{
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 32px;
    align-items: start;
}

.contact-info-card,
.contact-form-card{
    background: #ffffff;
    border-radius: 22px;
    padding: 34px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.contact-info-card h2,
.contact-form-card h2{
    margin: 0 0 16px;
    font-size: 1.85rem;
    line-height: 1.25;
    color: #0f172a;
}

.contact-info-card > p,
.contact-note p{
    margin: 0;
    color: #475569;
    line-height: 1.8;
}

.contact-info-list{
    margin-top: 28px;
    display: grid;
    gap: 20px;
}

.contact-info-item h3{
    margin: 0 0 8px;
    font-size: 1rem;
    color: #0f172a;
}

.contact-info-item p{
    margin: 0;
    color: #475569;
    line-height: 1.7;
}

.contact-info-item a{
    color: #ea580c;
    text-decoration: none;
    font-weight: 600;
}

.contact-info-item a:hover{
    text-decoration: underline;
}

.contact-links{
    margin: 0;
    padding-left: 18px;
}

.contact-links li{
    margin-bottom: 8px;
}

.contact-form{
    margin-top: 22px;
}

.form-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.form-group{
    display: flex;
    flex-direction: column;
}

.form-group label{
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
}

.form-group input,
.form-group textarea{
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dbe4ee;
    border-radius: 14px;
    background: #fff;
    font: inherit;
    color: #0f172a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus{
    outline: none;
    border-color: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

.form-group textarea{
    resize: vertical;
    min-height: 180px;
}

.btn.btn-primary{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    font-weight: 700;
    font-size: 0.98rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.btn-primary:hover{
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(234, 88, 12, 0.22);
}

.contact-note{
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 991px){
    .contact-grid{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px){
    .page-hero-contact{
        padding: 64px 0 56px;
    }

    .contact-section{
        padding: 56px 0;
    }

    .contact-info-card,
    .contact-form-card{
        padding: 24px;
        border-radius: 18px;
    }

    .form-row{
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }

    .contact-info-card h2,
    .contact-form-card h2{
        font-size: 1.5rem;
    }
}

.form-alert{
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 14px;
    font-weight: 600;
}

.form-alert-success{
    background: #ecfdf5;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.form-alert-error{
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}
/* ====================== REVIEWS ========================== */

.reviews{
    margin-top: 60px;
}

.reviews h2{
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 36px;
}

.reviews-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card{
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,.05);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.review-stars{
    color: #f59e0b;
    font-size: 14px;
    display: flex;
    gap: 3px;
}

.review-text{
    font-size: 14px;
    line-height: 1.8;
    color: #374151;
    flex: 1;
    font-style: italic;
}

.review-author{
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.review-name{
    font-size: 14px;
    font-weight: 700;
    color: #111827;
}

.review-tour{
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .4px;
}

@media (max-width: 900px){
    .reviews-grid{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px){
    .reviews-grid{
        grid-template-columns: 1fr;
    }
}

/* ====================== COMPARE (shared vs private) ========================== */

.compare{
    margin-top: 60px;
}

.compare h2{
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
}

.compare-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.compare-card{
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,.05);
}

.compare-card h3{
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 14px;
    color: #111827;
}

.compare-card p{
    font-size: 14px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 18px;
}

.compare-card ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.compare-card ul li{
    font-size: 14px;
    color: #374151;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.compare-card ul li::before{
    content: "✓";
    position: absolute;
    left: 0;
    color: #2f9ed8;
    font-weight: 700;
}

@media (max-width: 700px){
    .compare-grid{
        grid-template-columns: 1fr;
    }
}

/* ====================== EXPECT ========================== */

.expect{
    margin-top: 60px;
}

.expect h2{
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
}

.expect p{
    font-size: 15px;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 18px;
    max-width: 860px;
}

/* ====================== DAY TRIPS TABLE ========================== */

.daytable{
    margin-top: 60px;
}

.daytable h2{
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 28px;
}

.daytable-wrap{
    overflow-x: auto;
}

.dt{
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.dt thead{
    background: #1f2937;
    color: #ffffff;
}

.dt thead th{
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.dt tbody tr{
    border-bottom: 1px solid #e9ecef;
    transition: background .15s ease;
}

.dt tbody tr:hover{
    background: #f8fafc;
}

.dt tbody td{
    padding: 14px 18px;
    color: #374151;
    line-height: 1.6;
}

.dt tbody td a{
    color: #2f9ed8;
    text-decoration: none;
    font-weight: 600;
}

.dt tbody td a:hover{
    text-decoration: underline;
}

.dt tbody td:last-child{
    font-weight: 700;
    color: #111827;
}

@media (max-width: 700px){
    .dt thead th:nth-child(3){
        display: none;
    }
    .dt tbody td:nth-child(3){
        display: none;
    }
}

/* ====================== TRAVEL GUIDE HUB ========================== */

.guide-hero{
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #ffffff;
    padding: 80px 0 70px;
}

.guide-hero-inner{
    max-width: 760px;
    padding-top: 0;
    padding-bottom: 0;
}

.guide-hero h1{
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin: 14px 0 18px;
    color: #ffffff;
}

.guide-hero p{
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,.85);
    margin: 0;
}

@media (max-width: 768px){
    .guide-hero h1{
        font-size: 32px;
    }
    .guide-hero p{
        font-size: 15px;
    }
}

/* ====================== ARTICLES GRID ========================== */

.articles{
    margin-top: 20px;
}

.articles h2{
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 32px;
}

.articles-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.article-card{
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 16px rgba(0,0,0,.05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.article-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,.1);
}

.article-card-img{
    height: 190px;
    overflow: hidden;
    background: #e5e7eb;
}

.article-card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.article-card:hover .article-card-img img{
    transform: scale(1.04);
}

.article-card-body{
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.article-tag{
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #2f9ed8;
    background: #e6f4fb;
    padding: 4px 10px;
    border-radius: 20px;
    width: fit-content;
}

.article-card-body h3{
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #111827;
    margin: 0;
}

.article-card-body p{
    font-size: 13px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
    flex: 1;
}

.article-read{
    font-size: 13px;
    font-weight: 700;
    color: #2f9ed8;
    margin-top: 4px;
}

@media (max-width: 1000px){
    .articles-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px){
    .articles-grid{
        grid-template-columns: 1fr;
    }
    .article-card-img{
        height: 160px;
    }
}

/* ====================== TOUR PAGE LAYOUT ========================== */

/* META BAR */
.tour-meta-bar{
    background: #1f2937;
    color: #ffffff;
}

.tour-meta-bar-inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
    padding-top: 0;
    padding-bottom: 0;
}

.tmb-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 12px;
    flex: 1 1 auto;
    border-right: 1px solid rgba(255,255,255,.08);
    gap: 4px;
}

.tmb-item:last-child{
    border-right: 0;
}

.tmb-item i{
    font-size: 18px;
    color: #2f9ed8;
    margin-bottom: 4px;
}

.tmb-label{
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #9ca3af;
    font-weight: 600;
}

.tmb-value{
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

@media (max-width: 900px){
    .tour-meta-bar-inner{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .tmb-item{
        border-right: 1px solid rgba(255,255,255,.08);
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
}

@media (max-width: 500px){
    .tour-meta-bar-inner{
        grid-template-columns: repeat(2, 1fr);
    }
}

/* TOUR BODY — 2 colonnes */
.tour-body{
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
    padding-top: 50px;
    padding-bottom: 20px;
}

@media (max-width: 1100px){
    .tour-body{
        grid-template-columns: 1fr 300px;
        gap: 28px;
    }
}

@media (max-width: 860px){
    .tour-body{
        grid-template-columns: 1fr;
    }
    .tour-sidebar{
        order: -1;
    }
}

/* TOUR SECTIONS */
.tour-section{
    margin-bottom: 48px;
}

.tour-section h2{
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e9ecef;
    color: #111827;
}

.tour-intro-text p{
    font-size: 15px;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 16px;
}

/* HIGHLIGHTS */
.tour-highlights-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.tour-highlights-list li{
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    padding-left: 22px;
    position: relative;
}

.tour-highlights-list li::before{
    content: "✓";
    position: absolute;
    left: 0;
    color: #2f9ed8;
    font-weight: 700;
}

@media (max-width: 640px){
    .tour-highlights-list{
        grid-template-columns: 1fr;
    }
}

/* ITINERARY */
.tour-itinerary{
    display: flex;
    flex-direction: column;
    gap: 0;
}

.itinerary-day{
    border-left: 3px solid #2f9ed8;
    margin-bottom: 28px;
    padding-left: 20px;
    position: relative;
}

.itinerary-day::before{
    content: "";
    position: absolute;
    left: -8px;
    top: 6px;
    width: 13px;
    height: 13px;
    background: #2f9ed8;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 0 0 2px #2f9ed8;
}

.itinerary-day-header{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.itinerary-day-label{
    display: inline-block;
    background: #2f9ed8;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.itinerary-day-title{
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.itinerary-day-desc p{
    font-size: 14px;
    line-height: 1.85;
    color: #4b5563;
    margin: 0;
}

/* INCLUSIONS */
.tour-inclusions{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.inc-title{
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid;
}

.inc-yes{ color: #16a34a; border-color: #16a34a; }
.inc-no{  color: #dc2626; border-color: #dc2626; }

.inc-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.inc-list li{
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
    padding-left: 20px;
    position: relative;
}

.inc-list-yes li::before{
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}

.inc-list-no li::before{
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
}

@media (max-width: 600px){
    .tour-inclusions{
        grid-template-columns: 1fr;
    }
}

/* PRACTICAL INFO */
.tour-practical{
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

.practical-row{
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid #e9ecef;
}

.practical-row:last-child{
    border-bottom: 0;
}

.practical-row dt{
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    background: #f8fafc;
    border-right: 1px solid #e9ecef;
}

.practical-row dd{
    padding: 14px 18px;
    font-size: 14px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 600px){
    .practical-row{
        grid-template-columns: 1fr;
    }
    .practical-row dt{
        border-right: 0;
        border-bottom: 1px solid #e9ecef;
        padding-bottom: 8px;
    }
}

/* SIDEBAR */
.tour-sidebar{
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card{
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

.sidebar-card h3{
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #111827;
}

.price-row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.price-row:last-of-type{
    border-bottom: 0;
    margin-bottom: 16px;
}

.price-label{
    font-size: 13px;
    color: #6b7280;
    font-weight: 600;
}

.price-value{
    font-size: 18px;
    font-weight: 800;
    color: #111827;
}

.price-note{
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 18px;
}

.sidebar-btn-wa{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 46px;
    background: #1da851;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: background .2s;
}

.sidebar-btn-wa:hover{
    background: #178a43;
}

.sidebar-btn-contact{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    background: transparent;
    border: 2px solid #2f9ed8;
    color: #2f9ed8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    transition: all .2s;
}

.sidebar-btn-contact:hover{
    background: #2f9ed8;
    color: #ffffff;
}

.quick-info-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quick-info-list li{
    font-size: 13px;
    color: #374151;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.quick-info-list i{
    color: #2f9ed8;
    width: 14px;
    flex: 0 0 14px;
    margin-top: 2px;
}

.help-card p{
    font-size: 13px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   TOUR PAGE — DESIGN PREMIUM
   Police : Playfair Display (titres) + DM Sans (corps)
   Palette : sable chaud #c8933a · blanc cassé #faf9f6 · charbon #1a1a1a
═══════════════════════════════════════════════════════════════ */

/* ── FONTS ── */
/*   ligne  supprimé : 
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=DM+Sans:wght@400;500;600&display=swap');
*/

:root{
    --gold:   #c8933a;
    --gold-l: #e8b86d;
    --dark:   #1a1a1a;
    --sand:   #faf9f6;
    --muted:  #6b6560;
    --border: #e8e2da;
    --green:  #2d7a4f;
    --red:    #c0392b;
    --radius: 16px;
    --shadow: 0 8px 32px rgba(0,0,0,.09);
}

/* ── HERO ── */
.tp-hero{
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.tp-hero__bg{
    position: absolute;
    inset: 0;
    background-image: var(--hero-img);
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.tp-hero:hover .tp-hero__bg{
    transform: scale(1.08);
}

.tp-hero__gradient{
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10,8,6,.92) 0%,
        rgba(10,8,6,.55) 45%,
        rgba(10,8,6,.15) 100%
    );
}

.tp-hero__inner{
    position: relative;
    z-index: 2;
    padding-bottom: 70px;
    padding-top: 0;
}

.tp-hero__content{
    max-width: 720px;
}

.tp-hero__kicker{
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-l);
    margin-bottom: 18px;
    padding: 6px 14px;
    border: 1px solid rgba(200,147,58,.4);
    border-radius: 30px;
}

.tp-hero__h1{
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: -.5px;
}

.tp-hero__desc{
    font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: rgba(255,255,255,.82);
    margin-bottom: 28px;
    max-width: 580px;
}

.tp-hero__pills{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.tp-pill{
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,.9);
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    padding: 7px 14px;
    border-radius: 30px;
}

.tp-pill i{ color: var(--gold-l); }

.tp-hero__actions{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.tp-btn-gold{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    background: var(--gold);
    color: #ffffff;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: background .2s, transform .2s;
    letter-spacing: .3px;
}

.tp-btn-gold:hover{
    background: #b07f2e;
    transform: translateY(-2px);
}

.tp-btn-ghost{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    background: transparent;
    border: 2px solid rgba(255,255,255,.5);
    color: #ffffff;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all .2s;
}

.tp-btn-ghost:hover{
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.8);
}

.tp-hero__scroll{
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.tp-hero__scroll span{
    display: block;
    width: 22px;
    height: 36px;
    border: 2px solid rgba(255,255,255,.4);
    border-radius: 12px;
    position: relative;
}

.tp-hero__scroll span::after{
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,.7);
    border-radius: 2px;
    animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot{
    0%,100%{ opacity:1; top:5px; }
    50%{ opacity:.3; top:16px; }
}

/* ── SECTIONS ── */
.tp-section{
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
}

.tp-section:last-child{
    border-bottom: 0;
    margin-bottom: 0;
}

.tp-section__label{
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 10px;
}

.tp-section__h2{
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 24px;
    line-height: 1.25;
}

.tp-intro-text p{
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: #3d3830;
    margin-bottom: 18px;
}

/* ── HIGHLIGHTS ── */
.tp-highlights{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tp-highlight-item{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #3d3830;
    line-height: 1.5;
}

.tp-highlight-check{
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    background: var(--gold);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

@media(max-width:640px){
    .tp-highlights{ grid-template-columns: 1fr; }
}

/* ── ITINERARY ── */
.tp-itinerary{
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tp-itin-day{
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0 24px;
    margin-bottom: 0;
}

.tp-itin-day__marker{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.tp-itin-day__num{
    width: 42px;
    height: 42px;
    background: var(--gold);
    color: #ffffff;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    box-shadow: 0 4px 14px rgba(200,147,58,.35);
}

.tp-itin-day__line{
    width: 2px;
    flex: 1;
    min-height: 32px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin-top: 8px;
    margin-bottom: 8px;
}

.tp-itin-day:last-child .tp-itin-day__line{
    display: none;
}

.tp-itin-day__body{
    padding-bottom: 36px;
}

.tp-itin-day__label{
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 6px;
}

.tp-itin-day__title{
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 12px;
    line-height: 1.3;
}

.tp-itin-day__desc{
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.85;
    color: var(--muted);
    margin: 0;
}

/* ── INCLUSIONS ── */
.tp-inclusions{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.tp-inc-col{
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.tp-inc-header{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.tp-inc-col--yes .tp-inc-header{
    background: #f0faf4;
    color: var(--green);
    border-bottom: 1px solid #c8e6d4;
}

.tp-inc-col--no .tp-inc-header{
    background: #fdf2f2;
    color: var(--red);
    border-bottom: 1px solid #f5c6c6;
}

.tp-inc-col ul{
    list-style: none;
    padding: 16px 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tp-inc-col li{
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #3d3830;
    line-height: 1.5;
    padding-left: 18px;
    position: relative;
}

.tp-inc-col--yes li::before{
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 700;
}

.tp-inc-col--no li::before{
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

@media(max-width:640px){
    .tp-inclusions{ grid-template-columns: 1fr; }
}

/* ── PRACTICAL ── */
.tp-practical{
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: #ffffff;
}

.tp-practical-row{
    display: grid;
    grid-template-columns: 200px 1fr;
    border-bottom: 1px solid var(--border);
}

.tp-practical-row:last-child{ border-bottom: 0; }

.tp-practical-row dt{
    padding: 16px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    background: #f9f7f4;
    border-right: 1px solid var(--border);
}

.tp-practical-row dd{
    padding: 16px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

@media(max-width:600px){
    .tp-practical-row{ grid-template-columns: 1fr; }
    .tp-practical-row dt{ border-right:0; border-bottom: 1px solid var(--border); }
}

/* ── GALLERY ── */
.tp-gallery{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 12px;
    border-radius: var(--radius);
    overflow: hidden;
}

.tp-gallery-item{ overflow: hidden; border-radius: 10px; }

.tp-gallery-item--wide{
    grid-column: span 2;
    grid-row: span 2;
}

.tp-gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.tp-gallery-item:hover img{ transform: scale(1.06); }

@media(max-width:640px){
    .tp-gallery{ grid-template-columns: 1fr 1fr; }
    .tp-gallery-item--wide{ grid-column: span 2; grid-row: span 1; }
}

/* ── REVIEWS ── */
.tp-reviews{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.tp-review-card{
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}

.tp-review-stars{ color: var(--gold); font-size: 13px; display:flex; gap:3px; }

.tp-review-text{
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: #4a4540;
    font-style: italic;
    flex: 1;
}

.tp-review-author{
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.tp-review-name{
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.tp-review-meta{
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--muted);
}

/* ── ARTICLES LIÉS ── */
.tp-articles{
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
}

.tp-article-card{
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .2s, box-shadow .2s;
}

.tp-article-card:hover{
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.tp-article-card__img{
    height: 160px;
    overflow: hidden;
    background: #e8e2da;
}

.tp-article-card__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.tp-article-card:hover .tp-article-card__img img{ transform: scale(1.05); }

.tp-article-card__body{
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.tp-article-tag{
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    background: #fdf4e7;
    padding: 3px 10px;
    border-radius: 20px;
    width: fit-content;
}

.tp-article-card__body h3{
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.4;
    margin: 0;
}

.tp-article-card__body p{
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.tp-article-read{
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
}

/* ── RESPONSIVE GENERAL ── */
@media(max-width:768px){
    .tp-hero{ min-height: 70vh; }
    .tp-hero__h1{ font-size: 30px; }
    .tp-hero__desc{ font-size: 15px; }
}


/* ═══════════════════════════════════════════════════════
   TOUR PAGE — LAYOUT FINAL
   Largeur cohérente = container max-width: 1200px
   Overview + Formulaire : 2 colonnes 50/50
   Highlights + Quick Info : 2 colonnes (60/40)
   Tout le reste : largeur container standard
   CTA : plein écran (hors container)
═══════════════════════════════════════════════════════ */

/* ── WRAPPER — largeur cohérente ── */
.tp-wrapper{
    padding-top: 56px;
    padding-bottom: 0;
}

/* ── SECTION BORDER ── */
.tp-section-border{
    border-top: 1px solid var(--border);
    padding-top: 52px;
    margin-top: 52px;
}

/* ── SECTION LABEL + H2 ── */
.tp-section__label{
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 10px;
}

.tp-section__h2{
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 28px;
    line-height: 1.25;
}

/* ── ROW — 2 colonnes ── */
.tp-row{
    display: grid;
    gap: 48px;
    margin-bottom: 0;
}

/* OVERVIEW + FORMULAIRE : 50/50 */
.tp-row--overview{
    grid-template-columns: 1fr 1fr;
    padding-bottom: 52px;
}

/* HIGHLIGHTS + QUICK INFO : 60/40 */
.tp-row--highlights{
    grid-template-columns: 1fr 380px;
    padding-bottom: 52px;
}

/* ── COLONNES ── */
.tp-col{}

/* INTRO TEXT */
.tp-intro-text p{
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.9;
    color: #3d3830;
    margin-bottom: 16px;
}

/* ── BOOKING CARD ── */
.tp-booking-card{
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,.08);
}

.tp-booking-prices-bar{
    background: var(--dark);
    padding: 22px 28px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    align-items: center;
}

.tp-bprice-item{
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.tp-bprice-label{
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,.45);
}

.tp-bprice-val{
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--gold-l);
}

/* FORM */
.tp-booking-form{
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tp-form-row-half{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.tp-form-field{
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tp-form-field label{
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--dark);
}

.tp-form-field input,
.tp-form-field select,
.tp-form-field textarea{
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--dark);
    background: var(--sand);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 11px 14px;
    transition: border-color .2s, background .2s;
    width: 100%;
}

.tp-form-field input:focus,
.tp-form-field select:focus,
.tp-form-field textarea:focus{
    outline: none;
    border-color: var(--gold);
    background: #ffffff;
}

.tp-form-field textarea{
    resize: vertical;
    min-height: 80px;
}

.tp-form-submit{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 50px;
    background: var(--gold);
    color: #ffffff;
    border: 0;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .2s;
    margin-top: 4px;
}

.tp-form-submit:hover{
    background: #b07f2e;
    transform: translateY(-2px);
}

.tp-form-divider{
    display: flex;
    align-items: center;
    gap: 12px;
}

.tp-form-divider::before,
.tp-form-divider::after{
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.tp-form-divider span{
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--muted);
    white-space: nowrap;
}

.tp-btn-wa-form{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 46px;
    background: #1da851;
    color: #ffffff;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    transition: background .2s;
}

.tp-btn-wa-form:hover{ background: #178a43; }

.tp-form-note{
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: var(--muted);
    text-align: center;
    line-height: 1.6;
    margin: -4px 0 0;
}

/* ── HIGHLIGHTS ── */
.tp-highlights{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.tp-highlight-item{
    display: flex;
    align-items: flex-start;
    gap: 11px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 13px 15px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #3d3830;
    line-height: 1.5;
}

.tp-highlight-check{
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    background: var(--gold);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

/* ── QUICK INFO BOX ── */
.tp-quickinfo-box{
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
    height: fit-content;
}

.tp-quickinfo-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tp-quickinfo-list li{
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.tp-quickinfo-list i{
    color: var(--gold);
    font-size: 15px;
    width: 16px;
    flex: 0 0 16px;
    margin-top: 4px;
}

.tp-quickinfo-list div{
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tp-quickinfo-list strong{
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    color: var(--muted);
}

.tp-quickinfo-list span{
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--dark);
    font-weight: 500;
}

/* ── BLOCK — sections standard ── */
.tp-block{
    padding-bottom: 0;
    margin-bottom: 0;
}

/* ── RESPONSIVE ── */
@media(max-width: 1024px){
    .tp-row--overview{ grid-template-columns: 1fr; gap: 40px; }
    .tp-row--highlights{ grid-template-columns: 1fr; gap: 32px; }
}

@media(max-width: 768px){
    .tp-section__h2{ font-size: 22px; }
    .tp-highlights{ grid-template-columns: 1fr; }
    .tp-form-row-half{ grid-template-columns: 1fr; }
    .tp-booking-prices-bar{ gap: 16px; }
}

/* Sidebar removed */
.tp-sidebar{ display: none; }
.tp-body{ display: block; }
.tp-main{ width: 100%; }

/* ── ARTICLE CARD ── */
.ac{
    display:flex;
    flex-direction:column;
    background:#ffffff;
    border:1px solid var(--border);
    border-radius:var(--radius);
    overflow:hidden;
    text-decoration:none;
    color:inherit;
    transition:transform .2s,box-shadow .2s;
}
.ac:hover{
    transform:translateY(-4px);
    box-shadow:var(--shadow);
}
.ac__img{
    height:190px;
    overflow:hidden;
    background:#e8e2da;
}
.ac__img img{
    width:100%;height:100%;
    object-fit:cover;display:block;
    transition:transform .4s ease;
}
.ac:hover .ac__img img{transform:scale(1.05);}
.ac__body{
    padding:18px;
    display:flex;flex-direction:column;gap:8px;flex:1;
}
.ac__tag{
    font-family:'DM Sans',sans-serif;
    font-size:11px;font-weight:700;
    text-transform:uppercase;letter-spacing:1px;
    color:var(--gold);background:#fdf4e7;
    padding:3px 10px;border-radius:20px;
    width:fit-content;
}
.ac__title{
    font-family:'Playfair Display',serif;
    font-size:15px;font-weight:700;
    color:var(--dark);line-height:1.4;margin:0;
}
.ac__excerpt{
    font-family:'DM Sans',sans-serif;
    font-size:13px;color:var(--muted);
    line-height:1.6;margin:0;flex:1;
}
.ac__read{
    font-family:'DM Sans',sans-serif;
    font-size:13px;font-weight:700;color:var(--gold);
}

/* ═══════════════════════════════════════════════════════
   ARTICLE PAGE LAYOUT
═══════════════════════════════════════════════════════ */

/* ── HERO ── */
.art-hero{
    position:relative;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    padding: 80px 0 70px;
    display:flex;
    align-items:center;
    overflow:hidden;
}
.art-hero__bg{
    display:none;
}
.art-hero__gradient{
    display:none;
}
.art-hero__inner{
    position:relative;z-index:2;
    padding-bottom:0;padding-top:0;
}
.art-hero__content{ max-width:780px; }

.art-hero__tag{
    display:inline-block;
    font-family:'DM Sans',sans-serif;
    font-size:11px;font-weight:700;
    text-transform:uppercase;letter-spacing:2px;
    color:var(--gold-l);
    border:1px solid rgba(200,147,58,.4);
    border-radius:30px;padding:5px 14px;
    margin-bottom:16px;
}
.art-hero__h1{
    font-family:'Playfair Display',serif;
    font-size:clamp(28px,4vw,50px);
    font-weight:800;line-height:1.15;
    color:#ffffff;margin:0 0 16px;
}
.art-hero__intro{
    font-family:'DM Sans',sans-serif;
    font-size:17px;line-height:1.7;
    color:rgba(255,255,255,.82);
    margin-bottom:20px;max-width:640px;
}
.art-hero__meta{
    display:flex;gap:20px;flex-wrap:wrap;
}
.art-hero__meta span{
    font-family:'DM Sans',sans-serif;
    font-size:13px;color:rgba(255,255,255,.6);
    display:flex;align-items:center;gap:6px;
}
.art-hero__meta i{ color:var(--gold-l); }

/* ── BODY LAYOUT ── */
.art-wrapper{
    display:grid;
    grid-template-columns:1fr 320px;
    gap:48px;
    align-items:start;
    padding-top:52px;
    padding-bottom:60px;
}
@media(max-width:1024px){
    .art-wrapper{ grid-template-columns:1fr 280px;gap:32px; }
}
@media(max-width:860px){
    .art-wrapper{ grid-template-columns:1fr; }
    .art-sidebar{ order:1; }
}

/* ── TABLE OF CONTENTS ── */
.art-toc{
    background:#fdf8f2;
    border:1px solid #eddfc8;
    border-left:4px solid var(--gold);
    border-radius:10px;
    padding:20px 24px;
    margin-bottom:36px;
}
.art-toc__title{
    font-family:'DM Sans',sans-serif;
    font-size:11px;font-weight:700;
    text-transform:uppercase;letter-spacing:1.5px;
    color:var(--gold);margin-bottom:12px;
}
.art-toc__list{
    margin:0;padding:0 0 0 18px;
    display:flex;flex-direction:column;gap:8px;
}
.art-toc__list li{
    font-family:'DM Sans',sans-serif;
    font-size:14px;line-height:1.5;
}
.art-toc__list a{
    color:var(--dark);text-decoration:none;
    border-bottom:1px dashed var(--border);
    transition:color .2s;
}
.art-toc__list a:hover{ color:var(--gold); }

/* ── ARTICLE CONTENT ── */
.art-content h2{
    font-family:'Playfair Display',serif;
    font-size:26px;font-weight:700;
    color:var(--dark);
    margin:44px 0 16px;
    padding-top:8px;
    border-top:2px solid var(--border);
    line-height:1.25;
}
.art-content h2:first-child{ margin-top:0;border-top:0; }

.art-content h3{
    font-family:'DM Sans',sans-serif;
    font-size:18px;font-weight:700;
    color:var(--dark);margin:28px 0 12px;
}
.art-content p{
    font-family:'DM Sans',sans-serif;
    font-size:16px;line-height:1.9;
    color:#3d3830;margin-bottom:18px;
}
.art-content ul,.art-content ol{
    font-family:'DM Sans',sans-serif;
    font-size:15px;line-height:1.8;
    color:#3d3830;
    padding-left:22px;margin-bottom:18px;
}
.art-content li{ margin-bottom:6px; }

.art-content strong{ font-weight:700;color:var(--dark); }

.art-content a{
    color:var(--gold);
    text-decoration:underline;
    text-underline-offset:3px;
}
.art-content a:hover{ color:#b07f2e; }

.art-content img{
    width:100%;border-radius:12px;
    margin:24px 0;display:block;
}

/* HIGHLIGHT BOX — callout inline */
.art-callout{
    background:#fdf8f2;
    border-left:4px solid var(--gold);
    border-radius:0 10px 10px 0;
    padding:18px 22px;
    margin:28px 0;
    font-family:'DM Sans',sans-serif;
    font-size:15px;line-height:1.7;
    color:#3d3830;
}
.art-callout strong{ color:var(--gold); }

/* MINI CTA INLINE */
.art-inline-cta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    background:var(--dark);
    border-radius:14px;
    padding:24px 28px;
    margin:36px 0;
    flex-wrap:wrap;
}
.art-inline-cta p{
    font-family:'DM Sans',sans-serif;
    font-size:15px;color:rgba(255,255,255,.85);
    margin:0;line-height:1.5;flex:1;
}
.art-inline-cta a{
    display:inline-flex;
    align-items:center;gap:8px;
    background:var(--gold);color:#ffffff;
    text-decoration:none;
    font-family:'DM Sans',sans-serif;
    font-size:14px;font-weight:700;
    padding:12px 22px;border-radius:8px;
    white-space:nowrap;
    transition:background .2s;
}
.art-inline-cta a:hover{ background:#b07f2e; }

/* ── TABLEAU COMPARATIF ── */
.art-table-wrap{
    overflow-x:auto;
    margin:32px 0;
    border-radius:8px;
    border:1px solid #e8e0d5;
}
.art-table{
    width:100%;
    border-collapse:collapse;
    font-size:.95rem;
    background:#fff;
}
.art-table thead tr{
    background:#f7f2eb;
    border-bottom:2px solid #e0d5c5;
}
.art-table thead th{
    padding:14px 20px;
    text-align:left;
    font-weight:700;
    font-size:.9rem;
    letter-spacing:.02em;
    color:var(--dark);
    white-space:nowrap;
}
.art-table thead th:first-child{
    width:38%;
}
.art-table tbody tr{
    border-bottom:1px solid #ede8e0;
    transition:background .15s;
}
.art-table tbody tr:last-child{
    border-bottom:none;
}
.art-table tbody tr:hover{
    background:#fdf9f4;
}
.art-table tbody td{
    padding:13px 20px;
    vertical-align:top;
    color:#3a3530;
    line-height:1.5;
}
.art-table tbody td:first-child{
    font-weight:600;
    color:var(--dark);
    background:#faf7f3;
    border-right:1px solid #ede8e0;
}
@media(max-width:600px){
    .art-table thead th,
    .art-table tbody td{ padding:11px 14px; font-size:.88rem; }
}

/* ── ARTICLES SIMILAIRES ── */
.art-related{
    margin-top:56px;
    padding-top:48px;
    border-top:1px solid var(--border);
}
.art-related__label{
    font-family:'DM Sans',sans-serif;
    font-size:11px;font-weight:700;
    text-transform:uppercase;letter-spacing:2px;
    color:var(--gold);margin-bottom:10px;
}
.art-related__h2{
    font-family:'Playfair Display',serif;
    font-size:24px;font-weight:700;
    color:var(--dark);margin:0 0 24px;
}
.art-related__grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}
@media(max-width:700px){
    .art-related__grid{ grid-template-columns:1fr; }
}

/* ── SIDEBAR ── */
.art-sidebar{
    display:flex;flex-direction:column;gap:20px;
}
.art-sidebar__card{
    background:#ffffff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:24px;
    box-shadow:0 4px 20px rgba(0,0,0,.05);
}
.art-sidebar__label{
    font-family:'DM Sans',sans-serif;
    font-size:10px;font-weight:700;
    text-transform:uppercase;letter-spacing:2px;
    color:var(--gold);margin-bottom:8px;
}
.art-sidebar__h3{
    font-family:'Playfair Display',serif;
    font-size:17px;font-weight:700;
    color:var(--dark);margin:0 0 16px;
}
.art-sidebar__tours{
    display:flex;flex-direction:column;gap:14px;
    margin-bottom:18px;
}
.art-sidebar__tour{
    display:flex;gap:12px;
    text-decoration:none;color:inherit;
    padding:10px;border:1px solid var(--border);
    border-radius:10px;
    transition:background .15s;
}
.art-sidebar__tour:hover{ background:#fdf8f2; }
.art-sidebar__tour-img{
    position:relative;
    width:72px;height:60px;flex:0 0 72px;
    border-radius:8px;overflow:hidden;
}
.art-sidebar__tour-img img{
    width:100%;height:100%;object-fit:cover;
}
.art-sidebar__tour-price{
    position:absolute;bottom:4px;left:4px;
    background:var(--gold);color:#fff;
    font-family:'DM Sans',sans-serif;
    font-size:11px;font-weight:700;
    padding:2px 6px;border-radius:4px;
}
.art-sidebar__tour-body{
    display:flex;flex-direction:column;
    gap:4px;justify-content:center;
}
.art-sidebar__tour-title{
    font-family:'DM Sans',sans-serif;
    font-size:13px;font-weight:700;
    color:var(--dark);line-height:1.3;
}
.art-sidebar__tour-meta{
    font-family:'DM Sans',sans-serif;
    font-size:11px;color:var(--muted);
}
.art-sidebar__tour-meta i{ color:var(--gold); }
.art-sidebar__btn{
    display:flex;align-items:center;justify-content:center;
    width:100%;min-height:40px;
    background:var(--dark);color:#ffffff;
    text-decoration:none;
    font-family:'DM Sans',sans-serif;
    font-size:13px;font-weight:700;
    border-radius:8px;
    transition:background .2s;
}
.art-sidebar__btn:hover{ background:#333; }

/* CONTACT CARD */
.art-sidebar__contact p{
    font-family:'DM Sans',sans-serif;
    font-size:13px;color:var(--muted);
    line-height:1.6;margin-bottom:14px;
}
.art-sidebar__wa{
    display:flex;align-items:center;justify-content:center;
    gap:8px;width:100%;min-height:42px;
    background:#1da851;color:#ffffff;
    text-decoration:none;
    font-family:'DM Sans',sans-serif;
    font-size:14px;font-weight:700;
    border-radius:8px;margin-bottom:10px;
    transition:background .2s;
}
.art-sidebar__wa:hover{ background:#178a43; }
.art-sidebar__link{
    display:block;text-align:center;
    font-family:'DM Sans',sans-serif;
    font-size:13px;font-weight:600;
    color:var(--gold);text-decoration:none;
}
.art-sidebar__link:hover{ text-decoration:underline; }

/* ── ALERTS FORMULAIRE ── */
.tp-alert{
    display:flex;align-items:center;gap:12px;
    padding:16px 24px;border-radius:10px;
    font-family:'DM Sans',sans-serif;font-size:15px;
    margin:16px 0;
}
.tp-alert i{ font-size:20px; }
.tp-alert--success{
    background:#f0faf4;border:1px solid #c8e6d4;color:#2d7a4f;
}
.tp-alert--error{
    background:#fdf2f2;border:1px solid #f5c6c6;color:#c0392b;
}

/* ── FORM SUCCESS / ERROR STATES ── */
.tp-form-success,
.tp-form-error{
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}
.tp-form-success__icon,
.tp-form-error__icon{
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}
.tp-form-success__icon{
    background: #f0faf4;
    color: #2d7a4f;
    border: 2px solid #c8e6d4;
}
.tp-form-error__icon{
    background: #fdf2f2;
    color: #c0392b;
    border: 2px solid #f5c6c6;
}
.tp-form-success h3,
.tp-form-error h3{
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin: 0;
}
.tp-form-success p,
.tp-form-error p{
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}
.tp-form-success a,
.tp-form-error a{
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
}

.tp-form-resend{
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    margin-top: 4px;
}
.tp-form-resend:hover{ text-decoration: underline; }

/* ── SECTION CARTE LEAFLET ── */
#tp-map{
    width: 100%;
    height: 420px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.1);
    margin-bottom: 20px;
    z-index: 0;
}

.tp-map-legend{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tp-map-legend-item{
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 8px 14px;
}

.tp-map-legend-num{
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 24px;
}

.tp-map-legend-name{
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
}

.tp-map-legend-day{
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: var(--muted);
}

/* ═══════════════════════════════════════════════════════
   ABOUT US PAGE
═══════════════════════════════════════════════════════ */

.about-hero{
    background: var(--dark);
    padding: 80px 0 70px;
}
.about-hero__kicker{
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--gold-l);
    border: 1px solid rgba(200,147,58,.4);
    border-radius: 30px; padding: 5px 14px;
    margin-bottom: 20px;
}
.about-hero__h1{
    font-family: 'Playfair Display', serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800; line-height: 1.2;
    color: #ffffff; margin: 0 0 20px;
    max-width: 800px;
}
.about-hero__desc{
    font-family: 'DM Sans', sans-serif;
    font-size: 17px; line-height: 1.8;
    color: rgba(255,255,255,.75);
    max-width: 680px;
}

.about-wrapper{
    padding-top: 56px;
    padding-bottom: 60px;
    max-width: 860px;
}

.about-section{
    margin-bottom: 52px;
    padding-bottom: 52px;
}
.about-section--border{
    border-top: 1px solid var(--border);
    padding-top: 52px;
}
.about-section__label{
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--gold); margin-bottom: 10px;
}
.about-section__h2{
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 700;
    color: var(--dark); margin: 0 0 28px;
}

.about-text p{
    font-family: 'DM Sans', sans-serif;
    font-size: 16px; line-height: 1.9;
    color: #3d3830; margin-bottom: 18px;
}

/* VALUES */
.about-values{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.about-value-card{
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
}
.about-value-icon{
    width: 44px; height: 44px;
    background: #fdf4e7;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
}
.about-value-icon i{ color: var(--gold); font-size: 18px; }
.about-value-card h3{
    font-family: 'Playfair Display', serif;
    font-size: 18px; font-weight: 700;
    color: var(--dark); margin: 0 0 12px;
}
.about-value-card p{
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; line-height: 1.8;
    color: var(--muted); margin: 0;
}

/* TEAM */
.about-team{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}
.about-team-member{
    display: flex;
    gap: 14px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px;
    align-items: flex-start;
}
.about-team-member__avatar{
    width: 42px; height: 42px; flex: 0 0 42px;
    background: var(--dark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.about-team-member__avatar i{ color: var(--gold-l); font-size: 16px; }
.about-team-member__info h3{
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 700;
    color: var(--dark); margin: 0 0 3px;
}
.about-team-member__info span{
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .8px;
    color: var(--gold); display: block; margin-bottom: 6px;
}
.about-team-member__info p{
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; line-height: 1.6;
    color: var(--muted); margin: 0;
}

/* CREDENTIALS */
.about-credentials{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.about-credential{
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
}
.about-credential > i{
    font-size: 22px;
    color: var(--gold);
    flex: 0 0 24px;
    margin-top: 2px;
}
.about-credential strong{
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 700;
    color: var(--dark); display: block;
    margin-bottom: 6px;
}
.about-credential p{
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; line-height: 1.7;
    color: var(--muted); margin: 0;
}

/* CTA */
.about-cta h2{
    font-family: 'Playfair Display', serif;
    font-size: 28px; font-weight: 700;
    color: var(--dark); margin: 0 0 16px;
}
.about-cta p{
    font-family: 'DM Sans', sans-serif;
    font-size: 16px; line-height: 1.8;
    color: #3d3830; margin-bottom: 28px;
    max-width: 640px;
}
.about-cta__actions{
    display: flex; gap: 16px; flex-wrap: wrap;
}
.tp-btn-wa-about{
    display: inline-flex; align-items: center;
    justify-content: center; gap: 8px;
    padding: 14px 26px;
    background: #1da851; color: #ffffff;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 700;
    border-radius: 8px;
    transition: background .2s;
}
.tp-btn-wa-about:hover{ background: #178a43; }

@media(max-width: 768px){
    .about-values{ grid-template-columns: 1fr; }
    .about-team{ grid-template-columns: 1fr; }
}

/* ── FOOTER SOCIAL ── */
.footer-social{
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.footer-social a{
    width: 36px; height: 36px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: 15px;
    text-decoration: none;
    transition: background .2s, color .2s;
}
.footer-social a:hover{
    background: var(--gold);
    border-color: var(--gold);
    color: #ffffff;
}

/* ── FOOTER CONTACT liens ── */
.footer-contact a{
    color: inherit;
    text-decoration: none;
}
.footer-contact a:hover{
    color: var(--gold);
}

/* ═══════════════════════════════════════════════════════
   LEGAL PAGES
═══════════════════════════════════════════════════════ */
.legal-hero{
    background: var(--dark);
    padding: 80px 0 70px;
}
.legal-kicker{
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--gold-l);
    border: 1px solid rgba(200,147,58,.4);
    border-radius: 30px; padding: 5px 14px;
    margin-bottom: 16px;
}
.legal-hero h1{
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3.5vw, 40px);
    font-weight: 800; color: #ffffff;
    margin: 0 0 10px;
}
.legal-hero p{
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; color: rgba(255,255,255,.5);
}

.legal-wrapper{
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: start;
    padding-top: 52px;
    padding-bottom: 60px;
}
@media(max-width: 860px){
    .legal-wrapper{ grid-template-columns: 1fr; }
    .legal-sidebar{ order: -1; }
}

.legal-section{
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}
.legal-section:last-child{ border-bottom: 0; }
.legal-section h2{
    font-family: 'Playfair Display', serif;
    font-size: 22px; font-weight: 700;
    color: var(--dark); margin: 0 0 16px;
}
.legal-section h3{
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 700;
    color: var(--dark); margin: 20px 0 8px;
}
.legal-section p{
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; line-height: 1.85;
    color: #3d3830; margin-bottom: 14px;
}
.legal-section ul{
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; line-height: 1.8;
    color: #3d3830; padding-left: 22px;
    margin-bottom: 14px;
}
.legal-section a{ color: var(--gold); text-decoration: underline; }

.legal-sidebar{
    display: flex; flex-direction: column; gap: 16px;
    position: sticky; top: 90px;
}
.legal-sidebar__card{
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 22px;
}
.legal-sidebar__card h3{
    font-family: 'Playfair Display', serif;
    font-size: 16px; font-weight: 700;
    color: var(--dark); margin: 0 0 10px;
}
.legal-sidebar__card p{
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; color: var(--muted);
    line-height: 1.6; margin-bottom: 14px;
}
.legal-sidebar__card ul{
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 8px;
}
.legal-sidebar__card ul a{
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; color: var(--gold);
    text-decoration: none; font-weight: 600;
}
.legal-sidebar__btn{
    display: flex; align-items: center; gap: 8px;
    width: 100%; min-height: 40px;
    background: var(--dark); color: #ffffff;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 700;
    border-radius: 8px; padding: 0 16px;
    margin-bottom: 8px;
    transition: background .2s;
    justify-content: center;
}
.legal-sidebar__btn:hover{ background: #333; }
.legal-sidebar__wa{
    display: flex; align-items: center; gap: 8px;
    width: 100%; min-height: 40px;
    background: #1da851; color: #ffffff;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 700;
    border-radius: 8px; padding: 0 16px;
    transition: background .2s;
    justify-content: center;
}
.legal-sidebar__wa:hover{ background: #178a43; }

/* ═══════════════════════════════════════════════════════
   SITE HERO — classe universelle pages statiques
   Même look que .guide-hero — référence visuelle
═══════════════════════════════════════════════════════ */
.site-hero{
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
    color: #ffffff;
    padding: 80px 0 70px;
}
.site-hero__inner{
    max-width: 760px;
}
.site-hero__kicker{
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: #60a5fa;
    margin-bottom: 14px;
}
.site-hero h1{
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800; line-height: 1.15;
    color: #ffffff; margin: 0 0 18px;
}
.site-hero p{
    font-size: 18px; line-height: 1.7;
    color: rgba(255,255,255,.85);
    margin: 0; max-width: 680px;
}
@media(max-width: 768px){
    .site-hero{ padding: 56px 0 48px; }
    .site-hero h1{ font-size: 28px; }
    .site-hero p{ font-size: 15px; }
}

/* Contact hero — override vers site-hero standard */
.page-hero-contact{
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
    padding: 80px 0 70px !important;
    min-height: unset !important;
}
.page-hero-inner{
    min-height: unset !important;
    max-width: 760px;
}
.page-hero-content .hero-kicker{
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: #60a5fa;
    margin-bottom: 14px;
}
.page-hero-contact h1{
    font-size: clamp(28px, 4vw, 48px) !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    margin: 0 0 18px !important;
}
.page-hero-contact p{
    font-size: 18px !important;
    line-height: 1.7 !important;
    color: rgba(255,255,255,.85) !important;
    max-width: 680px;
}
@media(max-width: 768px){
    .page-hero-contact{ padding: 56px 0 48px !important; }
}

/* ── Padding vertical récupéré après fix du container ── */
.intro.container,
section.intro{
    padding-top: 80px;
    padding-bottom: 60px;
}
.popular-tours.container,
section.popular-tours{
    padding-top: 60px;
    padding-bottom: 80px;
}
.categories.container{
    padding-top: 0;
    padding-bottom: 60px;
}
.reviews.container{
    padding-top: 0;
    padding-bottom: 80px;
}
.about-wrapper.container{
    padding-top: 56px;
    padding-bottom: 60px;
}
.legal-wrapper.container{
    padding-top: 52px;
    padding-bottom: 60px;
}
.art-wrapper.container{
    padding-top: 52px;
    padding-bottom: 60px;
}
.tp-wrapper.container{
    padding-top: 56px;
    padding-bottom: 40px;
}

.compare.container{
    padding-top: 0;
    padding-bottom: 60px;
}
.expect.container{
    padding-top: 0;
    padding-bottom: 80px;
}

/* ═══════════════════════════════════════════════════════
   CONTACT PAGE — nouveau design
═══════════════════════════════════════════════════════ */

.cv-wrapper{
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
    padding-top: 56px;
    padding-bottom: 60px;
}

@media(max-width: 960px){
    .cv-wrapper{ grid-template-columns: 1fr; }
    .cv-info-col{ order: -1; }
}

/* ── Section label ── */
.cv-section-label{
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    color: var(--gold); margin-bottom: 8px;
}

/* ── Form card ── */
.cv-form-card{
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.cv-form-card__header{
    background: var(--dark);
    padding: 28px 32px;
}
.cv-form-card__header h2{
    font-family: 'Playfair Display', serif;
    font-size: 24px; font-weight: 700;
    color: #ffffff; margin: 0 0 8px;
}
.cv-form-card__header p{
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; color: rgba(255,255,255,.55);
    margin: 0;
}
.cv-form-card__header .cv-section-label{
    color: var(--gold-l);
}

/* Alerts */
.cv-alert{
    display: flex; align-items: flex-start; gap: 14px;
    padding: 18px 32px;
    font-family: 'DM Sans', sans-serif; font-size: 14px;
    line-height: 1.6;
}
.cv-alert i{ font-size: 20px; margin-top: 2px; flex: 0 0 20px; }
.cv-alert a{ font-weight: 700; }
.cv-alert--success{ background: #f0faf4; color: #2d7a4f; border-bottom: 1px solid #c8e6d4; }
.cv-alert--success a{ color: #2d7a4f; }
.cv-alert--error{ background: #fdf2f2; color: #c0392b; border-bottom: 1px solid #f5c6c6; }
.cv-alert--error a{ color: #c0392b; }

/* Form */
.cv-form{
    padding: 28px 32px;
    display: flex; flex-direction: column; gap: 20px;
}
.cv-form-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media(max-width: 600px){
    .cv-form-grid{ grid-template-columns: 1fr; }
}
.cv-field{
    display: flex; flex-direction: column; gap: 6px;
}
.cv-field--full{ grid-column: span 2; }
@media(max-width: 600px){
    .cv-field--full{ grid-column: span 1; }
}
.cv-field label{
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .8px;
    color: var(--dark);
}
.cv-field input,
.cv-field textarea{
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; color: var(--dark);
    background: var(--sand);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    transition: border-color .2s, background .2s;
    width: 100%;
}
.cv-field input:focus,
.cv-field textarea:focus{
    outline: none;
    border-color: var(--gold);
    background: #ffffff;
}
.cv-field textarea{ resize: vertical; min-height: 120px; }

.cv-submit{
    display: flex; align-items: center; justify-content: center;
    gap: 8px; width: 100%; min-height: 52px;
    background: var(--gold); color: #ffffff;
    border: 0; border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .2s;
}
.cv-submit:hover{ background: #b07f2e; transform: translateY(-2px); }

.cv-submit-note{
    font-family: 'DM Sans', sans-serif;
    font-size: 12px; color: var(--muted);
    text-align: center; margin: -8px 0 0;
}

/* ── Info sidebar ── */
.cv-info-col{ display: flex; flex-direction: column; gap: 20px; }

.cv-info-card{
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
.cv-info-card h3{
    font-family: 'Playfair Display', serif;
    font-size: 17px; font-weight: 700;
    color: var(--dark); margin: 0 0 18px;
}

.cv-info-list{
    list-style: none; padding: 0; margin: 0 0 20px;
    display: flex; flex-direction: column; gap: 16px;
}
.cv-info-list li{
    display: flex; align-items: flex-start; gap: 12px;
}
.cv-info-icon{
    width: 36px; height: 36px; flex: 0 0 36px;
    background: #fdf4e7; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}
.cv-info-icon i{ color: var(--gold); font-size: 15px; }
.cv-info-icon--wa{ background: #f0faf4; }
.cv-info-icon--wa i{ color: #1da851; }
.cv-info-list strong{
    font-family: 'DM Sans', sans-serif;
    font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .6px;
    color: var(--muted); display: block; margin-bottom: 3px;
}
.cv-info-list span,
.cv-info-list a{
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; color: var(--dark);
    font-weight: 500; text-decoration: none;
}
.cv-info-list a:hover{ color: var(--gold); }

.cv-wa-btn{
    display: flex; align-items: center; justify-content: center;
    gap: 8px; width: 100%; min-height: 46px;
    background: #1da851; color: #ffffff;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px; font-weight: 700;
    border-radius: 10px;
    transition: background .2s;
}
.cv-wa-btn:hover{ background: #178a43; }

/* Popular links */
.cv-links{
    display: flex; flex-direction: column; gap: 8px;
}
.cv-links a{
    display: flex; align-items: center; gap: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 600;
    color: var(--dark); text-decoration: none;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: background .15s, border-color .15s;
}
.cv-links a:hover{
    background: #fdf4e7;
    border-color: var(--gold);
    color: var(--gold);
}
.cv-links i{ color: var(--gold); font-size: 11px; }

/* ── WHY US — responsive fix ── */
@media(max-width: 900px){
    .why-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 540px){
    .why-grid{
        grid-template-columns: 1fr;
    }
}

/* ── FAQ — padding et accordion fix ── */
.faq-section.container{
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
}

/* S'assurer que details/summary fonctionne bien */
details.faq-item{
    cursor: pointer;
}
details.faq-item summary{
    list-style: none;
}
details.faq-item summary::-webkit-details-marker{
    display: none;
}
details.faq-item .faq-answer{
    display: block;
}

/* ── PAGE 404 ── */
.p404-wrapper{
    padding-top: 56px;
    padding-bottom: 60px;
}
.p404-links{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
@media(max-width: 768px){
    .p404-links{ grid-template-columns: 1fr 1fr; }
}
@media(max-width: 480px){
    .p404-links{ grid-template-columns: 1fr; }
}
.p404-card{
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 18px 20px;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s, box-shadow .2s;
}
.p404-card:hover{
    border-color: var(--gold);
    box-shadow: 0 4px 16px rgba(200,147,58,.15);
}
.p404-card i{
    font-size: 22px;
    color: var(--gold);
    flex: 0 0 24px;
}
.p404-card strong{
    font-family: 'DM Sans', sans-serif;
    font-size: 15px; font-weight: 700;
    color: var(--dark); display: block;
}
.p404-card span{
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; color: var(--muted);
}
.p404-cta{
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.p404-cta p{
    font-family: 'DM Sans', sans-serif;
    font-size: 16px; color: var(--muted);
    margin-bottom: 20px;
}

/* ── IMAGE HERO dans le contenu article ── */
.art-content-img{
    margin: 0 0 36px;
    border-radius: 16px;
    overflow: hidden;
    line-height: 0;
}
.art-content-img img{
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
    display: block;
}
@media(max-width: 768px){
    .art-content-img img{ height: 240px; }
}

/* ═══════════════════════════════════════════════════════
   TP-HERO SPLIT — Layout 50/50 desktop
   Image droite (<img> SEO) / Texte gauche fond sombre
═══════════════════════════════════════════════════════ */

/* DESKTOP ≥ 1024px */
@media(min-width: 1024px){

    .tp-hero--split{
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: 1fr auto !important;
        background: #0f172a !important;
        min-height: 70vh;
        overflow: hidden;
    }

    /* Cache les éléments pleine largeur */
    .tp-hero--split .tp-hero__bg,
    .tp-hero--split .tp-hero__gradient{
        display: none !important;
    }

    /* Texte — colonne gauche */
    .tp-hero--split .tp-hero__inner{
        grid-column: 1 !important;
        grid-row: 1 !important;
        display: flex !important;
        align-items: center !important;
        padding: 60px 40px 60px 50px !important;
        background: #0f172a !important;
        z-index: 2;
    }

    /* Image — colonne droite */
    .tp-hero__img-col{
        grid-column: 2 !important;
        grid-row: 1 / 3 !important;
        overflow: hidden;
        min-height: 70vh;
    }

    .tp-hero__img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
        min-height: 70vh;
    }

    /* Scroll indicator */
    .tp-hero--split .tp-hero__scroll{
        grid-column: 1 !important;
        grid-row: 2 !important;
        position: relative !important;
        padding-bottom: 16px;
        display: flex;
        justify-content: center;
        background: #0f172a;
    }
}

/* MOBILE/TABLETTE < 1024px — comportement original */
@media(max-width: 1023px){

    .tp-hero--split{
        position: relative;
        min-height: 80vh;
        display: flex !important;
        align-items: flex-end;
        overflow: hidden;
        background: transparent !important;
    }

    .tp-hero__img-col{
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .tp-hero__img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    /* Overlay sombre pour lisibilité mobile */
    .tp-hero--split .tp-hero__img-col::after{
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(
            to top,
            rgba(10,8,6,.92) 0%,
            rgba(10,8,6,.55) 45%,
            rgba(10,8,6,.1) 100%
        );
    }

    .tp-hero--split .tp-hero__inner{
        position: relative;
        z-index: 2;
        padding-bottom: 70px !important;
        background: transparent !important;
    }

    .tp-hero--split .tp-hero__bg{
        display: none;
    }
}

/* ── Fix hauteur image colonne droite hero split ── */
@media(min-width: 1024px){
    .tp-hero--split{
        align-items: stretch !important;
    }
    .tp-hero__img-col{
        display: flex !important;
        align-self: stretch !important;
        min-height: 100% !important;
    }
    .tp-hero__img{
        min-height: 100% !important;
        height: 100% !important;
        flex: 1;
    }
}

/* ── Lien contextuel hub — tour pages ── */
.tp-hub-link{
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}
.tp-hub-link p{
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.tp-hub-link a{
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
}
.tp-hub-link a:hover{
    text-decoration: underline;
}
.tp-hub-link i{
    font-size: 11px;
    color: var(--gold);
}

/* ── Lien contextuel hub — juste avant Tour Highlights ── */
.tp-hub-link{
    padding: 28px 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}
.tp-hub-link p{
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: var(--muted);
    margin: 0;
}
.tp-hub-link p a{
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
}
.tp-hub-link p a:hover{ text-decoration: underline; }
.tp-hub-link__btn{
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 30px;
    padding: 7px 18px;
    text-decoration: none;
    transition: background .2s, color .2s;
    white-space: nowrap;
}
.tp-hub-link__btn:hover{
    background: var(--gold);
    color: #fff;
}

/* ═══════════════════════════════════════════════════
   HEADER — Book Now button
═══════════════════════════════════════════════════ */
.btn-booknow{
    display: inline-block;
    background: var(--gold);
    color: #fff !important;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 30px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}
.btn-booknow:hover{
    background: var(--gold-l);
    transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════
   WHATSAPP FLOTTANT
═══════════════════════════════════════════════════ */
.float-wa{
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 16px rgba(37,211,102,.45);
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
}
.float-wa:hover{
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,.55);
}

/* ═══════════════════════════════════════════════════
   SCROLL TO TOP
═══════════════════════════════════════════════════ */
.scroll-top{
    position: fixed;
    bottom: 96px;
    right: 28px;
    z-index: 998;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,.92);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--dark);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .3s, transform .3s, background .2s;
    pointer-events: none;
}
.scroll-top.visible{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.scroll-top:hover{
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

/* ═══════════════════════════════════════════════════
   LEAFLET — cacher attribution bas droite
═══════════════════════════════════════════════════ */
.leaflet-bottom.leaflet-right{
    display: none !important;
}

/* ═══════════════════════════════════════════════════
   TP-HUB-LINK — fix séparateur
═══════════════════════════════════════════════════ */
.tp-hub-link{
    border-top: 1px solid var(--border);
    border-bottom: none;
    margin-bottom: 0;
}
/* ── Travel Guide hub links ── */
.guide-hub-links{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:24px;
}
.guide-hub-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    border:1px solid var(--color-border-secondary, rgba(0,0,0,.2));
    border-radius:8px;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    color:var(--color-text-primary);
    transition:background .2s, border-color .2s;
}
.guide-hub-link:hover{
    background:var(--color-background-secondary);
    border-color:var(--color-border-primary, rgba(0,0,0,.35));
}
.guide-hub-link .fa{
    color:#BA7517;
    font-size:14px;
}
@media(max-width:600px){
    .guide-hub-links{flex-direction:column}
    .guide-hub-link{width:100%;justify-content:center}
}

/* ═══════════════════════════════════════
   MAP v7 — Tooltips & Legend
═══════════════════════════════════════ */
.tp-map-tooltip{background:#fff;border:none !important;border-radius:12px;box-shadow:0 4px 24px rgba(0,0,0,.15);padding:0;pointer-events:none;min-width:180px;overflow:hidden}
.tp-map-tooltip::before,.tp-map-tooltip::after{display:none !important}
.tp-tooltip-thumb{width:100%;height:70px;display:flex;align-items:center;justify-content:center;font-size:32px}
.tp-tooltip-body{padding:10px 12px 12px}
.tp-tooltip-num{display:inline-flex;align-items:center;justify-content:center;width:18px;height:18px;border-radius:50%;font-size:9px;font-weight:700;color:#fff;margin-right:5px;vertical-align:middle}
.tp-tooltip-name{font-size:13px;font-weight:700;color:#1a1a1a;display:block;margin-bottom:2px}
.tp-tooltip-day{font-size:11px;color:#888;display:block}
.tp-tooltip-dist{font-size:11px;color:#c8933a;display:block;margin-top:5px;font-weight:600}
.tp-tooltip-alt{font-size:11px;color:#7b5ea7;display:block;font-weight:600}
.tp-route-progress{max-width:100%;margin-top:12px;margin-bottom:12px;background:#e8e4dc;border-radius:4px;height:4px;overflow:hidden}
.tp-route-progress-bar{height:100%;background:linear-gradient(90deg,#2d7a4f,#c8933a);border-radius:4px;width:0%;transition:width .5s ease}
.tp-map-legend-item{display:flex;align-items:center;gap:8px;background:#fff;border:1.5px solid #e8e4dc;border-radius:8px;padding:7px 12px;cursor:pointer;transition:all .2s}
.tp-map-legend-item:hover,.tp-map-legend-item.active{border-color:#c8933a;box-shadow:0 2px 12px rgba(200,147,58,.18)}
.tp-map-legend-info{display:flex;flex-direction:column}
.tp-map-legend-name{font-size:13px;font-weight:600;color:#1a1a1a;line-height:1.3}
.tp-map-legend-day{font-size:11px;color:#888;line-height:1.3}
/* ═══════════════════════════════════════
   LCP Hero Image — homepage
═══════════════════════════════════════ */
.hero-lcp-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}