/* ========================================================
   THEME CSS - PAGES VOYAGES LINK VOYAGES
   Extrait de la page Vietnam de référence
   Date: 2024-12-23
   ======================================================== */

        /* ========== VARIABLES PRINCIPALES ========== */
        :root {
            /* Palette de couleurs Vietnam */
            --primary-color: #D4AF37; /* Or Vietnam (étoile du drapeau) */
            --secondary-color: #DC143C; /* Rouge Vietnam (drapeau) */
            --tertiary-color: #228B22; /* Vert bambou/nature */
            --dark-color: #2F4F4F; /* Gris ardoise foncé */
            --light-color: #F8F8FF; /* Blanc fantôme */
            --white: #FFFFFF;
            --gray-100: #F8F9FA;
            --gray-200: #E9ECEF;
            --gray-300: #DEE2E6;
            --gray-400: #CED4DA;
            --gray-500: #ADB5BD;
            --gray-600: #6C757D;
            --gray-800: #343A40;
            --success-color: #4CAF50;
            --warning-color: #FB8500;
            --info-color: #00B4D8;
            --messenger-color: #0084FF;
            --whatsapp-color: #25D366;

            /* Ombres et effets */
            --border-radius-sm: 6px;
            --border-radius: 10px;
            --border-radius-lg: 20px;
            --box-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
            --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            --box-shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
            --transition: all 0.3s ease;

            /* Typographie */
            --font-primary: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
            --font-secondary: 'Playfair Display', Georgia, serif;
            --font-size-base: 16px;
            --font-size-sm: clamp(0.85rem, 1.5vw, 0.95rem);
            --font-size-md: clamp(1rem, 1.8vw, 1.1rem);
            --font-size-lg: clamp(1.1rem, 2vw, 1.25rem);
            --font-size-xl: clamp(1.5rem, 3vw, 2rem);
            --font-size-2xl: clamp(1.8rem, 4vw, 2.5rem);
            --font-size-3xl: clamp(2.2rem, 5vw, 3.2rem);
            --line-height-tight: 1.2;
            --line-height-base: 1.6;
            --line-height-loose: 1.8;

            /* Espacement */
            --spacing-xs: clamp(5px, 1vw, 10px);
            --spacing-sm: clamp(10px, 2vw, 15px);
            --spacing-md: clamp(15px, 3vw, 25px);
            --spacing-lg: clamp(25px, 5vw, 40px);
            --spacing-xl: clamp(40px, 8vw, 80px);
            --spacing-2xl: clamp(60px, 10vw, 120px);

            /* Container */
            --container-width: 1280px;
            --container-padding: clamp(15px, 3vw, 30px);

            /* Variables spécifiques Vietnam */
            --primary-light: rgba(212, 175, 55, 0.1);
            --primary-gradient: linear-gradient(135deg, #D4AF37, #B8860B);
            --secondary-light: rgba(220, 20, 60, 0.1);
            --accent-light: rgba(34, 139, 34, 0.1);
        }

        /* ========== NORMALISATION ET BASE ========== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            font-size: var(--font-size-base);
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
            scroll-padding-top: 130px;
        }

        body {
            font-family: var(--font-primary);
            font-size: var(--font-size-md);
            line-height: var(--line-height-base);
            color: var(--gray-800);
            background-color: var(--light-color);
            overflow-x: hidden;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-secondary);
            font-weight: 700;
            line-height: var(--line-height-tight);
            margin-bottom: var(--spacing-md);
            color: var(--dark-color);
        }

        p {
            margin-bottom: var(--spacing-md);
        }

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

        a:hover {
            color: var(--tertiary-color);
        }

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

        /* ========== CONTENEURS ET UTILITAIRES ========== */
        .container {
            width: 100%;
            max-width: var(--container-width);
            margin: 0 auto;
            padding: 0 var(--container-padding);
        }

        .section {
            padding: var(--spacing-xl) 0;
            position: relative;
        }

        .section-title-container {
            text-align: center;
            margin-bottom: var(--spacing-xl);
            position: relative;
        }

        .section-subtitle {
            font-family: var(--font-secondary);
            font-style: italic;
            color: var(--primary-color);
            font-size: var(--font-size-lg);
            margin-bottom: var(--spacing-xs);
            display: block;
        }

        .section-title {
            font-size: var(--font-size-2xl);
            position: relative;
            display: inline-block;
            padding-bottom: var(--spacing-sm);
            margin-bottom: var(--spacing-sm);
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 3px;
        }

        .section-description {
            max-width: 800px;
            margin: 0 auto;
            color: var(--gray-600);
            font-size: var(--font-size-md);
        }

        .text-center {
            text-align: center;
        }

        /* ========== HEADER ET NAVIGATION ========== */
        .navbar {
            height: 80px;
            padding: 0;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: var(--box-shadow-sm);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 99;
            display: flex;
            align-items: center;
            backdrop-filter: blur(10px);
            transition: var(--transition);
        }

        .navbar.scrolled {
            box-shadow: var(--box-shadow);
            height: 70px;
        }

        .navbar-container {
            height: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .navbar-left,
        .navbar-right {
            flex: 0 0 48px;
        }

        .logo-container {
            display: flex;
            align-items: center;
            z-index: 1001;
        }

        .logo {
            width: auto;
            height: 45px;
            transition: var(--transition);
        }

        .navbar.scrolled .logo {
            height: 40px;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-contact {
            display: flex;
            align-items: center;
            gap: var(--spacing-md);
        }

        .nav-contact-item {
            display: flex;
            align-items: center;
            gap: var(--spacing-xs);
            font-weight: 600;
            font-size: var(--font-size-sm);
            color: var(--primary-color);
        }

        .nav-contact-item i {
            font-size: 1rem;
            color: var(--secondary-color);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            width: 40px;
            height: 40px;
            font-size: 24px;
            color: var(--primary-color);
            cursor: pointer;
            align-items: center;
            justify-content: center;
            z-index: 1001;
        }

        /* Menu Scrollable horizontal */
        .menu-nav {
            width: 100%;
            height: 50px;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            white-space: nowrap;
            background-color: var(--white);
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            position: fixed;
            top: 80px;
            left: 0;
            z-index: 98;
        }

        .menu-nav::-webkit-scrollbar {
            display: none;
        }

        .menu-nav ul {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
            height: 100%;
        }

        .menu-nav li {
            display: inline-block;
            height: 100%;
        }

        .menu-nav a {
            padding: 0 20px;
            height: 100%;
            display: flex;
            align-items: center;
            font-size: 15px;
            font-weight: 500;
            border-bottom: 3px solid transparent;
            color: var(--gray-800);
            transition: var(--transition);
        }

        .menu-nav a i {
            font-size: 14px;
            margin-right: 8px;
        }

        .menu-nav a:hover,
        .menu-nav a.active {
            color: var(--primary-color);
            border-bottom-color: var(--primary-color);
        }

        /* Version gravée du nom de marque */
        .navbar-title {
            flex: 1 1 auto;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            pointer-events: none;
            z-index: 0;
            padding: 0 0.5rem;
        }

        .brand-engraved {
            font-family: var(--font-secondary);
            font-weight: 800;
            text-transform: uppercase;
            font-size: clamp(1rem, 4vw, 1.5rem);
            letter-spacing: 1px;
            background: linear-gradient(145deg, var(--dark-color), var(--primary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 1px 0 var(--white), 0 -1px 0 var(--gray-300), 1px 0px 2px rgba(0, 0, 0, 0.2);
            user-select: none;
            line-height: 1.2;
            max-width: 100%;
            display: inline-block;
        }

        .brand-engraved.short {
            display: none;
        }

        @media (max-width: 250px) {
            .brand-engraved.full {
                display: none;
            }
            .brand-engraved.short {
                display: inline;
            }
        }

        /* Menu mobile */
        .mobile-menu {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            height: calc(100vh - 80px);
            background-color: var(--white);
            z-index: 999;
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
            display: flex;
            flex-direction: column;
            overflow-y: auto;
            padding: 20px 0;
        }

        .mobile-menu.active {
            transform: translateX(0);
        }

        .mobile-menu-section {
            margin-bottom: 30px;
            padding: 0 20px;
        }

        .mobile-menu-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--primary-color);
            padding-bottom: 8px;
            border-bottom: 2px solid var(--secondary-color);
        }

        .mobile-menu-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu-links li {
            margin-bottom: 12px;
        }

        .mobile-menu-links a {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            color: var(--gray-800);
            text-decoration: none;
            padding: 8px 0;
            transition: all 0.2s ease;
        }

        .mobile-menu-links a:hover {
            color: var(--primary-color);
            transform: translateX(5px);
        }

        .mobile-contact-btn {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 15px;
            border-radius: 8px;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-bottom: 10px;
        }

        .mobile-contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--box-shadow);
        }

        .mobile-contact-btn.phone {
            background-color: var(--primary-color);
        }

        .mobile-contact-btn.whatsapp {
            background-color: var(--whatsapp-color);
        }

        .mobile-contact-btn.messenger {
            background-color: var(--messenger-color);
        }

        .mobile-contact-btn.email {
            background-color: var(--secondary-color);
        }

        /* ========== BANNIÈRE PROMO ========== */
        .promo-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 98;
            background: linear-gradient(135deg, #D4AF37, #DC143C);
            color: white;
            text-align: center;
            padding: 12px 15px;
            font-weight: 600;
            font-size: 14px;
            box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.15);
            transform: translateY(100%);
            animation: slideUp 0.5s forwards 1s;
            border-top: 1px solid rgba(255, 215, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        @keyframes slideUp {
            to {
                transform: translateY(0);
            }
        }

        .phone-highlight {
            display: inline-block;
            padding: 5px 12px;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            color: #FFD700;
            text-decoration: none;
            font-weight: bold;
            font-size: 16px;
            margin: 0 5px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 215, 0, 0.5);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .phone-highlight:hover {
            background-color: rgba(255, 255, 255, 0.3);
            transform: scale(1.05);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

        .close-banner {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.6);
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
        }

        .close-banner:hover {
            color: white;
        }

        /* ========== HEADER ========== */
        .header {
            position: relative;
            background-color: var(--dark-color);
            color: var(--white);
            padding: var(--spacing-2xl) 0;
            padding-top: 40px; /* Espace interne en haut */
            overflow: hidden;
            margin-top: 90px; /* Ajusté pour compenser le header fixe (hauteur navbar ~80px) */
        }

        .header-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
                        url('https://link-voyages.com/Images/vietnam-voyage-images/heros.jpg')
                        center/cover no-repeat;
            z-index: 0;
            animation: slowZoom 30s ease-in-out infinite alternate;
        }

        @keyframes slowZoom {
            from {
                transform: scale(1);
            }
            to {
                transform: scale(1.1);
            }
        }

        .header-content {
            position: relative;
            z-index: 1;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            padding: var(--spacing-xl) var(--spacing-md);
        }

        .header-title {
            font-size: var(--font-size-3xl);
            font-weight: 800;
            margin-bottom: var(--spacing-md);
            color: var(--white);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .header-subtitle {
            font-size: var(--font-size-lg);
            font-weight: 300;
            margin-bottom: var(--spacing-lg);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: var(--line-height-loose);
        }

        .btn-group {
            display: flex;
            justify-content: center;
            gap: var(--spacing-md);
            flex-wrap: wrap;
            margin-top: var(--spacing-lg);
            position: relative;
            z-index: 10; /* Assure que les boutons sont au-dessus */
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 15px 30px;
            font-weight: 600;
            text-align: center;
            border-radius: 12px;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            border: none;
            min-width: 180px;
            gap: 8px;
            text-decoration: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, #D4AF37, #F5D068);
            color: var(--dark-color);
            font-weight: 700;
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #B8860B, #D4AF37);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
            color: var(--white);
        }

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

        .btn-secondary:hover {
            background-color: #B22222;
            transform: translateY(-3px);
            box-shadow: var(--box-shadow-lg);
            color: var(--white);
        }

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

        .btn-messenger:hover {
            background-color: #0078e7;
            transform: translateY(-3px);
            box-shadow: var(--box-shadow-lg);
            color: var(--white);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--white);
            border: 2px solid var(--white);
            box-shadow: none;
        }

        .btn-outline:hover {
            background-color: var(--white);
            color: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: var(--box-shadow);
        }

        .btn-pulse {
            animation: btnPulse 2s infinite;
        }

        @keyframes btnPulse {
            0% {
                box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
            }
        }

        /* ========== DESTINATIONS ========== */
        .destinations {
            background-color: var(--white);
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: var(--spacing-lg);
        }

        .destination-card {
            background-color: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
            position: relative;
            z-index: 1;
        }

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

        .card-img {
            position: relative;
            height: 300px;
            overflow: hidden;
        }

        .card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .destination-card:hover .card-img img {
            transform: scale(1.1);
        }

        .best-deal {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: var(--secondary-color);
            color: var(--white);
            padding: 5px 12px;
            font-weight: 600;
            font-size: 14px;
            z-index: 2;
            border-radius: 20px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.25);
        }

        .card-content {
            padding: var(--spacing-lg);
            display: flex;
            flex-direction: column;
            flex-grow: 1;
            position: relative;
            z-index: 2;
            background-color: var(--white);
        }

        .card-title {
            font-size: var(--font-size-xl);
            margin-bottom: var(--spacing-sm);
            color: var(--primary-color);
        }

        .card-description {
            margin-bottom: var(--spacing-md);
            color: var(--gray-600);
        }

        .feature-list {
            margin-bottom: var(--spacing-lg);
            flex-grow: 1;
        }

        .feature-list li {
            margin-bottom: var(--spacing-sm);
            position: relative;
            padding-left: 25px;
            list-style: none;
        }

        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--tertiary-color);
            font-weight: bold;
        }

        .card-footer {
            margin-top: auto;
        }

        /* ========== PROGRAMME JOUR PAR JOUR ========== */
        .programme-section {
            background-color: var(--gray-100);
            padding: var(--spacing-xl) 0;
            position: relative;
        }

        .programme-timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding-left: 30px;
        }

        .programme-timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 4px;
            background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        .programme-day {
            position: relative;
            margin-bottom: 50px;
            padding-left: 30px;
        }

        .programme-day:last-child {
            margin-bottom: 0;
        }

        .programme-day::before {
            content: '';
            position: absolute;
            left: -34px;
            top: 5px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background-color: var(--primary-color);
            border: 3px solid white;
            box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
            z-index: 1;
        }

        .programme-day-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .programme-day-number {
            background-color: var(--secondary-color);
            color: white;
            font-weight: 700;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin-right: 15px;
            box-shadow: var(--box-shadow-sm);
        }

        .programme-day-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary-color);
            margin: 0;
        }

        .programme-day-content {
            background-color: white;
            border-radius: var(--border-radius);
            padding: 20px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .programme-day:hover .programme-day-content {
            transform: translateY(-5px);
            box-shadow: var(--box-shadow-lg);
        }

        .programme-activity-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .programme-activity {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed var(--gray-300);
        }

        .programme-activity:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }

        .programme-activity-icon {
            background-color: var(--primary-light);
            color: var(--primary-color);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .programme-activity-details {
            flex-grow: 1;
        }

        .programme-activity-title {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .programme-activity-description {
            font-size: 14px;
            color: var(--gray-600);
        }

        .activity-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
            margin-top: 8px;
        }

        .activity-tag {
            font-size: 11px;
            padding: 3px 8px;
            border-radius: 12px;
            background-color: var(--gray-200);
            color: var(--gray-700);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .activity-tag.included {
            background-color: rgba(76, 175, 80, 0.1);
            color: var(--success-color);
        }

        .activity-tag.optional {
            background-color: var(--primary-light);
            color: var(--primary-color);
        }

/* ========== DATES DE DÉPART ========== */
.dates-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 10px;
}

.month-group {
    background-color: var(--gray-100);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.month-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.month-count {
    font-size: 14px;
    background-color: var(--secondary-color);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date-item {
    background-color: white;
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.date-item.past-date {
    display: none;
}

.date-item:hover {
    background: linear-gradient(135deg, #FFFBEB, #FEF3C7);
    transform: translateX(8px) scale(1.02);
    border-left-color: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.2);
}

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

.date-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.date-range {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1rem;
}

.date-price {
    background: linear-gradient(135deg, var(--primary-color), #B8860B);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    white-space: nowrap;
}

.btn-reserver {
    background: linear-gradient(135deg, #c19b4d 0%, #d4af37 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 10px rgba(193, 155, 77, 0.3);
    white-space: nowrap;
}

.btn-reserver:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(193, 155, 77, 0.4);
}

.btn-reserver i {
    font-size: 13px;
}

.month-group.hidden {
    display: none;
}

        /* ========== GALERIE IMAGES ========== */
        .gallery-section {
            background-color: var(--white);
        }

        .gallery-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }

        .gallery-tab {
            padding: 10px 20px;
            background-color: var(--gray-200);
            border-radius: 25px;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 500;
        }

        .gallery-tab.active,
        .gallery-tab:hover {
            background-color: var(--primary-color);
            color: var(--dark-color);
        }

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

        .gallery-item {
            position: relative;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 300px;
        }

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

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 15px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            transform: translateY(0);
        }

        .gallery-title {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .gallery-description {
            font-size: 14px;
            opacity: 0.9;
        }

        /* ========== SECTION BLOG EXPERTISE ========== */
        .blog-expertise {
            background: linear-gradient(135deg, var(--gray-100) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
        }

        .blog-expertise::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--primary-light), transparent);
            border-radius: 50%;
            z-index: 0;
        }

        .blog-expertise::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--secondary-light), transparent);
            border-radius: 50%;
            z-index: 0;
        }

        .expertise-stats {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow-sm);
            transition: var(--transition);
            border: 2px solid transparent;
        }

        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: var(--box-shadow-lg);
            border-color: var(--primary-color);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            display: block;
            margin-bottom: 10px;
            font-family: var(--font-secondary);
        }

        .stat-label {
            font-weight: 600;
            color: var(--dark-color);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 14px;
        }

        .expertise-content {
            position: relative;
            z-index: 1;
        }

        .expertise-intro {
            max-width: 900px;
            margin: 0 auto 50px;
            text-align: center;
            padding: 30px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: var(--border-radius-lg);
            box-shadow: var(--box-shadow);
            border-left: 5px solid var(--primary-color);
        }

        .expertise-highlight {
            font-size: var(--font-size-lg);
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 20px;
            font-style: italic;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .blog-card {
            background-color: var(--white);
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            position: relative;
            border: 1px solid var(--gray-200);
        }

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

        .blog-card-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-card-image img {
            transform: scale(1.1);
        }

        .blog-card-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }

        .blog-card-content {
            padding: 25px;
        }

        .blog-card-title {
            font-size: var(--font-size-lg);
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 15px;
            line-height: 1.3;
            transition: var(--transition);
        }

        .blog-card:hover .blog-card-title {
            color: var(--primary-color);
        }

        .blog-card-description {
            color: var(--gray-600);
            font-size: var(--font-size-md);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .blog-card-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding-top: 15px;
            border-top: 1px solid var(--gray-200);
        }

        .blog-card-jour {
            background-color: var(--secondary-light);
            color: var(--secondary-color);
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .blog-card-keywords {
            display: flex;
            flex-wrap: wrap;
            gap: 5px;
        }

        .keyword-tag {
            background-color: var(--primary-light);
            color: var(--primary-color);
            padding: 3px 8px;
            border-radius: 10px;
            font-size: 11px;
            font-weight: 500;
        }

        .blog-card-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .blog-read-more {
            background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
            color: var(--white);
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .blog-read-more:hover {
            transform: translateX(5px);
            box-shadow: var(--box-shadow);
            color: var(--white);
        }

        .blog-cta {
            text-align: center;
            margin-top: 50px;
            padding: 30px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: var(--border-radius-lg);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .blog-cta::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .blog-cta-content {
            position: relative;
            z-index: 1;
        }

        .blog-cta-title {
            font-size: var(--font-size-xl);
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--white);
        }

        .blog-cta-text {
            margin-bottom: 25px;
            opacity: 0.9;
        }

        .expertise-badges {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 40px;
        }

        .expertise-badge {
            background-color: rgba(255, 255, 255, 0.9);
            color: var(--dark-color);
            padding: 15px 25px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: var(--box-shadow-sm);
            transition: var(--transition);
        }

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

        .expertise-badge i {
            color: var(--primary-color);
            font-size: 16px;
        }

        /* ========== INCLUS ========== */
        .inclus-item {
            background-color: #f8f9fa;
            border-radius: 10px;
            padding: 25px;
            text-align: center;
            box-shadow: var(--box-shadow-sm);
            transition: all 0.3s ease;
            cursor: default;
        }

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

        .inclus-icon {
            width: 70px;
            height: 70px;
            background-color: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: var(--transition);
        }

        .inclus-item:hover .inclus-icon {
            transform: scale(1.1) rotate(5deg);
            background-color: var(--secondary-light);
        }

        .inclus-icon i {
            font-size: 30px;
            color: var(--primary-color);
        }

        .inclus-title {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: var(--font-size-lg);
        }

        .inclus-text {
            color: var(--gray-600);
        }

        /* ========== TÉMOIGNAGES ========== */
        .testimonials {
            background-color: var(--gray-100);
            padding: var(--spacing-xl) 0;
            position: relative;
        }

        .testimonials-carousel {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
            gap: 15px;
            padding: 10px 0;
            scroll-behavior: smooth;
        }

        .testimonials-carousel::-webkit-scrollbar {
            display: none;
        }

        .testimonial-card {
            flex: 0 0 85%;
            scroll-snap-align: center;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin-bottom: 5px;
            transition: all 0.3s ease;
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .testimonial-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 2px solid var(--primary-color);
        }

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

        .testimonial-name {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-color);
            margin: 0 0 5px 0;
        }

        .testimonial-rating {
            display: flex;
            gap: 2px;
        }

        .testimonial-rating i {
            color: #FFD700;
            font-size: 14px;
        }

        .testimonial-text {
            font-style: italic;
            color: #343A40;
            line-height: 1.5;
            font-size: 14px;
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .carousel-dots {
            display: flex;
            gap: 8px;
        }

        .carousel-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #CED4DA;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background-color: var(--primary-color);
            transform: scale(1.3);
        }

        /* ========== TARIFS ========== */
        .price-box {
            background-color: #f8f9fa;
            padding: 25px;
            border-radius: 10px;
            display: inline-block;
            box-shadow: var(--box-shadow);
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

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

        .price-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        }

        .price-value {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }

        /* ========== PRICING CALENDAR TABLE ========== */
        .pricing-calendar-wrapper {
            overflow-x: auto;
            margin: 40px 0;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .pricing-calendar {
            width: 100%;
            border-collapse: collapse;
            background: white;
            min-width: 800px;
        }

        .pricing-calendar thead th {
            background: linear-gradient(135deg, var(--primary-color), #B8860B);
            color: white;
            padding: 18px 15px;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 13px;
            letter-spacing: 0.5px;
            border-right: 1px solid rgba(255, 255, 255, 0.2);
        }

        .pricing-calendar thead th:last-child {
            border-right: none;
        }

        .pricing-calendar thead th i {
            display: block;
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .pricing-calendar thead th span {
            display: block;
            font-size: 12px;
        }

        .pricing-calendar thead th.date-column {
            min-width: 200px;
        }

        .pricing-row {
            transition: all 0.3s ease;
        }

        .pricing-row:hover {
            background: linear-gradient(90deg, #FFFBEB 0%, white 100%);
            transform: scale(1.01);
        }

        .pricing-row.highlighted {
            background: linear-gradient(90deg, #FFF3CD 0%, #FFFBF0 100%);
        }

        .date-cell {
            padding: 20px 15px;
            border-right: 2px solid #f0f0f0;
            border-bottom: 1px solid #e5e5e5;
        }

        .date-badge {
            font-weight: 700;
            color: var(--dark-color);
            font-size: 15px;
            margin-bottom: 5px;
        }

        .date-duration {
            color: #666;
            font-size: 12px;
            font-style: italic;
        }

        .price-cell {
            padding: 20px 15px;
            text-align: center;
            font-weight: 700;
            font-size: 18px;
            color: var(--dark-color);
            border-right: 1px solid #f0f0f0;
            border-bottom: 1px solid #e5e5e5;
            position: relative;
        }

        .price-cell:last-child {
            border-right: none;
        }

        .price-cell.featured {
            background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
            color: #2E7D32;
            font-size: 20px;
        }

        .price-cell.featured::after {
            content: '🌟';
            position: absolute;
            top: 5px;
            right: 5px;
            font-size: 16px;
        }

        .price-cell.best {
            background: linear-gradient(135deg, #FFF9C4 0%, #FFF59D 100%);
            color: #F57C00;
        }

        .price-cell.high {
            background: linear-gradient(135deg, #FFCCBC 0%, #FFAB91 100%);
            color: #D84315;
        }

        .price-cell.baby {
            background: linear-gradient(135deg, #E1F5FE 0%, #B3E5FC 100%);
            color: #0277BD;
            font-size: 16px;
        }

        .pricing-legend {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 30px 0;
            flex-wrap: wrap;
        }

        .legend-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .legend-badge {
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            white-space: nowrap;
        }

        .legend-badge.featured {
            background: linear-gradient(135deg, #4CAF50, #66BB6A);
            color: white;
        }

        .legend-badge.best {
            background: linear-gradient(135deg, #FFC107, #FFD54F);
            color: #6D4C00;
        }

        .legend-badge.high {
            background: linear-gradient(135deg, #FF5722, #FF7043);
            color: white;
        }

        .legend-item p {
            margin: 0;
            font-size: 13px;
            color: #666;
        }

        /* Responsive Pricing Calendar */
        @media (max-width: 1024px) {
            .pricing-calendar thead th span {
                font-size: 11px;
            }

            .price-cell {
                font-size: 16px;
                padding: 15px 10px;
            }
        }

        @media (max-width: 768px) {
            .pricing-calendar-wrapper {
                margin: 20px -20px;
                border-radius: 0;
            }

            .pricing-calendar {
                min-width: 700px;
            }

            .pricing-calendar thead th {
                padding: 12px 8px;
            }

            .pricing-calendar thead th i {
                font-size: 1.2rem;
                margin-bottom: 5px;
            }

            .pricing-calendar thead th span {
                font-size: 10px;
            }

            .price-cell {
                font-size: 14px;
                padding: 12px 8px;
            }

            .pricing-legend {
                flex-direction: column;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .pricing-calendar {
                min-width: 600px;
                font-size: 12px;
            }

            .date-badge {
                font-size: 13px;
            }

            .date-duration {
                font-size: 11px;
            }

            .price-cell {
                font-size: 13px;
            }
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 30px 25px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: 2px solid transparent;
            display: flex;
            flex-direction: column;
        }

        .pricing-card.featured {
            border-color: var(--primary-color);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
            transform: scale(1.05);
        }

        .pricing-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .pricing-card.featured:hover {
            box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
        }

        .pricing-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: linear-gradient(135deg, #D4AF37, #B8860B);
            color: white;
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 25px;
        }

        .pricing-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            display: block;
        }

        .pricing-header h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--dark-color);
            margin: 0;
        }

        .pricing-body {
            text-align: center;
            flex: 1;
            margin-bottom: 25px;
        }

        .price-old {
            color: #999;
            text-decoration: line-through;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .price-old.small {
            font-size: 1rem;
        }

        .price-current {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--secondary-color);
            font-family: var(--font-secondary);
            margin: 10px 0;
            line-height: 1;
        }

        .price-current.solo {
            color: var(--primary-color);
        }

        .price-current.baby-price {
            font-size: 2rem;
            color: #4CAF50;
        }

        .price-discount {
            display: inline-block;
            background: linear-gradient(135deg, #DC143C, #FF4500);
            color: white;
            padding: 6px 16px;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 700;
            margin: 10px 0;
        }

        .price-discount.small {
            font-size: 0.9rem;
            padding: 4px 12px;
        }

        .pricing-desc {
            color: #666;
            font-size: 0.95rem;
            margin-top: 15px;
            line-height: 1.5;
        }

        .pricing-btn {
            display: block;
            width: 100%;
            padding: 14px 20px;
            background: linear-gradient(135deg, var(--primary-color), #B8860B);
            color: white;
            text-align: center;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
        }

        .pricing-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
        }

        .pricing-btn.outline {
            background: white;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            box-shadow: none;
        }

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

        .pricing-footer {
            margin-top: 40px;
            padding: 25px;
            background: linear-gradient(135deg, #FFF9E6, #FFFBF0);
            border-radius: 15px;
            border-left: 4px solid var(--primary-color);
        }

        .pricing-note {
            display: flex;
            gap: 15px;
            align-items: flex-start;
        }

        .pricing-note i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-top: 3px;
        }

        .pricing-note p {
            margin: 8px 0;
            color: #555;
            line-height: 1.6;
        }

        .pricing-note strong {
            color: var(--dark-color);
        }

        /* Responsive Pricing */
        @media (max-width: 992px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-card.featured {
                transform: scale(1);
            }
        }

        @media (max-width: 640px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .pricing-card {
                padding: 25px 20px;
            }

            .price-current {
                font-size: 2rem;
            }

            .pricing-icon {
                font-size: 2.5rem;
            }

            .pricing-note {
                flex-direction: column;
                gap: 10px;
            }
        }

/* ========== CONDITIONS ========== */
.conditions {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Decorative circle in the top right corner */
.conditions::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background-color: var(--primary-light);
    border-radius: 50%;
    z-index: 0;
}

/* List of conditions with flexbox layout */
.conditions-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* Individual condition item styling */
.condition-item {
    flex: 1 1 300px;
    max-width: 350px;
    padding: var(--spacing-md);
    background-color: var(--gray-100);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* Top decorative line for condition items */
.condition-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
}

/* Hover effect for the decorative line */
.condition-item:hover::before {
    height: 8px;
}

/* Hover effect for condition items */
.condition-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

/* Icon styling within condition items */
.condition-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

/* Hover effect for condition icons */
.condition-item:hover .condition-icon {
    transform: rotate(10deg);
    background-color: var(--secondary-light);
}

/* Title styling for condition items */
.condition-title {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--primary-color);
}

/* Text styling for condition items */
.condition-text {
    color: var(--gray-600);
    font-size: var(--font-size-md);
}

/* ========== CONDITIONS D'ENTRÉE ========== */
.conditions-entree {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--gray-50), var(--white));
    position: relative;
}

/* Decorative gradient overlay */
.conditions-entree::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light), transparent);
    opacity: 0.1;
}

/* ========== GRID LAYOUT ========== */
.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

/* ========== CONDITION CARDS ========== */
.condition-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
    position: relative;
}

/* Hover effect for condition cards */
.condition-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

/* Different border colors for different card types */
.condition-card.sante {
    border-top-color: #4CAF50;
}

.condition-card.budget {
    border-top-color: #FF9800;
}

.condition-card.visa {
    border-top-color: #2196F3;
}

.condition-card.climate {
    border-top-color: #9C27B0;
}

/* ========== CARD HEADER ========== */
.card-header {
    background: linear-gradient(135deg, var(--gray-100), var(--white));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid var(--gray-200);
}

/* Icon styling within card headers */
.card-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--box-shadow-sm);
}

/* Title styling within card headers */
.card-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    font-family: var(--font-secondary);
}

/* ========== CARD CONTENT ========== */
.card-content {
    padding: 20px;
}

/* Individual info item styling */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    margin-bottom: 12px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    position: relative;
}

/* Hover effect for info items */
.info-item:hover {
    transform: translateX(5px);
    background: var(--gray-50);
}

/* Remove margin from the last info item */
.info-item:last-child {
    margin-bottom: 0;
}

/* ========== INFO ICONS ========== */
.info-icon {
    font-size: 1.25rem;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Different background and text colors for different info item types */
.info-item.success .info-icon {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.info-item.recommended .info-icon {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

.info-item.warning .info-icon {
    background: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.info-item.insurance .info-icon,
.info-item.passport .info-icon,
.info-item.weather .info-icon {
    background: rgba(156, 39, 176, 0.1);
    color: #9C27B0;
}

.info-item.currency .info-icon,
.info-item.cards .info-icon,
.info-item.cash .info-icon,
.info-item.meals .info-icon {
    background: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.info-item.visa-required .info-icon,
.info-item.duration .info-icon,
.info-item.photos .info-icon {
    background: rgba(33, 150, 243, 0.1);
    color: #2196F3;
}

.info-item.clothes .info-icon,
.info-item.rain .info-icon,
.info-item.shoes .info-icon {
    background: rgba(156, 39, 176, 0.1);
    color: #9C27B0;
}

/* ========== INFO TEXT ========== */
.info-text {
    flex: 1;
}

.info-text strong {
    display: block;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 4px;
    line-height: 1.3;
}

.info-detail {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.4;
    display: block;
}

/* ========== SERVICE HIGHLIGHT ========== */
.service-highlight {
    margin-top: 50px;
    text-align: center;
}

/* Service card styling */
.service-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-lg);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Decorative shimmer effect for service card */
.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

/* Animation for shimmer effect */
@keyframes shimmer {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

/* Service icon styling with bounce animation */
.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

/* Animation for bounce effect */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Service title styling */
.service-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    font-family: var(--font-secondary);
}

/* Service description styling */
.service-description {
    font-size: var(--font-size-base);
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.6;
}

/* Service highlight text styling */
.service-highlight-text {
    display: block;
    font-weight: 700;
    font-size: 1.1em;
    margin-top: 10px;
    color: var(--tertiary-color);
}

/* Service features grid layout */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

/* Individual feature item styling */
.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 15px;
    border-radius: var(--border-radius);
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

/* Hover effect for feature items */
.feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    /* Adjust grid layout for smaller screens */
    .conditions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Adjust card header padding */
    .card-header {
        padding: 15px;
    }

    /* Adjust card content padding */
    .card-content {
        padding: 15px;
    }

    /* Adjust info item padding and gap */
    .info-item {
        padding: 12px;
        gap: 12px;
    }

    /* Adjust info icon size */
    .info-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    /* Adjust service card padding and margin */
    .service-card {
        padding: 25px;
        margin: 0 15px;
    }

    /* Adjust service features grid layout */
    .service-features {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    /* Adjust feature item padding and font size */
    .feature-item {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* Adjust card header layout for very small screens */
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* Adjust card icon size */
    .card-icon {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }

    /* Adjust info item layout for very small screens */
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    /* Adjust service icon size */
    .service-icon {
        font-size: 2rem;
    }

    /* Adjust service title font size */
    .service-title {
        font-size: var(--font-size-lg);
    }
}

/* ========== PRINT STYLES ========== */
@media print {
    /* Remove shimmer effect for printing */
    .service-card::before {
        display: none;
    }

    /* Adjust service card styling for printing */
    .service-card {
        background: var(--gray-100) !important;
        color: var(--dark-color) !important;
        box-shadow: none !important;
    }

    /* Adjust condition card styling for printing */
    .condition-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid var(--gray-300) !important;
    }
}


        /* ========== CTA ========== */
        .cta {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                        url('https://images.unsplash.com/photo-1526483360780-7c99de02cf5e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') 
                        center/cover no-repeat;
            padding: var(--spacing-2xl) 0;
            color: var(--white);
            text-align: center;
            position: relative;
        }

        .cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.8) 0%, rgba(220, 20, 60, 0.6) 100%);
            z-index: 0;
        }

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

        .cta-title {
            font-size: var(--font-size-2xl);
            margin-bottom: var(--spacing-md);
            color: var(--white);
        }

        .cta-text {
            font-size: var(--font-size-lg);
            margin-bottom: var(--spacing-lg);
            opacity: 0.9;
        }

        .social-icons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: var(--spacing-md);
            margin-top: var(--spacing-lg);
        }

        .social-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: var(--white);
            font-size: 1.5rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .social-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--primary-color);
            border-radius: 50%;
            transform: scale(0);
            transition: var(--transition);
            z-index: -1;
        }

        .social-icon:hover::before {
            transform: scale(1);
        }

        .social-icon:hover {
            transform: translateY(-5px);
            color: var(--dark-color);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* ========== FOOTER ========== */
        .footer {
            background-color: var(--dark-color);
            color: var(--white);
            padding: var(--spacing-xl) 0 var(--spacing-md);
            position: relative;
            overflow: hidden;
            margin-top: auto;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--spacing-lg);
            margin-bottom: var(--spacing-lg);
            position: relative;
            z-index: 1;
        }

        .footer-column {
            margin-bottom: var(--spacing-lg);
        }

        .footer-title {
            font-size: var(--font-size-lg);
            margin-bottom: var(--spacing-md);
            padding-bottom: var(--spacing-sm);
            border-bottom: 2px solid var(--primary-color);
            display: inline-block;
            color: var(--white);
        }

        .footer-text {
            color: var(--gray-400);
            margin-bottom: var(--spacing-md);
            line-height: var(--line-height-loose);
        }

        .footer-links li {
            margin-bottom: var(--spacing-sm);
            list-style: none;
        }

        .footer-links a {
            color: var(--gray-400);
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
        }

        .footer-links a i, .footer-links li i {
            margin-right: var(--spacing-xs);
            color: var(--primary-color);
        }

        .footer-links a:hover {
            color: var(--white);
            transform: translateX(5px);
        }

        .contact-info {
            display: flex;
            align-items: flex-start;
            margin-bottom: var(--spacing-sm);
        }

        .contact-info i {
            color: var(--primary-color);
            margin-right: var(--spacing-sm);
            min-width: 20px;
        }

        .contact-info span {
            color: var(--gray-400);
        }

        .copyright {
            text-align: center;
            padding-top: var(--spacing-md);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray-600);
            font-size: var(--font-size-sm);
        }

        .newsletter-form {
            position: relative;
        }

        .newsletter-input {
            width: 100%;
            padding: 12px 15px;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.1);
            background-color: rgba(255, 255, 255, 0.05);
            color: var(--white);
            margin-bottom: 10px;
            font-family: var(--font-primary);
            transition: var(--transition);
        }

        .newsletter-input:focus {
            outline: none;
            border-color: var(--primary-color);
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* ========== ID PRODUIT ========== */
        .product-id {
            text-align: center;
            margin: var(--spacing-md) 0;
            padding: var(--spacing-sm);
            background-color: var(--gray-100);
            border-radius: var(--border-radius);
            color: var(--gray-600);
            font-size: var(--font-size-sm);
            display: inline-block;
            position: relative;
            cursor: pointer;
        }

        .product-id-tooltip {
            position: absolute;
            bottom: 100%;
            left: 50%;
            transform: translateX(-50%);
            background-color: var(--dark-color);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .product-id:hover .product-id-tooltip {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -5px);
        }

        /* ========== BOUTONS FLOTTANTS ========== */
        .scroll-to-top {
            position: fixed;
            bottom: 60px;
            right: 20px;
            width: 45px;
            height: 45px;
            background-color: var(--primary-color);
            color: var(--dark-color);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            z-index: 97;
            opacity: 0;
            visibility: hidden;
        }

        .scroll-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .scroll-to-top:hover {
            transform: translateY(-5px);
            background-color: var(--secondary-color);
            color: var(--white);
            box-shadow: var(--box-shadow-lg);
        }

        /* ========== PAGE LOADER ========== */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--white);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loader-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 100%;
            max-width: 200px;
            text-align: center;
        }

        .loader-logo-container {
            width: 100%;
            display: flex;
            justify-content: center;
            margin-bottom: 25px;
        }

        .loader-logo {
            width: auto;
            height: 50px;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
        }

        .spinner-container {
            position: relative;
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
        }

        .spinner {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 3px solid transparent;
        }

        .spinner-outer {
            border-top-color: var(--primary-color);
            animation: spin 1.5s linear infinite;
        }

        .spinner-middle {
            width: 75%;
            height: 75%;
            top: 12.5%;
            left: 12.5%;
            border-right-color: var(--secondary-color);
            animation: spin-reverse 1.2s linear infinite;
        }

        .spinner-inner {
            width: 50%;
            height: 50%;
            top: 25%;
            left: 25%;
            border-bottom-color: var(--tertiary-color);
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes spin-reverse {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(-360deg); }
        }

        .loading-text {
            width: 100%;
            text-align: center;
            margin-top: 10px;
            color: var(--primary-color);
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.5px;
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .loader-hidden {
            opacity: 0;
            visibility: hidden;
        }

        /* ========== ANIMATIONS ========== */
        .animate-fadeInUp {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-fadeInUp.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .delay-200 {
            transition-delay: 0.2s;
        }

        .delay-300 {
            transition-delay: 0.3s;
        }

        .delay-400 {
            transition-delay: 0.4s;
        }

        /* ========== MEDIA QUERIES ========== */
        @media (max-width: 992px) {
            .header {
                margin-top: 70px;
            }

            .header-content {
                padding: var(--spacing-md) var(--spacing-sm);
            }

            .btn-group {
                flex-direction: column;
                gap: 15px;
            }

            .btn {
                width: 100%;
                max-width: 300px;
                margin: 0 auto;
            }

            .nav-contact {
                display: none;
            }

            .mobile-menu-btn {
                display: flex !important;
                position: absolute;
                right: 20px;
                top: 50%;
                transform: translateY(-50%);
            }

            .menu-nav {
                position: fixed;
                top: 70px;
                height: 50px;
            }

            .menu-nav ul {
                padding: 0 10px;
            }

            .menu-nav a {
                font-size: 14px;
                padding: 0 15px;
            }

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

            .expertise-stats {
                gap: 20px;
            }

            .stat-item {
                padding: 15px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --spacing-xl: clamp(40px, 8vw, 60px);
                --spacing-lg: clamp(20px, 4vw, 30px);
            }

            .btn-group {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
                margin-bottom: var(--spacing-xs);
            }

            /* Dates responsive mobile */
            .date-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
                padding: 15px;
            }

            .date-info {
                width: 100%;
            }

            .date-range {
                font-size: 0.95rem;
            }

            .date-price {
                align-self: flex-end;
                font-size: 1rem;
                padding: 6px 16px;
            }
        }

        @media (max-width: 480px) {
            .date-item {
                padding: 12px;
            }

            .date-range {
                font-size: 0.9rem;
            }

            .date-price {
                font-size: 0.95rem;
                padding: 5px 14px;
            }
        }

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

            .dates-container {
                grid-template-columns: 1fr;
            }

            .promo-banner {
                padding: 15px 50px 15px 15px;
            }

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

            .gallery-tabs {
                flex-direction: column;
            }

            .expertise-stats {
                flex-direction: column;
                gap: 15px;
            }

            .expertise-badges {
                flex-direction: column;
                align-items: center;
            }

            .blog-cta {
                margin-top: 30px;
                padding: 20px;
            }
        }

        @media (max-width: 576px) {
            .menu-nav a {
                padding: 0 10px;
                font-size: 12px;
            }

            .menu-nav a i {
                margin-right: 3px;
                font-size: 12px;
            }

            .social-icons {
                gap: var(--spacing-sm);
            }

            .social-icon {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .condition-item {
                flex: 1 1 100%;
            }

            .blog-card-content {
                padding: 20px;
            }

            .blog-card-meta {
                flex-direction: column;
                gap: 10px;
                align-items: flex-start;
            }
        }
        /* Styles pour les nouvelles sections */
.points-grid .point-fort-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.point-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.expert-tips {
    background: var(--primary-light);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.tip {
    background: white;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
}

/* ========== FAQ AMÉLIORÉE ========== */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
}

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

.faq-category {
    margin-bottom: 40px;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.faq-category h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: rgba(212, 175, 55, 0.05);
    padding-left: 10px;
    border-radius: 8px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 15px;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    display: none;
    margin-top: 15px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    animation: fadeInDown 0.3s ease;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #495057;
}

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

.faq-answer strong {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.visa-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    text-align: center;
}

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

.trust-card {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.trust-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
/* ========== MEGA COUNTER OPTIMISÉ ========== */
.mega-counter {
    margin: 40px 0;
    padding: 50px 30px;
    background: linear-gradient(135deg, #2F4F4F 0%, #D4AF37 100%);
    border-radius: 20px;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.mega-counter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 8s ease-in-out infinite;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.counter-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.counter-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    transition: width 0.4s ease;
}

.counter-item:hover {
    transform: translateY(-8px) scale(1.03);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.counter-item:hover::after {
    width: 80%;
}

.counter-number {
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    font-family: var(--font-secondary);
    margin-bottom: 12px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    line-height: 1;
}

.counter-label {
    font-size: clamp(14px, 2vw, 16px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: block;
    color: #fff;
    line-height: 1.3;
}

.counter-detail {
    font-size: clamp(11px, 1.5vw, 13px);
    opacity: 0.9;
    font-style: italic;
    color: #FDE68A;
    line-height: 1.4;
}

/* ========== DISCOVERY REGIONS ========== */
.discovery-regions {
    display: grid;
    gap: 30px;
    margin: 30px 0;
}

.discovery-region {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
    position: relative;
    border-left: 5px solid var(--primary-color);
}

.discovery-region.centre {
    border-left-color: var(--secondary-color);
}

.discovery-region.sud {
    border-left-color: var(--tertiary-color);
}

.region-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary-color);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.site-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--gray-100);
    border-radius: 8px;
    transition: var(--transition);
}

.site-item:hover {
    background: var(--primary-light);
    transform: translateX(5px);
}

.site-item i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

/* ========== EXPERIENCES GRID ========== */
.experiences-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin: 30px 0;
}

.exp-card {
    background: white;
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--box-shadow-sm);
    transition: var(--transition);
    border-top: 3px solid var(--primary-color);
}

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

.exp-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.exp-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.exp-desc {
    font-size: 11px;
    color: var(--gray-600);
    line-height: 1.3;
}

/* ========== COMPARISON TABLE - VERSION MOBILE OPTIMISÉE ========== */
.comparison-section {
    margin: 40px 0;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.comparison-section h3 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--dark-color);
    font-size: var(--font-size-xl);
}

/* Version Mobile - Cards empilées */
.comparison-table {
    display: block;
    background: transparent;
    box-shadow: none;
}

.comparison-row {
    display: block;
    margin-bottom: 20px;
}

.comparison-row.header {
    display: none; /* Masquer l'en-tête sur mobile */
}

.comparison-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: var(--box-shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.comparison-feature {
    font-weight: 700;
    font-size: 16px;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px dashed var(--gray-300);
}

.comparison-values {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.comparison-value {
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comparison-value.link {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.05));
    color: var(--success-color);
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.comparison-value.other {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1), rgba(244, 67, 54, 0.05));
    color: #f44336;
    border: 2px solid rgba(244, 67, 54, 0.3);
}

.value-label {
    font-size: 14px;
    font-weight: 600;
}

.value-text {
    font-size: 13px;
    text-align: right;
}

/* ========== VERSION DESKTOP ========== */
@media (min-width: 768px) {
    .comparison-table {
        display: table;
        width: 100%;
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: var(--box-shadow);
    }
    
    .comparison-row {
        display: table-row;
        margin-bottom: 0;
    }
    
    .comparison-row.header {
        display: table-row;
    }
    
    .comparison-row.header .comp-cell {
        background: var(--dark-color);
        color: white;
        font-weight: 700;
        padding: 20px;
        text-align: center;
    }
    
    .comp-cell {
        display: table-cell;
        padding: 15px;
        border-bottom: 1px solid var(--gray-200);
        text-align: center;
        vertical-align: middle;
    }
    
    .comp-cell.label {
        background: var(--gray-100);
        font-weight: 600;
        text-align: left;
    }
    
    .comp-cell.link.success {
        background: rgba(76, 175, 80, 0.1);
        color: var(--success-color);
        font-weight: 600;
    }
    
    .comp-cell.other.fail {
        background: rgba(244, 67, 54, 0.1);
        color: #f44336;
        font-weight: 600;
    }
    
    /* Masquer la version mobile sur desktop */
    .comparison-item {
        display: none;
    }
}
/* ========== MASQUER/AFFICHER SELON L'ÉCRAN ========== */
@media (max-width: 767px) {
    .comparison-table {
        display: none !important;
    }
    
    .comparison-mobile {
        display: block;
    }
}

@media (min-width: 768px) {
    .comparison-mobile {
        display: none;
    }
    
    .comparison-table {
        display: table !important;
    }
}

/* ========== RESULT BOX ========== */
.comparison-result {
    margin-top: 30px;
    text-align: center;
}

.result-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}

.result-box h4 {
    font-size: var(--font-size-lg);
    margin-bottom: 15px;
    color: white;
}

.result-box p {
    margin: 0;
    opacity: 0.95;
}

/* ========== ANIMATIONS ========== */
.comparison-item {
    animation: slideInUp 0.5s ease-out;
}

.comparison-item:nth-child(1) { animation-delay: 0.1s; }
.comparison-item:nth-child(2) { animation-delay: 0.2s; }
.comparison-item:nth-child(3) { animation-delay: 0.3s; }
.comparison-item:nth-child(4) { animation-delay: 0.4s; }
.comparison-item:nth-child(5) { animation-delay: 0.5s; }
.comparison-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== FINAL CTA ========== */
.final-cta {
    margin-top: 50px;
}

.cta-impact {
    background: linear-gradient(135deg, var(--white), var(--primary-light));
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--box-shadow-lg);
    border: 3px solid var(--primary-color);
}

.urgency-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin: 30px 0;
}

.urgency-icon {
    font-size: 2rem;
}

.urgency-text .small {
    font-size: 12px;
    opacity: 0.9;
}

.btn.mega {
    font-size: 18px;
    padding: 18px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 600px) {
    .navbar-left,
    .navbar-right { flex: 0 0 60px; }   /* 60 px suffisent */
}
/* ========== RESPONSIVE MOBILE OPTIMISÉ ========== */
@media (max-width: 992px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .mega-counter {
        padding: 40px 20px;
        margin: 30px 0;
    }

    .counter-item {
        padding: 25px 15px;
    }
}

@media (max-width: 640px) {
    .counter-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
        margin: 0 auto;
    }

    .mega-counter {
        padding: 30px 15px;
        border-radius: 15px;
    }

    .counter-item {
        padding: 25px 20px;
        background: rgba(255, 255, 255, 0.2);
    }

    .counter-item:hover {
        transform: translateY(-5px) scale(1.02);
    }

    .counter-number {
        font-size: 3.5rem;
        margin-bottom: 10px;
    }

    .counter-label {
        font-size: 15px;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    .counter-detail {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    
    .sites-grid {
        grid-template-columns: 1fr;
    }
    
    .experiences-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comp-cell {
        padding: 10px;
    }
    
    .urgency-box {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


/* ========== BLOC 2 ========== */

        @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-20px); } }
        @keyframes glow { from { box-shadow: 0 0 20px #3b82f6; } to { box-shadow: 0 0 30px #60a5fa, 0 0 40px #93c5fd; } }
        @keyframes shimmer { 0% { background-position: -468px 0; } 100% { background-position: 468px 0; } }
        @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

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

        .btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-gold {
            background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
            color: #1a202c;
            padding: 12px 32px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .dark-section {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
        }

        @media (max-width: 768px) {
            .container { padding-left: 16px; padding-right: 16px; }
            .text-6xl { font-size: 2.5rem; }
            .text-5xl { font-size: 2rem; }
            .py-20 { padding-top: 3rem; padding-bottom: 3rem; }
        }

        button, .card, a[href] {
            min-height: 44px;
            min-width: 44px;
        }

        /* Menu mobile enrichi */
        .mobile-menu-section {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 16px;
            margin-bottom: 16px;
        }

        .mobile-menu-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .mobile-cta-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .mobile-cta-button {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 14px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            min-height: 52px;
        }

        .mobile-circuits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-top: 12px;
        }

        .mobile-circuit-item {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            padding: 12px;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .mobile-circuit-item:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .mobile-circuit-icon {
            font-size: 20px;
            margin-bottom: 6px;
            display: block;
        }

        .mobile-circuit-title {
            font-size: 13px;
            font-weight: 600;
            color: white;
            margin-bottom: 2px;
        }

        .mobile-circuit-subtitle {
            font-size: 10px;
            color: rgba(255, 255, 255, 0.8);
        }
    
    /* ═══════════════════════════════════════════════════════════════
       HERO ÉMOTIONNEL - CSS COMPLET
       ═══════════════════════════════════════════════════════════════ */

    .hero-emotional {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        padding: 120px 0 80px;
    }

    /* Background avec parallax */
    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

    .hero-bg-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    @media (max-width: 768px) {
        .hero-emotional {
            padding: 100px 0 60px;
            min-height: 100vh;
        }

        .hero-bg-image {
            object-position: center center;
            object-fit: cover;
        }
    }

    @keyframes slowZoom {
        from { transform: scale(1); }
        to { transform: scale(1); }
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
            135deg,
            rgba(15, 23, 42, 0.85) 0%,
            rgba(30, 41, 59, 0.75) 50%,
            rgba(15, 23, 42, 0.85) 100%
        );
        backdrop-filter: blur(2px);
    }

    /* Content container */
    .hero-content {
        text-align: center;
        animation: fadeInUp 1s ease-out;
        max-width: 900px;
        margin: 0 auto;
    }

    /* Badge d'expertise */
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(245, 158, 11, 0.15));
        border: 2px solid rgba(251, 191, 36, 0.4);
        border-radius: 9999px;
        padding: 0.75rem 1.5rem;
        margin-bottom: 2rem;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(10px);
    }

    .badge-icon {
        font-size: 1.25rem;
        animation: float 3s ease-in-out infinite;
    }

    .badge-text {
        color: #fbbf24;
        font-weight: 700;
        font-size: 0.9375rem;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }

    .badge-shine {
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: shine 3s infinite;
    }

    @keyframes shine {
        to { left: 100%; }
    }

    /* Titre émotionnel */
    .hero-title {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .title-line {
        font-family: 'Playfair Display', serif;
        font-size: clamp(2.5rem, 7vw, 5rem);
        font-weight: 700;
        color: #ffffff;
        line-height: 1.1;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        opacity: 0;
        transform: translateY(30px);
    }

    .title-line-1 {
        animation: slideUp 0.8s ease-out 0.2s forwards;
    }

    .title-line-2 {
        animation: slideUp 0.8s ease-out 0.4s forwards;
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .title-line-3 {
        animation: slideUp 0.8s ease-out 0.6s forwards;
    }

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

    /* Sous-titre storytelling */
    .hero-subtitle {
        max-width: 800px;
        margin: 0 auto 3rem;
        font-size: clamp(1.0625rem, 2vw, 1.25rem);
        line-height: 1.8;
        color: #cbd5e1;
        opacity: 0;
        animation: fadeIn 1s ease-out 0.8s forwards;
    }

    .highlight-text {
        color: #fbbf24;
        font-weight: 600;
        position: relative;
        white-space: nowrap;
    }

    @keyframes fadeIn {
        to { opacity: 1; }
    }

    /* Stats émotionnelles */
    .hero-stats {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
        opacity: 0;
        animation: fadeInUp 0.8s ease-out 1s forwards;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.875rem;
        color: #94a3b8;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .stat-divider {
        width: 1px;
        height: 40px;
        background: linear-gradient(to bottom, transparent, rgba(148, 163, 184, 0.5), transparent);
    }

    /* CTA buttons */
    .hero-cta {
        display: flex;
        gap: 1rem;
        justify-content: center;
        margin-bottom: 4rem;
        flex-wrap: wrap;
        opacity: 0;
        animation: fadeInUp 0.8s ease-out 1.2s forwards;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        padding: 1rem 2rem;
        border-radius: 9999px;
        font-weight: 700;
        font-size: 1.0625rem;
        transition: all 0.3s ease;
        text-decoration: none;
        position: relative;
        overflow: hidden;
    }

    .btn-hero-primary {
        background: linear-gradient(135deg, #f59e0b, #d97706);
        color: #1f2937;
        box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
        border: none;
        cursor: pointer;
    }

    .btn-hero-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(245, 158, 11, 0.6);
    }

    .btn-hero-primary .btn-icon {
        transition: transform 0.3s ease;
    }

    .btn-hero-primary:hover .btn-icon {
        transform: translateX(5px);
    }

    .btn-hero-secondary {
        background: linear-gradient(135deg, #10b981, #059669);
        color: #ffffff;
        box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    }

    .btn-hero-secondary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(16, 185, 129, 0.6);
    }

    /* Feature cards */
    .hero-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
        max-width: 900px;
        margin: 0 auto 4rem;
        opacity: 0;
        animation: fadeInUp 0.8s ease-out 1.4s forwards;
    }

    .feature-card {
        background: linear-gradient(135deg, rgba(51, 65, 85, 0.7), rgba(30, 41, 59, 0.8));
        border: 1px solid rgba(148, 163, 184, 0.2);
        border-radius: 1rem;
        padding: 1.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .feature-card:hover {
        transform: translateY(-5px);
        border-color: rgba(251, 191, 36, 0.5);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #fbbf24, #f59e0b);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: #1f2937;
        flex-shrink: 0;
    }

    .feature-content {
        text-align: left;
    }

    .feature-title {
        color: #f1f5f9;
        font-weight: 700;
        font-size: 1.0625rem;
        margin-bottom: 0.25rem;
    }

    .feature-desc {
        color: #94a3b8;
        font-size: 0.875rem;
        margin: 0;
    }

    /* Destinations preview slider */
    .hero-destinations-preview {
        opacity: 0;
        animation: fadeInUp 0.8s ease-out 1.6s forwards;
    }

    .preview-label {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
        color: #cbd5e1;
        font-weight: 600;
    }

    .preview-icon {
        font-size: 1.5rem;
        animation: float 3s ease-in-out infinite;
    }

    .destinations-slider {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .destination-pill {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 9999px;
        padding: 0.5rem 1rem;
        color: #f1f5f9;
        font-weight: 600;
        font-size: 0.9375rem;
        transition: all 0.3s ease;
        backdrop-filter: blur(5px);
    }

    .destination-pill img {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        object-fit: cover;
    }

    .destination-pill:hover {
        background: rgba(251, 191, 36, 0.2);
        border-color: #fbbf24;
        transform: translateY(-3px);
    }

    /* Scroll indicator */
    .scroll-indicator {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        opacity: 0;
        animation: fadeInBounce 1s ease-out 2s forwards;
    }

    .scroll-icon {
        width: 40px;
        height: 40px;
        border: 2px solid rgba(251, 191, 36, 0.5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 0.5rem;
        color: #fbbf24;
        animation: bounce 2s ease-in-out infinite;
    }

    .scroll-text {
        color: #94a3b8;
        font-size: 0.875rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    @keyframes fadeInBounce {
        to { opacity: 1; }
    }

    /* Responsive */
    @media (max-width: 768px) {
        .hero-emotional {
            padding: 100px 1rem 60px;
        }

        .hero-content {
            padding: 0;
        }

        .hero-stats {
            gap: 1rem;
            justify-content: center;
        }

        .stat-number {
            font-size: 2rem;
        }

        .stat-divider {
            display: none;
        }

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

        .feature-card {
            padding: 1rem;
        }

        .destinations-slider {
            flex-wrap: wrap;
            justify-content: center;
        }

        .hero-badge {
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
        }

        .badge-text {
            font-size: 0.75rem;
        }

        .hero-title {
            font-size: 2.25rem;
            line-height: 1.2;
        }

        .title-line {
            display: block;
        }

        .hero-subtitle {
            font-size: 1rem;
            line-height: 1.6;
            padding: 0 0.5rem;
        }

        .hero-cta {
            flex-direction: column;
            gap: 1rem;
            align-items: stretch;
        }

        .btn-hero-primary,
        .btn-hero-secondary {
            padding: 1rem 2rem;
            font-size: 1rem;
            width: 100%;
            justify-content: center;
        }
    }

    
        /* ═══════════════════════════════════════════════════════════════
           SCROLL PADDING - Éviter que le header cache les titres
           ═══════════════════════════════════════════════════════════════ */
        html {
            scroll-padding-top: 100px;
            scroll-behavior: smooth;
        }

        section, h1, h2, h3, h4, h5, h6 {
            scroll-margin-top: 100px;
        }

        #home {
            padding-top: 100px !important;
        }

        @media (max-width: 768px) {
            html {
                scroll-padding-top: 80px;
            }

            section, h1, h2, h3, h4, h5, h6 {
                scroll-margin-top: 80px;
            }

            #home {
                padding-top: 80px !important;
            }
        }

        /* ========== INDEX DE NAVIGATION FIXE ========== */
        .page-index {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            transition: all 0.3s ease;
        }

        .index-toggle {
            background: linear-gradient(135deg, var(--primary-color), #B8860B);
            color: white;
            padding: 12px 20px;
            border-radius: 30px 0 0 30px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .index-toggle:hover {
            background: linear-gradient(135deg, #B8860B, var(--primary-color));
            box-shadow: -6px 6px 20px rgba(0, 0, 0, 0.3);
            padding-right: 25px;
        }

        .index-toggle i {
            font-size: 18px;
        }

        .index-menu {
            position: absolute;
            right: 100%;
            top: 0;
            background: white;
            border-radius: 15px 0 0 15px;
            box-shadow: -4px 4px 20px rgba(0, 0, 0, 0.15);
            padding: 15px 0;
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transform: translateX(20px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .page-index:hover .index-menu {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
        }

        .index-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 20px;
            color: var(--dark-color);
            text-decoration: none;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .index-item:hover {
            background: linear-gradient(90deg, #FFF9E6 0%, white 100%);
            border-left-color: var(--primary-color);
            padding-left: 25px;
        }

        .index-item i {
            color: var(--primary-color);
            font-size: 16px;
            width: 20px;
            text-align: center;
        }

        .index-item span {
            font-weight: 500;
            font-size: 14px;
        }

        .index-item.active {
            background: linear-gradient(90deg, #FFF3CD 0%, #FFFBF0 100%);
            border-left-color: var(--secondary-color);
            font-weight: 600;
        }

        /* Responsive Index */
        @media (max-width: 768px) {
            .page-index {
                right: 10px;
            }

            .index-toggle {
                padding: 10px 15px;
                border-radius: 25px 0 0 25px;
            }

            .index-toggle span {
                display: none;
            }

            .index-menu {
                min-width: 200px;
            }

            .index-item {
                padding: 10px 15px;
                font-size: 13px;
            }
        }

        @media (max-width: 480px) {
            .page-index {
                right: 5px;
            }

            .index-toggle {
                padding: 8px 12px;
            }

            .index-menu {
                min-width: 180px;
            }
        }



/* ========== BLOC 3 ========== */

.programme-day {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.programme-day:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.programme-day-header {
    display: flex;
    align-items: center;
    padding: 25px;
    background: linear-gradient(135deg, #c41e3a 0%, #e74c3c 100%);
    color: white;
    cursor: pointer;
    position: relative;
}

.programme-day-number {
    background: rgba(255,255,255,0.2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
    border: 2px solid rgba(255,255,255,0.3);
}

.programme-day-title {
    flex: 1;
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.programme-day-summary {
    font-size: 14px;
    opacity: 0.9;
    margin-top: 5px;
    font-style: italic;
}

.programme-toggle {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.programme-day.active .programme-toggle {
    transform: rotate(180deg);
}

.programme-day-content {
    display: none;
    padding: 30px;
}

.programme-day.active .programme-day-content {
    display: block;
}

.programme-day-highlight {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-left: 4px solid #f39c12;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.programme-day-highlight i {
    color: #f39c12;
    font-size: 18px;
}

.programme-activity-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.programme-activity {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.programme-activity:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.programme-activity-icon {
    background: linear-gradient(135deg, #c41e3a 0%, #e74c3c 100%);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.programme-activity-details {
    flex: 1;
}

.programme-activity-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.programme-activity-time {
    font-size: 14px;
    color: #c41e3a;
    font-weight: 500;
    margin-bottom: 8px;
}

.programme-activity-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 10px;
}

.activity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.activity-tag {
    background: #e9ecef;
    color: #495057;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.activity-tag.included {
    background: #d4edda;
    color: #155724;
}

.activity-tag.premium {
    background: #fff3cd;
    color: #856404;
}

.activity-tag.unesco {
    background: #cce7ff;
    color: #004085;
}

.activity-tag.cultural {
    background: #f8d7da;
    color: #721c24;
}

.activity-tag.authentic {
    background: #d1ecf1;
    color: #0c5460;
}

.programme-tips,
.programme-evening,
.programme-memory {
    margin-top: 30px;
    padding: 20px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.programme-tips h4,
.programme-evening h4,
.programme-memory h4 {
    color: #c41e3a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.programme-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.programme-tips li {
    padding: 5px 0;
    color: #6c757d;
    position: relative;
    padding-left: 20px;
}

.programme-tips li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #c41e3a;
    font-weight: bold;
}

.programme-evening p,
.programme-memory p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .programme-day-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .programme-day-number {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .programme-activity {
        flex-direction: column;
        text-align: center;
    }
    
    .programme-activity-icon {
        margin: 0 auto 15px;
    }
}


/* ========== BLOC 4 ========== */

    /* Modal Devis - Design moderne et rapide */
    .modal-devis {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        z-index: 9999;
        animation: fadeIn 0.2s ease;
        overflow-y: auto;
        padding: 20px;
    }

    .modal-devis.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(30px) scale(0.95);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
        }
    }

    .modal-devis-content {
        background: white;
        border-radius: 20px;
        max-width: 600px;
        width: 100%;
        max-height: 90vh;
        overflow-y: auto;
        position: relative;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        animation: slideUp 0.3s ease;
    }

    .modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: #f3f4f6;
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.2s;
        z-index: 10;
    }

    .modal-close:hover {
        background: #e5e7eb;
        transform: rotate(90deg);
    }

    .modal-close i {
        font-size: 18px;
        color: #6b7280;
    }

    .modal-header {
        background: linear-gradient(135deg, #c19b4d 0%, #d4af37 100%);
        padding: 40px 30px 30px;
        text-align: center;
        color: white;
        border-radius: 20px 20px 0 0;
    }

    .modal-header i {
        font-size: 48px;
        margin-bottom: 15px;
        opacity: 0.95;
    }

    .modal-header h3 {
        font-size: 28px;
        font-weight: 700;
        margin: 0 0 10px;
        font-family: 'Playfair Display', serif;
    }

    .modal-header p {
        font-size: 14px;
        opacity: 0.95;
        margin: 0;
    }

    .devis-form {
        padding: 30px;
    }

    .form-divider {
        margin: 25px 0 20px;
        text-align: center;
        position: relative;
    }

    .form-divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: #e5e7eb;
    }

    .form-divider span {
        background: white;
        padding: 0 15px;
        color: #6b7280;
        font-size: 14px;
        font-weight: 600;
        position: relative;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .form-row {
        margin-bottom: 20px;
    }

    .form-row-2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
    }

    .form-group label {
        font-size: 14px;
        font-weight: 600;
        color: #374151;
        margin-bottom: 8px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .form-group label i {
        color: #c19b4d;
        font-size: 16px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        border: 2px solid #e5e7eb;
        border-radius: 10px;
        font-size: 15px;
        transition: all 0.2s;
        font-family: inherit;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #c19b4d;
        box-shadow: 0 0 0 3px rgba(193, 155, 77, 0.1);
    }

    .input-disabled {
        background: #f9fafb;
        color: #6b7280;
        cursor: not-allowed;
    }

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

    .form-actions {
        display: flex;
        gap: 15px;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #e5e7eb;
    }

    .btn-primary,
    .btn-secondary {
        flex: 1;
        padding: 14px 24px;
        border-radius: 10px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .btn-primary {
        background: linear-gradient(135deg, #c19b4d 0%, #d4af37 100%);
        color: white;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(193, 155, 77, 0.3);
    }

    .btn-secondary {
        background: #f3f4f6;
        color: #6b7280;
    }

    .btn-secondary:hover {
        background: #e5e7eb;
    }

    /* Responsive */
    @media (max-width: 640px) {
        .modal-devis {
            padding: 0;
            align-items: flex-end;
        }

        .modal-devis-content {
            max-width: 100%;
            border-radius: 20px 20px 0 0;
            max-height: 95vh;
        }

        .form-row-2 {
            grid-template-columns: 1fr;
        }

        .modal-header {
            padding: 35px 20px 25px;
        }

        .modal-header h3 {
            font-size: 24px;
        }

        .devis-form {
            padding: 20px;
        }

        .form-actions {
            flex-direction: column-reverse;
        }
    }
