/* ========================================
   VARIABLES & THEME
   ======================================== */
html {
    scroll-behavior: smooth;
}

:root {
    /* Top-level Variables */
    --clr-dark-blue: #0f172a;
    /* Softer slate blue */
    --clr-white: #ffffff;
    --clr-grey: #cbd5e1;
    --clr-grey-blue: rgba(177, 186, 192, 0.187);
    --clr-grey-orange: #ff621f20;
    /* Softer grey */
    --clr-orange: #ea7311;
    --clr-orange-2: #ff621f85;
    --clr-neon-green: #1c7ce5;
    /* Softer blue-green */
    --clr-black: #000000;
    --clr-dark-shadow: #020617;

    /* Semantic mapping - Dark Mode (Default) */
    --Primary: #ffffff;
    --Accent-2: var(--clr-neon-green);
    --Accent: var(--clr-orange);
    --Tertiary: var(--clr-dark-blue);

    --Surface-Body: var(--clr-dark-blue);
    --Surface-Card: #1e293b;
    /* Slate 800 for Dark Mode Cards */
    --bg-card-transparent: #659fcb0e;
    --card-bg: var(--bg-card-transparent);

    --Hero-Title: #ffffff;
    --Hero-Text: #ffffff;
    --Text-Paragraph: var(--clr-grey);
    --Text-Muted: #ffffffcc;

    --border-base: var(--Accent);
    --bg-glass: rgba(30, 41, 59, 0.7);
    /* Softer glass */
    --border-glass: rgba(255, 255, 255, 0.15);
    /* Softer border */
    --bg-subtle: rgba(148, 163, 184, 0.05);
    /* Very subtle slate tint */
    --overlay-dark: #0f172ae6;

    --Accent-2-light: rgba(255, 255, 255, 0.1);
    --Accent-light: rgba(255, 255, 255, 0.1);

    /* TOC Variables */
    --nav-glass: rgba(2, 13, 28, 0.657);
    --nav-border: rgba(255, 255, 255, 0.15);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

    /* Main Semantic Text & Background Variables */
    --text-main: #ffffff;
    --bg-main: var(--clr-dark-blue);

    /* ===== TYPOGRAPHIE ===== */
    --font-family-base: 'montserrat', sans-serif;
    --font-display: 'montserrat', sans-serif;

    /* Tailles de police */
    --font-size-hero: 48px;
    --font-size-hero-md: 45px;
    --font-size-titre-1: 36px;
    --font-size-titre-1-md: 30px;
    --font-size-titre-2: 20px;
    --font-size-titre-3: 1.25rem;

    --font-size-base: 1rem;
    --font-size-lg: 1.1rem;
    --font-size-xl: 1.15rem;
    --font-size-xl-md: 1.5rem;
    --font-size-sm: 0.99rem;
    --font-size-xs: 0.8rem;

    /* Poids */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;

    /* Hauteur de ligne */
    --line-height-tight: 1;
    --line-height-snug: 1.1;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.6;

    /* Espacement */
    --letter-spacing-tight: -0.05em;
    --letter-spacing-normal: -0.025em;
    --letter-spacing-wide: 0.1em;

    /* ===== ESPACEMENTS ===== */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;

    /* ===== BORDURES & OMBRES ===== */
    --border-radius-sm: 0.75rem;
    --border-radius-md: 1rem;
    --border-radius-lg: 1.5rem;
    --border-radius-xl: 2rem;
    --border-radius-2xl: 3rem;
    --border-radius-full: 9999px;

    --shadow-sm: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

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

body {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    transition: background-color 0.5s, color 0.5s;
    overflow-x: hidden;
    min-height: 100vh;
    background-color: #010c18;
    color: var(--text-main);
}

body.dark-mode {
    background-color: #010c18;
    color: var(--Text-Paragraph);
}

/* Light Mode Overrides */
body.light-mode {
    --text-main: var(--clr-dark-blue);
    --bg-main: #f5fbff;

    --Primary: var(--clr-orange);
    --Accent-2: var(--clr-neon-green);
    --Accent: var(--clr-orange);
    --Tertiary: var(--clr-dark-blue);

    --Surface-Body: #F4F7F9;
    --Surface-Card: #ffffff;
    --card-bg: #ffffff;

    --bg-glass: rgba(255, 255, 255, 0.45);
    --nav-glass: rgb(255, 255, 255);
    --nav-border: rgba(0, 0, 0, 0.08);
    --bg-subtle: rgba(251, 255, 255, 0.517);

    --border-glass: rgba(2, 20, 49, 0.15);
    --border-base: rgba(2, 20, 49, 0.3);
    --shadow-sm: 0 10px 15px -3px rgba(2, 20, 49, 0.2);
    --shadow-md: 0 20px 25px -5px rgba(2, 20, 49, 0.2);
    --shadow-lg: 0 15px 40px -5px rgba(2, 20, 49, 0.25);

    --Hero-Title: #ffffff;
    --Hero-Text: #ffffff;
    --Text-Paragraph: var(--clr-dark-blue);
    --Text-Muted: rgba(2, 20, 49, 0.7);

    background-color: var(--bg-main);
}

::selection {
    background: var(--Accent-2);
    color: var(--clr-white);
}

/* ========================================
   UTITLIARIES (Typography - titres)
   ======================================== */
h1 {
    font-size: var(--font-size-hero);
    line-height: 1.1;
    margin-bottom: 0.5em;
}

h2 {
    font-size: var(--font-size-titre-1);
    line-height: 1.2;
    margin-bottom: 0.75em;
    margin-top: 0.4rem;
}

h3 {
    font-size: var(--font-size-titre-2);
    line-height: 1.3;
    margin-bottom: 0.5em;
}

h4 {
    font-size: var(--font-size-titre-3);
    line-height: 1.4;
    margin-bottom: 0.5em;
}

h5,
h6 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.5em;
}

.titre-1 {
    margin: 15px 0;
}

.titre-2 {
    font-size: var(--font-size-titre-2);
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-normal);
}

.titre-3 {
    font-size: 1.6rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: var(--letter-spacing-normal);
}

.titre-articles {
    font-size: 32px;
    font-weight: var(--font-weight-semibold);
    letter-spacing: var(--letter-spacing-normal);
}

.article-title {
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    padding: 0 12px 12px;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.hero {
    font-size: var(--font-size-hero);
    font-weight: var(--font-weight-semibold);
    color: var(--Hero-Title);
    line-height: var(--line-height-tight);
    margin-top: var(--spacing-lg);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-text {
    font-size: 1rem;
    color: var(--Hero-Text);
    margin: 2rem auto;
    max-width: 800px;
    line-height: var(--line-height-relaxed);
    padding: 0 var(--spacing-md);
    opacity: 0.6;
    letter-spacing: 0.2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* --- Mobile Centering (< 775px) --- */
@media (max-width: 850px) {

    /* Centrage des titres */
    h1,
    h2,
    h4,
    h5,
    h6,
    .titre-1,
    .titre-2,
    .section-title,
    .footer-title,
    .articles-title,
    .card-title,
    .hero,
    .hero-text,
    .section-tag {
        text-align: center !important;
        justify-content: center !important;
    }

    .hero {
        font-size: var(--font-size-hero-md);
    }

    /* Centrage des conteneurs flex verticaux */
    .articles-header,
    .section-header-center,
    .prep-content,
    .footer-content,
    .hero-content,
    .card-content {
        align-items: center !important;
        text-align: center !important;
    }

    /* Centrage des boutons */
    .prep-btn,
    .view-all-btn,
    .hero-btn,
    .card-btn-be,
    .newsletter-form button {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Cas specifiques */
    .section-divider {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .newsletter-form {
        align-items: center !important;
    }

    .title-line {
        display: none;
        /* Souvent plus joli sans la ligne sur mobile si centre */
    }

    /* Exception: Article Cards aligned left */
    .article-card h3,
    .article-card p,
    .article-title {
        text-align: left !important;
        justify-content: flex-start !important;
    }
}

/* ========================================
   UTITLIARIES (Typography - textes body)
   ======================================== */

p {
    margin-bottom: 1em;
    line-height: 1.6;
}

.txt-center {
    text-align: center !important;
    max-width: 600px !important;
    margin: 0 auto;
}

.clr-accent-2 {
    color: var(--Accent-2);
}

.clr-accent {
    color: var(--Accent);
}

.txt-body {
    color: var(--text-paragraph);
    font-size: 16px;
    letter-spacing: 0.3px;
}

.txt-body li {
    align-items: center;
    align-content: center;
    display: flex;
    gap: 1rem;
    /* Active Flexbox */
}

body.light-mode .txt-body {
    color: var(--clr-dark-blue);
}

.text-centered-narrow {
    text-align: left;
    max-width: 600px;
    margin: 0 auto var(--spacing-2xl);
}

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

.clr-tertiary {
    color: var(--Tertiary);
}

.bg-surface {
    background-color: var(--Surface-Body);
}

.bg-card {
    background-color: var(--Surface-Card);
}

.italic {
    font-style: italic;
}

.icon-sm,
.icon-1 {
    width: 1rem;
    height: 1rem;
}

.icon-sm-left {
    margin: 0 4px 0 0;
}

.icon-3 {
    width: 3rem;
    height: 3rem;
}

.tip-box {
    max-width: 800px;
    margin: var(--spacing-lg) auto 0;
    padding: var(--spacing-lg);
    border: 1px solid var(--clr-accent);
    border-radius: var(--border-radius-md);
    background-color: rgba(255, 98, 31, 0.1);
    text-align: left;
}

body.light-mode .tip-box {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(2, 20, 49, 0.1);
}

.mx-4 {
    margin-left: 1rem;
    margin-right: 1rem;
}

/* ========================================
   COMPONENTS: NAVIGATION
   ======================================== */

.nav-container {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    width: 90%;
    max-width: 1100px;
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s ease;
}

.nav-container.top-8 {
    top: 2rem;
}

.nav-container.top-4 {
    top: 1rem;
}

.nav-container.nav-hidden {
    top: -100px !important;
    opacity: 0;
    pointer-events: none;
}

.nav-glass {
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    background-color: var(--nav-glass);
    border: 1px solid var(--nav-border);
    border-radius: var(--border-radius-full);
    padding: 0.45rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.175);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    cursor: pointer;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
}

.logo-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
}

.logo-text {
    font-weight: var(--font-weight-bold);
    letter-spacing: 1px;
    font-size: 0.95em;
    background: var(--text-main);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    margin: 0 0 0 20px;
}

.nav-links {
    display: none;
}

.nav-link {
    font-size: 13px;
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--Accent-2);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.nav-link:hover {
    color: var(--Accent-2);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

body.light-mode .nav-link {
    color: var(--clr-dark-blue);
    font-weight: 600;
}

.theme-toggle-btn {
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border-radius: var(--border-radius-full);
    background: var(--bg-glass);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--Accent-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle-btn:hover {
    background-color: var(--bg-glass);
}

.theme-toggle-btn [data-lucide="sun"],
.theme-toggle-btn-mobile [data-lucide="sun"],
.mobile-theme-toggle [data-lucide="sun"] {
    color: var(--clr-orange) !important;
}

/* Mobile Menu */
.burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 21.6px;
    height: 16.2px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 60;
}

.burger-bar {
    height: 1.8px;
    background-color: var(--Primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 8px rgba(238, 155, 0, 0.3);
}

.bar-1 {
    width: 100%;
}

.bar-2 {
    width: 70%;
    align-self: flex-end;
}

.bar-3 {
    width: 100%;
}

.burger-menu.active .bar-1 {
    transform: translateY(8px) rotate(45deg);
    width: 100%;
}

.burger-menu.active .bar-2 {
    opacity: 0;
    transform: translateX(10px);
}

.burger-menu.active .bar-3 {
    transform: translateY(-8px) rotate(-45deg);
    width: 100%;
}

.mobile-overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 85%;
    height: auto;
    min-height: 250px;
    background-color: var(--nav-glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--nav-border);
    border-radius: var(--border-radius-2xl);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2xl) var(--spacing-md);
    gap: var(--spacing-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, -45%) scale(0.9);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body.light-mode .mobile-overlay {
    background-color: var(--nav-glass);
    border-color: rgba(0, 35, 57, 0.1);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.mobile-nav-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: var(--spacing-2xl);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: var(--spacing-sm);
}

.mobile-nav-link {
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    color: var(--clr-white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.mobile-nav-link:hover {
    background-color: var(--bg-subtle);
    color: var(--Accent-2);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

body.light-mode .mobile-nav-link:hover {
    background-color: rgba(0, 35, 57, 0.05);
}

body.light-mode .mobile-nav-link {
    color: var(--clr-dark-blue);
}

.mobile-theme-toggle {
    background-color: var(--bg-subtle);
    border: 1px solid var(--border-glass);
    color: var(--clr-white);
    width: 3.5rem;
    height: 3.5rem;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

body.light-mode .mobile-theme-toggle {
    color: var(--clr-dark-blue);
    border-color: rgba(0, 35, 57, 0.1);
}

.mobile-theme-toggle:hover {
    background-color: var(--Accent-2);
    color: var(--clr-white);
}

/* ========================================
   RESPONSIVE: NAVIGATION
   ======================================== */

@media (min-width: 820px) {
    .burger-menu {
        display: none;
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 1rem;
        font-weight: var(--font-weight-medium);
    }
}

@media (max-width: 820px) {
    #theme-toggle {
        display: none;
    }

    .presentation-map {
        margin-top: 50px !important;
    }
}

/* ========================================
   COMPONENTS: HERO
   ======================================== */

.hero-header {
    position: relative;
    min-height: 85vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 8rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-size: cover;
    background-position: center;
}

/* Blob animations */
.blob-blue,
.blob-orange {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.blob-blue {
    width: 400px;
    height: 400px;
    background: var(--Accent-2);
    opacity: 0.5;
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.blob-orange {
    width: 300px;
    height: 300px;
    background: var(--Accent);
    opacity: 0.3;
    bottom: -80px;
    left: -80px;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    padding: 0 var(--spacing-md);
    max-width: 72rem;
}

.hero-btn {
    backdrop-filter: blur(12px);
    background-color: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin: 0 auto;
    cursor: pointer;
    transition: all 0.3s;
    color: inherit;
    font-weight: var(--font-weight-bold);
    box-shadow: var(--shadow-md);
}

.hero-btn:hover {
    background-color: var(--Accent-2);
    border-color: var(--Accent-2);
    color: var(--Surface-Body);
}

.hero-location-badge {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    display: none;
    backdrop-filter: blur(12px);
    background-color: var(--bg-subtle);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--bg-glass);
    animation: bounce 1s infinite;
    transition: all 0.3s;
}

@media (min-width: 1024px) {
    .hero-location-badge {
        display: block;
    }
}

.badge-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.badge-label {
    font-size: var(--font-size-xs);
    color: var(--Text-Paragraph);
    text-transform: uppercase;
}

.badge-value {
    font-weight: var(--font-weight-bold);
}

/* Time Pill */
.time-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(2, 22, 39, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 100px;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.time-dot {
    width: 8px;
    height: 8px;
    background-color: var(--clr-neon-green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--clr-neon-green);
    animation: heartbeat 2s infinite ease-in-out;
}

.time-value {
    color: var(--clr-white);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    font-family: var(--font-family-base);
}

.time-location {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 12px;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ========================================
   COMPONENTS: PILL MENU
   ======================================== */
.pill-menu-container {
    padding: var(--spacing-2xl) var(--spacing-lg);
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.pill-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--spacing-lg);
    width: 100%;
    max-width: 80rem;
    /* Standardize */
}

.pill-button {
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--border-radius-full);
    border: 1px solid var(--clr-orange);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background-color: transparent;
    color: var(--clr-white);
    font-weight: var(--font-weight-semibold);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.pill-button:hover {
    background-color: var(--clr-orange);
    transform: translateY(-2px);
    color: var(--clr-black);
}

body.light-mode .pill-button {
    color: var(--clr-dark-blue);
}

/* ========================================
   SECTIONS & CARDS
   ======================================== */

/* Marquee */
.marquee-bar {
    width: 100%;
    background-color: var(--Accent);
    padding: var(--spacing-md) 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 30;
}

.marquee-content {
    display: inline-block;
}

.marquee-item {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--clr-dark-blue);
    margin: 0 var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* General Section */
#presentation {
    position: relative;
    overflow: hidden;
}

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

.section-divider {
    width: 4rem;
    height: 6px;
    background-color: var(--Accent-2);
    border-radius: var(--border-radius-full);
    margin: 0 auto 50px;
}

/* Glassmorphism Card for Tips */
.glass-tip-card {
    background-color: var(--clr-grey-blue);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 40px;
    padding: var(--spacing-xl);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.glass-tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.2);
    border-color: var(--Accent-2);
}

.glass-tip-card li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    /* Better spacing than 4px */
}

.glass-tip-card i {
    flex-shrink: 0;
    /* Prevent icon shrinking */
}

@media (min-width: 480px) and (max-width: 890px) {
    .sub-nav-link {
        padding: 12px 16px;
        min-height: 48px;
    }

    .sub-nav-num-box {
        width: 28px;
        height: 28px;
    }
}

/* ========================================
   GRIDs
   ======================================== */

/* Country Cards */
.country-grid {
    display: grid;
    gap: var(--spacing-xl);
    max-width: 100%;
    /* Fill section-container */
    margin: 0 auto;
    grid-template-columns: 1fr 1fr;
}

.articles-grid {
    display: grid;
    gap: var(--spacing-xl);
    grid-template-columns: repeat(3, 1fr);
}

.dest-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: var(--spacing-2xl);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) auto 0;
    max-width: 1000px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

/* Compact Seasons */

.prep-tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
    margin-top: 4rem;
}

.hm-dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1.5rem;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.origins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.activity-list,
.practical-cards,
.stories-grid,
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.gastro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 1rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    padding: 0 var(--spacing-md);
}

/* Ordi (plus de 900px) */
@media (min-width: 900px) {
    .prep-grid {
        display: grid;
        gap: var(--spacing-2xl);
        align-items: center;
        grid-template-columns: 1fr 1.2fr;
    }

    .comparison-card-dual {
        grid-template-columns: 1fr 1fr;
    }

    .prep-grid-belg {
        display: grid;
        gap: var(--spacing-2xl);
        align-items: center;
        grid-template-columns: 1.5fr 1fr;
    }

    .stories-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: var(--spacing-2xl);
    }
}

/* MOBILES (Moins de 640px) */
@media (max-width: 640px) {

    .apps-grid,
    .activity-list,
    .practical-cards,
    .origins-grid,
    .prep-grid,
    .prep-grid-belg,
    .stories-grid .gastro-grid,
    .hm-dest-grid,
    .country-grid,
    .articles-grid {
        grid-template-columns: 1fr !important;
    }

    .prep-grid,
    .prep-grid-belg {
        gap: 3rem !important;
    }

    .container,
    .container-2 {
        max-width: 500px !important;
    }

    .newsletter-form,
    .bottom-info {
        display: block !important;
        flex-direction: row !important;
        gap: 2rem !important;
        text-align: center !important;
    }

    .newsletter-input {
        margin: 0 auto 50px;
    }

    .footer-bottom {
        max-width: 450px !important;
    }
}

/* ========================================
   CONTAINERS
   ======================================== */
.container {
    max-width: 950px;
    margin: 0 auto;
    padding: 3rem auto;
}

.container-2 {
    max-width: 850px;
    margin: 0 auto;
    padding: 3rem auto;
}

.txt-container {
    max-width: 800px;
    margin: 0 auto;
}

.section-container {
    padding: var(--spacing-lg) var(--spacing-md);
    max-width: 80rem;
    margin: 18vh auto;
}

.img-container-wrapper {
    position: relative;
}

.img-container {
    aspect-ratio: 16/9;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg-subtle);
    position: relative;
}

.img-container-2 {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--bg-subtle);
    position: relative;
}

.img-container,
.img-container-2 img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.7s;
}

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

.img-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--overlay-dark), transparent);
}

.presentation-map {
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    transition: transform 0.5s ease;
    position: relative;
}

.presentation-map::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius-lg);
    background: radial-gradient(circle, transparent 40%, rgba(0, 35, 57, 0.6) 100%);
    pointer-events: none;
}

body.light-mode .presentation-map::after {
    background: radial-gradient(circle, transparent 40%, rgba(231, 239, 231, 0.7) 100%);
}

.presentation-map:hover {
    transform: scale(1.02);
}

.prep-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.prep-description {
    color: var(--Text-Paragraph);
    font-size: var(--font-size-lg);
}

.prep-btn {
    background-color: var(--clr-neon-green);
    color: var(--clr-white);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--border-radius-full);
    font-weight: var(--font-weight-bold);
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    width: fit-content;
    box-shadow: var(--shadow-sm);
}

.prep-btn:hover {
    background-color: var(--clr-orange);
    color: var(--clr-black);
}

.card-top-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-content {
    position: relative;
    z-index: 10;
    padding: 52px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    gap: 16px;
    flex-grow: 1;
}

.card-desc {
    color: rgba(255, 255, 255, 0.34);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    display: block;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-shadow: 0 1px 2px var(--clr-dark-shadow);
    font-weight: 500;
}

.card-btn-be {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background-color: var(--clr-white);
    color: #000000;
    font-weight: var(--font-weight-bold);
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    letter-spacing: 0.5px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-transform: none;
    white-space: nowrap;
}

.card-btn-be:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px var(--clr-dark-shadow);
    background-color: #f8f8f8;
    color: #000000;
}

/* Articles */
#articles {
    margin-bottom: 2vh;
}

.articles-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: var(--spacing-xl);
    gap: var(--spacing-md);
}

.title-line {
    width: 2rem;
    height: 4px;
    border-radius: 2px;
}

.line-blue {
    background-color: var(--Accent-2);
}

.line-orange {
    background-color: var(--Accent);
}

.socials-links {
    color: var(--clr-orange);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    margin: 0 20px 0 0;
}

.view-all-btn {
    font-weight: var(--font-weight-semibold);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.7rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 35, 57, 0.2);
    border-radius: var(--border-radius-full);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: var(--Primary);
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    width: fit-content;
    white-space: nowrap;
}

.view-all-btn i {
    transition: transform 0.3s ease;
}

.view-all-btn:hover {
    background-color: var(--Accent-2);
    color: var(--clr-white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 238, 131, 0.25);
}

.view-all-btn:hover i {
    transform: translateX(4px);
}

.article-card {
    cursor: pointer;
    position: relative;
    background-color: #9ebdff14;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.light-mode .article-card {
    background-color: #f5f5f7;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.article-img-wrapper {
    border-radius: 32px 32px 20px 20px;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
    background-color: var(--card-bg);
    position: relative;
    aspect-ratio: 1/1;
}

.article-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.article-card:hover .article-img-wrapper img {
    transform: scale(1.02);
}

.article-category {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    margin-top: 8px;
    margin-bottom: var(--spacing-xs);
    padding: 0 12px;
}

.cat-orange {
    color: var(--Accent);
}

.cat-blue {
    color: var(--Accent);
}

.article-card:hover .article-title-be {
    color: var(--Accent-2);
}

.article-card:hover .article-title-br {
    color: var(--Accent-2);
}

/* ========================================
   DESTINATIONS
   ======================================== */
.dest-hero {
    min-height: 85vh;
}

.dest-info-card {
    background-color: #9ebcff1c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 100%;
}

body.light-mode .dest-info-card {
    background-color: #a3a0bb3f;
}

.dest-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border-color: var(--Accent-2);
}

.dest-info-card .dest-link-indicator i {
    transition: transform 0.3s ease;
}

.dest-info-card:hover .dest-link-indicator i {
    transform: translateX(6px);
}

body.light-mode .dest-info-card p,
body.light-mode .dest-info-card h3,
body.light-mode .dest-info-card li {
    color: var(--clr-dark-blue) !important;
}

.dest-icon {
    color: var(--clr-orange);
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-full);
    position: absolute;
    top: 32px;
    right: 32px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Destinations Lists */
.dest-info-card h3.titre-2 {
    margin-bottom: var(--spacing-md);
    font-size: 1.3rem;
    text-align: left;
    padding-right: 4rem;
}

.dest-info-card .txt-body {
    line-height: 1.6;
    margin-bottom: 0;
}

.dest-info-card ul.txt-body {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.dest-info-card ul.txt-body li {
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
    text-align: left;
}

.dest-info-card ul.txt-body li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.dest-info-card p.txt-body {
    text-align: left;
    line-height: 1.6;
}

/* ========================================
   STORIES articles
   ======================================== */

.story-card-featured {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background-color: transparent;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card-featured:hover {
    transform: translateY(-5px);
}

.story-featured-img {
    width: 100%;
    aspect-ratio: 16/9;
    height: 300px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.story-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card-featured:hover .story-featured-img img {
    transform: scale(1.05);
}

.story-featured-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.story-category {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    color: var(--Accent);
    letter-spacing: 1px;
}

.story-title {
    font-weight: var(--font-weight-bold);
    color: var(--clr-white);
    line-height: 1.2;
    margin: 8px 0;
}

.story-excerpt {
    font-size: var(--font-size-base);
    color: var(--Text-Paragraph);
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
}

.story-meta {
    font-size: var(--font-size-xs);
    color: var(--Text-Muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Sidebar Stories */
.stories-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.story-card-compact {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    text-decoration: none;
    transition: transform 0.2s ease;
    background-color: #9ebdff14;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 40px;
    padding: 20px;
}

.story-card-compact:hover {
    transform: translateX(5px);
}

.story-compact-img {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.story-compact-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-compact-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-category-sm {
    color: var(--Accent);
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.story-title-sm {
    font-size: 0.8rem;
    font-weight: var(--font-weight-bold);
    color: var(--clr-white);
    line-height: 1.3;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.story-date {
    font-size: 0.85rem;
    color: var(--Text-Muted);
}

body.light-mode .story-featured-content p,
body.light-mode .story-compact-content h4,
body.light-mode .story-title,
body.light-mode .story-title-sm {
    color: var(--clr-dark-blue) !important;
}

/* ========================================
   TIMELINE
   ======================================== */
.timeline-section {
    background-color: #010c18;
    position: relative;
    overflow: hidden;
}

.timeline-container {
    position: relative;
    max-width: 900px;
    /* Match section-container */
    margin: 3rem auto 0 !important;
    padding: 0 var(--spacing-md);
    width: 100%;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

.timeline-progress {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    background: var(--Accent);
    transform: translateX(-50%);
    height: 0%;
    transition: height 0.1s linear;
    box-shadow: 0 0 15px var(--Accent);
}

.timeline-item {
    position: relative;
    margin-bottom: 200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-content {
    width: 45%;
    padding: 2rem;
    background: rgba(11, 30, 47, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.6s ease;
    opacity: 0.2;
    transform: translateY(30px);
}

.timeline-item.active .timeline-content {
    opacity: 1;
    transform: translateY(0);
    border-color: var(--Accent-2);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #021627;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: all 0.4s ease;
}

.timeline-item.active .timeline-dot {
    background: var(--Accent);
    border-color: var(--Accent);
    box-shadow: 0 0 15px var(--Accent);
    transform: translate(-50%, -50%) scale(1.3);
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.year-label {
    font-size: 3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: -30px;
    z-index: -1;
    transition: color 0.4s ease;
    font-family: var(--font-family-base);
}

.timeline-item.active .year-label {
    color: rgba(0, 158, 79, 0.15);
}

.timeline-img-wrapper {
    width: 45%;
    display: none;
}

.timeline-img {
    border-radius: 2rem;
    filter: grayscale(100%);
    transition: all 0.7s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.timeline-item.active .timeline-img {
    filter: grayscale(0%);
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--clr-neon-green);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-main) !important;
    font-size: 16px;
    line-height: 1.6;
}

/* Timeline Light Mode */
body.light-mode .timeline-section {
    background-color: var(--Surface-Body);
}

body.light-mode .timeline-line {
    background: rgba(0, 35, 57, 0.1);
}

body.light-mode .timeline-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 35, 57, 0.1);
    box-shadow: 0 10px 30px rgba(0, 35, 57, 0.05);
}

body.light-mode .timeline-dot {
    background: var(--clr-white);
    border-color: rgba(0, 35, 57, 0.2);
}

body.light-mode .timeline-item.active .timeline-dot {
    background: var(--Accent);
    border-color: var(--Accent);
}

body.light-mode .timeline-content p,
body.light-mode .timeline-content h3 {
    color: var(--clr-dark-blue) !important;
}

/* Ordi (plus de 900px) */
@media (min-width: 900px) {
    .story-title {
        font-size: 1.9rem;
    }

    .history-box {
        padding: 4rem;
    }

    .footer-wrapper {
        padding: 0 var(--spacing-lg);
    }

    .section-container {
        padding: var(--spacing-lg) var(--spacing-lg);
    }

    .img-container {
        height: 100%;
        aspect-ratio: auto;
    }

    .articles-header {
        flex-direction: row;
        align-items: center;
    }

    .timeline-container {
        padding: 0 var(--spacing-lg);
    }

    .timeline-img-wrapper {
        display: block;
    }

    .pill-list {
        grid-template-columns: repeat(1fr);
        gap: var(--spacing-md);
    }

    .pill-button {
        padding: 0.875rem var(--spacing-md);
        font-size: var(--font-size-sm);
    }

    .footer-title {
        font-size: var(--font-size-titre-1-md);
    }

    .newsletter-form {
        display: flex;
    }

    .footer-bottom {
        flex-direction: row;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer-wrapper {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    position: relative;
    width: 100%;
    max-width: 80rem;
    /* Match section-container */
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    /* Consistent padding */
}

.footer-blur-orange {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background-color: var(--Accent-2);
    filter: blur(100px);
    opacity: 0.2;
}

.footer-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
}

.footer-globe {
    color: var(--Accent);
    margin-bottom: var(--spacing-lg);
}

.footer-title {
    font-size: var(--font-size-titre-1);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.footer-desc {
    color: var(--Text-Paragraph);
    margin-bottom: var(--spacing-xl);
    max-width: 28rem;
    margin: 0 auto;
    font-size: 18px;
}

.newsletter-form {
    width: 100%;
    max-width: 28rem;
    gap: var(--spacing-md);
    margin: 50px auto;
    align-items: center;
}

.newsletter-input {
    flex: 1;
    background-color: var(--bg-subtle);
    border: 1px solid var(--bg-glass);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-md) var(--spacing-lg);
    color: var(--clr-dark-blue);
    outline: none;
    transition: border-color 0.3s;
    width: 100%;
}

.newsletter-input:focus {
    border-color: var(--Accent-2);
}

body.light-mode .newsletter-input {
    color: var(--clr-dark-blue);
    background-color: rgba(255, 255, 255, 0.8);
    border-color: rgba(0, 35, 57, 0.2);
}

.footer-bottom {
    /* padding-top: 50px;
    border-top: 1px solid var(--clr-white) !important; */
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
}

.bottom-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.round-badge {
    width: 2rem;
    height: 2rem;
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-semibold);
}

.badge-be {
    background-color: var(--Accent);
    color: var(--clr-white);
}

.badge-br {
    background-color: var(--Accent-2);
    color: var(--clr-white);
}

.copyright {
    font-weight: var(--font-weight-bold);
    margin-left: var(--spacing-xs);
}

.social-links {
    display: flex;
    gap: var(--spacing-xl);
    font-size: var(--font-size-sm);
    color: var(--Text-Muted);
}

.social-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--clr-orange);
}

/* ========================================
   ANIMATIONS & SCROLLBAR
   ======================================== */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee-scrolling {
    animation: marquee-scroll 20s linear infinite;
    display: inline-block;
}

.animate-spin-slow {
    animation: spin-slow 10s linear infinite;
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.4;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border-glass);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--Accent-2-light);
}

body.light-mode ::-webkit-scrollbar-thumb {
    background: rgba(2, 20, 49, 0.3);
}

/* ========================================
   WIDGETS (Subnav, Reading Progress)
   ======================================== */
/* Sub-Nav */
.sub-nav-container {
    position: sticky;
    top: 7rem;
    z-index: 99;
    width: 90%;
    max-width: 280px;
    margin: 3rem auto;
    background-color: var(--nav-glass);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--nav-border);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media (min-width: 1400px) {
    .sub-nav-container {
        position: fixed;
        left: auto;
        right: max(2rem, calc(50% - 70rem));
        top: 30rem;
        transform: translateY(0);
        margin: 0;
        width: 200px;
        z-index: 100;
        background: rgba(1, 18, 34, 0.4);
    }

    .sub-nav-container.reveal {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

}

.toc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.25rem;
    padding-left: 0.5rem;
}

.toc-indicator {
    width: 4px;
    height: 24px;
    background: var(--clr-orange);
    border-radius: 10px;
}

.toc-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--clr-white);
    margin: 0;
}

.sub-nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.sub-nav-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid transparent;
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.sub-nav-num-box {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-orange);
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.sub-nav-num {
    color: var(--clr-dark-blue);
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1;
}

.sub-nav-text {
    flex: 1;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.842);
    transition: color 0.3s ease;
}

.sub-nav-link:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(5px);
}

.sub-nav-link.active {
    background: rgba(1, 18, 34, 0.8);
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    padding: 10px 14px;
    transform: scale(1.02);
}

.sub-nav-link.active .sub-nav-num-box {
    background: var(--clr-orange);
}

.sub-nav-link.active .sub-nav-num {
    color: var(--clr-dark-blue);
}

.sub-nav-link.active .sub-nav-text {
    color: white;
    border-bottom: 2px solid var(--clr-orange);
    padding-bottom: 2px;
}

/* Responsive Subnav */
@media (max-width: 1399px) {
    .sub-nav-container {
        position: fixed;
        top: 5.5rem;
        left: 50%;
        transform: translateX(-50%) translateY(-20px);
        z-index: 1000;
        width: 95%;
        max-width: 700px;
        padding: 0.75rem;
        background: var(--nav-glass);
        backdrop-filter: blur(16px);
        border: 1px solid var(--nav-border);
        border-radius: 20px;
        box-shadow: 0 10px 30px var(--clr-dark-shadow);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: var(--transition-smooth);
    }

    .sub-nav-container.reveal {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .toc-header {
        display: none;
    }

    .sub-nav {
        flex-direction: row;
        gap: 0.5rem;
        overflow-x: auto;
        padding: 0 0.25rem;
        scroll-behavior: smooth;
        scrollbar-width: none;
    }

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

    .sub-nav-link {
        flex-shrink: 0;
        min-width: auto;
        padding: 8px 12px;
        border-radius: 12px;
        font-size: 0.8rem;
    }

    .sub-nav-num-box {
        width: 24px;
        height: 24px;
    }

    .sub-nav-num {
        font-size: 0.75rem;
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .sub-nav-container {
        max-width: 800px;
        padding: 1rem;
    }

    .sub-nav {
        gap: 0.75rem;
    }

    .sub-nav-link {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
}

@media (min-width: 850px) and (max-width: 1023px) {
    .sub-nav-container {
        max-width: 700px;
        padding: 1rem;
    }

    .sub-nav-link {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .sub-nav-num-box {
        width: 26px;
        height: 26px;
    }

}

@media (max-width: 479px) {
    .sub-nav-container {
        width: 98%;
        padding: 0.5rem;
        top: 0.5rem;
    }

    .sub-nav-link {
        padding: 12px 14px;
        min-height: 48px;
    }

    .sub-nav-text {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .sub-nav-num-box {
        width: 28px;
        height: 28px;
    }

    .txt-body.text-centered-narrow {
        max-width: 390px;
    }

    .conclusion-header {
        padding: 10px;
    }

    .conclusion-title {
        max-width: 300px;
    }
}

.circle-bg {
    stroke: rgba(255, 255, 255, 0.05);
}

.circle-fg {
    stroke: var(--clr-orange);
    stroke-dasharray: 113.1;
    stroke-dashoffset: 113.1;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.3s ease-out;
}

.section-num {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--clr-orange);
}

.section-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--clr-white);
    max-width: 120px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

body.light-mode .sub-nav-container {
    background: var(--nav-glass) !important;
    backdrop-filter: blur(40px) !important;
    border-color: var(--nav-border);
}

body.light-mode .toc-title,
body.light-mode .sub-nav-text {
    color: var(--clr-dark-blue);
}

body.light-mode .sub-nav-link {
    border-color: transparent;
}

body.light-mode .sub-nav-num-box {
    background: var(--clr-orange);
    color: var(--clr-dark-blue);
}

body.light-mode .sub-nav-link.active {
    background: var(--Surface-Card);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(255, 98, 31, 0.15);
}

body.light-mode .sub-nav-link.active .sub-nav-num-box {
    background: var(--clr-orange);
    color: var(--clr-dark-blue);
}

body.light-mode .sub-nav-link.active .sub-nav-text {
    color: var(--clr-dark-blue);
    border-bottom: 2px solid var(--clr-orange);
}

body.light-mode .reading-progress-widget .progress-card {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(2, 20, 49, 0.1);
    box-shadow: 0 20px 40px rgba(2, 20, 49, 0.1);
}

body.light-mode .reading-progress-widget .circle-bg {
    stroke: rgba(2, 20, 49, 0.05);
}

/* Additional Icon Sizes */
.icon-xs {
    width: 0.875rem;
    height: 0.875rem;
}

.icon-md {
    width: 2rem;
    height: 2rem;
}

/* ========================================
   SPECIALTY (Gastronomy)
   ======================================== */

.spec-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    background-color: var(--bg-subtle);
    overflow: hidden;
    min-height: 350px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
}

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

.spec-card.has-bg {
    color: var(--clr-white);
}

.spec-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: transform 0.5s ease;
}

.spec-card:hover .spec-card-bg {
    transform: scale(1.05);
}

.spec-card-overlay {
    position: absolute;
    inset: 0;
    background: #0f172aa0;
    backdrop-filter: blur(1px);
    z-index: 1;
}

.spec-card-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.spec-tag {
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    color: var(--Accent);
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    padding: 4px 8px;
    border-radius: 4px;
    width: fit-content;
}

.spec-title {
    font-size: var(--font-size-titre-3);
    font-weight: var(--font-weight-bold);
    color: var(--clr-white) !important;
    /* Force white on overlay */
    margin: 0;
}

.spec-desc {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

/* ========================================
   GASTRONOMY SECTION - CUSTOM STYLES
   ======================================== */

.gastro-wrapper {
    padding: var(--spacing-4xl) 0;
    background-color: var(--bg-main);
    min-height: 100vh;
}

/* Pill Card Design inspired by the reference image */
.gastro-card {
    background: var(--Surface-Card);
    border-radius: 200px;
    /* Perfect Stadium/Pill shape */
    padding: 2rem 1.7rem 3rem 1.7rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--border-glass);
    height: 100%;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.gastro-card:hover {
    transform: translateY(-12px);
    border-color: var(--Accent-2);
    box-shadow: var(--shadow-lg);
}

/* Top circular image */
.gastro-img-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--border-glass);
    margin-bottom: 2rem;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.gastro-card:hover .gastro-img-wrapper {
    border-color: var(--Accent-2);
    transform: scale(1.05);
}

.gastro-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tags & Placeholder Lines (Pink aesthetic translated to site brand colors) */
.gastro-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.gastro-tag {
    font-size: 13px;
    font-weight: 600;
    color: var(--Accent);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gastro-line {
    height: 2px;
    background: var(--Accent);
    border-radius: 2px;
    opacity: 0.6;
}

.line-1 {
    width: 35px;
}

.line-2 {
    width: 25px;
    opacity: 0.3;
}

/* Typography */
.gastro-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--clr-white);
    margin-bottom: 1rem;
    line-height: 1.2;
    font-family: var(--font-display);
}

.gastro-description {
    font-size: 13px;
    color: var(--clr-grey);
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.85;
    max-width: 200px;
}

/* Light Mode Overrides */
body.light-mode .gastro-card {
    background: #ffffff;
    border-color: rgba(2, 20, 49, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-mode .gastro-title {
    color: var(--clr-dark-blue);
}

body.light-mode .gastro-description {
    color: #475569;
}

/* Reusing Section Heading styles from original-style.css */
.history-title {
    font-size: var(--font-size-titre-1);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
}

.history-title-2 {
    font-size: var(--font-size-titre-1-md);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

.history-title span,
.titre-3 span,
.history-title-2 span {
    color: var(--Accent);
}

.section-divider {
    width: 60px;
    height: 4px;
    background: var(--Accent);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

body.light-mode .history-title,
body.light-mode .history-title-2 {
    color: var(--clr-dark-blue);
}

.txt-body.text-centered-narrow {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    color: var(--clr-grey);
    opacity: 0.9;
}

/* ========================================
   ACTIVITY CARDS (Belgique Page)
   ======================================== */

.activity-card {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-subtle);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-glass);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--Accent-2);
}

.activity-card-number {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 6rem;
    font-weight: 800;
    opacity: 0.05;
    line-height: 1;
    padding: var(--spacing-md);
    pointer-events: none;
    z-index: 0;
}

.activity-card-content {
    flex: 1;
    padding: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    text-align: left;
    /* Default alignment */
}

/* Force left alignment specifically for activity cards */
.activity-card-content h3,
.activity-card-content p {
    text-align: left !important;
}

.activity-card-desc {
    color: var(--Text-Paragraph);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.activity-card-button {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--Accent);
    color: var(--Accent);
    border-radius: var(--border-radius-full);
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-xs);
    transition: all 0.3s ease;
    width: fit-content;
}

.activity-card-button:hover {
    background-color: var(--Accent);
    color: var(--clr-white);
}

.activity-card-image-wrap {
    flex: 1;
    position: relative;
    min-height: 250px;
}

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

/* Remove scale on hover for image if we want caption fixed, or keep it. User asked for caption to NOT disappear. 
   Assuming caption was disappearing because of overflow hidden or z-index.
   Actually, looking at previous code, caption was static. 
   Wait, the user said "ne s'efface pas au hover". 
   If I look at line 3042 in previous `view_file`, it has no hover state that hides it. 
   Maybe the image scale was covering it? z-index issue?
   The caption is absolute bottom right. Image is object-fit cover.
   Let's ensure caption has high z-index and maybe slight transition.
*/

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

.activity-card-caption {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    /* Slightly darker for readability */
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    /* More pill-like */
    font-size: 13px;
    backdrop-filter: blur(4px);
    z-index: 10;
    /* Ensure on top */
    opacity: 1 !important;
    /* Force visible */
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Light Mode Overrides */
body.light-mode .activity-card {
    border-color: rgba(0, 35, 57, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-mode .activity-card-title {
    color: var(--clr-dark-blue);
}

body.light-mode .activity-card-number {
    color: var(--clr-dark-blue);
    opacity: 0.05;
}

/* ========================================
   RECAP TABLE & FAQ (Belgique Page)
   ======================================== */
.recap-container {
    overflow-x: auto;
    margin-top: var(--spacing-xl);
    background: var(--bg-subtle);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-glass);
}

.recap-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.recap-table th,
.recap-table td {
    padding: var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.recap-table th {
    font-weight: var(--font-weight-bold);
    color: var(--Accent-2);
    text-transform: uppercase;
    font-size: var(--font-size-sm);
    letter-spacing: 1px;
}

.dot-container {
    display: flex;
    gap: 4px;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-green {
    background-color: var(--clr-neon-green);
}

.dot-yellow {
    background-color: #facc15;
}

.dot-red {
    background-color: #ef4444;
}

/* FAQ Styles */
.faq-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.faq-icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: var(--spacing-md);
}

/* Light Mode Overrides for Table/FAQ */
body.light-mode .recap-container {
    border-color: rgba(0, 35, 57, 0.1);
}

body.light-mode .recap-table th {
    color: var(--clr-dark-blue);
}

body.light-mode .recap-table td {
    color: var(--Text-Paragraph);
    border-bottom-color: rgba(0, 35, 57, 0.1);
}

body.light-mode .faq-divider {
    background-color: rgba(0, 35, 57, 0.1);
}

/* --- Activités Compact Grid --- */


.activity-card {
    display: flex;
    flex-direction: column !important;
    /* Force vertical card */
    min-height: auto !important;
    height: 100%;
}

.activity-card-image-wrap {
    height: 200px;
    flex: none;
    order: -1;
    /* Image always on top */
}

.activity-card-content {
    padding: var(--spacing-md);
    flex: 1;
}

.activity-card-desc {
    font-size: var(--font-size-xs);
    margin-bottom: var(--spacing-md);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
}

.activity-card-number {
    font-size: 4rem;
    top: -10px;
    left: -10px;
}

/* --- Sub-Nav Updates (Discreet) --- */
/* Remove old fixed positioning globally first to reset */
.sub-nav-container {
    position: sticky !important;
    top: 80px;
    /* Below navbar */
    margin: 2rem auto;
    width: 100%;
    max-width: 80rem;
    /* Match other containers */
    background: var(--nav-glass);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid var(--nav-border);
    border-radius: var(--border-radius-full);
    padding: 0.5rem 1rem;
    z-index: 90;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    left: auto !important;
    right: auto !important;
}

.toc-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
    padding-left: 0;
}

.toc-title {
    font-size: 1rem;
    margin: 0;
}

.sub-nav {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE/Edge */
    padding: 0.25rem;
}

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

.sub-nav-link {
    white-space: nowrap;
    padding: 0.4rem 0.8rem;
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-sm);
}

.sub-nav-num-box {
    display: none;
    /* Hide numbers for compact look */
}

.sub-nav-link.active {
    background: var(--Accent);
    color: white !important;
    border-color: var(--Accent);
    transform: none;
    box-shadow: none;
}

.sub-nav-link.active .sub-nav-text {
    color: white !important;
    border-bottom: none;
    font-weight: bold;
}

/* Hide on mobile if preferred, or maintain horizontal scroll */
@media (max-width: 850px) {
    .titre-3 {
        margin-top: 50px !important;
    }

    .comparison-card-dual {
        grid-template-columns: 1fr;
    }

    .comp-side.pros {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .history-box {
        padding: 2.3rem 1.5rem !important;
        border-radius: 1.5rem;
    }

    .history-title {
        font-size: 1.8rem;
    }

    .history-content p {
        font-size: 16px;
    }

    .video-container {
        border-radius: 1.5rem;
        margin-top: 2rem;
    }

    .prep-timeline-container {
        padding: 0 1rem;
    }

    .prep-timeline-item {
        padding-left: 3rem;
    }

    .prep-timeline-line {
        left: 0.5rem;
    }

    .prep-timeline-dot {
        left: calc(0.5rem - 4px);
    }

    .prep-timeline-card {
        padding: 2rem;
    }

    /* Timeline Responsive */
    .timeline-section {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .timeline-line,
    .timeline-progress {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-bottom: 60px;
        padding-left: 55px;
    }

    .timeline-content,
    .timeline-img-wrapper {
        width: 100%;
        margin: 0;
    }

    .timeline-content {
        padding: 1.25rem;
        border-radius: 1.5rem;
    }

    .timeline-img-wrapper {
        display: block;
        margin-top: 1rem;
        margin-bottom: 2rem;
    }

    .timeline-img {
        height: 220px;
        border-radius: 1.5rem;
    }

    .timeline-dot {
        left: 30px;
        top: 30px;
    }

    .year-label {
        font-size: 2.2rem;
        top: -35px;
        left: 0;
        opacity: 0.3 !important;
        font-weight: 700;
    }

    .article-img-wrapper {
        max-height: 600px;
    }

    .toc-header {
        display: none;
        /* Hide "Sommaire" title on mobile to save space */
    }

    /* Ensure sub-nav is visible and horizontal scrolling works */
    .sub-nav-container {
        position: sticky !important;
        top: 60px;
        /* Right under the mobile header */
        margin: 0;
        width: 100%;
        max-width: 100vw;
        border-radius: 0;
        padding: 0.5rem;
        background: var(--bg-card);
        opacity: 1 !important;
        visibility: visible !important;
        transform: translate(0, 0) !important;
        left: 0;
        z-index: 99;
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .sub-nav {
        flex-direction: row;
        gap: 0.5rem;
        width: 100%;
        padding: 0 0.5rem;
        scrollbar-width: none;
    }

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

    .sub-nav-link {
        flex-shrink: 0;
        padding: 6px 12px;
        font-size: 0.8rem;
        background: rgba(255, 255, 255, 0.05);
        /* Slight contrast */
        border-radius: var(--border-radius-full);
        margin-right: 5px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: var(--Text-Paragraph);
    }

    .sub-nav-link.active {
        background: var(--Accent);
        color: white;
        border-color: var(--Accent);
    }

    /* Activity Card Mobile Specifics */
    .activity-card-image-wrap {
        height: 180px;
        /* Smaller image on mobile */
    }

    .activity-card-title {
        font-size: var(--font-size-titre-2);
    }

    .activity-card-number {
        font-size: 3rem;
    }

    .activity-card-content {
        padding: var(--spacing-lg) !important;
        flex: 1 !important;
    }

    .activity-card {
        flex-direction: row;
        align-items: stretch;
        min-height: 300px;
    }

    .activity-card:nth-child(even) {
        flex-direction: row-reverse;
    }

    .faq-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .faq-number {
        font-size: 1.5rem;
    }

    /* Astuces - Conseils Pratiques */
    .dest-category-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .dest-info-card {
        padding: 20px;
        border-radius: 24px;
    }

    .dest-info-card h3.titre-2 {
        padding-right: 0;
        font-size: 1.3rem;
    }

    .dest-icon {
        top: 20px;
        right: 20px;
        width: 2.5rem;
        height: 2.5rem;
    }

    /* Astuces Checklists & Layout General */
    .country-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }

    .glass-tip-card {
        padding: 20px;
        border-radius: 24px;
    }

    /* Apropos - Grande Image Responsive */
    .img-bg-section {
        margin: 40px auto;
        padding: 15px;
        min-height: 250px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .img-bg-section-img {
        border-radius: 20px;
        min-height: 250px;
    }
}

/* --- Sub-Nav Updates (Correct Positioning for Desktop 2026 Style) --- */
@media (min-width: 1000px) {
    .sub-nav-container {
        /* On large screens, instead of floating, we make it a neat header strip too */
        position: sticky !important;
        top: 90px;
        width: 100%;
        max-width: 1000px;
        margin: 2rem auto;
        left: 0;
        right: 0;
        background: rgba(var(--bg-card-rgb), 0.8) !important;
        backdrop-filter: blur(20px);
        transform: none !important;
        border-radius: var(--border-radius-full);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        padding: 0.5rem 1rem;
        z-index: 90;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        display: flex;
        justify-content: space-between;
    }

    .toc-header {
        display: flex;
        margin: 0;
        padding-right: 1rem;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .sub-nav {
        flex: 1;
        justify-content: flex-start;
        padding-left: 1rem;
        gap: 1rem;
    }

    .sub-nav-link {
        font-weight: 500;
        color: var(--Text-Muted);
        transition: all 0.2s;
        border-radius: var(--border-radius-full);
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .sub-nav-link:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--clr-white);
    }

    .sub-nav-link.active {
        background: var(--Accent);
        color: white !important;
        box-shadow: 0 4px 12px rgba(255, 98, 31, 0.3);
    }
}

/* --- Fix Sub-Nav Position in "Light Mode" or Specific contexts --- */
body.light-mode .sub-nav-container {
    background: var(--nav-glass) !important;
    backdrop-filter: blur(30px) !important;
    -webkit-backdrop-filter: blur(30px) !important;
    border: 1px solid var(--nav-border);
}

body.light-mode .sub-nav-link {
    color: var(--Text-Paragraph);
}

body.light-mode .sub-nav-link.active {
    background: var(--Accent);
    color: white !important;
}

/* --- Updated Sub-Nav (Bottom Floating Bar) --- */
.sub-nav-container {
    position: fixed !important;
    top: auto !important;
    /* Unset top */
    bottom: 2rem !important;
    /* Float at bottom */
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;

    width: auto !important;
    /* Shrink to fit content */
    max-width: 95% !important;

    background: var(--nav-glass) !important;
    backdrop-filter: blur(40px) !important;

    border: 1px solid var(--border-glass);
    border-radius: 100px !important;
    /* Capsule shape */

    padding: 6px 8px !important;
    /* Very compact padding */
    margin: 0 !important;
    z-index: 1000 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Hide toc header */
.toc-header {
    display: none !important;
}

.sub-nav {
    display: flex !important;
    flex-direction: row !important;
    gap: 4px !important;
    /* Tighter gap */
    padding: 0 !important;
    margin: 0 !important;
    align-items: center !important;
    /* Allow scroll on tiny screens if needed, mostly centered */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

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

/* Make links smaller/compact */
.sub-nav-link {
    padding: 6px 12px !important;
    font-size: 0.75rem !important;
    /* Small text */
    border-radius: 100px !important;
    background: transparent !important;
    border: 1px solid transparent !important;
    color: var(--Text-Muted) !important;
    font-weight: 600 !important;
    margin: 0 !important;
    width: auto !important;
    flex: 0 0 auto;
    /* Don't shrink */
}

/* Hide the number circle completely */
.sub-nav-num-box {
    display: none !important;
}

/* Active state */
.sub-nav-link.active {
    background: var(--Accent) !important;
    color: white !important;
    border-color: var(--Accent) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

.sub-nav-link.active .sub-nav-text {
    color: white !important;
    border: none !important;
}

/* Hover state */
.sub-nav-link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}


body.light-mode .sub-nav-link {
    color: var(--clr-dark-blue) !important;
}

body.light-mode .sub-nav-link.active {
    color: white !important;
}

/* ========================================
   USER REQUEST overrides (Sommaire vs Progress)
   ======================================== */

/* Mobile: Hide Subnav, Show Progress Widget Centered */
@media (max-width: 1023px) {

    .reading-progress-widget {
        display: flex !important;
        position: fixed !important;
        left: 50% !important;
        right: auto !important;
        bottom: 2rem !important;
        width: auto !important;
        transform: translateX(-50%) translateY(20px) !important;
        transition: transform 0.4s ease, opacity 0.4s ease;
        opacity: 0;
        visibility: hidden;
    }

    .reading-progress-widget.reveal {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0) !important;
    }
}

/* Desktop: Show Subnav, Hide Progress Widget */
@media (min-width: 1024px) {

    /* Ensure only subnav is shown */
    .sub-nav-container {
        display: flex !important;
    }
}

/* ========================================
   UNIQUE SECTION: A PROPOS (Le Pont)
   ======================================== */

.pont-central-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--Accent), transparent);
    transform: translateX(-50%);
    opacity: 0.5;
}

/* ========================================
   UNIQUE SECTION: ASTUCES (Conseils Pratiques)
   ======================================== */

.practical-card {
    background: var(--bg-subtle);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.practical-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--Accent);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: top;
}

.practical-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.03);
}

.practical-card:hover::before {
    transform: scaleY(1);
}

.practical-card .dest-link-indicator i {
    transition: transform 0.3s ease;
}

.practical-card:hover .dest-link-indicator i {
    transform: translateX(6px);
}

.practical-icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 98, 31, 0.1);
    /* Orange sheer */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--Accent);
    transition: transform 0.3s ease;
}

.practical-card:hover .practical-icon-circle {
    transform: scale(1.1) rotate(5deg);
    background: var(--Accent);
    color: white;
}

.practical-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--clr-white);
}

/* Light Mode Overrides */
body.light-mode .practical-card {
    background: white;
    border-color: rgba(0, 0, 0, 0.05);
    /* Softer border */
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.125);
}

body.light-mode .practical-title {
    color: var(--clr-dark-blue);
}

body.light-mode .practical-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ========================================
   HERO LOCATION BADGE & MARQUEE
   ======================================== */

.badge-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.badge-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--clr-white);
}

/* Light mode for Marquee - User requested optimization (no black text) */
/* Reverted to previous state as requested */
/* Light Mode Overrides for Hero Badge (Restored) */
body.light-mode .hero-location-badge {
    background: var(--bg-glass);
    /* Using glass var */
    border-color: rgba(0, 0, 0, 0.05);
    /* Softer border */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.light-mode .badge-label {
    color: var(--Text-Paragraph);
}

body.light-mode .badge-value {
    color: var(--clr-dark-blue);
}

/* ========================================
   MARQUEE ALIGNMENT FIX
   ======================================== */
.marquee-content {
    display: flex;
    align-items: center;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
}

/* ========================================
   CONCLUSION & FAQ (New Style)
   ======================================== */
.conclusion-container {
    background-color: var(--Surface-Body);
    /* Matches dark mode bg */
    border-radius: 40px;
    padding: 3rem 1.5rem;
    color: var(--clr-white);
    margin: 4rem auto;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border-glass);
}

/* Ensure contrast in light mode - force dark card behavior */
body.light-mode .conclusion-container {
    background-color: var(--clr-dark-blue);
    color: white;
    box-shadow: 0 20px 60px rgba(0, 35, 57, 0.2);
}

.conclusion-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 5rem;
}

.conclusion-title {
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--clr-white);
}

.conclusion-text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--clr-white);
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    align-items: start;
    gap: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: var(--Accent);
}

.faq-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--Accent);
    min-width: 50px;
}

.faq-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: var(--clr-white);
}

.faq-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ========================================
   USER REQUESTS: GASTRO, ACTIVITY, RECAP, SEASONS
   ======================================== */

/* 1. Gastronomie Card Readability */

.spec-title {
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    color: white !important;
}

.spec-desc {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

/* 3. Recap Table - Match Conclusion Style */
.recap-container {
    background-color: var(--Surface-Body);
    /* Dark Blue */
    border-radius: 40px;
    padding: 3rem;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border-glass);
    overflow: hidden;
    margin: 2rem auto;
}

/* Force dark theme for table inside recap container */
.recap-table {
    width: 100%;
}

.recap-table th {
    color: var(--Accent);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.recap-table td {
    color: white !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 1rem;
    font-size: 1rem;
}

/* Light mode override for Recap (Keep it Dark for Consistency/Premium feel, same as Conclusion) */
body.light-mode .recap-container {
    background-color: var(--clr-dark-blue);
    color: white;
}

/* ========================================
   FULL WIDTH FOOTER (User Request)
   ======================================== */
footer {
    width: 100%;
    margin-top: 6rem;
    padding: 2rem 0 !important;
    /* High contrast dark */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Ensure wrapper limits width of content */
.footer-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Make text lighter for contrast */
.footer-title,
.footer-desc {
    color: white;
}

.footer-desc {
    opacity: 0.8;
}

/* Light Mode Override for Footer (Keep Dark) */
body.light-mode footer {
    background: var(--clr-dark-shadow) !important;
    color: white !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.light-mode .footer-title,
body.light-mode .footer-desc,
body.light-mode .social-link {
    color: white !important;
}

/* Light Mode Override for Conclusion (Adaptive) */
body.light-mode .conclusion-container {
    background-color: #f5f5f7;
    color: var(--clr-dark-blue);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-mode .conclusion-title,
body.light-mode .faq-title,
body.light-mode .faq-content h3 {
    color: var(--clr-dark-blue) !important;
}

body.light-mode .conclusion-text,
body.light-mode .faq-content p {
    color: var(--Text-Paragraph) !important;
}

body.light-mode .faq-item {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(0, 0, 0, 0.05);
}

body.light-mode .faq-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* ACTIVE NAV STATE (Restored) */
.nav-link.active {
    color: var(--Accent) !important;
    font-weight: 700;
}

.nav-link.active::after {
    transform: scaleX(1);
    background-color: var(--Accent);
}

/* Mobile Active State */
.mobile-nav-link.active {
    color: var(--Accent);
    font-weight: 700;
}

/* ========================================
   DROPDOWN MENUS & LANGUAGE SWITCHER
   ======================================== */

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 10px 0;
    /* Increase hit area */
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    padding: 1rem;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

body.light-mode .dropdown-menu {
    background: var(--clr-white);
    box-shadow: 0 20px 40px rgba(0, 35, 57, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.125);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    padding: 0.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: var(--clr-white);
    transition: all 0.25s ease;
}

body.light-mode .dropdown-link {
    color: var(--clr-dark-blue);
}

.dropdown-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--clr-orange);
}

body.light-mode .dropdown-link:hover {
    background: rgba(255, 98, 31, 0.08);
    color: var(--clr-orange);
}

.dropdown-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-orange);
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.light-mode .dropdown-icon {
    background: rgba(255, 98, 31, 0.1);
    color: var(--clr-orange);
}

.dropdown-link:hover .dropdown-icon {
    background: var(--clr-orange);
    color: var(--clr-white);
    transform: scale(1.1) rotate(-5deg);
}

.dropdown-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-title {
    font-weight: 700;
    font-size: 16px !important;
    letter-spacing: 0.01em;
    color: var(--clr-white);
    line-height: 1.3rem;
}

body.light-mode .dropdown-title {
    color: var(--clr-dark-blue);
}

.dropdown-desc {
    font-size: 0.7rem;
    opacity: 0.85;
    font-weight: 500;
    color: var(--clr-grey);
}

body.light-mode .dropdown-desc {
    color: #475569;
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    /* margin-left: var(--spacing-sm); */
    /* Removed to ensure proper alignment via gap */
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--border-glass);
    padding: 0 12px;
    height: 2.25rem;
    border-radius: var(--border-radius-full);
    color: var(--text-main);
    cursor: pointer;
    font-weight: var(--font-weight-semibold);
    font-size: var(--font-size-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background-color: var(--bg-subtle);
    color: var(--Accent-2);
    border-color: var(--Accent-2);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background-color: var(--Surface-Card);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-glass);
    padding: 4px;
    display: none;
    /* hidden by default */
    min-width: 120px;
    z-index: 101;
}

.lang-switcher:hover .lang-dropdown {
    display: block;
    animation: fadeIn 0.2s ease;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    width: 100%;
    border: none;
    background: transparent;
    color: var(--text-main);
    cursor: pointer;
    border-radius: var(--border-radius-sm);
    font-size: var(--font-size-sm);
    text-align: left;
}

.lang-option:hover {
    background-color: var(--bg-subtle);
    color: var(--Accent-2);
}

.lang-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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

/* --- Mobile Menu & Sub-Menu Enhancements --- */

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: var(--spacing-sm);
}

.mobile-link-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.mobile-dropdown-toggle {
    background: transparent;
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-full);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-main);
    transition: all 0.3s ease;
}

.mobile-dropdown-toggle:hover,
.mobile-dropdown-toggle.active {
    background-color: var(--bg-subtle);
    transform: rotate(180deg);
}

/* Hide toggle if active is rotated 180 */
.mobile-link-wrapper .mobile-nav-link {
    margin: 0;
    /* Override previous margin */
}

.mobile-sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, opacity 0.3s ease, padding 0.3s ease;
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 90%;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--border-radius-md);
    margin-top: 0;
}

.mobile-sub-menu.open {
    max-height: 500px;
    /* Arbitrary sufficient height */
    opacity: 1;
    margin-top: 10px;
    padding: 15px 0;
    border: 1px solid var(--border-glass);
}

.mobile-sub-link {
    text-decoration: none;
    font-size: 1rem;
    color: var(--Text-Paragraph);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    transition: color 0.3s, background-color 0.3s;
    text-align: center;
    width: 100%;
}

.mobile-sub-link:hover {
    color: var(--Accent-2);
    background-color: var(--bg-subtle);
}

body.light-mode .mobile-sub-menu {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.1);
}

body.light-mode .mobile-dropdown-toggle {
    border-color: rgba(0, 0, 0, 0.2);
}

/* Ensure mobile links are visible */
.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Make sure mobile overlay fits all content */
.mobile-overlay {
    overflow-y: auto !important;
    /* Allow scrolling inside overlay */
    max-height: 90vh;
    /* Don't exceed screen */
    padding-top: 60px;
    /* Space for close button if needed, although overlay covers */
    /* Ensure content is centered if small, scroll if big */
    justify-content: flex-start;
}

.bg-green {
    background: linear-gradient(135deg, #1b533b, #153324);
}

.bg-blue {
    background: linear-gradient(135deg, #2b3974, #1b1e36);
}

.bg-brown {
    background: linear-gradient(135deg, #81462a, #351c14);
}

.cdc-badge {
    position: absolute;
    top: var(--spacing-xl);
    left: var(--spacing-xl);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    z-index: 10;
}

.cdc-graphic-center {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
    min-height: 250px;
}

.cdc-graphic-center img,
.cdc-graphic-center span {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 10px 20px var(--clr-dark-shadow));
}

.cdc-graphic-right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
    font-size: 80px;
}

.cdc-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cdc-meta {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
}

.cdc-title {
    font-family: var(--font-family-serif, Georgia, serif);
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 5px var(--clr-dark-shadow);
    color: #fff !important;
}

.cdc-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.cdc-card-large .cdc-desc {
    font-size: 1.05rem;
}

.cdc-btn {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cdc-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.cdc-card-large .cdc-btn {
    background: #c59344;
    border: none;
    color: #fff;
    margin-top: 10px;
}

.cdc-card-large .cdc-btn:hover {
    background: #b38237;
}

/* ========================================
   BENTO GRID DESIGN
   ======================================== */


.bento-item {
    background-color: var(--Surface-Card);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--Accent);
}

.col-span-12 {
    grid-column: span 12;
}

.col-span-6 {
    grid-column: span 6;
}

.col-span-4 {
    grid-column: span 4;
}

.col-span-3 {
    grid-column: span 3;
}

.col-span-8 {
    grid-column: span 8;
}

.col-span-2 {
    grid-column: span 2;
}

@media (min-width: 850px) {
    .md\:col-span-12 {
        grid-column: span 12;
    }

    .md\:col-span-8 {
        grid-column: span 8;
    }

    .md\:col-span-4 {
        grid-column: span 4;
    }

    .md\:col-span-6 {
        grid-column: span 6;
    }

    .md\:col-span-3 {
        grid-column: span 3;
    }

    .md\:col-span-2 {
        grid-column: span 2;
    }
}

.bento-icon {
    width: 2rem;
    height: 2rem;
    color: var(--Accent);
    margin-bottom: var(--spacing-sm);
}

.bento-title {
    font-size: var(--font-size-titre-3);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xs);
    color: var(--Primary);
}

.bento-value {
    font-size: var(--font-size-titre-2);
    font-weight: var(--font-weight-extrabold);
    color: var(--Accent-2);
}

.bento-text {
    font-size: var(--font-size-sm);
    color: var(--Text-Paragraph);
    line-height: var(--line-height-relaxed);
}

.bento-badges {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
    margin-top: var(--spacing-sm);
}

.bento-badge {
    background: rgba(var(--clr-orange-rgb), 0.1);
    color: var(--Accent);
    padding: 0.2rem 0.6rem;
    border-radius: var(--border-radius-full);
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-bold);
    border: 1px solid var(--Accent);
}

/* ========================================
   ACTIVITY PILLS MENU
   ======================================== */
.activity-filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin: var(--spacing-lg) 0 var(--spacing-2xl);
    flex-wrap: wrap;
}

.activity-pill {
    background-color: var(--Surface-Card);
    border: 1px solid var(--border-glass);
    color: var(--Text-Paragraph);
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    font-weight: var(--font-weight-medium);
    transition: var(--transition-smooth);
}

.activity-pill:hover,
.activity-pill.active {
    background-color: var(--Accent);
    color: var(--clr-white);
    border-color: var(--Accent);
}

/* Carte Interactive Styles */
.interactive-map-container {
    width: 100%;
    max-width: 800px;
    margin: var(--spacing-2xl) auto;
    position: relative;
    background: var(--Surface-Card);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-glass);
}

.map-svg {
    width: 100%;
    height: auto;
    display: block;
}

.map-province {
    fill: var(--Surface-Body);
    /* Initial color */
    stroke: var(--Accent);
    stroke-width: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.map-province:hover,
.map-province.active {
    fill: var(--Accent);
    stroke: var(--clr-white);
    stroke-width: 2px;
}

body.light-mode .map-province {
    fill: #e2e8f0;
}

body.light-mode .map-province:hover,
body.light-mode .map-province.active {
    fill: var(--Accent);
}

.province-info-panel {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--bg-subtle);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--Accent);
    display: none;
}

.province-info-panel.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

.province-title {
    font-size: var(--font-size-titre-2);
    color: var(--Primary);
    margin-bottom: var(--spacing-xs);
}

.province-desc {
    font-size: var(--font-size-base);
    color: var(--Text-Paragraph);
    line-height: var(--line-height-relaxed);
}

.province-stats {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-glass);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: var(--font-size-xs);
    color: var(--Text-Muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-value {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--Accent-2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* ========================================
   GALLERY COMPONENT
   ======================================== */
.gallery-rounded-container {
    background-color: var(--bg-subtle);
    padding: var(--spacing-xl);
    border-radius: 40px;
    border: 1px solid var(--border-glass);
    margin-top: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.gallery-item {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ========================================
   APROPOS PAGE SPECIFIC IMPROVEMENTS
   ======================================== */

.origin-card {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.saviez-vous {
    margin-top: var(--spacing-lg);
    background: rgba(var(--clr-orange-rgb), 0.1) !important;
    border: 1px solid var(--clr-orange) !important;
    padding: 2rem;
    border-radius: 2rem;
}

body.light-mode .origin-card {
    background: var(--clr-grey-blue);
    border: 1px solid rgba(0, 35, 57, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.origin-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--clr-dark-shadow);
    border-color: var(--Accent);
}

.origin-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.origin-card .card-title,
.activity-card-title {
    font-size: var(--font-size-titre-2);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    color: var(--clr-white);
}

body.light-mode .origin-card .card-title {
    color: var(--clr-dark-blue);
}

.origin-card .flag-icon {
    font-size: 1.9rem;
    margin-left: 10px;
}

.origin-card,
.practical-text,
.card-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--Text-Paragraph);
}

body.light-mode .origin-card .card-text {
    color: var(--Text-Paragraph);
}

/* History Box */

.history-box {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 2.5rem;
    position: relative;
}

body.light-mode .history-box {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 35, 57, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.125);
}

.history-tag,
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--clr-dark-shadow);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    border: 1px solid var(--clr-grey-blue);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: var(--clr-neon-green);
}

body.light-mode .history-tag,
.section-tag {
    background: var(--clr-grey-blue);
    color: var(--clr-orange);
}

.history-title,
.titre-1 {
    font-size: var(--font-size-titre-1);
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--clr-white);
}

body.light-mode .history-title,
.titre-1 {
    color: var(--clr-dark-blue);
}

.history-title span {
    color: var(--Accent);
}

.history-content p {
    margin-bottom: 1.5rem;
    font-size: 16px;
    color: var(--clr-grey);
}

.txt-base {
    margin-bottom: 1.5rem;
    font-size: 16px;
    line-height: 1.7;
    color: var(--clr-grey);
    max-width: 900px;
    margin: 0 auto;
}

body.light-mode .history-content p,
.txt-base p {
    color: var(--Text-Paragraph);
}

.history-quote {
    margin-top: 3rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--Accent);
    font-weight: 600;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--clr-white);
    line-height: 1.5;
}

body.light-mode .history-quote {
    color: var(--clr-dark-blue);
}

/* Video Section Specifics */
.video-section {
    padding: 6rem 0;
}

.video-container {
    max-width: 1000px;
    margin: 4rem auto 0;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 2.5rem;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-mode .video-container {
    box-shadow: 0 40px 80px rgba(0, 35, 57, 0.2);
}

/* Gallery Improvements */
.gallery-section {
    padding: 6rem 0;
}

.gallery-item {
    aspect-ratio: 1;
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(255, 98, 31, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ========================================
   GUIDES VERTICAL SECTION (Screenshot Style)
   ======================================== */

.guide-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 41, 59, 0.6);
    padding: 8px 18px;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--clr-white);
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dot-orange {
    width: 6px;
    height: 6px;
    background: #ff621f;
    border-radius: 50%;
    box-shadow: 0 0 10px #ff621f;
}

.guide-accent {
    color: #ff621f;
    position: relative;
    display: inline-block;
}

.guide-accent::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255, 98, 31, 0.2);
    border-radius: 2px;
}

.guide-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 850px;
    margin: 0 auto;
}

.guide-item-alt {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.guide-item-alt:hover {
    background: var(--clr-grey-blue);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.guide-item-icon {
    width: 4.5rem;
    height: 4.5rem;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 2rem;
    color: var(--clr-orange);
}

.guide-item-icon i {
    width: 2rem;
    height: 2rem;
    color: #60a5fa;
    filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.4));
}

.guide-item-info {
    flex-grow: 1;
}

.guide-item-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--clr-white);
    margin-bottom: 0.6rem;
    letter-spacing: -0.01em;
}

.guide-item-info p {
    font-size: 16px;
    margin: 0 !important;
    line-height: 1.5;
    color: var(--clr-white);
}

.guide-item-arrow {
    width: 1.25rem;
    height: 1.25rem;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

.guide-item-alt:hover .guide-item-arrow {
    color: var(--clr-white);
    transform: translateX(8px);
}

/* Light Mode Overrides */
body.light-mode .guide-tag {
    background: rgba(0, 0, 0, 0.05);
    color: var(--clr-dark-blue);
    border-color: rgba(0, 0, 0, 0.05);
}

body.light-mode .guide-item-alt {
    background-color: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 40px;
}

body.light-mode .guide-item-alt:hover {
    background: var(--clr-white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

body.light-mode .guide-item-info h3 {
    color: var(--clr-dark-blue);
}

body.light-mode .guide-item-info p {
    color: var(--Text-Paragraph);
    opacity: 0.8;
}

body.light-mode .guide-item-icon {
    background: var(--clr-grey-orange);
    border-color: rgba(0, 0, 0, 0.05);
}

body.light-mode .guide-item-arrow {
    color: var(--clr-dark-blue);
}

/* ========================================
   APPS GRID (Astuces Page)
   ======================================== */

.app-link-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.light-mode .app-link-card {
    background: var(--clr-grey-blue);
    border: 1px solid rgba(0, 35, 57, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.app-link-card:hover {
    transform: translateY(-5px);
}

body.light-mode .app-link-card:hover {
    box-shadow: 0 10px 25px rgba(255, 98, 31, 0.15);
}

.app-icon-hex {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--bg-subtle);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--Accent);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.app-link-card:hover .app-icon-hex {
    background: var(--Accent);
    color: var(--clr-white);
    transform: rotate(-5deg);
}

.app-info {
    display: flex;
    flex-direction: column;
}

.app-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-white);
}

body.light-mode .app-title {
    color: var(--clr-dark-blue);
}

.app-status {
    font-size: 0.7rem;
    color: var(--Accent-2);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    background: #b5cbff1c;
    padding: 2px 8px;
    border-radius: 4px;
    width: fit-content;
}

body.light-mode .app-status {
    background: var(--clr-grey);
}

.app-external-icon {
    margin-left: auto;
    width: 1.2rem;
    height: 1.2rem;
    color: var(--clr-grey);
    opacity: 0.4;
    transition: all 0.3s ease;
}

body.light-mode .app-external-icon {
    color: var(--clr-dark-blue);
}

.app-link-card:hover .app-external-icon {
    opacity: 1;
    transform: translate(2px, -2px);
    color: var(--Accent);
}

/* ========================================
   PREP PAGE IMPROVEMENTS (comment-preparer-son-voyage.html)
   ======================================== */

.prep-tip-card-alt {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: 2.3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

body.light-mode .prep-tip-card-alt {
    background: rgba(198, 198, 198, 0.8);
    border: 1px solid rgba(0, 35, 57, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.prep-number-badge {
    display: inline-flex;
    padding: 0.25rem 0.75rem;
    background: var(--Accent);
    color: white;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.prep-bg-num {
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}

body.light-mode .prep-bg-num {
    color: #ff621f18;
}

.prep-tip-card-alt h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--clr-white);
    position: relative;
    z-index: 1;
}

body.light-mode .prep-tip-card-alt h3 {
    color: var(--clr-dark-blue);
}

.prep-tip-card-alt p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--clr-grey);
    position: relative;
    z-index: 1;
}

body.light-mode .prep-tip-card-alt p {
    color: var(--Text-Paragraph);
}

/* Prep Timeline specific */
.prep-timeline-section {
    position: relative;
    padding: 4rem 0;
}

.prep-timeline-container {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
}

.prep-timeline-line {
    position: absolute;
    left: 1rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--Accent), transparent);
    opacity: 0.3;
}

.prep-timeline-item {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 4rem;
}

.prep-timeline-item:last-child {
    margin-bottom: 0;
}

.prep-timeline-dot {
    position: absolute;
    left: calc(1rem - 4px);
    top: 2rem;
    width: 10px;
    height: 10px;
    background: var(--Accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--Accent);
}

.prep-timeline-card {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 2rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

body.light-mode .prep-timeline-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 35, 57, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.prep-timeline-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--clr-white);
}

body.light-mode .prep-timeline-card h3 {
    color: var(--clr-dark-blue);
}

.prep-timeline-card p,
.prep-timeline-card ul {
    color: var(--clr-grey);
    line-height: 1.7;
}

body.light-mode .prep-timeline-card p,
body.light-mode .prep-timeline-card ul {
    color: var(--Text-Paragraph);
}

.prep-timeline-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.prep-timeline-card ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.prep-timeline-card ul li::before {
    content: '•';
    color: var(--Accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Hover effects */
.prep-tip-card-alt:hover,
.prep-timeline-card:hover {
    transform: translateY(-5px);
    border-color: var(--Accent);
    background: rgba(30, 41, 59, 0.6);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

body.light-mode .prep-tip-card-alt:hover,
body.light-mode .prep-timeline-card:hover {
    background: var(--clr-white);
    border-color: var(--Accent);
    box-shadow: 0 15px 40px rgba(0, 35, 57, 0.1);
}

/* ========================================
   CONTACT PAGE SPECIFIC
   ======================================== */

.contact-form-wrapper {
    border: 1px solid rgba(var(--clr-orange-rgb), 0.1);
    border-radius: 40px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
}

body.light-mode .contact-form-wrapper {
    background: var(--clr-white);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.125);
}

.contact-input-box {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--clr-orange);
    margin-bottom: 0.25rem;
}

.contact-field {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    padding: 1.25rem;
    color: var(--clr-white);
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.light-mode .contact-field {
    background: var(--clr-grey-blue);
    border-color: rgba(0, 0, 0, 0.08);
    color: var(--clr-dark-blue);
}

.contact-field:focus {
    border-color: var(--clr-orange);
    background: rgba(255, 98, 31, 0.05);
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

body.light-mode .contact-field:focus {
    background: #fff;
    box-shadow: 0 10px 25px rgba(255, 98, 31, 0.1);
}

.contact-submit-btn {
    width: fit-content;
    padding: 1.25rem 3rem;
    background: var(--clr-neon-green) !important;
    color: white;
    border: none;
    border-radius: 1.25rem;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 98, 31, 0.3);
    background: #ff753e;
}

/* ========================================
   COMPACT DESIGN SYSTEM (Belgique Page)
   ======================================== */

/* Compact Comparison */
.comparison-container-alt {
    max-width: 1000px;
    margin: 3rem auto;
}

.comparison-card-dual {
    display: grid;
    gap: 0;
    padding: 0 !important;
    overflow: hidden;
}

.comp-side {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.comp-side.pros {
    background: rgba(16, 185, 129, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.comp-side.cons {
    background: rgba(239, 68, 68, 0.05);
}

body.light-mode .comp-side.pros {
    background: rgba(16, 185, 129, 0.03);
}

body.light-mode .comp-side.cons {
    background: rgba(239, 68, 68, 0.03);
}

.comp-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.comp-header i {
    font-size: 1.5rem;
}

.pros .comp-header i {
    color: #10b981;
}

.cons .comp-header i {
    color: #ef4444;
}

.comp-list-alt {
    list-style: none;
    padding: 0;
}

.comp-list-alt li {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--clr-grey);
}

body.light-mode .comp-list-alt li {
    color: var(--Text-Paragraph);
}

.comp-list-alt li i {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 1rem;
}

.pros .comp-list-alt li i {
    color: #10b981;
}

.cons .comp-list-alt li i {
    color: #ef4444;
}

/*br & BE*/
/* ========================================
   NOUVELLE SECTION : IMMERSIVE DESTINATION CARDS
   ======================================== */
.hm-dest-section {
    padding: var(--spacing-4xl) 0;
    background: var(--bg-main);
    overflow: hidden;
    transition: background-color 0.5s ease;
}

body.light-mode .hm-dest-section {
    background: var(--Surface-Body);
}

.hm-dest-card {
    position: relative;
    height: 500px;
    border-radius: 2.5rem;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-glass);
    background: var(--Surface-Card);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (min-width: 1024px) {
    .hm-dest-card {
        height: 600px;
    }
}

.hm-dest-card:hover {
    transform: scale(1.01);
    z-index: 10;
}

.hm-dest-border {
    position: absolute;
    inset: 0;
    z-index: 30;
    border: 2px solid transparent;
    border-radius: 2.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.hm-dest-card:hover .hm-dest-border {
    opacity: 1;
}

.hm-dest-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    filter: saturate(0.7);
    transition: transform 1s ease-out, filter 1s ease-out;
}

.hm-dest-card:hover .hm-dest-bg {
    transform: scale(1.1);
    filter: saturate(1.3);
}

.hm-dest-overlay-depth {
    position: absolute;
    inset: 0;
    background: var(--clr-dark-blue);
    opacity: 0.1;
}

.hm-dest-card:hover .hm-dest-overlay-depth {
    backdrop-filter: blur(2px);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    opacity: 0.8;
    transition: opacity 0.7s ease;
}

.hm-dest-overlay-tint {
    position: absolute;
    inset: 0;
    mix-blend-mode: overlay;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.hm-dest-card:hover .hm-dest-overlay-tint {
    opacity: 0.5;
}

/* Badges & Icons */
.hm-dest-badge-code {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    z-index: 40;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.7s ease;
}

.hm-dest-card:hover .hm-dest-badge-code {
    transform: rotate(360deg) scale(1.1);
    border-color: var(--Accent-2);
}

.hm-dest-arrow {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    z-index: 40;
    opacity: 0;
    transform: translateX(1rem);
    transition: all 0.5s ease;
}

.hm-dest-card:hover .hm-dest-arrow {
    opacity: 1;
    transform: translateX(0);
}

.hm-dest-arrow-box {
    padding: 1rem;
    background: var(--clr-white);
    color: var(--clr-black);
    border-radius: var(--border-radius-md);
    transform: rotate(45deg);
    transition: transform 0.5s ease;
    box-shadow: var(--shadow-lg);
}

.hm-dest-card:hover .hm-dest-arrow-box {
    transform: rotate(0deg);
}

/* Content Rendering */
.hm-dest-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    z-index: 40;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 50%;
}

.hm-dest-line {
    height: 4px;
    width: 45px;
    border-radius: 10px;
    transition: width 0.7s ease;
}

.hm-dest-card:hover .hm-dest-line {
    width: 90px;
}

.hm-dest-title-wrap {
    transition: all 0.9s cubic-bezier(0.19, 1, 0.22, 1);
    transform: translateY(8rem);
    opacity: 0;
    z-index: 5;
}

.hm-dest-card:hover .hm-dest-title-wrap {
    transform: translateY(0);
    opacity: 1;
}

.hm-dest-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: var(--font-weight-black);
    color: var(--clr-white);
    line-height: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hm-dest-reveal-area {
    opacity: 0;
    transform: translateY(3rem);
    transition: all 0.7s ease-out;
    pointer-events: none;
}

.hm-dest-card:hover .hm-dest-reveal-area {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.hm-dest-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-style: italic;
    font-weight: var(--font-weight-medium);
    margin-bottom: 2.5rem;
    max-width: 500px;
    line-height: 1.6;
}

/* --- MOBILE OPTIMIZATIONS (Always show content) --- */
@media (max-width: 1023px) {
    .hm-dest-overlay-depth {
        background: var(--clr-dark-blue);
        opacity: 0.7;
    }

    .hm-dest-reveal-area,
    .hm-dest-arrow {
        opacity: 1 !important;
        transform: translate(0) !important;
    }

    .hm-dest-title-wrap {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }

    .hm-dest-line {
        width: 70px !important;
    }

    .hm-dest-content {
        padding: 2rem;
    }

    .hm-dest-title {
        font-size: 1.75rem;
    }
}

/* Buttons */
.hm-dest-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--clr-white);
    color: var(--clr-black) !important;
    /* Force black text by default */
    padding: 1rem 2rem;
    border-radius: var(--border-radius-full);
    font-weight: var(--font-weight-black);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: var(--font-family-base);
    transition: color 0.4s ease;
}

.hm-dest-btn:hover {
    color: var(--clr-white) !important;
    /* Text becomes white on hover */
}

.hm-dest-btn-text {
    position: relative;
    z-index: 2;
    color: inherit;
    /* Follows button color */
}

.hm-dest-btn-icon {
    position: relative;
    z-index: 2;
    width: 28px;
    height: 28px;
    background: var(--clr-black);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hm-dest-btn:hover .hm-dest-btn-icon {
    transform: translateX(5px) scale(1.1);
    background: var(--clr-white);
    color: var(--clr-black);
}

.hm-dest-btn-hover-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease-out;
    z-index: 1;
}

.hm-dest-btn:hover .hm-dest-btn-hover-bg {
    transform: translate(-50%, -50%) scale(8);
}

/* Themes per country */
.theme-be .hm-dest-border {
    border-color: var(--Accent);
}

.theme-be .hm-dest-overlay-tint {
    background: var(--clr-orange-2);
}

.theme-be .hm-dest-kinetic-text {
    color: var(--clr-orange);
}

.theme-be .hm-dest-line {
    background: linear-gradient(to right, #000 33%, #fbbf24 33% 66%, #ef4444 66%);
}

.theme-be .hm-dest-btn-hover-bg {
    background: var(--Accent);
}

.theme-br .hm-dest-border {
    border-color: var(--Accent-2);
}

.theme-br .hm-dest-overlay-tint {
    background: var(--clr-neon-green);
    opacity: 0.2;
}

.theme-br .hm-dest-kinetic-text {
    color: var(--clr-neon-green);
}

.theme-br .hm-dest-line {
    background: linear-gradient(to right, #22c55e 33%, #fbbf24 33% 66%, #2563eb 66%);
}

.theme-br .hm-dest-btn-hover-bg {
    background: var(--Accent-2);
}