:root {
    /* Couleurs d'Accent (Logo) */
    --c-accent-red: #C0392B;    /* Rouge Intense : Actions critiques */
    --c-accent-orange: #E67E22; /* Orange Sanguine : CTAs principaux */
    --c-accent-yellow: #F1C40F; /* Jaune Désert : Accents et icônes */
    
    /* Couleurs de Fond */
    --c-dark-bg: #0f1011;       /* Fond Sombre Profond */
    --c-light-bg: #FDF5E6;      /* Fond Crème/Sable Clair */
    
    /* Couleurs de Texte */
    --c-text-primary: #F1F1F1;  /* Blanc Cassé */
    --c-text-secondary: #95A5A6;/* Gris Moyen */
    
    --font-primary: 'Cinzel', serif;
    --font-secondary: 'Inter', sans-serif;
    
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--c-dark-bg);
    color: var(--c-text-primary);
    font-family: var(--font-secondary);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-titles);
    font-style: italic;
    font-weight: 400;
}

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

ul {
    list-style: none;
}

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

/* Layout Utilities */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-padding {
    padding: 120px 0;
}

.dest-pin {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e8a66d, #d9772b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    box-shadow: 0 10px 20px rgba(217, 119, 43, 0.3);
    border: 3px solid #fff;
    z-index: 10;
    transition: transform 0.3s ease;
}

.sahara-word {
    color: var(--c-orange);
}

.accent-rouge {
    color: var(--c-accent-red);
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 36px;
    font-family: var(--font-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--c-accent-orange);
    color: white;
}

.btn-primary:hover {
    background-color: var(--c-accent-red);
    transform: translateY(-3px);
}

.btn-ghost {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
}

.btn-ghost:hover {
    background: white;
    color: var(--nuit);
}

/* Effects */
.noise-overlay {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.08;
    filter: url(#noiseFilter);
    animation: noise-move 0.2s steps(2) infinite;
}

@keyframes noise-move {
    0% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -5%); }
    20% { transform: translate(-10%, 5%); }
    30% { transform: translate(5%, -10%); }
    40% { transform: translate(-5%, 15%); }
    50% { transform: translate(-10%, 5%); }
    60% { transform: translate(15%, 0); }
    70% { transform: translate(0, 10%); }
    80% { transform: translate(-15%, 0); }
    90% { transform: translate(10%, 5%); }
    100% { transform: translate(5%, 0); }
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img, .hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(28,26,22,0.4) 0%, rgba(28,26,22,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1000px;
}

.hero-badge {
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
    display: block;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1.1;
    margin-bottom: 32px;
}

.hero-subtitle {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 48px;
    opacity: 0.8;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* ── HEADER / NAVBAR ── */
.defi-header {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

/* Classe ajoutée via JS au scroll */
.defi-header.is-scrolled {
    padding: 1rem 0;
    background: rgba(15, 16, 17, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; }

/* Logo Styling */
.defi-logo-wrapper img, 
.custom-logo-link img {
    height: 260px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 15px rgba(0,0,0,0.08));
    transition: var(--transition-smooth);
}

.is-scrolled .defi-logo-wrapper img,
.is-scrolled .custom-logo-link img {
    height: 110px;
}

.logo-text-stacked {
    display: flex;
    flex-direction: column;
}

.logo-title { 
    font-family: var(--font-primary); 
    font-size: 1.1rem; 
    font-weight: 700; 
    line-height: 1; 
    text-transform: uppercase; 
    letter-spacing: 2px;
}

.logo-subtitle { 
    font-family: var(--font-secondary); 
    font-size: 0.55rem; 
    letter-spacing: 3px; 
    color: rgba(255,255,255,0.5); 
    margin-top: 4px; 
    text-transform: uppercase;
}

.is-scrolled .logo-img {
    height: 40px;
}

/* Navigation */
.defi-nav .nav-list { display: flex; align-items: center; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
.nav-sep { font-size: 10px; color: rgba(255,255,255,0.2); }
.nav-link { 
    color: rgba(255,255,255,0.8); text-decoration: none; 
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px;
    transition: color 0.3s; display: flex; align-items: center; gap: 5px;
}
.nav-link:hover { color: #fff; }

/* Dropdown simple */
.has-dropdown { position: relative; }
.dropdown-menu {
    position: absolute; top: 100%; left: 0; background: #1a1a1a;
    list-style: none; padding: 1rem 0; min-width: 220px;
    opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
    display: block; padding: 0.8rem 1.5rem; color: rgba(255,255,255,0.7);
    text-decoration: none; font-size: 0.85rem; transition: background 0.3s, color 0.3s;
}
.dropdown-menu a:hover { background: rgba(255,255,255,0.05); color: #fff; }

/* Bouton Inscription */
.btn-defi-outline {
    display: inline-block; padding: 0.8rem 2rem;
    border: 1px solid rgba(255,255,255,0.3); color: #fff; text-decoration: none;
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px;
    transition: all 0.3s;
}
.btn-defi-outline:hover { background: #fff; color: var(--c-dark-bg); }

/* Mobile Menu Button */
.mobile-menu-btn { 
    display: none; 
    background: none; 
    border: none; 
    cursor: pointer; 
    flex-direction: column; 
    gap: 6px;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span { 
    display: block; 
    width: 28px; 
    height: 2px; 
    background: #fff; 
    transition: var(--transition-smooth);
}

/* ── HERO SECTION ── */
.defi-hero {
    height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center;
    overflow: hidden;
}

.defi-hero__bg { position: absolute; inset: 0; z-index: 1; }
.defi-hero__bg img { width: 100%; height: 115%; object-fit: cover; top: -5%; position: relative; opacity: 0.6;}

.defi-hero__overlay {
    position: absolute; inset: 0; z-index: 2;
    background: radial-gradient(circle at center, transparent 0%, rgba(15,16,17,0.8) 100%);
}

.defi-hero__content { position: relative; z-index: 3; max-width: 1000px; padding-top: 2rem;}

.defi-hero .eyebrow {
    font-family: var(--font-secondary); font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 6px; color: rgba(255,255,255,0.6); display: block; margin-bottom: 2rem;
}

.hero-title {
    font-family: var(--font-primary); font-size: clamp(3.5rem, 6vw, 6.5rem);
    line-height: 1.1; margin: 0 0 2rem 0; font-weight: 400; text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Bouton Bordure Dorée (Mockup) */
.btn-defi-solid {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--c-accent-yellow);
    color: var(--c-accent-yellow);
    padding: 16px 40px;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-defi-solid:hover {
    background: var(--c-accent-yellow);
    color: var(--c-dark-bg);
    transform: translateY(-5px);
}

/* Sparkle Icon Hero */
.hero-sparkle {
    position: absolute;
    bottom: 5vh;
    right: 5vw;
    z-index: 5;
    opacity: 0.8;
}

/* Le mot Sahara en Orange Sanguine (Style de votre image) */
.highlight-text {
    color: var(--c-accent-orange);
    font-style: italic; /* Donne du dynamisme */
    font-weight: 600;
}

.hero-desc {
    font-size: 1.1rem; line-height: 1.8; color: rgba(255,255,255,0.7);
    max-width: 600px; margin: 0 auto; font-weight: 300;
}

/* Mobile Overlay Menu */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--c-dark-bg);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.mobile-nav-list {
    list-style: none;
    text-align: center;
    padding: 0;
}

.mobile-nav-list li {
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.mobile-overlay.is-active .mobile-nav-list li {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-list a {
    font-family: var(--font-primary);
    font-size: 32px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    letter-spacing: 4px;
}

/* Stats Bar */
.stats-bar {
    background: var(--c-dark-bg);
    border-top: 2px solid var(--c-accent-red);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    font-size: 32px;
}

.stat-number {
    font-family: var(--font-titles);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}

.stat-content p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 600px;
}

.service-card {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 60px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.service-card:hover {
    flex: 1.5;
}

.service-card:hover .service-overlay {
    background: rgba(28,26,22,0.7);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28,26,22,0.4);
    transition: var(--transition-smooth);
}

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

.service-tag {
    display: block;
    font-family: var(--font-secondary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--c-accent-orange);
    margin-bottom: 10px;
}

.service-card h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--c-text-primary);
}

.service-content p {
    color: var(--c-text-secondary);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.6;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
}

.badge-float {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--c-accent-red);
    padding: 30px;
    font-family: var(--font-primary);
    font-size: 24px;
    font-style: italic;
    color: white;
}

.eyebrow {
    display: block;
    font-family: var(--font-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
    color: var(--c-accent-yellow);
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 56px;
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.feature-item h5 {
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    opacity: 0.7;
}

/* Camp Cross Section */
.camp-cross {
    background: #12110e;
}

.camp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.camp-list {
    margin: 30px 0;
}

.camp-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.camp-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--or);
}

.camp-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Countdown Section */
.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 60px 0;
}

.timer-item span {
    font-family: var(--font-titles);
    font-size: 72px;
    font-style: italic;
}

.timer-item p {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    opacity: 0.6;
}

/* Final CTA */
.final-cta {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(192, 57, 43, 0.6);
}

.final-cta h2 {
    font-size: 64px;
    margin-bottom: 40px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

/* Footer */
.site-footer {
    padding: 100px 0 40px;
    background: var(--c-dark-bg);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--c-accent-yellow);
}

.footer-col ul li {
    margin-bottom: 12px;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.footer-col ul li:hover {
    opacity: 1;
    color: var(--or);
}

.footer-bottom {
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 12px;
    opacity: 0.5;
}

/* Page Heroes */
.hero-small {
    height: 60vh;
}

.hero-small h1 {
    font-size: 72px;
}

/* 404 Page */
.hero-404 {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Inscription Form */
.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    background: #12110e;
    padding: 60px;
    border: 1px solid rgba(255,255,255,0.05);
}

.placeholder-form {
    padding: 100px;
    border: 2px dashed rgba(255,255,255,0.1);
    text-align: center;
    opacity: 0.5;
}

/* ── Utilitaires texte ── */
.text-center { text-align: center; }

.btn-text-link {
    font-family: var(--font-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--c-accent-yellow);
    margin-top: 15px;
    display: inline-block;
    transition: var(--transition-smooth);
}
.btn-text-link:hover { color: #fff; transform: translateX(5px); }

/* ── Location Section ── */
.location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.location-card {
    border: 1px solid rgba(255,255,255,0.06);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.location-card:hover { transform: translateY(-8px); border-color: var(--c-accent-yellow); }

.location-card-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.location-card-body {
    padding: 30px;
}

.location-card-body h4 {
    font-family: var(--font-primary);
    font-size: 24px;
    margin-bottom: 12px;
}

.location-card-body p {
    color: var(--c-text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.location-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.location-specs span {
    border: 1px solid rgba(255,255,255,0.15);
    padding: 5px 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--c-text-secondary);
}

/* ── Programme Timeline ── */
.programme-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    padding-left: 80px;
    margin-bottom: 80px;
}

.programme-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--c-accent-orange), var(--c-accent-yellow));
}

.prog-day {
    display: flex;
    gap: 40px;
    position: relative;
    padding-bottom: 50px;
}

.prog-day-num {
    position: absolute;
    left: -72px;
    width: 44px;
    height: 44px;
    background: var(--c-accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.prog-day-content {
    border-left: 1px solid rgba(255,255,255,0.06);
    padding-left: 40px;
    padding-bottom: 30px;
}

.prog-day-badge {
    font-family: var(--font-secondary);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--c-accent-yellow);
    display: block;
    margin-bottom: 8px;
}

.prog-day-content h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.prog-day-content ul {
    list-style: none;
    padding: 0;
}

.prog-day-content ul li {
    color: var(--c-text-secondary);
    font-size: 14px;
    padding: 5px 0 5px 20px;
    position: relative;
    line-height: 1.6;
}

.prog-day-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--c-accent-orange);
}

/* ── Destinations Grid ── */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dest-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.dest-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.dest-card:hover img { transform: scale(1.08); }

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px 20px;
    background: linear-gradient(transparent, rgba(15,16,17,0.92));
}

.dest-overlay h4 {
    font-family: var(--font-primary);
    font-size: 22px;
    margin-bottom: 4px;
}

.dest-overlay p {
    font-size: 12px;
    color: var(--c-accent-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ── Camp Badge ── */
.camp-image {
    position: relative;
}

.camp-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.camp-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--c-accent-yellow);
    color: var(--c-dark-bg);
    padding: 15px 25px;
    display: flex;
    gap: 10px;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ── Témoignages ── */
.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.temoignage-card {
    background: #12110e;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: var(--transition-smooth);
}

.temoignage-card:hover { border-color: var(--c-accent-yellow); }

.temoignage-quote {
    font-family: var(--font-primary);
    font-size: 96px;
    color: var(--c-accent-yellow);
    opacity: 0.08;
    line-height: 1;
    position: absolute;
    top: 10px;
    left: 20px;
}

.temoignage-card p {
    font-style: italic;
    color: var(--c-text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.temoignage-author strong {
    display: block;
    font-family: var(--font-secondary);
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

.temoignage-author span {
    font-size: 12px;
    color: var(--c-accent-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ── CTA Final ── */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 16, 17, 0.75);
    z-index: 2;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 16px 32px;
    font-family: var(--font-secondary);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-whatsapp:hover { background: #1da851; transform: translateY(-3px); }

/* ── Feature icon ── */
.feature-icon { font-size: 28px; margin-bottom: 10px; }

/* ── Section header ── */
.section-header { margin-bottom: 60px; }

.btn-text {
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--rouge-Circuits);
    margin-top: 10px;
    display: inline-block;
}

.btn-text:hover {
    color: white;
    transform: translateX(5px);
}

.large-text {
    font-size: 24px;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-list { gap: 1.5rem; }
    .nav-link { font-size: 0.75rem; }
}

@media (max-width: 1024px) {
    .defi-nav, .header-actions { display: none; }
    .mobile-menu-btn { display: flex; }
    
    .form-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .service-card {
        height: 400px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .countdown-timer {
        gap: 20px;
    }
    
    .timer-item span {
        font-size: 48px;
    }
    
    .cta-btns {
        flex-direction: column;
    }
}

/* ════════════════════════════════════════
   FOOTER (Arrière-plan sombre topo)
════════════════════════════════════════ */

.site-footer {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: rgba(255, 255, 255, 0.7); /* Texte gris clair par défaut */
    font-family: var(--font-body, 'Inter', sans-serif);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

/* L'overlay sombre pour assurer le contraste */
.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 16, 17, 0.8) 0%, rgba(15, 16, 17, 0.95) 100%);
    z-index: 1;
}

/* On place le contenu au-dessus de l'overlay */
.footer-content-wrapper {
    position: relative;
    z-index: 2;
}

/* ── LA GRILLE DES COLONNES ── */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding: 3.5rem 5vw 2.5rem 5vw; /* Réduit pour un aspect plus compact */
    max-width: 1400px;
    margin: 0 auto;
}

/* ── TYPOGRAPHIE ET COULEURS ── */
.footer-col h4 {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    color: #fff;
    font-size: 1.05rem; /* Un peu plus petit */
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.2rem; /* Espace réduit */
    font-weight: 500;
}

.footer-col p {
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.88rem; /* Un peu plus petit */
}

.footer-logo {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 1.25rem; /* Un peu plus petit */
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

/* ── LISTES ET LIENS ── */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.7rem; /* Espace réduit */
    font-size: 0.88rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #d9772b; 
}

/* Pour la colonne contact */
.contact-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #d9772b;
    margin-bottom: 0.1rem;
}

/* ── RÉSEAUX SOCIAUX ── */
.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px; /* Réduit */
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-family: var(--font-heading, sans-serif);
    font-size: 0.75rem;
    text-transform: uppercase;
}

.social-links a:hover {
    background: #d9772b;
    border-color: #d9772b;
    color: #fff;
}

/* ── BAS DU FOOTER (Copyright) ── */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 5vw; /* Réduit */
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #fff;
}

/* ── RESPONSIVE MOBILE ── */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* Passe sur 2 colonnes sur tablette */
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Passe sur 1 colonne sur mobile */
        padding: 4rem 5vw 2rem 5vw;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ════════════════════════════════════════
   NAVBAR MINIMALISTE & MENU PANEL
════════════════════════════════════════ */

.navbar-minimal {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2.5rem 4vw; /* Espace luxueux au top */
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-minimal.is-scrolled {
    padding: 1.2rem 4vw;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

/* ── ÉQUILIBRE DES ZONES ── */
.nav-left, .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: flex-start;
    gap: 3rem;
}

.nav-center {
    display: flex;
    justify-content: center;
    flex: 0 0 auto;
}

.nav-right {
    justify-content: flex-end;
}

.weather-widget {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    background: rgba(17, 17, 17, 0.8); /* Fond sombre contrasté */
    padding: 8px 16px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s ease, transform 0.2s ease;
    cursor: default;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.weather-widget:hover {
    background: rgba(17, 17, 17, 0.95);
    transform: translateY(-2px);
}

.weather-widget i {
    font-size: 1.15rem;
    color: var(--c-accent-yellow);
}

.weather-widget-mobile {
    display: none;
}

/* ── STYLE DU MENU BURGER ── */
.menu-trigger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px;
}

.burger-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.burger-line {
    width: 28px;
    height: 1.5px;
    background-color: #111;
    transition: all 0.3s ease;
}

.menu-text {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 2px;
    color: #111;
}

.menu-trigger:hover .burger-line:last-child {
    width: 18px;
}

/* ── BOUTON RÉSERVER ── */
.btn-nav-reserve {
    padding: 0.8rem 2.5rem;
    border: 1px solid #111;
    border-radius: 50px;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #111;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-nav-reserve:hover {
    background: #111;
    color: #fff;
}

/* ── LOGO ── */
.nav-logo img {
    height: 65px;
    width: auto;
    display: block;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-minimal.is-scrolled .nav-logo img {
    height: 50px;
}

/* ── MENU PANEL ── */
.menu-panel {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    visibility: hidden;
}

.menu-panel.is-open {
    pointer-events: all;
    visibility: visible;
}

.menu-panel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.5s ease;
}

.menu-panel.is-open .menu-panel-overlay {
    background: rgba(0, 0, 0, 0.35);
}

.menu-panel-inner {
    position: absolute;
    top: 0; right: 0;
    width: min(420px, 100vw);
    height: 100%;
    background: #F5F2EE;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.menu-panel.is-open .menu-panel-inner {
    transform: translateX(0);
}

.menu-panel-close {
    position: absolute;
    top: 1.8rem; right: 2rem;
    background: none; border: none; cursor: pointer;
    padding: 6px; border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-panel-close:hover {
    background: rgba(0,0,0,0.06);
    transform: rotate(90deg);
}

.menu-panel-content {
    padding: 5rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-panel-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 2.2rem;
    text-align: right;
    margin-bottom: 2.5rem;
}

.menu-panel-nav {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.panel-link {
    display: block;
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 1.1rem;
    color: #111;
    text-decoration: none;
    text-align: right;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    transition: all 0.25s ease;
}

.panel-link:hover {
    color: #d9772b;
    padding-right: 0.5rem;
}

.menu-panel-ctas {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.panel-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.5rem;
    border: 1px solid #111;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    color: #111;
    transition: all 0.3s ease;
}

.panel-cta-btn:hover {
    background: #111;
    color: #fff;
}

.menu-panel-contact {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: #888;
}

.menu-panel-contact a {
    color: #888;
    text-decoration: none;
}

.menu-panel-contact a:hover {
    color: #111;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar-minimal { padding: 1.5rem 5vw; }
    .btn-nav-reserve { display: none; }
    .nav-logo img { height: 45px; }
}

/* ════════════════════════════════════════
   SECTION CIRCUITS (Native Horizontal Scroll + Snap)
════════════════════════════════════════ */

.circuits-section {
    padding: 6rem 0;
    background-color: #FAFAF8;
    overflow: hidden;
}

.circuits-section .defi-container {
    padding: 0 5vw;
}

.circuits-section .section-header {
    text-align: left;
    margin-bottom: 5rem;
}

.circuits-section .eyebrow {
    font-size: 1rem;
    letter-spacing: 6px;
    margin-bottom: 1.5rem;
}

.circuits-section .section-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 4.8rem; /* Plus grand et imposant */
    line-height: 1;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.circuits-section .section-subtitle {
    font-size: 1.3rem; /* Plus lisible */
    color: #666;
    max-width: 700px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .circuits-section .section-title { font-size: 3rem; }
    .circuits-section .section-subtitle { font-size: 1.1rem; }
}

/* ── LE CONTENEUR DE SCROLL HORIZONTAL ── */
.circuits-scroller {
    display: flex;
    gap: 2.5rem;
    padding: 2rem 5vw 4rem 5vw;
    
    /* Active le scroll horizontal */
    overflow-x: auto;
    overflow-y: hidden;
    
    /* Adoucit le scroll natif */
    scroll-behavior: smooth;
    
    /* Active l'aimantation (Snap) */
    scroll-snap-type: x mandatory;
    
    /* Cache la barre de défilement */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.circuits-scroller::-webkit-scrollbar {
    display: none;
}

/* ── L'ESPACE FINAL ── */
.scroller-spacer {
    min-width: 5vw;
    flex-shrink: 0;
}

/* ── LES CARTES ── */
.circuit-card {
    width: 85vw; /* Sur mobile */
    max-width: 420px; /* Sur desktop */
    flex-shrink: 0;
    
    /* Aimante la carte au début du conteneur */
    scroll-snap-align: start; 
    
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circuit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.circuit-card:hover .card-image img {
    transform: scale(1.08);
}

.card-content {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 1.6rem;
    color: #111;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.card-duration {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
}

.circuit-card .highlight {
    display: block;
    font-weight: 600;
    color: #d9772b;
    margin-top: 0.4rem;
}

.btn-card {
    margin-top: auto;
    align-self: flex-start;
    padding: 0.8rem 2.2rem;
    border: 1px solid #111;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #111;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-card:hover {
    background: #111;
    color: #fff;
}

@media (max-width: 768px) {
    .circuits-section .section-title { font-size: 2.5rem; }
    .card-image { height: 220px; }
    .card-content { padding: 2rem; }
}

/* ════════════════════════════════════════
   SECTION DESTINATIONS (STYLE POLAROID)
════════════════════════════════════════ */

.destinations-section {
    padding: 8rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    background-color: #fcfcfc;
}

.destinations-section .section-header {
    margin-bottom: 5rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5vw;
}

.destination-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 1.2rem;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    border-color: rgba(204, 140, 81, 0.3);
}

.dest-image-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.dest-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.destination-card:hover .dest-image-wrapper img {
    transform: scale(1.05);
}

.dest-pin {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #cc8c51;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    border: 4px solid #1a1a1a;
    box-shadow: 0 5px 15px rgba(204, 140, 81, 0.4);
    transition: transform 0.4s ease;
    z-index: 2;
}

.destination-card:hover .dest-pin {
    transform: scale(1.1) rotate(10deg);
}

.dest-content {
    padding: 0 0.5rem 0.5rem 0.5rem;
}

.dest-title {
    font-family: var(--font-primary, 'Cinzel', serif);
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.dest-subtitle {
    font-size: 0.95rem;
    color: #aaa;
    margin: 0;
}

.btn-primary-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    border: 1px solid #111;
    color: #111;
    text-decoration: none;
    font-size: 0.85rem;
    font-family: var(--font-heading, sans-serif);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary-outline:hover {
    background-color: #111;
    color: #fff;
}

/* ════════════════════════════════════════
   SECTION CAMP ABDELMOULA
════════════════════════════════════════ */

.camp-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Parallax effect */
    color: #fcfcfc;
    padding: 10rem 0;
    overflow: hidden;
}

.camp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 10, 10, 0.75); 
    z-index: 1;
}

.camp-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
    gap: 5rem;
}

.camp-image-wrapper {
    flex: 1;
    position: relative;
}

.camp-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.camp-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #d9772b; /* Sahara Orange */
    color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(217, 119, 43, 0.3);
}

.badge-number {
    font-size: 2.5rem;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    font-weight: 600;
}

.camp-content {
    flex: 1;
}

.camp-overline {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #d9772b;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.camp-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 4.5rem;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 500;
}

.camp-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--c-text-secondary);
    margin-bottom: 2rem;
}

.camp-features {
    list-style: none;
    padding: 0;
    margin: 0 0 3.5rem 0;
}

.camp-features li {
    font-size: 1.05rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    color: #d9772b;
    font-size: 1.2rem;
}

.btn-camp-outline {
    display: inline-block;
    padding: 1.2rem 3rem;
    border: 1px solid #fff;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-camp-outline:hover {
    background: #fff;
    color: #000;
}

@media (max-width: 1024px) {
    .camp-container { flex-direction: column; text-align: center; gap: 4rem; }
    .camp-title { font-size: 3.5rem; }
    .camp-features li { justify-content: center; }
    .camp-badge { right: 50%; transform: translateX(50%); }
    .btn-camp-outline { align-self: center; }
}

/* ════════════════════════════════════════
   SECTION CTA FINAL (DÉPART)
════════════════════════════════════════ */

.cta-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center left;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.1) 0%, rgba(10, 10, 10, 0.85) 60%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.cta-container {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 0 5vw;
    max-width: 1400px;
    margin: 0 auto;
}

.cta-content {
    max-width: 650px;
    color: #ffffff;
}

.cta-overline {
    display: block;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #d9772b;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: clamp(3.5rem, 6vw, 5rem);
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 2rem;
    font-style: italic;
}

.cta-desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3.5rem;
    max-width: 90%;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-solid-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    background-color: #ffffff;
    color: #111111;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-solid-white:hover {
    background-color: #d9772b;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(217, 119, 43, 0.3);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .cta-overlay { background: rgba(10, 10, 10, 0.75); }
    .cta-container { justify-content: center; text-align: center; }
    .cta-content { display: flex; flex-direction: column; align-items: center; }
    .cta-desc { max-width: 100%; }
    .cta-actions { justify-content: center; flex-direction: column; width: 100%; max-width: 350px; }
    .btn-solid-white, .btn-outline-white { width: 100%; }
}

/* ════════════════════════════════════════
   PAGE Circuits : HERO SECTION
════════════════════════════════════════ */

.Circuits-hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}

.Circuits-hero-section .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.2) 0%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 1;
}

.Circuits-hero-section .hero-container {
    position: relative;
    z-index: 2;
    padding: 0 5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Circuits-hero-section .hero-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: clamp(3.5rem, 8vw, 6.5rem);
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.Circuits-hero-section .hero-subtitle {
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: #f2f2f2;
    margin-bottom: 3rem;
    font-weight: 300;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-solid-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 3rem;
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #d9772b;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(217, 119, 43, 0.2);
}

.btn-solid-gold:hover {
    background-color: #d9772b;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(217, 119, 43, 0.4);
}

/* INDICATEUR DE SCROLL */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.mouse {
    width: 26px;
    height: 44px;
    border: 2px solid #ffffff;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 3px;
    height: 7px;
    background-color: #ffffff;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite ease-in-out;
}

@keyframes scrollWheel {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

/* ════════════════════════════════════════
   PAGE Circuits : SECTION PHILOSOPHIE
════════════════════════════════════════ */

.philosophy-section {
    padding: 10rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    background-color: var(--c-dark-bg);
}

.philosophy-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5vw;
    gap: 6rem;
}

.philosophy-visual {
    flex: 0 0 45%;
    position: relative;
}

.polaroid-frame {
    background: #ffffff;
    padding: 1.5rem;
    padding-bottom: 3.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    transform: rotate(-2deg);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}

.polaroid-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.polaroid-frame img {
    width: 100%;
    height: auto;
    display: block;
    filter: sepia(10%) contrast(1.05);
}

.polaroid-caption {
    position: absolute;
    bottom: 1rem;
    left: 1.5rem;
    right: 1.5rem;
}

.polaroid-caption p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-style: italic;
    color: #888;
    margin: 0;
}

.philosophy-content {
    flex: 0 0 50%;
}

.philosophy-overline {
    display: block;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #d9772b;
    margin-bottom: 1.5rem;
}

.philosophy-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    color: var(--c-text-primary);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.philosophy-text p {
    font-size: 1.25rem; /* Augmentation encore plus marquée */
    line-height: 1.8;
    color: var(--c-text-secondary);
    margin-bottom: 1.8rem;
    font-weight: 400;
}

.btn-outline-gold {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    border: 1px solid #d9772b;
    color: #d9772b;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: #d9772b;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(217, 119, 43, 0.2);
}

@media (max-width: 991px) {
    .philosophy-container { flex-direction: column; text-align: center; gap: 4rem; }
    .philosophy-visual, .philosophy-content { flex: 0 0 100%; }
    .polaroid-frame { transform: rotate(0deg); max-width: 500px; margin: 0 auto; }
    .btn-outline-gold { width: 100%; max-width: 300px; }
}

/* ════════════════════════════════════════
   PAGE Circuits : SECTION TYPES DE Circuits
════════════════════════════════════════ */

.Circuits-types-section {
    padding: 10rem 0;
    background-color: #0a0a0a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #ffffff;
}

.Circuits-types-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
}

/* ── EN-TÊTE ALIGNÉ À GAUCHE ── */
.Circuits-types-section .section-header {
    text-align: left;
    max-width: 800px;
    margin-bottom: 5rem;
}

/* ── EN-TÊTE : ALIGNEMENT VERTICAL PRO ── */
.section-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    max-width: 800px;
    margin-bottom: 4rem;
    padding-left: 2rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 3px;
    background: linear-gradient(to bottom, #cc8c51, #e6c29a);
    border-radius: 3px;
}

.section-overline {
    display: block;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--c-accent-orange);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: clamp(3rem, 5vw, 4rem);
    color: var(--c-text-primary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.section-desc {
    color: var(--c-text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
}

.section-desc strong {
    color: var(--c-text-primary);
    font-weight: 700;
}

/* ── GRILLE ET STRUCTURE (Forçage Horizontal) ── */
.Circuits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 2.5rem;
    width: 100%;
}

@media (max-width: 991px) {
    .Circuits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ── PAGE Circuits : SECTION BIVOUAC (Thème Clair) ── */
.bivouac-section {
    padding: 10rem 0;
    background-color: var(--c-dark-bg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.bivouac-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5vw;
}

.bivouac-content {
    flex: 1;
    max-width: 550px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 4rem;
    border-radius: 16px;
    border: 1px solid rgba(204, 140, 81, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.section-title-dark {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: clamp(3rem, 4vw, 4.5rem);
    color: #111111;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 600;
}

.section-desc-dark {
    color: #111111;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    font-weight: 500;
}

.bivouac-collage {
    flex: 1.2;
    position: relative;
    height: 550px;
    width: 100%;
}

.bivouac-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 75%;
    border: 2px solid rgba(217, 119, 43, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.img-small {
    position: absolute;
    width: 48%;
    height: 48%;
    border: 6px solid #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.img-small:hover {
    transform: scale(1.05) translateY(-15px);
    z-index: 3;
}

.img-tea {
    bottom: 0;
    left: 0;
}

.img-tent {
    bottom: 12%;
    right: 8%;
}

@media (max-width: 991px) {
    .bivouac-container { flex-direction: column; text-align: center; gap: 5rem; }
    .bivouac-content { max-width: 100%; }
    .bivouac-collage { height: 450px; }
}

@media (max-width: 576px) {
    .bivouac-collage { height: 350px; }
    .img-small { border-width: 4px; }
}

/* ==========================================================================
   SECTION 4 : LE CATALOGUE DES CIRCUITS
   ========================================================================== */
.catalog-section {
    padding: 10rem 0;
    background-color: #0a0a0a;
    color: #ffffff;
}

.catalog-section .section-overline {
    color: #cc8c51; /* Or */
}

.catalog-section .section-title {
    color: #ffffff; /* Blanc */
}

.catalog-section .section-desc {
    color: #a3a3a3; /* Gris clair pour la description */
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.catalog-card {
    background-color: #111111;
    border: 1px solid #222222;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.catalog-card:hover {
    transform: translateY(-5px);
    border-color: #cc8c51;
}

.catalog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.catalog-tags {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
}

.tag-duration, .tag-level {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(4px);
    color: #e6c29a;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-family: var(--font-heading, 'Inter', sans-serif);
    text-transform: uppercase;
    font-weight: 600;
    border: 1px solid rgba(230, 194, 154, 0.3);
    border-radius: 3px;
}

.catalog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.catalog-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 500;
}

.catalog-excerpt {
    color: #a3a3a3;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.catalog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #222222;
    padding-top: 1.5rem;
}

.catalog-price {
    font-size: 0.9rem;
    color: #888888;
}

.catalog-price strong {
    color: #cc8c51;
    font-size: 1.2rem;
    font-weight: 700;
}

.catalog-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.catalog-link span {
    color: #cc8c51;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.catalog-link:hover {
    color: #cc8c51;
}

.catalog-link:hover span {
    transform: translateX(5px);
}

/* ==========================================================================
   SECTION 6 : F.A.Q ÉLÉGANTE (Thème Clair + Glassmorphism)
   ========================================================================== */
.faq-section {
    padding: 10rem 0;
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── LE BLOC VERRE DÉPOLI ── */
.faq-glass-wrapper {
    background: rgba(255, 255, 255, 0.85); /* Blanc semi-transparent */
    backdrop-filter: blur(15px); /* Effet flou sur le paysage derrière */
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08); /* Ombre très douce */
    width: 95%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 4rem;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* 2 colonnes */
    gap: 5rem;
}

/* ── TEXTES (Thème Sombre pour fond clair) ── */
.faq-intro {
    align-self: start;
}

.faq-desc-dark {
    color: #555555; /* Gris foncé pour la description */
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

/* ── ACCORDÉON (Design Minimaliste) ── */
.faq-accordion {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Ligne de séparation douce */
    padding: 1.5rem 0;
    transition: border-color 0.3s ease;
}

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

.faq-item[open] {
    border-color: #cc8c51; /* La ligne devient dorée à l'ouverture */
}

/* La Question */
.faq-question {
    list-style: none;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: #111111; /* Texte noir */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 1rem;
    transition: color 0.3s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    color: #cc8c51; /* Devient or au survol */
}

/* L'icône + / x */
.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: #cc8c51;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg); /* Le + devient un X */
}

/* La Réponse */
.faq-answer {
    padding-top: 1rem;
    padding-bottom: 0.5rem;
    padding-right: 2rem;
    color: #444444; /* Gris lisible */
    line-height: 1.7;
    font-size: 0.95rem;
    animation: fadeInDown 0.4s ease-out;
}

/* ── RESPONSIVE MOBILE ── */
@media (max-width: 991px) {
    .faq-glass-wrapper {
        padding: 2.5rem;
        width: 95%;
    }
    .faq-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* ==========================================================================
   ANIMATIONS SCROLL (gs-reveal)
   ========================================================================== */
/* On évite d'impacter la home page qui a son propre système GSAP */
body:not(.home) .gs-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

body:not(.home) .gs-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Effet cascade (stagger) pour les grilles */
.fleet-card:nth-child(1), .catalog-card:nth-child(1), .Circuits-card:nth-child(1) { transition-delay: 0.1s; }
.fleet-card:nth-child(2), .catalog-card:nth-child(2), .Circuits-card:nth-child(2) { transition-delay: 0.25s; }
.fleet-card:nth-child(3), .catalog-card:nth-child(3), .Circuits-card:nth-child(3) { transition-delay: 0.4s; }


/* ==========================================================================
   EFFETS PRO SUPPLÉMENTAIRES
   ========================================================================== */

/* 1. Zoom Cinématographique lent sur Hero */
.Circuits-hero-section {
    overflow: hidden;
    position: relative;
}

.Circuits-hero-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    animation: zoomHero 20s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes zoomHero {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* 2. Bouton Or : Effet "Sweep" au survol */
.btn-solid-gold {
    position: relative;
    overflow: hidden;
}

.btn-solid-gold::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: left 0.6s ease-in-out;
}

.btn-solid-gold:hover::after {
    left: 160%;
}

/* 3. Ligne de séparation dorée animée sous les overlines */
.section-overline {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.section-overline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: #cc8c51;
    transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.is-visible .section-overline::after {
    width: 50px;
}

/* Alignement centré pour les overlines dans le catalogue */
.catalog-section .section-header .section-overline::after {
    left: 50%;
    transform: translateX(-50%);
}
/* ==========================================================================
   STYLING COMMUNS & EFFETS PRO (THÈME CLAIR)
   ========================================================================== */
.philosophie-section, .faq-section {
    position: relative;
    overflow: hidden;
}

/* ── TEXTES (Thème Clair) ── */
.section-overline {
    display: block;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #cc8c51; /* Or */
    margin-bottom: 1rem;
    position: relative;
    padding-left: 50px; /* Espace pour la ligne dorée verticale */
}

/* La ligne dorée verticale Pro */
.section-overline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 1px;
    background-color: #cc8c51;
}

.section-title-dark {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #111111; /* Titre noir */
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.section-desc-dark {
    color: #111111; /* Noir pour plus de contraste */
    line-height: 1.7;
    font-size: 1.1rem;
    font-weight: 500;
    max-width: 600px;
}

/* ── BOUTON PLEIN OR ── */
.btn-solid-gold {
    display: inline-block;
    background: linear-gradient(135deg, #d9772b, #e8a66d);
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(217, 119, 43, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-solid-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(217, 119, 43, 0.4);
}

/* ==========================================================================
   SECTION : LA PROMESSE (Fond fixe Extérieur)
   ========================================================================== */
.philosophie-section {
    padding: 10rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Effet Parallaxe fixe pour le fond */
    background-attachment: fixed;
    color: #000;
}

.philosophie-section .section-header {
    background: rgba(255, 255, 255, 0.85);
    padding: 3rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 700px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-left: auto;
}

/* ==========================================================================
   SECTION : F.A.Q ÉLÉGANTE (Glassmorphism sur Fond fixe Intérieur)
   ========================================================================== */
.faq-section {
    padding: 10rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Effet Parallaxe fixe pour le fond */
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── LE BLOC VERRE DÉPOLI (Version Renforcée) ── */
.faq-glass-wrapper {
    /* Opacité élevée pour gérer l'arrière-plan complexe de l'intérieur */
    background: rgba(255, 255, 255, 0.92); 
    backdrop-filter: blur(12px); /* Léger flou pour le tableau de bord */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1); /* Ombre douce */
    width: 92%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 5rem;
}

.faq-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* 2 colonnes */
    gap: 5rem;
}

/* ── ACCORDÉON (Design Minimaliste sur fond clair) ── */
.faq-accordion {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1); /* Ligne de séparation douce */
    padding: 1.5rem 0;
    transition: border-color 0.3s ease;
}

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

.faq-item[open] {
    border-color: #cc8c51; /* Soulignement or quand ouvert */
}

/* La Question */
.faq-question {
    list-style: none;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: #111111; /* Texte noir */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 1rem;
}

.faq-question::-webkit-details-marker {
    display: none;
}

/* L'icône customisée */
.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: #cc8c51;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg); /* Le + devient un X */
}

/* La Réponse */
.faq-answer {
    padding-top: 1rem;
    color: #444444; /* Gris lisible pour la réponse */
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ── RESPONSIVE MOBILE ── */
@media (max-width: 991px) {
    .faq-glass-wrapper {
        padding: 3rem 2rem;
        width: 95%;
    }
    .faq-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}
/* ==========================================================================
   PAGE DESTINATIONS - STYLES SPÉCIFIQUES
   ========================================================================== */

/* ── 3. LES SANCTUAIRES (Alternance) ── */
.sanctuary-row {
    display: flex;
    align-items: center;
    gap: 6vw;
    margin-bottom: 8rem;
}

.sanctuary-row:last-child {
    margin-bottom: 0;
}

/* On inverse la direction pour une rangée sur deux */
.sanctuary-row.reverse {
    flex-direction: row-reverse;
}

.sanctuary-image {
    flex: 1;
    position: relative;
}

.sanctuary-image img {
    width: 100%;
    height: 500px; /* Fixe la hauteur pour un rendu harmonieux */
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    transition: transform 0.7s ease;
}

.sanctuary-row:hover .sanctuary-image img {
    transform: scale(1.02);
}

.sanctuary-content {
    flex: 1;
}

/* ── 4. GALERIE MIRAGES (Masonry Grid) ── */
.mirages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1.5rem;
}

.mirage-item {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

/* Le grand vertical */
.mirage-item.tall {
    grid-column: span 2;
    grid-row: span 2;
}

/* Le grand horizontal */
.mirage-item.wide {
    grid-column: span 2;
    grid-row: span 1;
}

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

.mirage-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0; top: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 50%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mirage-overlay h4 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.mirage-item:hover img {
    transform: scale(1.05);
}

.mirage-item:hover .mirage-overlay {
    opacity: 1;
}

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

/* ── BOUTONS OUTLINE (Pour le CTA) ── */
.btn-outline-gold {
    display: inline-block;
    background: transparent;
    color: #cc8c51;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid #cc8c51;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline-gold:hover {
    background: #cc8c51;
    color: #000; /* Le texte devient noir au survol pour le contraste */
}

/* ── RESPONSIVE MOBILE ── */
@media (max-width: 991px) {
    .sanctuary-row, .sanctuary-row.reverse {
        flex-direction: column; /* Tout s'empile sur mobile */
        gap: 2rem;
    }
    
    .sanctuary-image img {
        height: 350px;
    }

    .mirages-grid {
        grid-template-columns: 1fr 1fr; /* 2 colonnes sur tablette */
        grid-template-rows: auto;
    }
    
    .mirage-item.tall {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .mirages-grid {
        grid-template-columns: 1fr; /* 1 colonne sur smartphone */
    }
    .mirage-item.tall, .mirage-item.wide {
        grid-column: span 1;
        height: 250px;
    }
}
.Circuits-card {
    display: flex;
    flex-direction: column;
    background-color: #0d0d0d;
    border: 1px solid #d9772b;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.Circuits-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
}

.Circuits-card-header {
    background-color: #ffffff;
    padding: 1.2rem 1.5rem;
    text-align: left;
}

.Circuits-card-header h3 {
    margin: 0;
    color: #111111;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 1.6rem;
    font-style: italic;
    font-weight: 700;
    text-transform: uppercase;
}

.Circuits-card-image {
    position: relative;
    width: 100%;
    height: 220px;
}

.Circuits-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.Circuits-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: rgba(15, 15, 15, 0.85);
    color: #e0aa6b;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-family: var(--font-heading, 'Inter', sans-serif);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(217, 119, 43, 0.3);
}

.Circuits-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.Circuits-card-body p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-card-gold {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #cc8c51, #e6c29a, #cc8c51);
    color: #111111;
    padding: 0.9rem;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.btn-card-gold:hover {
    opacity: 0.85;
    color: #000000;
}

.btn-pill-gold {
    display: inline-block;
    background: linear-gradient(135deg, #cc8c51, #e6c29a, #cc8c51);
    color: #111111;
    padding: 1rem 3rem;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s ease;
}

.btn-pill-gold:hover {
    transform: scale(1.05);
    color: #000;
}

@media (max-width: 768px) {
    .Circuits-card { margin-bottom: 2rem; }
}

/* ════════════════════════════════════════
   PAGE Circuits : SECTION FLOTTE
════════════════════════════════════════ */

.fleet-section {
    position: relative;
    padding: 10rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #0a0a0a;
    color: #ffffff;
    overflow: hidden;
}

.fleet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 5, 0.4); 
    z-index: 1;
}

.fleet-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5vw;
}

.fleet-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 6rem auto;
}

.fleet-overline {
    display: block;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #d9772b;
    margin-bottom: 1.5rem;
}

.fleet-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #ffffff;
}

.fleet-desc {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.fleet-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(217, 119, 43, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
    display: flex;
    flex-direction: column;
}

.fleet-card:hover {
    transform: translateY(-10px);
    border-color: rgba(217, 119, 43, 0.6);
    background: rgba(30, 30, 30, 0.8);
}

.fleet-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.8rem;
    background-color: #111;
}

.fleet-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.fleet-card:hover .fleet-image-wrapper img {
    transform: scale(1.08);
}

.fleet-badge {
    position: absolute;
    bottom: 15px;
    left: -8px;
    background: linear-gradient(135deg, #e8a66d, #d9772b);
    color: #111;
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    box-shadow: 4px 4px 20px rgba(0,0,0,0.6);
    line-height: 1.2;
    z-index: 2;
}

.fleet-card h3 {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 2rem;
    color: var(--c-text-primary);
    margin-bottom: 1.5rem;
}

.fleet-card-content p {
    font-size: 1rem;
    color: #aaaaaa;
    line-height: 1.7;
    margin: 0;
}

.fleet-action {
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .fleet-header { margin-bottom: 4rem; }
    .fleet-grid { gap: 2rem; }
    .fleet-image-wrapper { height: 200px; }
}

/* ==========================================================================
   PAGE DE RÉSERVATION - SPLIT SCREEN
   ========================================================================== */
.reservation-wrapper {
    display: flex;
    min-height: 100vh;
    background-color: #0a0a0a;
}

/* Moitié Gauche (Image) */
.reservation-visual {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 4rem;
}

.visual-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.visual-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.visual-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.visual-desc {
    color: #aaa;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Moitié Droite (Formulaire) */
.reservation-form-container {
    flex: 1;
    padding: 6rem 4rem;
    background-color: #111111;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Barre de progression */
.form-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
}

.progress-step {
    color: #555;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.progress-step.active {
    color: #cc8c51; /* Doré quand actif */
}

/* Les Étapes du Formulaire */
.form-step {
    display: none;
    border: none;
    padding: 0;
    margin: 0;
    animation: fadeInStep 0.5s ease-out;
}

.form-step.active {
    display: block;
}

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

.step-title {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

/* Styles des Champs (Inputs) Pro */
.input-row {
    display: flex;
    gap: 2rem;
}

.input-row .input-group {
    flex: 1;
}

.input-group {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
}

.input-group label {
    color: #aaa;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.luxury-form input,
.luxury-form select,
.luxury-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #444;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    padding: 10px 0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.luxury-form input:focus,
.luxury-form select:focus,
.luxury-form textarea:focus {
    outline: none;
    border-bottom-color: #cc8c51;
    box-shadow: 0 1px 0 0 #cc8c51; /* Effet de surbrillance dorée */
}

/* Spécifique Select pour qu'il soit sombre */
.luxury-form select option {
    background-color: #111;
    color: #fff;
}

/* Message de sécurité (Étape 3) */
.security-notice {
    background: rgba(204, 140, 81, 0.1);
    border-left: 3px solid #cc8c51;
    padding: 1rem;
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}
.security-notice span {
    color: #cc8c51;
    font-weight: 600;
}

/* Boutons d'action */
.form-actions {
    margin-top: 3rem;
    display: flex;
    justify-content: flex-end;
}

.form-actions.split {
    justify-content: space-between;
}

/* ── RESPONSIVE MOBILE ── */
@media (max-width: 991px) {
    .reservation-wrapper {
        flex-direction: column; /* Empile l'image et le formulaire */
    }
    .reservation-visual {
        min-height: 40vh;
        padding: 3rem 2rem;
    }
    .reservation-form-container {
        padding: 4rem 2rem;
    }
    .input-row {
        flex-direction: column;
        gap: 0;
    }
}

/* ==========================================================================
   CHECKBOX MULTIPLES ÉLÉGANTES (Expériences)
   ========================================================================== */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 1rem;
    margin-top: 0.8rem;
}

.custom-checkbox {
    cursor: pointer;
    display: block;
}

/* On cache la case à cocher native */
.custom-checkbox input[type="checkbox"] {
    display: none; 
}

/* On stylise le texte comme un bouton inactif */
.checkbox-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0.8rem 1rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid #333;
    color: #888;
    border-radius: 4px;
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Effet au survol */
.custom-checkbox:hover .checkbox-btn {
    border-color: #666;
    color: #bbb;
}

/* Quand coché */
.custom-checkbox input[type="checkbox"]:checked + .checkbox-btn {
    background-color: rgba(204, 140, 81, 0.1);
    border-color: #cc8c51;
    color: #cc8c51;
    box-shadow: 0 0 15px rgba(204, 140, 81, 0.15);
}

/* ==========================================================================
   PAGE CONTACT - STYLES SPÉCIFIQUES
   ========================================================================== */

/* ── LA GRILLE DES COORDONNÉES ── */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: -8rem; /* Fait remonter les cartes sur le Hero Header */
}

.contact-card {
    background: #111;
    border: 1px solid #222;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 4px;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: #cc8c51;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.contact-card:hover .card-icon {
    transform: translateY(-5px); /* L'icône saute légèrement */
}

.contact-card h3 {
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.contact-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ── TEXTES SPÉCIFIQUES AUX CARTES ── */
.gps-coord {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(204, 140, 81, 0.1);
    color: #cc8c51;
    font-size: 0.8rem;
    font-family: 'Inter', monospace; /* Police style code/coordonnées */
    border-radius: 50px;
    letter-spacing: 1px;
}

.contact-link {
    color: #cc8c51;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    text-decoration: none;
    position: relative;
}

.contact-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #cc8c51;
    transition: width 0.3s ease;
}

.contact-link:hover::after {
    width: 100%;
}

/* ── RESPONSIVE MOBILE ── */
/* ── CONTACT FORM & BRIDGE BOX ── */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: center;
}

.input-row {
    display: flex;
    gap: 2rem;
}

.input-row .input-group {
    flex: 1;
}

.bridge-box {
    background: rgba(204, 140, 81, 0.05);
    border: 1px solid rgba(204, 140, 81, 0.3);
    border-radius: 8px;
    padding: 4rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* ── FAQ & BIVOUAC ── */
.faq-container, .bivouac-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.Circuits-types-container {
    display: flex;
    flex-direction: column;
}

/* ==========================================================================
   GLOBAL RESPONSIVE FIXES - OPTIMISATION MOBILE
   ========================================================================== */

@media (max-width: 1024px) {
    .container, .defi-container {
        padding: 0 5vw;
    }

    .section-padding {
        padding: 80px 0;
    }

    /* Grids Transition */
    .stats-grid, 
    .services-grid, 
    .about-grid, 
    .camp-grid, 
    .footer-grid, 
    .contact-grid,
    .destinations-grid,
    .temoignages-grid,
    .fleet-grid,
    .Circuits-grid,
    .catalog-grid,
    .faq-container,
    .bivouac-container,
    .contact-form-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 3rem;
    }

    .topo-title, .hero-title {
        font-size: 4rem !important;
    }
}

@media (max-width: 768px) {
    /* Base Reset */
    .section-padding {
        padding: 60px 0;
    }

    /* Navbar Responsiveness */
    .navbar-minimal {
        padding: 1rem 5vw !important;
    }
    
    .nav-left {
        gap: 1rem !important;
        flex: 1;
    }
    
    .nav-center {
        flex: 0 0 auto;
    }
    
    .nav-right {
        display: flex;
        flex: 1;
        justify-content: flex-end;
    }
    
    .weather-widget {
        display: none !important;
    }

    .weather-widget-mobile {
        display: flex;
        align-items: center;
        gap: 6px;
        font-family: var(--font-heading, 'Oswald', sans-serif);
        font-size: 0.75rem;
        font-weight: 600;
        color: #ffffff;
        background: rgba(17, 17, 17, 0.8);
        padding: 6px 12px;
        border-radius: 30px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: background 0.3s ease, transform 0.2s ease;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        white-space: nowrap;
    }

    .weather-widget-mobile:hover {
        background: rgba(17, 17, 17, 0.95);
        transform: translateY(-1px);
    }

    .weather-widget-mobile i {
        font-size: 0.85rem;
        color: var(--c-accent-yellow, #FDB813);
    }
    
    .menu-text {
        display: none; /* Cache le texte 'MENU' pour épurer */
    }
    
    .btn-nav-reserve {
        padding: 0.6rem 1rem !important;
        font-size: 0.6rem !important;
        letter-spacing: 1px !important;
    }
    
    .nav-logo img {
        height: 40px !important;
    }

    /* Force 1 Column Grids */
    .stats-grid, 
    .services-grid, 
    .about-grid, 
    .camp-grid, 
    .footer-grid, 
    .contact-grid,
    .destinations-grid,
    .temoignages-grid,
    .location-grid,
    .features-minimal,
    .features-grid,
    .fleet-grid,
    .Circuits-grid,
    .catalog-grid,
    .faq-container,
    .bivouac-container,
    .contact-form-grid {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    /* Hero Sections Adjustment */
    .topo-hero, .hero, .defi-hero, .contact-hero, .page-hero, .Circuits-hero-section, .philosophy-section, .fleet-section, .Circuits-types-section, .bivouac-section, .faq-section {
        height: auto !important;
        min-height: 70vh !important;
        padding: 120px 0 60px !important;
        display: flex;
        align-items: center;
        background-attachment: scroll !important; /* Désactive le fixed sur mobile pour la clarté */
    }

    .hero-overlay, .service-overlay, .footer-overlay, .defi-hero__overlay {
        opacity: 0.7; /* Réduit un peu l'opacité pour que l'image soit plus claire */
    }

    .topo-title, .hero-title, .section-title-large {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
    }

    .topo-desc, .hero-subtitle, .hero-desc {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

    .hero-btns, .topo-btns {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn-hero-outline, .btn-solid, .btn-outline-dark, .btn-solid-gold, .btn-outline-gold {
        width: 100% !important;
        text-align: center;
        justify-content: center;
    }

    /* Stats Section */
    .stats-bar {
        padding: 80px 0 !important;
    }

    .stat-number {
        font-size: 3rem !important;
        margin-bottom: 0.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 4rem 1rem !important; /* Plus d'espace vertical entre les lignes */
        text-align: center;
    }

    .stat-content p {
        font-size: 0.8rem !important;
        letter-spacing: 2px !important;
        opacity: 0.8;
    }

    /* Service Cards */
    .service-card {
        height: 400px !important;
        padding: 2.5rem 1.5rem !important;
    }

    .service-content h3 {
        font-size: 1.8rem !important;
    }

    /* About Section Mobile Layout */
    .about-image img, .about-image-main img, .camp-image img {
        height: 300px !important;
        width: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }

    .about-image-wrapper {
        padding-right: 0 !important;
        padding-bottom: 0 !important;
    }

    .badge-float {
        position: static !important;
        margin-top: 2rem;
        width: 100%;
        padding: 1.5rem !important;
        font-size: 1rem !important;
    }

    .noise-overlay {
        opacity: 0.04 !important; /* Réduit le grain sur mobile pour plus de clarté */
    }

    /* Programme / Timeline Mobile */
    .programme-timeline {
        padding-left: 40px !important;
    }

    .prog-day {
        flex-direction: column;
        gap: 1rem;
        padding-bottom: 3rem !important;
    }

    .prog-day-num {
        left: -40px !important;
        width: 30px !important;
        height: 30px !important;
        font-size: 11px !important;
    }
    
    .prog-day-content {
        padding-left: 0 !important;
        border-left: none !important;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 3rem !important;
    }

    .footer-contact-list {
        display: inline-block;
        text-align: left;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    /* Contact & Form fixes */
    .contact-grid {
        margin-top: 2rem !important;
    }
    
    .contact-card {
        padding: 2rem 1.5rem !important;
    }

    .input-row {
        flex-direction: column !important;
        gap: 0 !important;
    }
    
    .luxury-form .input-group {
        margin-bottom: 1.5rem !important;
    }

    .bridge-box {
        padding: 2rem 1rem !important;
    }
    
    .bridge-box h3 {
        font-size: 1.5rem !important;
    }
}

/* ── FOOTER ENHANCEMENTS ── */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact-item i {
    color: #cc8c51; /* Or Sahara */
    flex-shrink: 0;
    opacity: 0.9;
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.footer-contact-item a {
    color: inherit;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: #cc8c51;
}

@media (max-width: 768px) {
    .footer-contact-item {
        justify-content: center;
        text-align: center;
    }
}

/* ── SOCIAL LINKS FOOTER ── */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.03);
}

.social-links a:hover {
    background: #cc8c51;
    border-color: #cc8c51;
    transform: translateY(-5px) rotate(8deg);
    color: #fff;
    box-shadow: 0 10px 20px rgba(204, 140, 81, 0.3);
}

.social-links a i {
    transition: transform 0.4s ease;
    font-size: 18px;
}

.social-links a:hover i {
    transform: scale(1.1);
}

/* ── BACKGROUND VIDEO ── */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%) scale(1.35);
    min-width: 177.77vh; /* 16:9 ratio */
    min-height: 56.25vw;
    pointer-events: none;
}

/* ── ITINÉRAIRES PREMIUM (TIMELINE) ── */
.premium-program {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 3rem;
    margin-bottom: 4rem;
}
@media (max-width: 768px) {
    .premium-program {
        padding: 1.5rem;
    }
}
.premium-program-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    color: var(--c-accent-yellow);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}
.premium-program-title span {
    font-family: var(--font-heading, 'Inter', sans-serif);
    font-size: 1rem;
    color: var(--c-text-primary);
    display: block;
    margin-top: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
}
.timeline-container {
    position: relative;
    padding-left: 2rem;
}
.timeline-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--c-accent-orange), rgba(255,255,255,0.1));
}
.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}
.timeline-item:last-child {
    margin-bottom: 0;
}
.timeline-marker {
    position: absolute;
    left: -2.6rem;
    top: 0;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: var(--c-dark-bg);
    border: 3px solid var(--c-accent-orange);
    z-index: 2;
    box-shadow: 0 0 10px rgba(217, 119, 43, 0.5);
}
.timeline-day {
    font-family: var(--font-heading, 'Inter', sans-serif);
    color: var(--c-accent-orange);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}
.timeline-title {
    font-family: var(--font-heading, 'Oswald', sans-serif);
    font-size: 1.6rem;
    color: var(--c-text-primary);
    margin-bottom: 1.2rem;
    font-weight: 400;
}
.timeline-content {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid rgba(255,255,255,0.1);
}
.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.timeline-content li {
    position: relative;
    padding-left: 2.2rem;
    margin-bottom: 0.8rem;
    color: var(--c-text-secondary);
    line-height: 1.6;
}
.timeline-content li i {
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: var(--c-accent-orange);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}
.timeline-image {
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
}
.timeline-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.timeline-image:hover img {
    transform: scale(1.08);
}
.mosaic-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 3rem;
}
.mosaic-item {
    flex: 1 1 calc(33.333% - 15px);
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.mosaic-item:hover img {
    transform: scale(1.1);
}
/* Premium Mosaic Layout for 1-7 images */
.mosaic-item:nth-child(7n + 1) { 
    flex: 1 1 100%; 
    height: 380px; 
}
.mosaic-item:nth-child(7n + 2), .mosaic-item:nth-child(7n + 3) { 
    flex: 1 1 calc(50% - 15px); 
    height: 280px;
}
.mosaic-item:nth-child(7n + 4), .mosaic-item:nth-child(7n + 5), .mosaic-item:nth-child(7n + 6) { 
    flex: 1 1 calc(33.333% - 15px); 
}
.mosaic-item:nth-child(7n + 7) { 
    flex: 1 1 100%; 
    height: 350px; 
}

@media (max-width: 768px) {
    .mosaic-item {
        flex: 1 1 100% !important;
        height: 250px !important;
    }
}

/* --- WEATHER MODAL --- */
.weather-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.weather-modal.active {
    opacity: 1;
    visibility: visible;
}

.weather-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.weather-modal-content {
    position: relative;
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 30px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    color: #fff;
    font-family: var(--font-body);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.weather-modal.active .weather-modal-content {
    transform: translateY(0);
}

.weather-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #aaa;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.weather-modal-close:hover {
    color: #fff;
}

.weather-modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 0 0 20px 0;
    text-align: center;
    color: var(--c-accent-yellow);
}

.weather-modal-current {
    text-align: center;
    margin-bottom: 20px;
}

.wm-current-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.wm-current-temp {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
}

.wm-current-details {
    font-size: 0.9rem;
    color: #bbb;
}

.weather-modal-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 20px 0;
}

.weather-modal-subtitle {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin: 0 0 15px 0;
    color: #ddd;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wm-forecast-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.wm-forecast-day {
    flex: 1;
    font-weight: 500;
    color: #eee;
}

.wm-forecast-icon {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.wm-forecast-temps {
    flex: 1;
    text-align: right;
    font-size: 0.95rem;
}

.wm-min {
    color: #aaa;
}

.wm-max {
    color: #fff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .weather-modal-content {
        padding: 20px;
        width: 95%;
    }
    .wm-current-temp {
        font-size: 2.5rem;
    }
    .weather-modal-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    .wm-current-main {
        gap: 10px;
    }
    .wm-current-main i {
        font-size: 2.2rem !important;
    }
    .wm-forecast-item {
        font-size: 0.9rem;
        padding: 8px 0;
    }
}

/* Utility to hide scrollbars */
.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

