/* ============================================
   SHADE EXPLORE - MAIN STYLESHEET
   ============================================ */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6b4a;
    --secondary-color: #111;
    --text-color: #333;
    --text-light: #777;
    --white: #fff;
    --light-bg: #f9f9f9;
    --border-color: #e0e0e0;
    --shadow: 0 15px 40px rgba(0, 0, 0, .1);
    --shadow-hover: 0 20px 50px rgba(0, 0, 0, .15);
    --transition: all 0.4s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

.header {
    background: var(--secondary-color);
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}


/* état au scroll */
header.is-scrolled {
    background: rgba(36, 35, 35, 0.55);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, .12);
}

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo img {
    height: 50px;
    width: auto;
}
/*
.header__nav {
    display: flex;
    align-items: center;
} */

.nav__list {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav__link {
    font-weight: 500;
    font-size: 15px;
    color: var(--white);
    position: relative;
}

.nav__link:hover,
.nav__link.active {
    color: var(--primary-color);
}

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}
/**/
/* Menu principal */
.nav__item--dropdown, .nav__item {
    position: relative;
}
/* Premier niveau de sous-menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    min-width: 200px;
    z-index: 999;
}

.nav__item--dropdown:hover > .dropdown-menu {
    display: block;
}

/* Liens sous-menu niveau 1 */
.dropdown-link {
    padding: 10px 20px;
}

/* Sous-menu niveau 2 (3ème degré) */
.sub-dropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background: #f9f9f9;
    min-width: 200px;
    box-shadow: 2px 2px 6px rgba(0,0,0,0.1);
    padding: 10px;
    border-radius: 10px;
    padding-left: 2px;

}

.dropdown-item--has-children:hover > .sub-dropdown {
    display: block;
}

/* Liens 3ème degré */
.sub-dropdown li a {
    padding: 8px 20px;
    white-space: nowrap;
}

/* Icône dropdown */
.dropdown-icon {
    margin-left: 6px;
    transition: transform 0.3s;
}

.nav__item--dropdown:hover .dropdown-icon,
.dropdown-item--has-children:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Option mobile */
@media (max-width: 992px) {
    .dropdown-menu, .sub-dropdown {
        position: static;
        box-shadow: none;
        display: none;
    }
    .nav__item--dropdown.open > .dropdown-menu,
    .dropdown-item--has-children.open > .sub-dropdown {
        display: block;
    }
}

/* .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: var(--transition);
} */
/* ============================================

   ============================================ */
/* Menu Mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.header__nav {
    transition: all 0.3s ease;
}

/* Pour bloquer le scroll quand le menu est ouvert */
body.menu-open {
    overflow: hidden;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }



    .header__nav.active {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }
}

/* ============================================
   DROPDOWN MENU
   ============================================ */

.nav__item--dropdown {
    position: relative;
}

.nav__item--dropdown .nav__link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-icon {
    transition: transform 0.3s ease;
    color: var(--text-light);
}

.nav__item--dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.dropdown-menu {
    background: var(--white);
    min-width: 280px;
    padding: 20px 0;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    z-index: 1000;
    border: 1px solid var(--border-color);
    overflow-y: auto;
}
ul.sub-dropdown li a {
    font-weight: 500;
    font-size: 15px;
    color: #000;
}
ul.sub-dropdown li a:hover,
ul.sub-dropdown li a.active {
    color: var(--primary-color);
}
/* Custom Scrollbar */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: var(--light-bg);
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

.nav__item--dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: var(--text-color);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.dropdown-link::before {
    content: '→';
    position: absolute;
    left: 24px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
    color: var(--primary-color);
    font-weight: bold;
    font-size: 16px;
}

.dropdown-link:hover {
    background: linear-gradient(90deg, rgba(255, 107, 74, 0.08) 0%, transparent 100%);
    color: var(--primary-color);
    padding-left: 44px;
}

.dropdown-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* View All Tours Link */
.dropdown-link--all {
    margin-top: 8px;
    padding-top: 20px;
    border-top: 2px solid var(--border-color);
    font-weight: 700;
    color: var(--primary-color);
}

.dropdown-link--all::before {
    content: '';
}

.dropdown-link--all:hover {
    background: var(--primary-color);
    color: var(--white);
    padding-left: 24px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu li {
    animation: slideDown 0.3s ease forwards;
    opacity: 0;
}

.nav__item--dropdown:hover .dropdown-menu li:nth-child(1) {
    animation-delay: 0.05s;
}

.nav__item--dropdown:hover .dropdown-menu li:nth-child(2) {
    animation-delay: 0.08s;
}

.nav__item--dropdown:hover .dropdown-menu li:nth-child(3) {
    animation-delay: 0.11s;
}

.nav__item--dropdown:hover .dropdown-menu li:nth-child(4) {
    animation-delay: 0.14s;
}

.nav__item--dropdown:hover .dropdown-menu li:nth-child(5) {
    animation-delay: 0.17s;
}

.nav__item--dropdown:hover .dropdown-menu li:nth-child(6) {
    animation-delay: 0.20s;
}

.nav__item--dropdown:hover .dropdown-menu li:nth-child(7) {
    animation-delay: 0.23s;
}

.nav__item--dropdown:hover .dropdown-menu li:nth-child(8) {
    animation-delay: 0.26s;
}

.nav__item--dropdown:hover .dropdown-menu li:nth-child(9) {
    animation-delay: 0.29s;
}

.nav__item--dropdown:hover .dropdown-menu li:nth-child(10) {
    animation-delay: 0.32s;
}

.nav__item--dropdown:hover .dropdown-menu li:nth-child(11) {
    animation-delay: 0.35s;
}

.nav__item--dropdown:hover .dropdown-menu li:nth-child(12) {
    animation-delay: 0.38s;
}

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

@media (max-width: 768px) {
    .dropdown-menu {
           transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 0 20px;
    }

    .nav__item--dropdown.active .dropdown-menu {
        max-height: 1000px;
        margin-top: 8px;
        padding: 12px 0 12px 20px;
    }

    .dropdown-link::before {
        left: 0;
    }

    .dropdown-link:hover {
        padding-left: 20px;
        background: none;
    }

    .dropdown-link--all {
        padding-top: 16px;
        margin-top: 8px;
    }

    .dropdown-link--all:hover {
        background: none;
        color: var(--primary-color);
        padding-left: 20px;
    }

    .dropdown-menu li {
        animation: none;
        opacity: 1;
    }
}
/* ===========================
   3rd level dropdown - MOBILE FIX
   =========================== */

@media (max-width: 768px) {
    /* Container pour les sous-menus de 3ème niveau */
    .dropdown-menu .nav__item--dropdown {
        position: relative;
    }

    /* Lien avec icône pour les sous-menus */
    .dropdown-menu .nav__item--dropdown > .nav__link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    /* Sous-menu de 3ème niveau caché par défaut */
    .dropdown-menu .nav__item--dropdown > .dropdown-menu {
        position: static;
        margin-left: 0;
        transform: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        padding-left: 20px;
        opacity: 1;
        visibility: visible;
        background: rgba(0, 0, 0, 0.02);
        border-radius: 8px;
        margin-top: 0;
        transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
    }

    /* Sous-menu de 3ème niveau ouvert */
    .dropdown-menu .nav__item--dropdown.active > .dropdown-menu {
        max-height: 1000px;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-top: 8px;
    }

    /* Rotation de l'icône pour le 3ème niveau */
    .dropdown-menu .nav__item--dropdown.active > .nav__link .dropdown-icon {
        transform: rotate(180deg);
        color: var(--primary-color);
    }

    /* Liens du 3ème niveau */
    .dropdown-menu .nav__item--dropdown .dropdown-menu .dropdown-link {
        padding: 10px 15px;
        font-size: 14px;
    }

    /* Animation désactivée pour les sous-menus mobiles */
    .dropdown-menu .nav__item--dropdown .dropdown-menu li {
        animation: none !important;
        opacity: 1 !important;
    }
}


/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    line-height: 1;
}

.btn--primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn--primary:hover {
    background: #e55a3a;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 74, 0.3);
}

.btn--large {
    padding: 16px 45px;
    font-size: 16px;
}

.btn--whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn--whatsapp:hover {
    background: #1fa855;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* .hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
} */
/* Page Header avec vidéo YouTube en background */
.page-header.video-bg {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container de la vidéo YouTube */
.video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

/* Iframe YouTube responsive */
.video-background iframe {
    width: 100vw;
    height: 56.25vw;
    /* Ratio 16:9 */
    min-height: 100vh;
    min-width: 177.77vh;
    /* Ratio 16:9 inversé */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Overlay sombre pour lisibilité */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Ajustez l'opacité selon vos besoins */
    z-index: 1;
}

/* Container du contenu */
.page-header .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



/* Responsive - Tablette */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .page-header.video-bg {
        padding: 80px 0 60px;
        min-height: 400px;
        height: 100% !important;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    .page-header.video-bg {
        padding: 60px 0 40px;
        min-height: 250px;
    }
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero__subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero__title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   SECTIONS
   ============================================ */

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.section-description {
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ============================================
   TOURS SLIDER
   ============================================ */

.explore-tours {
    padding: 40px 20px;
    background: var(--light-bg);
}

.explore-tours__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.explore-swiper {
    max-width: 1200px;
    padding-bottom: 60px !important;
    padding-top: 60px !important;
}

.explore-swiper .swiper-slide {
    height: auto;
}

.explore-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.explore-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.explore-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.explore-card__content {
    padding: 22px;
}

.explore-card__meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.explore-card__content h3 {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 80px;
}

.explore-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.explore-card__price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.explore-card__link {
    color: var(--secondary-color);
    font-weight: 500;
}

.explore-card__link:hover {
    color: var(--primary-color);
}

/* Swiper Navigation */
.explore-swiper .swiper-button-next,
.explore-swiper .swiper-button-prev {
    width: 46px;
    height: 46px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
    color: var(--secondary-color);
}

.explore-swiper .swiper-button-next:hover,
.explore-swiper .swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--white);
}

.explore-swiper .swiper-button-next::after,
.explore-swiper .swiper-button-prev::after {
    font-size: 18px;
}

.explore-swiper .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
}

.explore-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 60px 20px;
}

.about__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about__content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 20px;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat__number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat__label {
    color: var(--text-light);
    font-size: 14px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: 60px 20px;
    background: var(--light-bg);
}

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

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

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

.service-card__icon {
    margin-bottom: 20px;
}

.service-card__icon img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card__link {
    color: var(--primary-color);
    font-weight: 600;
}

.service-card__link:hover {
    text-decoration: underline;
}

/* ============================================
   CTA SECTION
   ============================================ */
section.cta.has-background {

    color: var(--white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta {
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--primary-color), #e55a3a);
    text-align: center;
}

.cta__content {
    color: var(--white);
}

.cta .section-subtitle {
    color: var(--white);
    opacity: 0.9;
}

.cta .section-title {
    color: var(--white);
    max-width: 700px;
    margin: 20px auto 30px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonials {
    padding: 60px 20px;
}

.testimonials__images {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.testimonials__images img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
}

.testimonials__partners {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.testimonials__partners img {
    max-height: 50px;
    opacity: 0.7;
    transition: var(--transition);
}

.testimonials__partners a:hover img {
    opacity: 1;
}

/* ============================================
   BLOG SECTION
   ============================================ */

.blog-preview {
    padding: 60px 20px;
    background: var(--light-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.blog-card__image {
    height: 240px;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.blog-card__content {
    padding: 25px;
}

.blog-card__meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card__link {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-card__link:hover {
    text-decoration: underline;
}

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

.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

.footer__logo img {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer__column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer__column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

.footer__column ul {
    list-style: none;
}

.footer__column ul li {
    margin-bottom: 12px;
}

.footer__column ul li a {
    color: rgba(255, 255, 255, 0.7);
}

.footer__column ul li a:hover {
    color: var(--white);
}

.footer__social {
    display: flex;
    gap: 15px;
}

.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

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

.page-header {
    padding: 120px 20px 80px;
    background: linear-gradient(135deg, var(--primary-color), #e55a3a);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}
.background img  { width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    }
.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}
.single-tour_container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.single-tour .main-wrapper {
    position: relative;
    z-index: 1;
}
/* ============================================
   ABOUT PAGE
   ============================================ */

.about-content {
    padding: 60px 20px;
}

.about-content__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content__image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.about-content__text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.stats-section {
    padding: 60px 20px;
    background: var(--light-bg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-box {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
}

.stat-box__icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.stat-box__number {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-box__label {
    color: var(--text-light);
}

.why-choose {
    padding: 60px 20px;
}

.why-choose__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-box {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 20px;
    transition: var(--transition);
}

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

.feature-box__icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-box__icon img {
    width: 60px;
    height: 60px;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--text-light);
    line-height: 1.7;
}

.mission {
    padding: 60px 20px;
    background: var(--light-bg);
}

.mission__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission__content p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 20px 0;
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-content {
    padding: 60px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-tour {
    display: grid;
    gap: 60px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-item__icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    flex-shrink: 0;
}

.contact-item__content h4 {
    margin-bottom: 5px;
}

.contact-item__content p {
    color: var(--text-light);
    margin: 0;
}

.contact-form {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 15px;
    transition: var(--transition);
}

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

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   BLOG PAGE
   ============================================ */

.blog-main {
    padding: 60px 20px;
}

.blog-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.article-full {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.article-full__image {
    height: 400px;
    overflow: hidden;
}

.article-full__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-full__content {
    padding: 40px;
}

.article-full__meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.article-full h2 {
    font-size: 32px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-full__excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.article-full__link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 992px) {
    .hero__title {
        font-size: 42px;
    }

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

    .about__wrapper,
    .about-content__wrapper,
    .mission__wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about__stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav__list {
        display: flex;
        flex-direction: column;
    }

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

    .hero {
        height: 270px;
    }

    .hero__title {
        font-size: 32px;
    }

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

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

    .services__grid,
    .blog-grid,
    .stats-grid,
    .why-choose__grid {
        grid-template-columns: 1fr;
    }

    .testimonials__images {
        gap: 15px;
    }

    .testimonials__images img {
        width: 80px;
        height: 80px;
    }

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


/* Tours */

/* Additional styles for tours page */
.tours-page {
    padding: 60px 20px;
    background: #f9f9f9;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* CARD */
.explore-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
    transition: transform .4s ease;
    height: 100%;
    display: block;
    flex-direction: column;
}

.explore-card.active {
    display: flex;
}

.explore-card:hover {
    transform: translateY(-10px);
}

.explore-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.explore-card__content {
    padding: 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.explore-card__meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
}

.explore-card__meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.explore-card__content h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #111;
    font-weight: 600;
    flex: 1;
}

.explore-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.explore-card__price {
    font-size: 26px;
    font-weight: 700;
    color: #ff6b4a;
}

.explore-card__link {
    color: #111;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.explore-card__link:hover {
    color: #ff6b4a;
    transform: translateX(4px);
}

/* PAGINATION */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination button {
    min-width: 46px;
    height: 46px;
    border: none;
    background: #fff;
    color: #111;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
}

.pagination button:hover:not(:disabled) {
    background: #ff6b4a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 74, .3);
}

.pagination button.active {
    background: #ff6b4a;
    color: #fff;
}

.pagination button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

div#pageNumbers {
    gap: 10px;
    display: flex;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }

    .explore-card__content h3 {
        font-size: 18px;
    }

    .explore-card__price {
        font-size: 22px;
    }

    .pagination {
        flex-wrap: wrap;
    }

    .pagination button {
        min-width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* FAQ Card */
.faq-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-item:last-child {
    margin-bottom: 0;
}

/* Question */
.faq-question {
    color: #ff6b4a;
    margin-bottom: 15px;
    font-size: 18px;
}

/* Answer */
.faq-answer {
    color: #777;
    line-height: 1.8;
    font-size: 15px;
}


/* ============================================
           ARTICLE PAGE STYLES
           ============================================ */

/* Article Hero Section */
.article-hero {
    padding: 60px 20px 40px;
    max-width: 1440px;
    margin: 0 auto;
}

.article-category {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: inline-block;
}

.article-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 25px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #ff8c6e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 18px;
}

.article-featured-image {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

/* Article Content */
.article-content {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 20px;
}

.article-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: var(--text-color);
}

.article-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: 60px;
    margin-bottom: 25px;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 26px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 45px;
    margin-bottom: 20px;
}

/* Chart Section */
.chart-section {
    background: var(--light-bg);
    border-radius: 22px;
    padding: 50px 40px;
    margin: 60px 0;
    box-shadow: var(--shadow);
}

.chart-title {
    font-size: 26px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 40px;
    text-align: center;
}

.chart-container {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 350px;
    gap: 25px;
}

.chart-bar {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.bar {
    width: 100%;
    background: linear-gradient(to top, var(--primary-color), #ff8c6e);
    border-radius: 12px 12px 0 0;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(255, 107, 74, 0.3);
}

.bar:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255, 107, 74, 0.5);
}

.bar-value {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 16px;
}

.bar-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    text-align: center;
    line-height: 1.4;
}

/* Quote Block */
.quote-block {
    background: var(--light-bg);
    border-left: 5px solid var(--primary-color);
    padding: 35px 45px;
    margin: 50px 0;
    font-style: italic;
    font-size: 20px;
    color: var(--text-color);
    line-height: 1.7;
    border-radius: 0 12px 12px 0;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 60px 0;
}

.gallery-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.gallery-image:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

/* Related Articles Section */
.related-articles {
    background: var(--light-bg);
    padding: 60px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-card {
    background: var(--white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.blog-card__image {
    height: 250px;
    overflow: hidden;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.08);
}

.blog-card__content {
    padding: 28px;
}

.blog-card__meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.blog-card__category {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--secondary-color);
    font-weight: 600;
}

.blog-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-card__link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-card__link:hover {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .article-title {
        font-size: 38px;
    }

    .article-content h2 {
        font-size: 30px;
    }

    .chart-bars {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .article-title {
        font-size: 32px;
    }

    .article-meta {
        gap: 15px;
    }

    .article-featured-image {
        height: 300px;
    }

    .article-content {
        padding: 60px 20px;
    }

    .article-content p {
        font-size: 17px;
    }

    .article-content h2 {
        font-size: 26px;
        margin-top: 45px;
    }

    .article-content h3 {
        font-size: 22px;
    }

    .chart-section {
        padding: 35px 25px;
    }

    .chart-bars {
        height: 280px;
        gap: 10px;
    }

    .bar-label {
        font-size: 12px;
    }

    .quote-block {
        padding: 25px 30px;
        font-size: 18px;
    }

    .image-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-image {
        height: 250px;
    }

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

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

/* ============================================
   MOBILE NAVIGATION - SHADE EXPLORE
   ============================================ */

/* Bouton Menu Mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Animation du bouton hamburger vers X */


.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}


/* Overlay de fond */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    /* Cacher le bouton "Book Now" en mobile */
    .header__actions .btn--primary {
        display: none;
    }

    /* Menu Mobile */
    .header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: var(--white);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        overflow-y: auto;
        padding: 60px 0 40px;
        z-index: 999;
    }

    .header__nav.active {
        left:  0;
    }

    /* Liste de navigation */
    .nav__list {
        flex-direction: column;
        gap: 0;
        padding: 0 30px;
    }

    .nav__list>li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        width: 100%;
    }

    .nav__list>li:last-child {
        border-bottom: none;
    }

    /* Liens de navigation */
    .nav__link {
        padding: 18px 0;
        font-size: 17px;
        color: var(--secondary-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        font-weight: 600;
    }

    .nav__link.active {
        color: var(--primary-color);
    }

    .nav__link.active::after {
        display: none;
    }

    /* Icône dropdown en mobile */
    .dropdown-icon {
        color: var(--text-light);
        transition: transform 0.3s ease, color 0.3s ease;
    }

    /* Dropdown Mobile
    .nav__item--dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        background: var(--light-bg);
        border-radius: 12px;
        margin: 0;
        padding: 0;
    } */

    .nav__item--dropdown.active .dropdown-menu {
        max-height: 600px;
        padding: 15px 0;
        margin-top: 10px;
    }

    .nav__item--dropdown.active .dropdown-icon {
        transform: rotate(180deg);
        color: var(--primary-color);
    }



    .dropdown-link::before {
        content: '→';
        position: absolute;
        left: 20px;
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
        color: var(--primary-color);
        font-weight: bold;
    }

    .dropdown-link:hover {
        padding-left: 40px;
        background: rgba(255, 107, 74, 0.08);
        color: var(--primary-color);
    }

    .dropdown-link:hover::before {
        opacity: 1;
        transform: translateX(0);
    }

    /* View All Tours Link */
    .dropdown-link--all {
        margin-top: 10px;
        padding-top: 18px;
        border-top: 2px solid var(--border-color);
        font-weight: 700;
        color: var(--primary-color);
    }

    .dropdown-link--all:hover {
        background: var(--primary-color);
        color: var(--white);
        padding-left: 20px;
    }

    .dropdown-link--all::before {
        content: '';
    }

    /* Animation d'entrée des éléments */
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .header__nav.active .nav__list>li {
        animation: slideInRight 0.4s ease forwards;
        opacity: 0;
    }

    .header__nav.active .nav__list>li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .header__nav.active .nav__list>li:nth-child(2) {
        animation-delay: 0.15s;
    }

    .header__nav.active .nav__list>li:nth-child(3) {
        animation-delay: 0.2s;
    }

    .header__nav.active .nav__list>li:nth-child(4) {
        animation-delay: 0.25s;
    }

    .header__nav.active .nav__list>li:nth-child(5) {
        animation-delay: 0.3s;
    }

    /* Scrollbar personnalisée pour le menu */
    .header__nav::-webkit-scrollbar {
        width: 6px;
    }

    .header__nav::-webkit-scrollbar-track {
        background: var(--light-bg);
    }

    .header__nav::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 10px;
    }

    /* Bloquer le scroll du body quand le menu est ouvert */
    body.menu-open {
        overflow: hidden;
    }

    /* Supprimer les animations dropdown en mobile */
    .dropdown-menu li {
        animation: none !important;
        opacity: 1 !important;
    }
}

/* Très petits écrans */
@media (max-width: 480px) {

    .nav__list {
        padding: 0 20px;
    }

    .nav__link {
        font-size: 16px;
        padding: 16px 0;
    }
}


/* page sta */
/* ============================================
   PAGE DE CONTENU PERSONNALISÉE - STYLES CSS
   ============================================ */

/* Sections de Contenu */
.content-section {
    padding: 60px 20px;
}

.content-section:nth-child(even) {
    background: var(--light-bg);
}

/* ============================================
   STYLE 1: Image Gauche, Texte Droite
   ============================================ */
.content-layout-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.content-layout-1 .content-image {
    position: relative;
}

.content-layout-1 .content-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition);
}

.content-layout-1 .content-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.content-layout-1 .content-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.3;
}

.content-layout-1 .content-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
}

.content-layout-1 .content-text .btn {
    margin-top: 15px;
}

/* ============================================
   STYLE 2: Texte Gauche, Image Droite
   ============================================ */
.content-layout-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.content-layout-2 .content-text {
    order: 1;
}

.content-layout-2 .content-image {
    order: 2;
    position: relative;
}

.content-layout-2 .content-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: var(--transition);
}

.content-layout-2 .content-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.content-layout-2 .content-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.3;
}

.content-layout-2 .content-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
}

.content-layout-2 .content-text .btn {
    margin-top: 15px;
}

/* ============================================
   STYLE 3: Pleine Largeur avec Image Centrée
   ============================================ */
.content-layout-3 {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.content-layout-3 h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.3;
}

.content-layout-3 p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 17px;
}

.content-layout-3 .content-image {
    margin: 40px 0;
    position: relative;
}

.content-layout-3 .content-image img {
    border-radius: 20px;
    box-shadow: var(--shadow);
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.content-layout-3 .content-image img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.content-layout-3 .btn {
    margin-top: 15px;
}

/* ============================================
   STYLE 4: Image avec Overlay de Texte
   ============================================ */
.content-layout-overlay {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    height: 600px;
}

.content-layout-overlay .content-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.content-layout-overlay .content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-layout-overlay .content-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(255, 107, 74, 0.5));
}

.content-layout-overlay .content-text {
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 700px;
}

.content-layout-overlay .content-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
}

.content-layout-overlay .content-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 18px;
}

/* ============================================
   STYLE 5: Grille Multiple Images
   ============================================ */
.content-layout-grid {
    max-width: 1400px;
    margin: 0 auto;
}

.content-layout-grid .content-text {
    text-align: center;
    margin-bottom: 50px;
}

.content-layout-grid .content-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 700;
}

.content-layout-grid .content-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 17px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.content-images-grid img {
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.content-images-grid img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* ============================================
   Popup
   ============================================ */
.popup-overlay.custom-tour-popup {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    justify-content: center;
    align-items: flex-end;
    padding: 20px;
}

.popup-overlay.custom-tour-popup.active {
    display: flex;
}

.popup-overlay.custom-tour-popup .popup-content {
    background: #fff;
    width: min(700px, 100%);
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 16px 16px 0 0;
    padding: 24px 20px 20px;
    position: relative;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25);
}

.popup-overlay.custom-tour-popup .popup-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    line-height: 1;
}


.custom-tour-popup .form-group {
    margin-bottom: 20px;
}

.custom-tour-popup .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.custom-tour-popup .form-group input,
.custom-tour-popup .form-group select,
.custom-tour-popup .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.custom-tour-popup .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.custom-tour-popup .form-group input:focus,
.custom-tour-popup .form-group select:focus,
.custom-tour-popup .form-group textarea:focus {
    outline: none;
    border-color: #007BFF;
}

.custom-tour-popup .btn-submit {
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    margin-top: 10px;
}

.custom-tour-popup .btn-submit:hover {
    background: #218838;
}

.custom-tour-popup .wpcf7 form .wpcf7-response-output {
    margin-top: 0;
}

/* ============================================
   RESPONSIVE TABLETTE (992px et moins)
   ============================================ */
@media (max-width: 992px) {

    /* Style 1 et 2 */
    .content-layout-1,
    .content-layout-2 {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-layout-2 .content-text {
        order: 2;
    }

    .content-layout-2 .content-image {
        order: 1;
    }

    /* Titres */
    .content-layout-1 .content-text h2,
    .content-layout-2 .content-text h2,
    .content-layout-3 h2,
    .content-layout-overlay .content-text h2 {
        font-size: 32px;
    }

    /* Style 5: Grille */
    .content-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Style 4: Overlay */
    .content-layout-overlay {
        height: 500px;
    }

    .content-layout-overlay .content-text {
        padding: 40px;
    }
}

/* ============================================
   RESPONSIVE MOBILE (768px et moins)
   ============================================ */
@media (max-width: 768px) {

    /* Sections */
    .content-section {
        padding: 60px 20px;
    }

    /* Images */
    .content-layout-1 .content-image img,
    .content-layout-2 .content-image img {
        height: 300px;
    }

    .content-layout-3 .content-image img {
        height: 350px;
    }

    /* Titres */
    .content-layout-1 .content-text h2,
    .content-layout-2 .content-text h2,
    .content-layout-3 h2 {
        font-size: 28px;
    }

    /* Textes */
    .content-layout-1 .content-text p,
    .content-layout-2 .content-text p,
    .content-layout-3 p {
        font-size: 16px;
    }

    /* Style 5: Grille */
    .content-images-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .content-images-grid img {
        height: 250px;
    }

    /* Style 4: Overlay */
    .content-layout-overlay {
        height: 400px;
    }

    .content-layout-overlay .content-text {
        padding: 30px;
    }

    .content-layout-overlay .content-text h2 {
        font-size: 28px;
    }

    .content-layout-overlay .content-text p {
        font-size: 16px;
    }
}

/* ============================================
   RESPONSIVE PETIT MOBILE (480px et moins)
   ============================================ */
@media (max-width: 480px) {

    /* Sections */
    .content-section {
        padding: 50px 15px;
    }

    /* Titres */
    .content-layout-1 .content-text h2,
    .content-layout-2 .content-text h2,
    .content-layout-3 h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    /* Textes */
    .content-layout-1 .content-text p,
    .content-layout-2 .content-text p,
    .content-layout-3 p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    /* Images */
    .content-layout-1 .content-image img,
    .content-layout-2 .content-image img {
        height: 250px;
        border-radius: 15px;
    }

    .content-layout-3 .content-image img {
        height: 280px;
        border-radius: 15px;
    }

    .content-images-grid img {
        height: 220px;
        border-radius: 12px;
    }

    /* Style 4: Overlay */
    .content-layout-overlay {
        height: 350px;
        border-radius: 15px;
    }

    .content-layout-overlay .content-text {
        padding: 25px;
    }

    .content-layout-overlay .content-text h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .content-layout-overlay .content-text p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    /* Boutons */
    .content-layout-1 .content-text .btn,
    .content-layout-2 .content-text .btn,
    .content-layout-3 .btn,
    .content-layout-overlay .content-text .btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    /* Style 5: Grille */
    .content-layout-grid .content-text {
        margin-bottom: 30px;
    }

    .content-layout-grid .content-text h2 {
        font-size: 24px;
    }

    .content-layout-grid .content-text p {
        font-size: 15px;
    }
}

/* ===========================
   3rd level dropdown (submenu)
   =========================== */

.dropdown-menu .nav__item--dropdown {
    position: relative;
}

.dropdown-menu .nav__item--dropdown > .nav__link {
    width: 100%;
    justify-content: space-between;
}

.dropdown-menu .nav__item--dropdown > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: 12px;
    transform: translateX(-10px);
    max-height: none;
    overflow: visible;
}

.dropdown-menu .nav__item--dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* prevent submenu going behind */
.dropdown-menu {
    overflow: visible;
}
@media (max-width: 768px) {
    .explore-tours {
        padding: 20px !important;
    }
    .about {
    padding: 20px 20px;
}
.services {
    padding: 30px 20px;
}
    .testimonials {
    padding: 30px 20px;
}
.blog-preview {
    padding: 20px 20px;
}

.explore-swiper {
    padding-top: 20px !important;
}
}
/* mobile: 3rd level should be inline */
@media (max-width: 768px) {
    .dropdown-menu .nav__item--dropdown > .dropdown-menu {
        position: static;
        margin-left: 0;
        transform: none;
        max-height: 0;
        overflow: hidden;
        padding-left: 20px;
        opacity: 1;
        visibility: visible;
    }

    .dropdown-menu .nav__item--dropdown.active > .dropdown-menu {
        max-height: 1000px;
        padding-top: 8px;
        padding-bottom: 8px;
    }
}
.lang-switch {
  display: inline-block;
  width: 24px;
  height: 16px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.lang-switch img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hover – effet léger de zoom */
.lang-switch:hover img {
  transform: scale(1.2);
  opacity: 0.9;
}
.lang-switch:hover {
  cursor: pointer;
}

/* ============================================
   WhatsApp Sticky Button (Left Side)
   ============================================ */

.whatsapp-sticky {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;

    display: flex;
    align-items: center;
    gap: 10px;

    background-color: #25D366;
    color: #ffffff;

    padding: 20px 20px;
    border-radius: 50px;

    text-decoration: none;
    font-weight: 600;
    font-size: 16px;

    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);

    transition: all 0.3s ease;
}

.whatsapp-sticky:hover {
    background-color: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: #ffffff;
}

.whatsapp-sticky svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.whatsapp-sticky span {
    white-space: nowrap;
}

/* Responsive - Hide text on mobile, show icon only */
@media (max-width: 768px) {
    .whatsapp-sticky {
        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;

        left: 15px;
        bottom: 15px;
    }

    .whatsapp-sticky span {
        display: none;
    }

    .whatsapp-sticky svg {
        width: 28px;
        height: 28px;
    }
}

/* Animation on page load */
@keyframes whatsapp-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-sticky {
    animation: whatsapp-bounce 2s ease-in-out 1s 3;
}

/* Pulse effect */
.whatsapp-sticky::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background-color: #25D366;
    opacity: 0.3;
}

/* Ensure button is always visible above other elements */
.whatsapp-sticky {
    pointer-events: auto;
}

/* ============================================
   FAQ STYLES - AVEC GRID (SANS MAX-HEIGHT)
   ============================================ */

.faq-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #f26d52;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-icon svg {
    color: #f26d52;
}

/* MÉTHODE GRID - PAS DE MAX-HEIGHT */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-content {
    min-height: 0;
    padding: 0 30px;
    color: #666;
    line-height: 1.8;
}

.faq-item.active .faq-answer-content {
    padding: 0 30px 25px 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }

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

    .faq-item.active .faq-answer-content {
        padding: 0 20px 20px 20px;
    }
}