    :root {
        --lagoon-blue: #0a7d9c;
        --lagoon-turquoise: #2ac5e0;
        --lagoon-light: #8ae1f0;
        --coral: #f8b500;
        --white-sand: #f8f9fa;
        --deep-ocean: #2785e4;
        --navy-dark: #0a5c5c;
        
        --header-height: 90px;
        --header-height-scrolled: 80px;
        
        --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
        --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    /* ===== RÉINITIALISATION ===== */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: 'Poppins', sans-serif;
        line-height: 1.7;
        color: var(--deep-ocean);
        background: var(--white-sand);
        overflow-x: hidden;
        font-weight: 300;
        padding-top: 0;
    }

    /* ===== TYPOGRAPHIE ===== */
    h1, h2, h3, h4, 
    .section-title, .footer-section h3,
    .breadcrumb-text .page-title {
        font-family: 'Playfair Display', serif;
        font-weight: 600;
        letter-spacing: -0.5px;
    }

    /* ===== NAVBAR ===== */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: var(--header-height);
        padding: 1rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1001;
        transition: all 0.4s var(--transition-smooth);
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(20px) saturate(180%);
        -webkit-backdrop-filter: blur(20px) saturate(180%);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(15px) !important;
        -webkit-backdrop-filter: blur(15px) !important;
        box-shadow: 0 5px 30px rgba(10, 92, 92, 0.15);
        height: var(--header-height-scrolled);
        padding: 0.8rem 2rem;
    }

    .logo img {
        width: 160px;
        height: auto;
        transition: transform 0.3s var(--transition-smooth);
    }

    .navbar.scrolled .logo img {
        transform: scale(1.05);
    }

    /* ===== MENU NAV ===== */
    .nav-menu {
        display: flex;
        gap: 1.5rem;
        align-items: center;
        list-style: none;
    }

    .nav-menu a {
        text-decoration: none;
        color: white;
        font-weight: 600;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        transition: all 0.3s var(--transition-smooth);
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }

    .navbar.scrolled .nav-menu a {
        color: var(--deep-ocean) !important;
        text-shadow: none;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: var(--deep-ocean);
        color: white !important;
        transform: translateY(-2px);
    }

    .navbar.scrolled .nav-menu a:hover,
    .navbar.scrolled .nav-menu a.active {
        background: var(--deep-ocean);
        color: white !important;
    }

    /* ===== DROPDOWN CORRIGÉ ===== */
    .dropdown {
        position: relative;
    }

    .dropdown > a::after {
        content: '▼';
        font-size: 0.7rem;
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .dropdown:hover > a::after {
        transform: rotate(180deg);
    }

    .dropdown-content {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 280px;
        background: white;
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        border-radius: 15px;
        padding: 1rem 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s var(--transition-smooth);
        z-index: 1001;
        border: 1px solid rgba(10, 92, 92, 0.1);
    }

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

    .dropdown-content a {
        display: block;
        padding: 0.8rem 1.5rem;
        color: var(--deep-ocean) !important;
        transition: all 0.3s ease;
        border-radius: 0;
        font-weight: 500;
        text-shadow: none !important;
    }

    .dropdown-content a:hover {
        background: var(--lagoon-light);
        color: var(--deep-ocean) !important;
        padding-left: 2rem;
    }

    .navbar.scrolled .dropdown-content a {
        color: var(--deep-ocean) !important;
    }

    .navbar.scrolled .dropdown-content {
        background: white !important;
    }

    /* ===== HEADER CONTACT ===== */
    .header-contact {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }

    .whatsapp-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
        color: white;
        font-weight: 600;
        padding: 0.5rem 1rem;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.2);
        transition: all 0.3s var(--transition-smooth);
        white-space: nowrap;
        text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    }

    .navbar.scrolled .whatsapp-link {
        background: var(--lagoon-light);
        color: var(--deep-ocean) !important;
        text-shadow: none;
    }

    .whatsapp-link:hover {
        background: var(--lagoon-blue);
        color: white;
        transform: translateY(-2px);
    }

    .language-switcher {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .french-flag {
        width: 24px;
        height: 18px;
        background: linear-gradient(90deg, #002395 33%, white 33%, white 66%, #ED2939 66%);
        border-radius: 2px;
        border: 1px solid rgba(221, 221, 221, 0.3);
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .french-flag:hover {
        transform: scale(1.1);
    }

    /* ===== HAMBURGER ===== */
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
        padding: 0.5rem;
        z-index: 1002;
        background: none;
        border: none;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background: white;
        transition: 0.3s;
        transform-origin: center;
    }

    .navbar.scrolled .hamburger span {
        background: var(--deep-ocean);
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* ===== HEADER HERO - REMPLACÉ PAR LA RÉFÉRENCE ORIGINALE ===== */
    .breadcrumb-banner {
        position: relative;
        height: 30vh; /* Hauteur réduite */
        min-height: 280px;
        margin-top: 0;
        padding-top: var(--header-height);
        background-size: 100%; /* Image à 100% de largeur */
        background-position: center center; /* Centrée */
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    /* SUPPRIMÉ : l'ancien ::before avec le filtre bleu opaque */

    /* Effet de vague (atténué) */
    .breadcrumb-waves {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
        overflow: hidden;
    }

    .breadcrumb-wave {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 300%;
        height: 120px;
        background: linear-gradient(transparent, rgba(255, 255, 255, 0.05)); /* Très transparent */
        border-radius: 50% 50% 0 0;
        animation: breadcrumbWave 25s linear infinite;
        opacity: 0.6;
    }

    .breadcrumb-wave-1 {
        animation: breadcrumbWave 20s linear infinite;
        height: 140px;
        background: linear-gradient(transparent, rgba(255, 255, 255, 0.07));
        opacity: 0.4;
    }

    .breadcrumb-wave-2 {
        animation: breadcrumbWave 15s linear infinite -5s;
        height: 100px;
        background: linear-gradient(transparent, rgba(255, 255, 255, 0.05));
        opacity: 0.3;
    }

    .breadcrumb-wave-3 {
        animation: breadcrumbWave 30s linear infinite -10s;
        height: 80px;
        background: linear-gradient(transparent, rgba(255, 255, 255, 0.03));
        opacity: 0.2;
    }

    @keyframes breadcrumbWave {
        0% {
            transform: translateX(0) scaleY(1);
        }
        50% {
            transform: translateX(-50%) scaleY(1.3);
        }
        100% {
            transform: translateX(-100%) scaleY(1);
        }
    }

    .breadcrumb-text {
        position: relative;
        z-index: 2;
        text-align: center;
        width: 100%;
        padding: 0 2rem;
    }

    .breadcrumb-text .page-title {
        font-size: 3rem; /* Taille de la référence */
        color: white;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 12px rgba(0,0,0,0.8); /* Ombre renforcée pour lisibilité */
        position: relative;
        z-index: 10;
    }

    .breadcrumb-nav {
        display: flex;
        justify-content: center;
        gap: 1rem;
        list-style: none;
        flex-wrap: wrap;
    }

    .breadcrumb-nav li {
        color: white;
        font-weight: 500;
    }

    .breadcrumb-nav a {
        color: var(--lagoon-light);
        text-decoration: none;
        transition: color 0.3s ease;
        font-weight: 500;
    }

    .breadcrumb-nav a:hover {
        color: white;
    }

    .breadcrumb-nav .active {
        color: var(--coral);
    }

    /* ===== TOURS DÉTAILLÉS ===== */
    .all-tours-section {
        padding: 6rem 2rem;
        background: white;
    }

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

    .section-header-tours {
        text-align: center;
        margin-bottom: 4rem;
    }

    .section-header-tours .promo-tag {
        background: var(--lagoon-blue);
        color: white;
        padding: 0.8rem 2rem;
        border-radius: 25px;
        font-weight: 700;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        display: inline-block;
        margin-bottom: 1rem;
        animation: coralBloom 1.5s var(--transition-bounce) forwards;
    }

    .section-header-tours h2 {
        font-size: 2.5rem;
        color: var(--deep-ocean);
        margin-bottom: 1rem;
    }

    .section-header-tours p {
        font-size: 1.1rem;
        color: var(--lagoon-blue);
        max-width: 600px;
        margin: 0 auto;
    }

    /* Cartes de tour */
    .tour-card-detailed {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0,0,0,0.08);
        margin-bottom: 3rem;
        transition: all 0.4s var(--transition-smooth);
        border: 1px solid rgba(10, 92, 92, 0.08);
    }

    .tour-card-detailed:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    }

    .tour-card-content {
        display: flex;
        min-height: 300px;
    }

    .tour-image-side {
        flex: 0 0 40%;
        position: relative;
        overflow: hidden;
    }

    .tour-image-side img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s var(--transition-smooth);
    }

    .tour-card-detailed:hover .tour-image-side img {
        transform: scale(1.05);
    }

    .tour-info-side {
        flex: 0 0 60%;
        padding: 2.5rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .tour-icons {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
    }

    .tour-icons i {
        width: 40px;
        height: 40px;
        background: var(--lagoon-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--lagoon-blue);
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .tour-icons i:hover {
        background: var(--coral);
        color: white;
        transform: translateY(-3px);
    }

    .tour-title {
        font-size: 1.8rem;
        color: var(--lagoon-blue);
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .tour-title a {
        text-decoration: none;
        color: inherit;
        transition: color 0.3s ease;
    }

    .tour-title a:hover {
        color: var(--coral);
    }

    .tour-details {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2rem;
        color: var(--deep-ocean);
    }

    .tour-details i {
        color: var(--coral);
        margin-right: 0.5rem;
    }

    .tour-price-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: auto;
    }

    .tour-price {
        font-size: 1.8rem;
        color: var(--coral);
        font-weight: 700;
    }

    .tour-price span {
        font-size: 1rem;
        color: var(--deep-ocean);
        font-weight: 500;
    }

    .see-more-btn {
        background: linear-gradient(135deg, var(--lagoon-blue), var(--lagoon-turquoise));
        color: white;
        padding: 0.8rem 2rem;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s var(--transition-smooth);
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

    .see-more-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(10, 125, 156, 0.3);
        color: white;
    }

    /* ===== PARTENAIRES ===== */
    .partners-section {
        padding: 4rem 2rem;
        background: var(--white-sand);
        text-align: center;
    }

    .partners-section h2 {
        font-size: 2.5rem;
        color: var(--lagoon-blue);
        margin-bottom: 3rem;
    }

    .partners-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 2rem auto 0;
    }

    .partner-card {
        background: white;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.3s var(--transition-smooth);
        text-align: left;
    }

    .partner-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .partner-card img {
        max-width: 120px;
        height: auto;
        margin-bottom: 1rem;
    }

    .partner-card h3 {
        font-size: 1.5rem;
        color: var(--lagoon-blue);
        margin-bottom: 1rem;
    }

    .partner-card p {
        color: var(--deep-ocean);
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    /* ===== FOOTER ===== */
    .footer {
        background: linear-gradient(135deg, var(--lagoon-blue), var(--deep-ocean));
        color: white;
        padding: 4rem 2rem 2rem;
        margin-top: 4rem;
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
    }

    .footer-section h3 {
        margin-bottom: 1.5rem;
        color: var(--lagoon-light);
        font-size: 1.3rem;
    }

    .footer-section p {
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1rem;
    }

    .footer-section i {
        width: 20px;
        text-align: center;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        color: white;
        text-decoration: none;
        transition: all 0.3s var(--transition-smooth);
    }

    .social-links a:hover {
        background: var(--coral);
        transform: scale(1.1);
    }

    .copyright {
        text-align: center;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid rgba(255,255,255,0.2);
        color: var(--lagoon-light);
        font-size: 0.9rem;
    }

    /* ===== BOUTONS ===== */
    .book-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        background: linear-gradient(135deg, var(--lagoon-blue), var(--lagoon-turquoise));
        color: white;
        padding: 1rem 2rem;
        border-radius: 35px;
        text-decoration: none;
        font-weight: 700;
        font-size: 1rem;
        border: none;
        cursor: pointer;
        transition: all 0.3s var(--transition-smooth);
        position: relative;
        overflow: hidden;
    }

    .book-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.7s ease;
    }

    .book-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(10, 125, 156, 0.3);
        color: white !important;
    }

    .book-btn:hover::before {
        left: 100%;
    }

    .partner-card .book-btn {
        background: var(--coral);
        color: var(--deep-ocean);
    }

    .partner-card .book-btn:hover {
        background: var(--lagoon-blue);
        color: white;
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes coralBloom {
        0% {
            opacity: 0;
            transform: scale(0) rotate(-180deg);
            filter: blur(20px) hue-rotate(180deg);
            letter-spacing: 30px;
        }
        60% {
            transform: scale(1.15) rotate(12deg);
            filter: blur(0) hue-rotate(90deg);
            background: linear-gradient(45deg, var(--coral), #ffcc00);
        }
        80% {
            transform: scale(0.95) rotate(-3deg);
        }
        100% {
            opacity: 1;
            transform: scale(1) rotate(0);
            letter-spacing: 1.5px;
            background: var(--lagoon-blue);
            box-shadow: 0 10px 30px rgba(10, 125, 156, 0.4);
        }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
        .hamburger {
            display: flex;
        }

        .nav-menu {
            position: fixed;
            top: var(--header-height);
            left: -100%;
            width: 100%;
            height: calc(100vh - var(--header-height));
            background: white;
            flex-direction: column;
            justify-content: flex-start;
            padding: 2rem;
            transition: left 0.3s var(--transition-smooth);
            box-shadow: 0 10px 27px rgba(0,0,0,0.05);
            gap: 1rem;
            z-index: 999;
            overflow-y: auto;
        }

        .nav-menu.active {
            left: 0;
        }

        .nav-menu a {
            width: 100%;
            text-align: center;
            padding: 1rem;
            font-size: 1.2rem;
            color: var(--deep-ocean) !important;
            text-shadow: none !important;
        }

        .dropdown-content {
            position: static;
            box-shadow: none;
            border: none;
            display: none;
            width: 100%;
            opacity: 1;
            visibility: visible;
            transform: none;
            background: var(--white-sand) !important;
            margin-top: 0.5rem;
            border-radius: 15px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .dropdown.active .dropdown-content {
            display: block;
            max-height: 500px;
        }

        .dropdown > a::after {
            content: '▼';
            float: right;
            transition: transform 0.3s ease;
        }

        .dropdown.active > a::after {
            transform: rotate(180deg);
        }

        .header-contact {
            display: flex !important;
            flex-direction: row !important;
            align-items: center !important;
            justify-content: flex-end !important;
            gap: 10px !important;
            flex-wrap: nowrap !important;
            width: auto !important;
            margin-left: auto !important;
        }
        
        .whatsapp-link {
            display: inline-flex !important;
            align-items: center !important;
            padding: 6px 12px !important;
            font-size: 13px !important;
            font-weight: 600 !important;
            white-space: nowrap !important;
            max-width: 160px !important;
            overflow: hidden !important;
            text-overflow: ellipsis !important;
            flex-shrink: 1 !important;
            min-width: 0 !important;
            box-sizing: border-box !important;
        }
        
        .whatsapp-link > span,
        .whatsapp-link i + * {
            display: none !important;
        }
        
        .whatsapp-link::after {
            content: "87 79 11 62" !important;
            font-weight: 600 !important;
        }
        
        .language-switcher {
            flex-shrink: 0 !important;
            display: flex !important;
            align-items: center !important;
        }

        /* Header image mobile - AJUSTÉ POUR LA RÉFÉRENCE */
        .breadcrumb-banner {
            height: 25vh; /* Ajusté pour tablette */
            min-height: 200px;
            background-size: auto 100%;
            background-position: center center;
        }

        .tour-card-content {
            flex-direction: column;
        }

        .tour-image-side {
            flex: 0 0 100%;
            height: 250px;
        }

        .tour-info-side {
            flex: 0 0 100%;
            padding: 2rem;
        }

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

    @media (max-width: 768px) {
        .navbar {
            padding: 1rem;
        }

        .logo img {
            width: 140px;
        }

        .breadcrumb-banner {
            height: 22vh; /* Ajusté pour mobile */
            min-height: 180px;
            padding-top: var(--header-height-scrolled);
        }

        .breadcrumb-text .page-title {
            font-size: 2.2rem; /* Taille mobile de la référence */
        }

        .breadcrumb-text {
            padding: 0 1rem; /* Ajusté */
        }

        .section-header-tours h2 {
            font-size: 2rem;
        }

        .tour-title {
            font-size: 1.5rem;
        }

        .tour-price-section {
            flex-direction: column;
            gap: 1.5rem;
            align-items: flex-start;
        }

        .partners-section h2 {
            font-size: 2rem;
        }

        .footer-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .whatsapp-link {
            max-width: 140px !important;
            padding: 5px 10px !important;
            font-size: 12px !important;
        }
        
        .whatsapp-link::after {
            content: "87 79..." !important;
        }
    }

    @media (max-width: 480px) {
        .breadcrumb-banner {
            height: 20vh; /* Ajusté pour très petit mobile */
            min-height: 150px;
        }

        .breadcrumb-text .page-title {
            font-size: 1.8rem; /* Taille très mobile de la référence */
        }

        .tour-icons {
            gap: 0.5rem;
        }

        .tour-icons i {
            width: 35px;
            height: 35px;
            font-size: 0.9rem;
        }

        .tour-details {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }

        .book-btn, .see-more-btn {
            padding: 0.8rem 1.5rem;
            font-size: 0.9rem;
        }

        .section-header-tours h2,
        .partners-section h2 {
            font-size: 1.8rem;
        }

        .partner-card {
            padding: 1.5rem;
        }

        .whatsapp-link {
            max-width: 120px !important;
            padding: 4px 8px !important;
        }
        
        .whatsapp-link::after {
            content: "WhatsApp" !important;
        }
    }:root {
    --lagoon-blue: #0a7d9c;
    --lagoon-turquoise: #2ac5e0;
    --lagoon-light: #8ae1f0;
    --coral: #f8b500;
    --white-sand: #f8f9fa;
    --deep-ocean: #2785e4;
    --navy-dark: #0a5c5c;
    
    --header-height: 90px;
    --header-height-scrolled: 80px;
    
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--deep-ocean);
    background: var(--white-sand);
    overflow-x: hidden;
    font-weight: 300;
    padding-top: 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, 
.section-title, .footer-section h3,
.breadcrumb-text .page-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.5px;
}

/* ===== NAVBAR FIXE ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    transition: all 0.4s var(--transition-smooth);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    box-shadow: 0 5px 30px rgba(10, 92, 92, 0.15);
    height: var(--header-height-scrolled);
    padding: 0.8rem 2rem;
}

/* Logo */
.logo img {
    width: 160px;
    height: auto;
    transition: transform 0.3s var(--transition-smooth);
}

.navbar.scrolled .logo img {
    transform: scale(1.05);
}

/* ===== MENU NAV ===== */
.nav-menu {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s var(--transition-smooth);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .nav-menu a {
    color: var(--deep-ocean) !important;
    text-shadow: none;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: var(--deep-ocean);
    color: white !important;
    transform: translateY(-2px);
}

.navbar.scrolled .nav-menu a:hover,
.navbar.scrolled .nav-menu a.active {
    background: var(--deep-ocean);
    color: white !important;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown > a::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-radius: 15px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s var(--transition-smooth);
    z-index: 1001;
    border: 1px solid rgba(10, 92, 92, 0.1);
}

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

.dropdown-content a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--deep-ocean);
    transition: all 0.3s ease;
    border-radius: 0;
    font-weight: 500;
    text-shadow: none;
}

.dropdown-content a:hover {
    background: var(--lagoon-light);
    color: var(--deep-ocean);
    padding-left: 2rem;
}

/* ===== HEADER CONTACT ===== */
.header-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: white;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s var(--transition-smooth);
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .whatsapp-link {
    background: var(--lagoon-light);
    color: var(--deep-ocean) !important;
    text-shadow: none;
}

.whatsapp-link:hover {
    background: var(--lagoon-blue);
    color: white;
    transform: translateY(-2px);
}

/* Language */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.english-flag {
    width: 30px;
    height: 26px;
    background: url('https://upload.wikimedia.org/wikipedia/en/thumb/a/ae/Flag_of_the_United_Kingdom.svg/320px-Flag_of_the_United_Kingdom.svg.png') center/contain no-repeat;
    cursor: pointer;
    border-radius: 2px;
    border: 1px solid rgba(221, 221, 221, 0.3);
    transition: transform 0.3s ease;
}

.english-flag:hover {
    transform: scale(1.1);
}}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
    z-index: 1002;
    background: none;
    border: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
    transform-origin: center;
}

.navbar.scrolled .hamburger span {
    background: var(--deep-ocean);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== BREADCRUMB BANNER (IMAGE PURE - SANS FILTRE BLEU) ===== */
.breadcrumb-banner {
    position: relative;
    height: 30vh; /* Hauteur réduite comme ta solution */
    min-height: 280px;
    margin-top: 0;
    padding-top: var(--header-height);
    background-size: 100%; /* Image à 100% de largeur */
    background-position: center center; /* Centrée */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* SUPPRIMÉ : l'ancien ::before avec le filtre bleu opaque */

/* Effet de vague (atténué) */
.breadcrumb-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.breadcrumb-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300%;
    height: 120px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.05)); /* Très transparent */
    border-radius: 50% 50% 0 0;
    animation: breadcrumbWave 25s linear infinite;
    opacity: 0.6;
}

.breadcrumb-wave-1 {
    animation: breadcrumbWave 20s linear infinite;
    height: 140px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.07));
    opacity: 0.4;
}

.breadcrumb-wave-2 {
    animation: breadcrumbWave 15s linear infinite -5s;
    height: 100px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.05));
    opacity: 0.3;
}

.breadcrumb-wave-3 {
    animation: breadcrumbWave 30s linear infinite -10s;
    height: 80px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.03));
    opacity: 0.2;
}

@keyframes breadcrumbWave {
    0% {
        transform: translateX(0) scaleY(1);
    }
    50% {
        transform: translateX(-50%) scaleY(1.3);
    }
    100% {
        transform: translateX(-100%) scaleY(1);
    }
}

.breadcrumb-text {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 2rem;
}

.breadcrumb-text .page-title {
    font-size: 3rem; /* Légèrement réduit pour la nouvelle hauteur */
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.8); /* Ombre renforcée pour lisibilité */
    position: relative;
    z-index: 10;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb-nav li {
    color: white;
    font-weight: 500;
}

.breadcrumb-nav a {
    color: var(--lagoon-light);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    color: white;
}

.breadcrumb-nav .active {
    color: var(--coral);
}

/* ===== TOUR DETAILS SECTION ===== */
.tour-details-section {
    padding: 6rem 2rem;
    background: white;
    position: relative;
}

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

.tour-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 6rem;
}

.tour-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    aspect-ratio: 4/3;
    transition: transform 0.5s var(--transition-smooth);
}

.tour-image-container:hover {
    transform: translateY(-5px);
}

.tour-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s var(--transition-smooth);
}

.tour-image-container:hover .tour-image {
    transform: scale(1.05);
}

.tour-text-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s var(--transition-smooth) 0.3s forwards;
}

.tour-text-content h2 {
    font-size: 2.8rem;
    color: var(--lagoon-blue);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.tour-text-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--deep-ocean);
}

.tour-highlights {
    background: var(--white-sand);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    border-left: 4px solid var(--coral);
}

.tour-highlights h3 {
    color: var(--lagoon-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-highlights ul {
    list-style: none;
    padding-left: 0;
}

.tour-highlights li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.tour-highlights i {
    color: var(--coral);
}

/* ===== FEATURES GRID ===== */
.features-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--white-sand) 0%, var(--lagoon-light) 100%);
    position: relative;
    overflow: hidden;
}

.features-title {
    text-align: center;
    margin-bottom: 3rem;
}

.features-title .promo-tag {
    background: var(--lagoon-blue);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 1rem;
    animation: coralBloom 1.5s var(--transition-bounce) forwards;
}

.features-title h2 {
    font-size: 2.5rem;
    color: var(--deep-ocean);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
    border: 1px solid rgba(10, 92, 92, 0.08);
}

.feature-box.visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--box-index, 0) * 0.2s);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.feature-box h4 {
    font-size: 1.3rem;
    color: var(--lagoon-blue);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.feature-box a {
    text-decoration: none;
    color: inherit;
}

.feature-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth);
}

.feature-box:hover .feature-image img {
    transform: scale(1.05);
}

/* ===== EXPERIENCE SECTION (FILTRE BLEU ATTÉNUÉ) ===== */
.experience-section {
    position: relative;
    padding: 8rem 2rem;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: white;
    overflow: hidden;
}

.experience-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
    rgba(10, 92, 92, 0.15),   
    rgba(42, 197, 224, 0.08)); /* À peine perceptible */
    z-index: 1;
}

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

.experience-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.experience-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== OTHER TOURS SLIDER INFINI ===== */
.other-tours-section {
    padding: 5rem 2rem;
    background: var(--white-sand);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .promo-tag {
    background: var(--lagoon-blue);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--lagoon-blue);
    margin-bottom: 2rem;
}

.tours-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 0 1rem;
}

.tours-slider {
    display: flex;
    transition: transform 0.5s var(--transition-smooth);
    gap: 1.5rem;
    padding: 1rem 0.5rem;
    will-change: transform;
}

.tours-slider.no-transition {
    transition: none !important;
}

.tour-card {
    min-width: 300px;
    max-width: 320px;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s var(--transition-smooth);
    border: 1px solid rgba(10, 92, 92, 0.08);
    flex-shrink: 0;
    margin: 0 auto;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.tour-image-slide {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.5s var(--transition-smooth);
}

.tour-card:hover .tour-image-slide {
    transform: scale(1.03);
}

.tour-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--coral);
    color: var(--deep-ocean);
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(248, 181, 0, 0.25);
    z-index: 2;
}

.tour-content-slide {
    padding: 1.5rem;
}

.tour-content-slide h3 {
    font-size: 1.3rem;
    color: white !important;
    margin-bottom: 0.8rem;
    line-height: 1.3;
    min-height: 3.2em;
}

.tour-content-slide a {
    text-decoration: none;
    color: inherit;
}

/* Contrôles slider */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0 1rem;
}

.slider-arrow {
    width: 45px;
    height: 45px;
    background: var(--lagoon-blue);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slider-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s ease;
}

.slider-arrow:hover {
    background: var(--coral);
    transform: scale(1.05);
}

.slider-arrow:hover::before {
    left: 100%;
}

/* ===== PARTNERS SECTION (3 BLOCS) ===== */
.partners-section {
    padding: 4rem 2rem;
    background: var(--white-sand);
    text-align: center;
}

.partners-section h2 {
    font-size: 2.5rem;
    color: var(--lagoon-blue);
    margin-bottom: 3rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.partner-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s var(--transition-smooth);
    text-align: left;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.partner-card img {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.partner-card h3 {
    font-size: 1.5rem;
    color: var(--lagoon-blue);
    margin-bottom: 1rem;
}

.partner-card p {
    color: var(--deep-ocean);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, var(--lagoon-blue), var(--deep-ocean));
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    color: var(--lagoon-light);
    font-size: 1.3rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.footer-section i {
    width: 20px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
}

.social-links a:hover {
    background: var(--coral);
    transform: scale(1.1);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: var(--lagoon-light);
    font-size: 0.9rem;
}

/* ===== BOUTONS ===== */
.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--lagoon-blue), var(--lagoon-turquoise));
    color: white;
    padding: 1rem 2rem;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.book-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s ease;
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(10, 125, 156, 0.3);
    color: white !important;
}

.book-btn:hover::before {
    left: 100%;
}

/* ===== BOUTONS SPÉCIFIQUES POUR LES CARTES ===== */
.tour-content-slide .book-btn {
    color: white !important;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.5px;
    font-size: 1.1rem;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
}

/* Force le blanc au hover aussi */
.tour-content-slide .book-btn:hover {
    color: white !important;
}
/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes coralBloom {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
        filter: blur(20px) hue-rotate(180deg);
        letter-spacing: 30px;
    }
    60% {
        transform: scale(1.15) rotate(12deg);
        filter: blur(0) hue-rotate(90deg);
        background: linear-gradient(45deg, var(--coral), #ffcc00);
    }
    80% {
        transform: scale(0.95) rotate(-3deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
        letter-spacing: 1.5px;
        background: var(--lagoon-blue);
        box-shadow: 0 10px 30px rgba(10, 125, 156, 0.4);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 2rem;
        transition: left 0.3s var(--transition-smooth);
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        gap: 1rem;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1.2rem;
        color: var(--deep-ocean) !important;
        text-shadow: none !important;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        display: none;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--white-sand);
        margin-top: 0.5rem;
        border-radius: 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown.active .dropdown-content {
        display: block;
        max-height: 500px;
    }

    .dropdown > a::after {
        content: '▼';
        float: right;
        transition: transform 0.3s ease;
    }

    .dropdown.active > a::after {
        transform: rotate(180deg);
    }

    .header-contact {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 10px !important;
        flex-wrap: nowrap !important;
        width: auto !important;
        margin-left: auto !important;
    }
    
    .whatsapp-link {
        display: inline-flex !important;
        align-items: center !important;
        padding: 6px 12px !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        max-width: 160px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        flex-shrink: 1 !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
    
    .whatsapp-link > span,
    .whatsapp-link i + * {
        display: none !important;
    }
    
    .whatsapp-link::after {
        content: "87 79 11 62" !important;
        font-weight: 600 !important;
    }
    
    .language-switcher {
        flex-shrink: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    .tour-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .tours-slider-container {
        max-width: 800px;
        padding: 0 0.5rem;
    }
    
    .tours-slider {
        gap: 1rem;
    }
    
    .tour-card {
        min-width: 280px;
        max-width: 300px;
    }
    
    .tour-image-slide {
        height: 180px;
    }
    
    .tour-content-slide {
        padding: 1.2rem;
    }
    
    .tour-content-slide h3 {
        font-size: 1.2rem;
        min-height: 3em;
    }

    /* Ajustement header pour mobile */
    .breadcrumb-banner {
        height: 25vh;
        min-height: 200px;
        background-size: auto 100%;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .logo img {
        width: 140px;
    }

    .breadcrumb-banner {
        height: 22vh;
        min-height: 180px;
        padding-top: var(--header-height-scrolled);
    }

    .breadcrumb-text .page-title {
        font-size: 2.2rem;
    }

    .tour-text-content h2 {
        font-size: 2.2rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .partners-section h2 {
        font-size: 2rem;
    }

    .experience-content h2 {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .whatsapp-link {
        max-width: 140px !important;
        padding: 5px 10px !important;
        font-size: 12px !important;
    }
    
    .whatsapp-link::after {
        content: "87 79..." !important;
    }
}

@media (max-width: 480px) {
    .breadcrumb-banner {
        height: 20vh;
        min-height: 150px;
    }

    .breadcrumb-text .page-title {
        font-size: 1.8rem;
    }

    .tour-text-content h2 {
        font-size: 1.8rem;
    }

    .book-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .feature-box, .tour-card, .partner-card {
        padding: 1.5rem;
    }

    .features-title h2,
    .section-header h2,
    .partners-section h2 {
        font-size: 1.8rem;
    }

    .whatsapp-link {
        max-width: 120px !important;
        padding: 4px 8px !important;
    }
    
    .whatsapp-link::after {
        content: "WhatsApp" !important;
    }
}