/* === STYLES DE LA BIBLE - INTÉGRÉS (VERSION HEADER CORRIGÉE) === */
: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 TRANSFORMÉE === */
.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-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);
    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-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 - CORRIGÉ === */
.breadcrumb-banner {
    position: relative;
    height: 30vh; /* Hauteur réduite comme demandé */
    min-height: 280px;
    margin-top: 0;
    padding-top: var(--header-height);
    background-size: 100%; /* L'image couvre la zone sans déformation */
    background-position: center center; /* Centrée parfaitement */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* SUPPRIMÉ : l'ancien ::before avec le filtre bleu opaque */
/* .breadcrumb-banner::before { ... } */

.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; /* Légèrement réduit pour la nouvelle hauteur */
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.05)); /* Vague très subtile */
    border-radius: 50% 50% 0 0;
    animation: breadcrumbWave 25s linear infinite;
    opacity: 0.6; /* Transparence augmentée pour laisser voir l'image */
}

.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: 3.5rem;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.5); /* 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);
    font-weight: 600;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.contact-btn:hover {
    background: var(--lagoon-blue);
    color: white !important;
}

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

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

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

    .private-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: 45vh; /* Ajusté pour mobile */
        min-height: 350px;
        padding-top: var(--header-height-scrolled);
    }

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

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

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

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

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

    .luxury-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: 40vh; /* Encore plus réduit sur très petit écran */
        min-height: 300px;
        padding-top: var(--header-height-scrolled);
    }

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

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

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

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

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