:root {
            --primary-color: #872331;
            --primary-dark: #6a1c27;
            --secondary-color: #e9e2d0;
            --text-light: #ffffff;
            --text-dark: #2b2b2b;
            --accent-color: #d4a853;
            --accent-light: #e6c983;
            --bg-light: #f9f7f3;
            --bg-dark: #1a1a1a;
            --border-radius: 4px;
            --transition: all 0.3s ease;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
        }

        section {
            padding: 80px 0;
        }

        /* Header & Navigation */
        .navbar {
            padding: 15px 0;
            transition: var(--transition);
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-color);
        }

        .nav-link {
            font-weight: 500;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0 10px;
            position: relative;
            color: var(--text-dark);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary-color);
            transition: var(--transition);
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-color);
        }

        .language-selector {
            border-left: 1px solid rgba(0, 0, 0, 0.1);
            padding-left: 15px;
            margin-left: 15px;
        }

        .language-selector .btn {
            padding: 0.4rem 1rem;
            display: flex;
            align-items: center;
            font-size: 14px;
            font-weight: 500;
        }

        .language-selector img {
            margin-right: 5px;
            width: 20px;
            height: 15px;
            object-fit: cover;
            border-radius: 2px;
        }

        .dropdown-menu {
            min-width: 8rem;
            border-radius: var(--border-radius);
            padding: 0.5rem 0;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            border: none;
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            padding: 0.6rem 1rem;
            font-size: 14px;
        }

        .dropdown-item img {
            margin-right: 8px;
            width: 20px;
            height: 15px;
            object-fit: cover;
            border-radius: 2px;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 90vh;
            min-height: 600px;
            background-image: url('w_lever-soleil-dune-pilat-pyla-tempete-miguel-177.webp');
            background-size: cover;
            background-position: center;
            background-attachment: scroll;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-light);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 850px;
            padding: 0 20px;
        }

        .hero-subtitle {
            font-size: 18px;
            margin-bottom: 20px;
            letter-spacing: 3px;
            text-transform: uppercase;
            opacity: 0.9;
        }

        .hero-title {
            font-size: 56px;
            margin-bottom: 30px;
            line-height: 1.2;
            font-weight: 700;
        }

        .btn-primary {
            background-color: var(--accent-color);
            color: var(--text-dark);
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-size: 14px;
            transition: var(--transition);
        }

        .btn-primary:hover {
            background-color: var(--primary-color);
            color: var(--text-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        /* Section Styling */
        .section-title {
            font-size: 42px;
            margin-bottom: 20px;
            color: var(--primary-color);
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

        .section-description {
            max-width: 800px;
            margin: 0 auto 40px;
            font-size: 17px;
            text-align: justify;
            color: #666;
            line-height: 1.8;
        }

        /* About Section */
        .about {
            background-color: var(--bg-light);
            position: relative;
            overflow: hidden;
        }

        .about-image {
            border-radius: 8px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }

        .about-image img {
            transition: transform 0.5s ease;
        }

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

        .tagline {
            font-style: italic;
            margin: 20px 0;
            text-align: center;
            font-size: 28px;
            color: var(--primary-color);
            font-family: 'Playfair Display', serif;
            position: relative;
            padding: 20px 0;
        }

        .tagline::before,
        .tagline::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background-color: var(--accent-color);
            top: 50%;
        }

        .tagline::before {
            left: 10%;
        }

        .tagline::after {
            right: 10%;
        }

        /* Features */
        .features {
            background-color: var(--bg-light);
            padding: 80px 0;
        }

        .feature-card {
            background-color: #fff;
            border-radius: 8px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            height: 100%;
        }

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

        .feature-icon {
            font-size: 60px;
            color: var(--accent-color);
            margin-bottom: 25px;
        }

        .feature-title {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        /* Testimonials */
        .testimonials {
            background-color: #fff;
            padding: 80px 0;
        }

        .testimonial-card {
            background-color: #fff;
            border-radius: 8px;
            padding: 30px;
            margin: 20px 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .testimonial-quote {
            color: var(--accent-color);
            font-size: 24px;
            margin-bottom: 15px;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 18px;
            margin-bottom: 5px;
        }

        .author-info span {
            color: #777;
            font-size: 14px;
        }

        /* Experiences Section */
        .experiences {
            padding: 20px 0;
            background-color: #fff;
        }

        .experience-card {
            border: none;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            height: 100%;
        }

        .experience-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

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

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

        .card-body {
            padding: 30px;
        }

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

        .experience-highlights {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }

        .experience-highlights li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-left: 25px;
        }

        .experience-highlights li:before {
            content: "\f005";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--accent-color);
            position: absolute;
            left: 0;
            top: 8px;
        }

        .experience-highlights li:last-child {
            border-bottom: none;
        }

        .tour-note {
            color: #666;
            font-style: italic;
            margin-top: 10px;
            padding: 8px 0;
            border-top: 1px solid #eee;
        }

        .price-tag {
            background-color: var(--primary-color);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 18px;
            display: inline-block;
            margin-bottom: 15px;
        }

        /* Newsletter */
        .newsletter {
            background-color: var(--primary-color);
            padding: 60px 0;
            position: relative;
        }

        .newsletter-content {
            color: var(--text-light);
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .newsletter h2 {
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .input-group {
            max-width: 500px;
            margin: 0 auto;
        }

        .form-control {
            padding: 15px 20px;
            border-radius: 25px 0 0 25px;
            border: none;
            font-size: 16px;
        }

        .input-group .btn {
            border-radius: 0 25px 25px 0;
            padding: 15px 30px;
            background-color: var(--accent-color);
            color: var(--text-dark);
            border: none;
            font-weight: 600;
        }

        /* Footer */
        .footer {
            background-color: var(--bg-dark);
            color: var(--text-light);
            padding: 60px 0 30px;
        }

        .footer-brand {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 20px;
        }

        .footer-heading {
            color: var(--accent-color);
            font-size: 20px;
            margin-bottom: 30px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
            display: block;
            font-size: 15px;
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

        .footer-contact-info {
            list-style: none;
            padding: 0;
        }

        .footer-contact-info li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .footer-contact-info i {
            margin-right: 15px;
            color: var(--accent-color);
            font-size: 18px;
        }

        .social-links {
            margin-top: 30px;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: var(--text-light);
            margin-right: 10px;
            transition: var(--transition);
        }

        .social-links a:hover {
            background-color: var(--accent-color);
            color: var(--text-dark);
            transform: translateY(-5px);
        }

        .footer-bottom {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        /* Responsive Styles */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 42px;
            }

            .section-title {
                font-size: 36px;
            }

            .tagline::before,
            .tagline::after {
                width: 60px;
            }

            .tagline::before {
                left: 10%;
            }

            .tagline::after {
                right: 10%;
            }

            .navbar-collapse {
                background-color: white;
                padding: 20px;
                border-radius: 8px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

            .language-selector {
                border-left: none;
                padding-left: 0;
                margin-left: 10px;
                margin-top: 15px;
            }
        }

        @media (max-width: 767px) {
            .hero-title {
                font-size: 36px;
            }

            .section-title {
                font-size: 30px;
            }

            .tagline {
                font-size: 22px;
            }

            .tagline::before,
            .tagline::after {
                display: none;
            }

            .btn-outline {
                margin-left: 0;
                margin-top: 15px;
            }

            .hero-content {
                padding: 0 15px;
            }
        }


/* Info Section */
.info {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.info-box {
    background-color: #fff;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: var(--transition);
}

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

.info-box h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.info-box h3 i {
    margin-right: 15px;
    color: var(--accent-color);
    font-size: 28px;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    line-height: 1.6;
}

.info-box ul li:before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent-color);
    position: absolute;
    left: 0;
    top: 12px;
}

.info-box ul li:last-child {
    border-bottom: none;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1);
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    line-height: 60px;
}

/* Responsive WhatsApp Button */
@media (max-width: 767px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
    
    .whatsapp-float i {
        line-height: 55px;
    }
}

/* ========================================
   TOUR PRODUCT PAGES
   ======================================== */

/* Hero Section for Product Pages */
.tour-hero {
            position: relative;
            height: 50vh;
            min-height: 500px;
            background-image: url('w_tour-arcachon-bay961d3e.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: scroll;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-light);
}

.tour-hero .hero-content {
    z-index: 2;
    position: relative;
}

/* Timeline Verticale */
.timeline {
    position: relative;
    padding: 20px 0;
    list-style: none;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 40px;
    width: 2px;
    background: var(--secondary-color);
    margin-left: -1.5px;
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 80px;
}

.timeline-time {
    position: absolute;
    left: 0;
    top: 0;
    width: 80px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
    text-align: center;
    background: white;
    z-index: 2;
    padding-right: 15px;
}

.timeline-marker {
    position: absolute;
    left: 40px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--secondary-color);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 20px;
}

.timeline-content p {
    color: #666;
    line-height: 1.8;
}

.timeline-content ul {
    list-style-type: circle;
    padding-left: 20px;
    margin-top: 10px;
}

.timeline-content ul li {
    color: #666;
    margin-bottom: 8px;
}

/* Sidebar de réservation */
.booking-sidebar {
    position: sticky;
    top: 100px;
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--accent-color);
}

.booking-sidebar .price-tag {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: var(--border-radius);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.meta-details {
    margin-top: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

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

.meta-item i {
    font-size: 20px;
    color: var(--accent-color);
    width: 30px;
    margin-right: 10px;
    flex-shrink: 0;
}

.meta-item div {
    flex: 1;
}

.meta-item span {
    font-size: 15px;
    color: #666;
    display: block;
}

.meta-item strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: 600;
}

/* Responsive Tour Pages */
@media (max-width: 992px) {
    .booking-sidebar {
        position: relative;
        top: 0;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .tour-hero {
        height: 50vh;
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-time {
        position: relative;
        text-align: left;
        margin-bottom: 10px;
        width: auto;
        padding-right: 0;
    }
    
    .booking-sidebar {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .tour-hero {
        height: 40vh;
        min-height: 350px;
    }
    
    .tour-hero .hero-title {
        font-size: 32px !important;
    }
}

/* ============================================
   CGV PAGE STYLES
   ============================================ */

.cgv-section {
    padding: 140px 0 80px;
    background: #ffffff;
}

.cgv-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
}

.cgv-container h1 {
    color: var(--primary-color);
    font-family: var(--font-primary);
    margin-bottom: 20px;
}

.cgv-container h2 {
    color: var(--secondary-color);
    font-family: var(--font-primary);
    font-size: 28px;
    margin-bottom: 30px;
}

.cgv-container h3 {
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 600;
}

.cgv-container h4 {
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 500;
}

.cgv-container h5 {
    color: var(--text-color);
    margin-top: 20px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

.cgv-container p {
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--text-color);
}

.cgv-container ul,
.cgv-container ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.cgv-container li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.cgv-container .alert {
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid;
    border-radius: 4px;
}

.cgv-container .alert-info {
    background-color: #d1ecf1;
    border-left-color: #0c5460;
    color: #0c5460;
}

.cgv-container .alert-warning {
    background-color: #fff3cd;
    border-left-color: #856404;
    color: #856404;
}

.cgv-container .alert-secondary {
    background-color: #f8f9fa;
    border-left-color: var(--accent-color);
    color: var(--text-color);
}

.cgv-container hr {
    border: 0;
    border-top: 2px solid #e9ecef;
    margin: 40px 0;
}

.cgv-container strong {
    font-weight: 600;
    color: var(--secondary-color);
}

.cgv-container a {
    color: var(--primary-color);
    text-decoration: none;
}

.cgv-container a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Responsive CGV */
@media (max-width: 768px) {
    .cgv-section {
        padding: 120px 15px 60px;
    }
    
    .cgv-container {
        padding: 0 15px;
    }
    
    .cgv-container h1 {
        font-size: 28px;
    }
    
    .cgv-container h2 {
        font-size: 22px;
    }
    
    .cgv-container h3 {
        font-size: 1.3rem;
    }
    
    .cgv-container h4 {
        font-size: 1.1rem;
    }
}


/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-section {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f9f7f3 0%, #ffffff 100%);
    min-height: 100vh;
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
}

.contact-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #555;
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    border: none;
    border-radius: 4px;
    background-color: #f5f5f5;
    color: var(--text-dark);
    transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    outline: none;
    background-color: #eee;
    box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.2);
}

.contact-form .form-control::placeholder {
    color: #999;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.contact-form .btn-primary {
    padding: 15px 50px;
    font-size: 15px;
    letter-spacing: 1px;
}

.contact-form .alert {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form .alert-success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.contact-form .alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Responsive Contact */
@media (max-width: 768px) {
    .contact-section {
        padding: 120px 15px 60px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-title {
        font-size: 28px;
    }
    
    .contact-form .form-control,
    .contact-form .form-select {
        padding: 12px 15px;
    }
}