/* CSS COMPLET avec header image pure */
: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);
}

* {
    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;
}

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 identique */
.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);
}

.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 {
    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 {
    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 {
    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 - IMAGE PURE ===== */
.breadcrumb-banner {
    position: relative;
    width: 100%;
    height: 40vh;
    min-height: 300px;
    margin-top: 0;
    padding-top: var(--header-height);
    
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: scroll;
    
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    
    background-color: transparent !important;
}

.breadcrumb-text {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 2rem;
    
    background: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border: none !important;
}

.breadcrumb-text .page-title {
    font-size: 3rem;
    color: white;
    margin-bottom: 0.8rem;
    text-shadow: 
        4px 4px 20px rgba(0, 0, 0, 0.95),
        0 0 60px rgba(0, 0, 0, 0.85),
        0 0 100px rgba(0, 0, 0, 0.7);
    font-weight: 700;
    line-height: 1.1;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    flex-wrap: wrap;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.breadcrumb-nav li {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 
        2px 2px 12px rgba(0, 0, 0, 0.95),
        0 0 40px rgba(0, 0, 0, 0.7);
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
    font-weight: 500;
    text-shadow: 
        1px 1px 10px rgba(0, 0, 0, 0.95),
        0 0 30px rgba(0, 0, 0, 0.6);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.breadcrumb-nav a:hover {
    color: white;
    text-shadow: 
        2px 2px 15px rgba(0, 0, 0, 1),
        0 0 50px rgba(248, 181, 0, 0.6);
    background: rgba(248, 181, 0, 0.2);
    transform: translateY(-2px);
}

.breadcrumb-nav .active {
    color: var(--coral);
    font-weight: 600;
    text-shadow: 
        2px 2px 15px rgba(0, 0, 0, 1),
        0 0 60px rgba(248, 181, 0, 0.8);
    background: rgba(248, 181, 0, 0.15);
}

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

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

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

.motu-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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.relaxation-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;
}

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

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

.relaxation-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);
}

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

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

.relaxation-feature-box h4 {
    font-size: 1.3rem;
    color: var(--lagoon-blue);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    min-height: 3.2em;
    display: flex;
        align-items: center;
        justify-content: center;
    }

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

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

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

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

    /* ===== PARADISE EXPERIENCE SECTION ===== */
    .paradise-experience-section {
        position: relative;
        padding: 8rem 2rem;
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
        text-align: center;
        color: white;
        overflow: hidden;
        min-height: 60vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .paradise-experience-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(45deg, 
        rgba(10, 92, 92, 0.2),
        rgba(42, 197, 224, 0.1));
        z-index: 1;
    }

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

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

    .paradise-experience-content p {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 600px;
        margin: 0 auto;
    }

    /* ===== OTHER TOURS SLIDER ===== */
    .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: var(--deep-ocean) !important;
        margin-bottom: 0.8rem;
        line-height: 1.3;
        min-height: 3.2em;
    }

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

    .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;
    }

    .tour-content-slide .book-btn:hover {
        color: white !important;
    }

    .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 ===== */
    .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%;
    }

    .motu-btn {
        background: var(--coral);
        color: var(--deep-ocean);
        font-weight: 700;
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
        margin-top: 2rem;
    }

    .motu-btn:hover {
        background: var(--lagoon-blue);
        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) !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;
        }

        .breadcrumb-banner {
            height: 35vh;
            min-height: 250px;
            background-size: auto 100%;
            background-position: center center;
        }

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

        .relaxation-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;
        }
    }

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

        .logo img {
            width: 140px;
        }

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

        .breadcrumb-text {
            padding: 1rem;
        }

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

        .breadcrumb-nav {
            font-size: 0.8rem;
            gap: 0.5rem;
        }
        
        .breadcrumb-nav a {
            padding: 0.15rem 0.5rem;
            backdrop-filter: blur(3px);
        }

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

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

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

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

        .paradise-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: 25vh;
            min-height: 150px;
        }

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

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

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

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

        .relaxation-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;
        }
    }