
/* ===== VARIABLES (couleurs du logo) ===== */
        :root {
            --primary-green: #1e4b34;      /* vert profond du logo */
            --accent-gold: #eb9f3e;         /* orangé / or du logo */
            --soft-sand: #fcf9f0;
            --deep-forest: #0a241c;
            --warm-brown: #966f3c;
            --light-gray: #ecf0f1;
            --text-dark: #1e2a24;
            --shadow-sm: 0 10px 30px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }

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

        body {
            color: var(--text-dark);
            background-color:var(--deep-forest);
            overflow-x: hidden;
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* ===== NAVBAR (fond vert, couleurs logo) ===== */
        .navbar {
            background: var(--primary-green);  /* fond vert */
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(235, 159, 62, 0.3);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
            padding: 8px 0;
        }

        .navbar.scrolled {
            background: #0f3a28; /* vert plus foncé au scroll */
            backdrop-filter: blur(25px) saturate(200%);
            padding: 5px 0;
            box-shadow: 0 8px 32px rgba(235, 159, 62, 0.3);
        }

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

        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
            position: relative;
            padding: 8px 0;
            transition: var(--transition);
        }

        .logo-container::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-gold), white);
            transition: width 0.4s ease;
            border-radius: 2px;
        }

        .logo-container:hover::before { width: 100%; }

        .logo {
            height: 50px;
            margin-right: 12px;
            transition: var(--transition);
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
            border-radius: 8px;
        }

        .logo-container:hover .logo {
            transform: scale(1.08) rotate(3deg);
            filter: drop-shadow(0 4px 8px rgba(235, 159, 62, 0.4));
        }

        .logo-text {
            font-size: 1.7rem;
            font-weight: 800;
            color: white;
            letter-spacing: -0.5px;
            font-family: 'Playfair Display', serif;
            transition: var(--transition);
        }

        .logo-text span { color: var(--accent-gold); }

        .logo-container:hover .logo-text {
            transform: translateY(-2px);
            text-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 8px;
        }

        .nav-links a {
            text-decoration: none;
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
            padding: 12px 20px;
            border-radius: 30px;
            overflow: hidden;
            background: transparent;
            letter-spacing: 0.3px;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.2), 
                rgba(235, 159, 62, 0.2),
                transparent);
            transition: left 0.6s ease;
            z-index: -1;
        }

        .nav-links a:hover::before { left: 100%; }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent-gold), white);
            border-radius: 3px;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--accent-gold);
            transform: translateY(-2px);
            background: rgba(255, 255, 255, 0.1);
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        }

        .nav-links a:hover::after { width: 70%; }

        .active-nav {
            color: var(--primary-green) !important;
            background: white !important;
            box-shadow: 0 4px 15px rgba(255,255,255,0.4) !important;
            transform: translateY(-2px) !important;
        }

        .active-nav::after { width: 0 !important; }

        /* Menu mobile */
        .menu-toggle {
            display: none;
            position: relative;
            width: 32px;
            height: 32px;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            transition: var(--transition);
            z-index: 1001;
        }

        .menu-toggle span {
            display: block;
            height: 3px;
            width: 24px;
            background: white;
            border-radius: 3px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: absolute;
        }

        .menu-toggle span:nth-child(1) { transform: translateY(-8px); width: 20px; }
        .menu-toggle span:nth-child(2) { width: 24px; }
        .menu-toggle span:nth-child(3) { transform: translateY(8px); width: 16px; }

        .menu-toggle:hover span {
            background: var(--accent-gold);
            box-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .menu-toggle.active span { background: var(--accent-gold); }
        .menu-toggle.active span:nth-child(1) { transform: translateY(0) rotate(45deg); width: 24px; }
        .menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
        .menu-toggle.active span:nth-child(3) { transform: translateY(0) rotate(-45deg); width: 24px; }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            height: 100vh;
            min-height: 700px;
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../Follio/Img/D3.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            margin-bottom: 50px;
            overflow: hidden;
        }
        .hero-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(135deg, rgba(30,75,52,0.8), rgba(235,159,62,0.6));
            z-index: 1;
        }
        .hero-content {
            position: relative; z-index: 2; max-width: 800px; padding: 0 20px;
        }
        .hero-title {
            font-size: 3.5rem; margin-bottom: 1.5rem; font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5); animation: fadeInUp 1s ease-out;
        }
        .hero-subtitle {
            font-size: 1.3rem; margin-bottom: 2.5rem; font-weight: 300;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.5); animation: fadeInUp 1s ease-out 0.2s both;
        }
        .hero-buttons {
            display: flex; gap: 20px; justify-content: center; flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.4s both;
        }
        .btn {
            display: inline-flex; align-items: center; gap: 10px;
            padding: 12px 30px; border-radius: 50px; text-decoration: none;
            font-weight: 600; transition: var(--transition); border: none;
            cursor: pointer; font-family: 'Poppins', sans-serif; position: relative;
            overflow: hidden;
        }
        .btn::before {
            content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }
        .btn:hover::before { left: 100%; }
        .btn-hero { background: var(--accent-gold); color: var(--deep-forest); }
        .btn-hero:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(235,159,62,0.6); }
        .btn-secondary { background: transparent; border: 2px solid white; color: white; }
        .btn-secondary:hover { background: white; color: var(--primary-green); }

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

        /* ===== INDICATEUR DE PROGRESSION ===== */
        .circuit-progress {
            padding: 30px 0; background:var(--accent-gold); box-shadow: var(--shadow-sm);
            margin-top: 70px;
        }
        .progress-container {
            display: flex; justify-content: center; align-items: center; gap: 60px;
            max-width: 600px; margin: 0 auto; position: relative;
        }
        .progress-container::before {
            content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
            width: 80%; height: 2px; background: #e9ecef; z-index: 1;
        }
        .progress-step {
            display: flex; flex-direction: column; align-items: center; cursor: pointer;
            transition: var(--transition); position: relative; z-index: 2; padding: 15px;
            border-radius: 15px;
        }
        .progress-step:hover { transform: translateY(-5px); }
        .step-icon {
            width: 60px; height: 60px; background: var(--soft-sand); border-radius: 50%;
            display: flex; align-items: center; justify-content: center; margin-bottom: 10px;
            transition: var(--transition); box-shadow: var(--shadow-sm);
        }
        .progress-step.active .step-icon,
        .progress-step.visited .step-icon {
            background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
            color: white;
        }
        .step-icon i { font-size: 1.5rem; }
        .step-title { font-weight: 600; color: #666; transition: var(--transition); }
        .progress-step.active .step-title,
        .progress-step.visited .step-title { color: var(--primary-green); font-weight: 700; }

        /* ===== MAIN ===== */
        main { padding: 60px 0; }
        .circuits-container { max-width: 1000px; margin: 0 auto; }

        .circuit-card {
            background: white; border-radius: 20px; margin-bottom: 40px;
            box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--transition);
            position: relative; border: 1px solid rgba(235,159,62,0.2);
        }
        .circuit-card:hover { box-shadow: 0 20px 40px rgba(30,75,52,0.2); }

        .path-icon {
            position: absolute; top: 20px; left: 20px; width: 50px; height: 50px;
            background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
            color: white; border-radius: 50%; display: flex; align-items: center;
            justify-content: center; font-weight: bold; z-index: 2; box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        .circuit-card:hover .path-icon { transform: scale(1.1); }

        .circuit-header {
            padding: 30px; display: flex; justify-content: space-between;
            align-items: center; cursor: pointer; border-bottom: 1px solid #e9ecef;
        }
        .circuit-title h2 { font-size: 1.8rem; color: var(--primary-green); margin-bottom: 8px; }
        .circuit-title p { color: #666; margin-bottom: 15px; }
        .circuit-tags { display: flex; gap: 10px; flex-wrap: wrap; }
        .tag {
            padding: 5px 12px; background: var(--soft-sand); border-radius: 20px;
            font-size: 0.8rem; font-weight: 500; color: #666;
        }
        .tag-premium { background: var(--accent-gold); color: white; }

        .circuit-toggle { font-size: 1.5rem; color: var(--accent-gold); transition: var(--transition); }
        .circuit-card.active .circuit-toggle { transform: rotate(180deg); }

        .circuit-details { display: none; }
        .circuit-card.active .circuit-details { display: flex; flex-wrap: wrap; }

        .circuit-info {
            flex: 1; min-width: 300px; padding: 40px;
        }
        .circuit-info h3 {
            font-size: 1.5rem; margin-bottom: 20px; color: var(--primary-green);
            border-bottom: 2px solid var(--accent-gold); padding-bottom: 10px;
        }
        .circuit-description { margin-bottom: 30px; color: #555; }

        .day-section {
            margin-bottom: 30px; padding: 20px; background: var(--soft-sand);
            border-radius: 15px; border-left: 4px solid var(--accent-gold);
        }
        .day-header { display: flex; align-items: center; margin-bottom: 15px; }
        .day-number {
            width: 40px; height: 40px; background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
            color: white; border-radius: 50%; display: flex; align-items: center;
            justify-content: center; font-weight: bold; margin-right: 15px;
        }
        .day-header h4 { margin: 0; color: var(--primary-green); }
        .day-activities { list-style: none; }
        .day-activities li {
            margin-bottom: 12px; display: flex; align-items: flex-start;
            padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .day-activities li i { color: var(--accent-gold); margin-right: 12px; }

        .circuit-highlights {
            margin: 40px 0; padding: 30px; background: linear-gradient(135deg, var(--primary-green), #0f3a28);
            border-radius: 15px; color: white;
        }
        .circuit-highlights h4 { color: white; text-align: center; margin-bottom: 25px; }
        .highlights-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px;
        }
        .highlight-item {
            display: flex; flex-direction: column; align-items: center; text-align: center;
            padding: 20px; background: rgba(255,255,255,0.1); border-radius: 10px;
            transition: var(--transition);
        }
        .highlight-item:hover { background: rgba(255,255,255,0.2); transform: translateY(-5px); }
        .highlight-item i { font-size: 2rem; margin-bottom: 10px; color: var(--accent-gold); }

        .additional-info {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px;
            margin: 30px 0;
        }
        .info-card {
            padding: 25px; background: var(--soft-sand); border-radius: 15px;
            border-left: 4px solid var(--primary-green);
        }
        .info-card h5 { color: var(--primary-green); margin-bottom: 10px; }

        .circuit-actions {
            display: flex; gap: 15px; flex-wrap: wrap; margin-top: 30px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
            color: white; box-shadow: 0 4px 15px rgba(30,75,52,0.3);
        }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(235,159,62,0.4); }
        .btn-outline {
            background: transparent; color: var(--primary-green); border: 2px solid var(--primary-green);
        }
        .btn-outline:hover { background: var(--primary-green); color: white; }

        /* Galerie */
        .circuit-gallery {
            flex: 1; min-width: 300px; position: relative; overflow: hidden;
            height: 500px; border-radius: 0 0 20px 0;
        }
        .slides-container { position: relative; height: 100%; }
        .slide {
            position: absolute; top: 0; left: 0; width: 100%; height: 100%;
            background-size: cover; background-position: center; opacity: 0;
            transition: opacity 0.5s; display: flex; align-items: flex-end;
        }
        .slide.active { opacity: 1; }
        .slide-caption {
            background: linear-gradient(transparent, rgba(30,75,52,0.8)); color: white;
            padding: 20px; width: 100%; text-align: center;
        }
        .carousel-controls {
            position: absolute; top: 50%; width: 100%; display: flex;
            justify-content: space-between; transform: translateY(-50%); padding: 0 20px;
        }
        .carousel-btn {
            background: rgba(255,255,255,0.9); border: none; width: 45px; height: 45px;
            border-radius: 50%; display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: var(--transition); color: var(--primary-green);
        }
        .carousel-btn:hover { background: var(--accent-gold); color: white; transform: scale(1.1); }
        .carousel-dots {
            position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%);
            display: flex; gap: 10px;
        }
        .dot {
            width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.5);
            cursor: pointer; transition: var(--transition);
        }
        .dot.active { background: var(--accent-gold); transform: scale(1.2); }

        /* Témoignages */
        .testimonials-section { padding: 80px 0; background: var(--soft-sand); }
        .section-title {
            text-align: center; font-size: 2.5rem; margin-bottom: 50px;
            color: var(--primary-green); position: relative;
        }
        .section-title::after {
            content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
            width: 80px; height: 3px; background: var(--accent-gold);
        }
        .testimonials-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px;
        }
        .testimonial-card {
            background: white; padding: 30px; border-radius: 15px; box-shadow: var(--shadow-sm);
            transition: var(--transition); position: relative;
        }
        .testimonial-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
        .testimonial-card::before {
            content: '"'; position: absolute; top: 20px; left: 20px; font-size: 4rem;
            color: var(--accent-gold); opacity: 0.2; font-family: serif;
        }
        .testimonial-content { margin-bottom: 25px; position: relative; z-index: 1; }
        .testimonial-author {
            display: flex; align-items: center; gap: 15px;
        }
        .author-avatar {
            width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary-green), var(--accent-gold));
            border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white;
        }
        .author-info h4 { margin: 0 0 5px 0; color: var(--primary-green); }
        .author-info span { color: #888; font-size: 0.9rem; }

        /* CTA */
        .cta-section {
            background: var(--deep-forest); color: white; padding: 100px 0;
            position: relative; overflow: hidden;
        }
        .cta-content { text-align: center; max-width: 800px; margin: 0 auto; }
        .cta-section h2 { font-size: 2.5rem; margin-bottom: 20px; color: white; }
        .cta-section p { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.9; }
        .cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

        /* FOOTER (avec icônes sociales) */
        footer {
            background: var(--deep-forest); color: #ddd; padding: 60px 0 20px;
            position: relative;
        }
        footer::before {
            content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 5px;
            background: linear-gradient(90deg, var(--accent-gold), var(--primary-green), var(--accent-gold));
        }
        .footer-content {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px; margin-bottom: 40px;
        }
        .footer-column h3 {
            font-size: 1.3rem; margin-bottom: 20px; position: relative; padding-bottom: 10px;
            color: var(--accent-gold); font-family: 'Playfair Display', serif;
        }
        .footer-column h3::after {
            content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px;
            background: linear-gradient(90deg, var(--accent-gold), var(--primary-green));
        }
        .footer-description { margin-bottom: 20px; opacity: 0.8; }
        .footer-column ul { list-style: none; }
        .footer-column ul li { margin-bottom: 12px; }
        .footer-column ul li a {
            color: #ddd; text-decoration: none; transition: var(--transition);
            display: flex; align-items: center;
        }
        .footer-column ul li a:hover {
            color: var(--accent-gold); transform: translateX(8px);
        }
        .footer-column ul li a i { margin-right: 12px; color: var(--accent-gold); }

        .social-icons { display: flex; gap: 20px; margin: 20px 0; }
        .social-icon {
            display: inline-flex; align-items: center; justify-content: center;
            width: 45px; height: 45px; background: rgba(255,255,255,0.05);
            border-radius: 50%; transition: var(--transition); color: white;
            font-size: 1.5rem; border: 1px solid rgba(235,159,62,0.3);
            text-decoration: none;
        }
        .social-icon:hover {
            background: var(--accent-gold); transform: translateY(-6px) rotate(8deg);
            border-color: transparent; box-shadow: 0 10px 20px rgba(235,159,62,0.4);
        }
        .social-icon:hover i { color: var(--deep-forest); }

        .newsletter { margin-top: 20px; }
        .newsletter h4 { margin-bottom: 10px; color: white; }
        .newsletter p { opacity: 0.8; font-size: 0.9rem; margin-bottom: 15px; }
        .newsletter-form {
            display: flex; background: rgba(255,255,255,0.1); border-radius: 50px;
            overflow: hidden;
        }
        .newsletter-form input {
            flex: 1; padding: 12px 20px; background: transparent; border: none;
            color: white; outline: none;
        }
        .newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
        .newsletter-form button {
            padding: 12px 20px; background: var(--accent-gold); border: none;
            color: white; cursor: pointer; transition: var(--transition);
        }
        .newsletter-form button:hover { background: #d1802a; }

        .copyright {
            text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa; font-size: 0.9rem;
        }
        .copyright i { color: var(--accent-gold); }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-toggle { display: flex; }
            .nav-links {
                position: fixed; top: 70px; left: 0; width: 100%;
                background: var(--primary-green); backdrop-filter: blur(20px);
                flex-direction: column; align-items: center; padding: 20px 0;
                transform: translateY(-150%); opacity: 0; transition: var(--transition);
                border-top: 1px solid rgba(235,159,62,0.3);
            }
            .nav-links.active { transform: translateY(0); opacity: 1; }
            .nav-links a { display: block; width: 80%; text-align: center; margin: 8px 0; }
            .progress-container { flex-direction: column; gap: 30px; }
            .progress-container::before { display: none; }
            .circuit-header { flex-direction: column; align-items: flex-start; gap: 15px; }
            .circuit-gallery { height: 350px; }
            .cta-buttons { flex-direction: column; align-items: center; }
        }