﻿/* DESIGN SYSTEM - LIQUID GLASS (UI/UX PRO MAX) */
        :root {
    --green: #2bb522;
            /* Couleurs de marque strictes */
            --primary: #58aafe;
            --teal-light: #009999;
            --teal-dark: #004d4d;
            --orange: #fea831;
            --orange-hover: #f0893b;

            /* Palette neutre & contrastes Accessibilité */
            --bg-body: #F4F7F6;
            --bg-surface: #FFFFFF;
            --text-main: #0F172A;
            /* Slate 900 - Très lisible */
            --text-muted: #475569;
            /* Slate 600 - Lisible en clair */

            /* Typographie */
            --font-display: 'Cormorant', serif;
            --font-body: 'Montserrat', sans-serif;

            /* Glassmorphism Variables */
            --glass-bg: rgba(255, 255, 255, 0.7);
            --glass-border: rgba(255, 255, 255, 0.5);
            --glass-blur: blur(16px);
            --glass-shadow: 0 8px 32px 0 rgba(0, 107, 107, 0.08);

            /* Géométrie & Interactions */
            --radius-pill: 9999px;
            --radius-card: 24px;
            --radius-sm: 12px;
            --transition-smooth: all 400ms cubic-bezier(0.16, 1, 0.3, 1);
            --transition-hover: all 250ms ease-out;
        }

        /* RESET ET BASE */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-main);
            background-color: var(--bg-body);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: var(--font-display);
            font-weight: 600;
            line-height: 1.1;
            color: var(--teal-dark);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-hover);
        }

        /* CONTAINERS & UTILS */
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-padding {
            padding: 120px 0;
        }

        .text-center {
            text-align: center;
        }

        /* TYPOGRAPHIE RESPONSIVE */
        .title-xl {
            font-size: clamp(3.5rem, 8vw, 6rem);
            letter-spacing: -0.02em;
        }

        .title-lg {
            font-size: clamp(2.5rem, 5vw, 4rem);
            letter-spacing: -0.01em;
        }

        .title-md {
            font-size: 1.75rem;
        }

        .subtitle {
            font-size: 1.125rem;
            color: var(--text-muted);
            max-width: 650px;
            margin: 1.5rem auto 4rem;
            font-weight: 400;
            line-height: 1.8;
        }

        /* BOUTONS (UI/UX Pro Max : Interaction visible) */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 16px 36px;
            border-radius: var(--radius-pill);
            font-family: var(--font-body);
            font-size: 0.95rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            /* Mandatory */
            border: none;
            transition: var(--transition-hover);
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background-color: var(--orange);
            color: white;
            box-shadow: 0 10px 25px -5px rgba(232, 119, 34, 0.4);
        }

        .btn-primary:hover {
            background-color: var(--orange-hover);
            transform: translateY(-4px);
            box-shadow: 0 15px 35px -5px rgba(232, 119, 34, 0.5);
        }

        .btn-glass {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .btn-glass:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-4px);
        }

        /* NAVBAR FLOTTANTE (LIQUID GLASS) */
        .nav-wrapper {
            position: fixed;
            top: 24px;
            left: 0;
            width: 100%;
            z-index: 100;
            padding: 0 24px;
            pointer-events: none;
            /* Allows clicking through the wrapper */
        }

        .navbar {
            max-width: 1232px;
            /* 1280 - 48 */
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.85);
            /* Assez opaque pour le texte sombre */
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-pill);
            padding: 16px 32px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: var(--glass-shadow);
            pointer-events: auto;
            /* Re-enable clicking on navbar */
            transition: var(--transition-smooth);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            padding: 12px 32px;
        }

        .logo {
            font-family: var(--font-display);
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--teal-dark);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo i {
            color: var(--orange);
            font-size: 2rem;
        }

        /* HERO SECTION (IMMERSION COMPLÈTE) */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 100px;
            /* Account for navbar */
            overflow: hidden;
            background-color: var(--teal-dark);
        }

        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            animation: kenBurnsFade 24s infinite;
        }

        /* Images de haute qualité Unsplash */
        .hero-img:nth-child(1) {
            background-image: url('../images/hero1.webp');
            animation-delay: 0s;
        }

        .hero-img:nth-child(2) {
            background-image: url('../images/hero2.webp');
            animation-delay: 8s;
        }

        .hero-img:nth-child(3) {
            background-image: url('../images/hero3.webp');
            animation-delay: 16s;
        }

        @keyframes kenBurnsFade {
            0% {
                opacity: 0;
                transform: scale(1);
            }

            5% {
                opacity: 1;
            }

            28% {
                opacity: 1;
            }

            33% {
                opacity: 0;
                transform: scale(1.05);
            }

            100% {
                opacity: 0;
                transform: scale(1.05);
            }
        }

        /* Overlay très léger pour le luxe */
        .hero-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 77, 77, 0.7) 0%, rgba(0, 107, 107, 0.2) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            color: white;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero h1 {
            color: white;
            margin-bottom: 24px;
            text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .hero-desc {
            font-size: 1.25rem;
            font-weight: 300;
            margin-bottom: 48px;
            opacity: 0.95;
            text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
            max-width: 700px;
        }

        .hero-actions {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .spline-container {
            position: absolute;
            right: -10vw;
            bottom: -10vh;
            width: 60vw;
            height: 80vh;
            z-index: 5;
            opacity: 0.8;
            pointer-events: none;
            /* Embellissement visuel pur */
            filter: drop-shadow(0 0 40px rgba(0, 0, 0, 0.3));
        }

        /* STATS (Effet Verre Dépoli Flottant) */
        .stats-wrapper {
            position: relative;
            z-index: 20;
            margin-top: -80px;
            padding: 0 24px;
        }

        .stats-glass {
            max-width: 1100px;
            margin: 0 auto;
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            border: 1px solid var(--glass-border);
            border-radius: var(--radius-card);
            padding: 40px;
            box-shadow: var(--glass-shadow);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .stat-item {
            text-align: center;
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -10px;
            top: 20%;
            height: 60%;
            width: 1px;
            background: linear-gradient(to bottom, transparent, rgba(0, 107, 107, 0.2), transparent);
        }

        .stat-val {
            font-family: var(--font-display);
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-muted);
        }

        /* SECTION INCLUSIONS (Design Asymétrique) */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 32px;
            margin-top: 64px;
        }

        .feature-card {
            background: var(--bg-surface);
            padding: 40px 32px;
            border-radius: var(--radius-card);
            border: 1px solid rgba(0, 0, 0, 0.03);
            text-align: left;
            transition: var(--transition-smooth);
            cursor: default;
            /* Interactivité visuelle sans être un lien */
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px -10px rgba(0, 107, 107, 0.08);
            border-color: rgba(0, 107, 107, 0.1);
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            background: rgba(232, 119, 34, 0.1);
            color: var(--orange);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 24px;
            transition: var(--transition-hover);
        }

        .feature-card:hover .feature-icon {
            background: var(--orange);
            color: white;
            transform: scale(1.05) rotate(-5deg);
            border-radius: 24px 8px 24px 24px;
        }

        .feature-title {
            font-size: 1.5rem;
            margin-bottom: 12px;
            color: var(--text-main);
        }

        .feature-desc {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* OFFRES IMMERSIVES */
        .destinations-section {
            background-color: var(--teal-dark);
            color: white;
            position: relative;
        }

        .destinations-section .section-title {
            color: white;
        }

        .destinations-section .subtitle {
            color: rgba(255, 255, 255, 0.7);
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            /* Plus serré pour effet liquide */
        }

        .dest-card {
            position: relative;
            border-radius: var(--radius-card);
            overflow: hidden;
            height: 500px;
            cursor: pointer;
            group: true;
        }

        .dest-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .dest-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 40, 40, 0.95) 100%);
            transition: var(--transition-smooth);
        }

        .dest-card:hover .dest-img {
            transform: scale(1.1);
        }

        .dest-card:hover::after {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(0, 107, 107, 0.95) 100%);
        }

        .badge-glass {
            position: absolute;
            top: 24px;
            right: 24px;
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            color: var(--teal-dark);
            padding: 8px 16px;
            border-radius: var(--radius-pill);
            font-weight: 700;
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 10;
        }

        .dest-content {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            padding: 40px 32px;
            z-index: 10;
            transform: translateY(20px);
            transition: var(--transition-smooth);
        }

        .dest-card:hover .dest-content {
            transform: translateY(0);
        }

        .dest-title {
            color: white;
            font-size: 2rem;
            margin-bottom: 8px;
        }

        .dest-duration {
            font-family: var(--font-body);
            color: var(--orange);
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 16px;
        }

        .dest-divider {
            width: 40px;
            height: 2px;
            background: rgba(255, 255, 255, 0.2);
            margin: 20px 0;
            transition: var(--transition-smooth);
        }

        .dest-card:hover .dest-divider {
            width: 100%;
            background: var(--orange);
        }

        .dest-price-box {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            opacity: 0.8;
            transition: var(--transition-smooth);
        }

        .dest-card:hover .dest-price-box {
            opacity: 1;
        }

        .price-text {
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .price-val {
            font-family: var(--font-display);
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            line-height: 1;
        }

        .price-val span {
            font-size: 1rem;
            font-family: var(--font-body);
            font-weight: 400;
        }

        /* TÉMOIGNAGES (CLEAN & MINIMALIST) */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .testi-card {
            background: var(--bg-surface);
            padding: 48px 40px;
            border-radius: var(--radius-card);
            border: 1px solid rgba(0, 0, 0, 0.03);
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .testi-stars {
            color: var(--orange);
            display: flex;
            gap: 4px;
            font-size: 1.25rem;
        }

        .testi-text {
            font-family: var(--font-display);
            font-size: 1.35rem;
            font-style: italic;
            color: var(--text-main);
            flex-grow: 1;
        }

        .testi-author {
            display: flex;
            align-items: center;
            gap: 16px;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            padding-top: 24px;
        }

        .testi-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testi-name {
            font-weight: 600;
            color: var(--teal-dark);
        }

        .testi-role {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* CTA FINAL IMMERSIF */
        .cta-section {
            padding: 160px 0;
            position: relative;
            background-color: var(--primary);
            overflow: hidden;
        }

        .cta-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            mix-blend-mode: overlay;
            opacity: 0.4;
        }

        .cta-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
            max-width: 800px;
            margin: 0 auto;
        }

        .cta-content h2 {
            color: white;
            margin-bottom: 24px;
        }

        /* FOOTER ÉPURÉ */
        footer {
            background-color: #0F172A;
            /* Slate 900 */
            color: rgba(255, 255, 255, 0.6);
            padding: 80px 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 64px;
            margin-bottom: 80px;
        }

        .footer-logo {
            font-family: var(--font-display);
            font-size: 2rem;
            color: white;
            font-weight: 700;
            margin-bottom: 24px;
            display: block;
        }

        .socials {
            display: flex;
            gap: 16px;
            margin-top: 24px;
        }

        .social-btn {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: white;
        }

        .social-btn:hover {
            background: var(--orange);
            border-color: var(--orange);
        }

        .footer-col h4 {
            color: white;
            font-family: var(--font-body);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.85rem;
            margin-bottom: 32px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 16px;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 4px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 40px;
            text-align: center;
            font-size: 0.85rem;
        }

        /* FAB WHATSAPP (UI/UX Accessibilité & Hitbox) */
        .fab {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 64px;
            height: 64px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: var(--transition-hover);
        }

        .fab:hover {
            transform: translateY(-4px) scale(1.05);
            background-color: #1FAF53;
        }

        /* RESPONSIVE DESIGN (Règles strictes 375/768/1024) */
        @media (max-width: 1024px) {
            .stats-glass {
                grid-template-columns: repeat(2, 1fr);
                padding: 32px;
                gap: 32px;
            }

            .stat-item:nth-child(2)::after {
                display: none;
            }

            .destinations-section .cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 48px;
            }

            .spline-container {
                opacity: 0.4;
                right: -20vw;
            }
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 80px 0;
            }

            .hero {
                text-align: center;
                align-items: center;
            }

            .navbar {
                padding: 12px 24px;
            }

            .nav-btn {
                display: none;
            }

            /* On cache le bouton nav sur tablette basse pour faire propre */
            .destinations-section .cards-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .spline-container {
                display: none;
            }

            /* Performance mobile */
        }

        @media (max-width: 375px) {
            .stats-glass {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .stat-item::after {
                display: none !important;
            }

            .hero h1 {
                font-size: 2.75rem;
            }

            .btn {
                width: 100%;
            }

            .fab {
                bottom: 24px;
                right: 24px;
                width: 56px;
                height: 56px;
            }
        }

/* ================================================
   HAMBURGER MENU (Mobile)
   ================================================ */
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-size: 0.9rem; font-weight: 500; letter-spacing: 0.5px; color: var(--text-main); }
.nav-links a:hover { color: var(--primary); }

.nav-toggle {
    display: none;
    width: 32px; height: 24px;
    position: relative; cursor: pointer;
    pointer-events: auto;
    background: transparent; border: none;
    z-index: 110;
}
.nav-toggle span {
    position: absolute; left: 0; width: 100%; height: 2px;
    background: var(--teal-dark); border-radius: 2px;
    transition: var(--transition-smooth);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav-toggle span:nth-child(3) { bottom: 0; }
.nav-toggle.open span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

.menu-overlay {
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); z-index: 90;
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s ease;
}
.menu-overlay.active { opacity: 1; pointer-events: auto; }

.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 400px;
    height: 100vh; background: var(--bg-surface);
    z-index: 95; padding: 100px 40px 40px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -8px 0 32px rgba(0,0,0,0.1);
    display: flex; flex-direction: column; gap: 8px;
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
    font-size: 1.25rem; padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    color: var(--text-main); font-weight: 500;
}
.mobile-menu a:hover { color: var(--orange); padding-left: 8px; }
.mobile-menu .btn { margin-top: auto; text-align: center; }

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links { display: none; }
}

/* ================================================
   CAROUSEL TÉMOIGNAGES (Fonctionnel)
   ================================================ */
.carousel-temoignages {
    position: relative; overflow: hidden;
    padding-bottom: 60px;
}
.carousel-track {
    display: flex; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.carousel-slide {
    min-width: 33.333%; padding: 0 12px; box-sizing: border-box;
}
@media (max-width: 1024px) { .carousel-slide { min-width: 50%; } }
@media (max-width: 768px) { .carousel-slide { min-width: 100%; } }

.carousel-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: var(--bg-surface); border: 1px solid rgba(0,0,0,0.05);
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; font-size: 1.25rem; color: var(--primary);
    box-shadow: var(--glass-shadow); z-index: 10;
    transition: var(--transition-hover);
}
.carousel-nav:hover { background: var(--primary); color: white; }
.carousel-prev { left: -16px; }
.carousel-next { right: -16px; }
@media (max-width: 768px) { .carousel-prev { left: 8px; } .carousel-next { right: 8px; } }

.carousel-dots {
    display: flex; justify-content: center; gap: 8px;
    position: absolute; bottom: 0; left: 0; right: 0;
}
.carousel-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(0,107,107,0.2); border: none; cursor: pointer;
    transition: var(--transition-hover);
}
.carousel-dot.active { background: var(--primary); width: 32px; border-radius: 5px; }

/* ================================================
   PAGE HEADER (Pages intérieures)
   ================================================ */
.page-header {
    background: var(--teal-dark); color: white;
    padding: 160px 0 80px; text-align: center;
    position: relative; overflow: hidden;
}
.page-header::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,77,77,0.9), rgba(0,107,107,0.7));
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { color: white; margin-bottom: 16px; }
.page-header .breadcrumb {
    font-size: 0.9rem; color: rgba(255,255,255,0.6);
    display: flex; gap: 8px; justify-content: center; align-items: center;
}
.page-header .breadcrumb a { color: var(--orange); }

/* ================================================
   TABLEAU DE TARIFS (Pages offres)
   ================================================ */
.price-table {
    width: 100%; border-collapse: separate;
    border-spacing: 0; border-radius: var(--radius-card);
    overflow: hidden; box-shadow: var(--glass-shadow);
}
.price-table thead { background: var(--primary); color: white; }
.price-table th {
    padding: 20px 24px; text-align: left;
    font-family: var(--font-body); font-weight: 600;
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px;
}
.price-table td {
    padding: 20px 24px; background: var(--bg-surface);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    font-size: 0.95rem;
}
.price-table tr:last-child td { border-bottom: none; }
.price-table .price-highlight {
    font-family: var(--font-display); font-size: 1.5rem;
    font-weight: 700; color: var(--primary);
}

/* ================================================
   FORMULAIRE MULTI-ÉTAPES (reserver.html)
   ================================================ */
.booking-section { padding: 60px 0 120px; }

.progress-wrapper {
    max-width: 600px; margin: 0 auto 48px;
}
.progress-track {
    height: 4px; background: rgba(0,107,107,0.1);
    border-radius: 2px; overflow: hidden;
}
.progress-fill {
    height: 100%; background: var(--orange);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}
.progress-steps {
    display: flex; justify-content: space-between; margin-top: 16px;
}
.step-indicator {
    font-size: 0.8rem; color: var(--text-muted);
    font-weight: 500; text-transform: uppercase; letter-spacing: 1px;
    transition: color 0.3s;
}
.step-indicator.active { color: var(--primary); font-weight: 700; }
.step-indicator.completed { color: var(--orange); }

.form-step { display: none; }
.form-step.active { display: block; animation: fadeInUp 0.4s ease; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group {
    margin-bottom: 24px;
}
.form-group label {
    display: block; font-weight: 600; margin-bottom: 8px;
    font-size: 0.9rem; color: var(--text-main);
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 16px 20px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size: 1rem;
    background: var(--bg-surface);
    transition: var(--transition-hover);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0,107,107,0.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }

.field-error { border-color: #e53e3e !important; }
.error-msg { color: #e53e3e; font-size: 0.8rem; margin-top: 4px; display: block; }

.offre-choice, .formule-choice {
    background: var(--bg-surface); border: 2px solid rgba(0,0,0,0.05);
    border-radius: var(--radius-card); padding: 24px;
    cursor: pointer; transition: var(--transition-smooth);
    text-align: center;
}
.offre-choice:hover, .formule-choice:hover {
    border-color: rgba(0,107,107,0.2); transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(0,107,107,0.1);
}
.offre-choice.selected, .formule-choice.selected {
    border-color: var(--primary); background: rgba(0,107,107,0.03);
}
.offre-choice input, .formule-choice input { display: none; }

.form-actions {
    display: flex; gap: 16px; justify-content: space-between;
    margin-top: 40px;
}
.btn-outline {
    background: transparent; border: 2px solid var(--primary);
    color: var(--primary); padding: 14px 32px;
    border-radius: var(--radius-pill); font-family: var(--font-body);
    font-weight: 600; cursor: pointer; transition: var(--transition-hover);
}
.btn-outline:hover { background: var(--primary); color: white; }

.confirmation-box {
    text-align: center; padding: 60px 40px;
    background: var(--bg-surface); border-radius: var(--radius-card);
}
.confirmation-box i { font-size: 4rem; color: #25D366; margin-bottom: 24px; }

/* ================================================
   GALERIE (galerie.html)
   ================================================ */
.gallery-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item {
    border-radius: var(--radius-sm); overflow: hidden;
    position: relative; cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

@media (max-width: 768px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
}

/* ================================================
   404 PAGE
   ================================================ */
.error-page {
    min-height: 100vh; display: flex; align-items: center;
    justify-content: center; text-align: center;
    background: var(--bg-body);
}
.error-page h1 {
    font-size: clamp(6rem, 15vw, 12rem);
    color: var(--primary); opacity: 0.15;
    position: absolute;
}
.error-content { position: relative; z-index: 2; }
.error-content h2 { margin-bottom: 16px; }
.error-content p { color: var(--text-muted); margin-bottom: 32px; }

/* ================================================
   DIVERS PAGES
   ================================================ */
.content-section {
    background: var(--bg-surface); border-radius: var(--radius-card);
    padding: 48px; margin-bottom: 32px;
    border: 1px solid rgba(0,0,0,0.03);
}
.content-section h2 { margin-bottom: 24px; font-size: 1.75rem; }
.content-section p { margin-bottom: 16px; color: var(--text-muted); }
.content-section ul { padding-left: 24px; margin-bottom: 16px; color: var(--text-muted); }
.content-section li { margin-bottom: 8px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

/* Section highlight pour offre détaillée */
.offre-hero {
    position: relative; min-height: 60vh; display: flex;
    align-items: flex-end; overflow: hidden;
}
.offre-hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
}
.offre-hero::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,40,40,0.95) 100%);
}
.offre-hero-content {
    position: relative; z-index: 2; padding: 60px 0; width: 100%; color: white;
}
.offre-hero-content h1 { color: white; }

.offre-details {
    display: grid; grid-template-columns: 2fr 1fr; gap: 48px;
}
.offre-sidebar {
    background: var(--bg-surface); border-radius: var(--radius-card);
    padding: 40px; border: 1px solid rgba(0,0,0,0.03);
    position: sticky; top: 120px; align-self: start;
}
@media (max-width: 768px) { .offre-details { grid-template-columns: 1fr; } }








