/* ========================================
   REESWEX — Real Estate World Expo
   Color Palette: White & Gold Premium
   ======================================== */

/* ========== DIODRUM ARABIC FONT ========== */
@font-face {
    font-family: 'Diodrum Arabic';
    src: url('assets/fonts/DiodrumArabic-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Diodrum Arabic';
    src: url('assets/fonts/DiodrumArabic-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Brand Colors */
    --gold: #C8A96E;
    --gold-dark: #A68B5B;
    --gold-light: #E8D5B5;
    --gold-pale: #F5EDE0;
    --white: #FFFFFF;
    --off-white: #F8F6F2;
    --off-white-2: #F0ECE4;
    --dark: #18181A;
    /* Main Footer & Primary Dark Color */
    --dark-2: #28282A;
    --dark-3: var(--dark);
    --text: #333333;
    --text-light: #666666;
    --text-lighter: #999999;

    /* Typography Scale */
    --fs-xs: 12px;
    --fs-sm: 14px;
    --fs-md: 16px;
    --fs-lg: 20px;
    --fs-xl: 24px;
    --fs-2xl: 32px;
    --fs-3xl: 48px;
    --fs-4xl: 64px;

    /* Fonts */
    --font-heading: 'Diodrum Arabic', 'Playfair Display', 'Georgia', serif;
    --font-body: 'Diodrum Arabic', 'Inter', 'Helvetica Neue', sans-serif;
    --font-special: 'Playfair Display', serif;

    /* Spacing Scale */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 24px;
    --space-6: 32px;
    --space-7: 48px;
    --space-8: 64px;

    /* Foundations */
    --radius: 8px;
    --radius-lg: 16px;
    --radius-pill: 999px;
    --shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1);
    --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --theme-transition: background-color 0.4s ease, color 0.4s ease, filter 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-snap-type: y proximity;
    /* Smarter snapping that allows free scroll in tall sections */
}

.hidden {
    display: none !important;
}

/* ========================================
   THEME VARIABLES & OVERRIDES
   ======================================== */
/* Base Theme Mappings (Clair Mode Defaults) */
:root {
    --theme-bg: var(--white);
    --theme-text: var(--text);
    --theme-text-shadow: transparent;
    --theme-bg-alt: var(--off-white);

    --bg-page-deep: #FFFFFF;
    --bg-page-dark: #F8F6F2;
}

:root[data-theme="dark"] {
    --theme-bg: var(--dark);
    --theme-text: #E5E5E5;
    --theme-text-shadow: rgba(160, 0, 0, 0.5);
    --theme-bg-alt: #1C1C1C;

    --bg-page-deep: var(--dark);
    --bg-page-dark: #1C1C1C;

    /* Force global variable overrides for legacy/inherited styles */
    --text: #E5E5E5;
    --text-light: rgba(255, 255, 255, 0.7);
    --text-lighter: rgba(255, 255, 255, 0.5);
}

/* Scoped Theme Logic: Ensure text always contrasts with bg */
.section-dark {
    --theme-bg: var(--dark);
    --theme-text: #FFFFFF;
    --theme-text-light: rgba(255, 255, 255, 0.7);
    --theme-bg-alt: #222;
}

.section-light {
    --theme-bg: var(--white);
    --theme-text: var(--text);
    --theme-text-light: var(--text-light);
    --theme-bg-alt: var(--off-white);
}

/* Header Theme Logic (Strictly Theme-Based) */

/* Base Definition & Dark Mode: Navbar is White */
.header,
:root[data-theme="dark"] .header {
    --nav-color: #FFFFFF !important;
    --nav-logo-white: block !important;
    --nav-logo-black: none !important;
    transition: all 0.4s ease;
}

/* Light Mode: Navbar is Black */
:root[data-theme="light"] .header {
    --nav-color: #111111 !important;
    --nav-logo-white: none !important;
    --nav-logo-black: block !important;
}

.header .nav-link {
    color: var(--nav-color) !important;
}

.header .logo-white {
    display: var(--nav-logo-white) !important;
}

.header .logo-black {
    display: var(--nav-logo-black) !important;
}

.header .hamburger span {
    background: var(--nav-color) !important;
}

.header .dropdown-icon {
    stroke: var(--nav-color) !important;
}

.header .dropdown-menu {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.header .dropdown-menu a {
    color: var(--theme-text);
}

:root[data-theme="dark"] .header .dropdown-menu {
    background: transparent !important;
    border: none !important;
}

/* Theme Toggle Button Style */
.theme-toggle-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dark-3);
    color: var(--gold);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.theme-toggle-btn:hover {
    transform: scale(1.1) rotate(15deg);
    background: var(--gold);
    color: var(--white);
}




.theme-toggle-btn svg {
    width: 24px;
    height: 24px;
}

.signature-img-dynamic {
    filter: none;
    transition: filter 0.4s ease;
}

:root[data-theme="dark"] .signature-img-dynamic {
    filter: invert(1) brightness(1.5);
}

body {
    font-family: var(--font-body);
    color: var(--theme-text);
    background: var(--theme-bg);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: var(--theme-transition);
}

/* ========== NAVIGATION OVERLAY BLUR ========== */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(24, 24, 26, 0.4);
    /* Based on #18181A */
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 900;
    /* Below header (1000) */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    /* Enable closing by clicking overlay */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Mobile Dropdown Visibility */
@media (max-width: 1024px) {
    .nav-item.has-dropdown.active-dropdown .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: static;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 10px;
        padding: 10px 0;
    }
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: var(--theme-text);
    line-height: 1.1;
    margin-bottom: var(--space-5);
}

.title-accent {
    color: var(--gold);
}

.title-accent-light {
    color: var(--gold-light);
}

p,
.body-text {
    color: var(--theme-text);
    transition: color var(--theme-transition);
}

/* ========== SCROLL REVEAL ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s);
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gold);
    z-index: 1001;
    transition: width 0.1s ease-out;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: all var(--transition);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    /* Thicker blur area */
    backdrop-filter: blur(34px);
    -webkit-backdrop-filter: blur(34px);
    mask-image: linear-gradient(to bottom,
            rgba(24, 24, 26, 1) 0%,
            rgba(24, 24, 26, 0.95) 40%,
            rgba(24, 24, 26, 0.6) 70%,
            rgba(24, 24, 26, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom,
            rgba(24, 24, 26, 1) 0%,
            rgba(24, 24, 26, 0.95) 40%,
            rgba(24, 24, 26, 0.6) 70%,
            rgba(24, 24, 26, 0) 100%);
    z-index: -1;
    pointer-events: none;
}

.header.scrolled::before {
    height: 300px;
    background: transparent;
    backdrop-filter: blur(34px);
    -webkit-backdrop-filter: blur(34px);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 0) 100%);
}

.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-7);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-6);
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-img {
    height: 75px;
    /* Reduced from 90px to optimize horizontal space */
    width: auto;
    display: block;
    transition: all 0.3s ease;
}

.logo-img.logo-black {
    display: none;
}

/* Sticky theme rules have been moved below the nav-link base styles for better specificity */

.logo-icon {
    display: none;
    height: 42px;
    width: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 22px;
    list-style: none;
}

.nav-link {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    gap: var(--space-2);
    white-space: nowrap;
}

/* ========== PREMIUM BLUR HOVER EFFECT ========== */
.nav-list:hover .nav-item {
    opacity: 0.4;
    filter: blur(1.5px);
    transform: scale(0.96);
}

.nav-list .nav-item:hover {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.05);
}

.nav-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
    transform: translateY(-2px);
    /* Subtle hover lift */
}

/* Sticky theme rules have been moved to the very bottom of the file for maximum override power */

/* DROPDOWN SYSTEM */
.has-dropdown {
    position: relative;
}

.dropdown-icon {
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    min-width: 280px;
    background: rgba(24, 24, 26, 0.95);
    /* Based on #18181A */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: var(--space-5);
    opacity: 0;
    visibility: hidden;
    list-style: none;
    transition: all var(--transition);
    transform: translateY(15px);
    z-index: 100;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    padding: 6px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu li a::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: var(--gold);
    -webkit-mask-image: url('assets/images/asset-6.png');
    mask-image: url('assets/images/asset-6.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    margin-right: 18px;
    opacity: 0.8;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-menu li a:hover {
    color: var(--gold-light);
    transform: translateX(10px);
}

.dropdown-menu li a:hover::before {
    opacity: 1;
    transform: scale(1.2) rotate(5deg);
}

.btn-register-nav {
    position: relative;
    padding: 12px 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all var(--transition);
    clip-path: polygon(var(--chv) 0%, calc(100% - var(--chv)) 0%, 100% 50%, calc(100% - var(--chv)) 100%, var(--chv) 100%, 0% 50%);
    --chv: 24px;
    padding: 12px 48px;
}

.btn-register-nav:hover {
    filter: brightness(1.1);
    box-shadow: 0 6px 20px rgba(200, 169, 110, 0.45);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px 0;
    width: 28px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: visible;
    /* CRITICAL: Allows logo to move outside hero bounds into vision section */
    background: var(--dark);
    z-index: 20;
    /* Keep hero and its children (like the logo) on top of the vision section */
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.55);
    z-index: 1;
    transition: background-color 0.4s ease;
}

:root[data-theme="light"] .hero-overlay {
    background: rgba(255, 255, 255, 0.05);
}

.hero-grid {
    position: absolute;
    inset: 0;
    margin-left: 20px; /* Shift content to the right */
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    /* STRICT constraint for perfect centering irrespective of content bulk */
    align-items: center;
    justify-content: center;
    /* Ensure grid itself is centered */
    padding: 0 5%;
    z-index: 10; /* Above mask (5) */
    color: var(--white);
    gap: 0;
    transition: color 0.4s ease;
    /* Let columns handle internal spacing */
}

:root[data-theme="light"] .hero-grid {
    color: #111111;
}

.hero-column {
    display: flex;
    flex-direction: column;
    width: 100%;
    opacity: 0;
    /* Hidden for entrance */
    z-index: 10; /* Above mask (5) */
}

.hero-column-left {
    text-align: right;
    align-items: flex-end;
    transform: translateX(100px);
    /* Start from behind logo */
}

.hero-column-right {
    text-align: left;
    align-items: flex-start;
    transform: translateX(-100px);
    /* Start from behind logo */
}

/* ENTRANCE TRIGGER CLASSES */
.hero-grid.entrance-animated .hero-column {
    opacity: 1;
    transform: translateX(0);
    transition: transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.8s ease;
    transition-delay: 0.6s;
}

.hero-logo-center {
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 320px;
    z-index: 10; /* Above mask (5) */
    /* Extremely high to stay above all section content */
    opacity: 0;
    transform: scale(0.6);
}

.floating-asset-container {
    position: relative;
    z-index: 100;
}

.floating-logo-img {
    width: 520px;
    /* Bolder sizing */
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
    will-change: transform;
}

.hero-grid.entrance-animated .hero-logo-center {
    opacity: 1;
    transform: scale(1);
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    border: 1.2px solid rgba(200, 169, 110, 0.7);
    border-radius: 50px;
    font-size: 0.75rem;
    /* Increased size from 0.65rem */
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--gold-light);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    background: rgba(200, 169, 110, 0.1);
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: var(--space-5);
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.4);
    transition: text-shadow 0.4s ease;
}

:root[data-theme="light"] .hero-title {
    color: #000000 !important;
    text-shadow: none !important;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.4s ease;
    max-width: 480px;
}

:root[data-theme="light"] .hero-subtitle {
    color: rgba(0, 0, 0, 0.7);
}

.hero-column-left .hero-subtitle {
    margin-left: auto;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========== METRIC CARDS (VISION STATS) ========== */
.vision-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
}

/* ========== ROADMAP GRID (HOME PAGE) ========== */
.roadmap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.roadmap-card {
    background: rgba(26, 26, 26, 0.05);
    /* Based on #1A1A1A */
    border: 1px solid rgba(200, 169, 110, 0.2);
    padding: 30px;
    text-align: left;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.roadmap-card:hover {
    border-color: var(--gold);
    background: rgba(15, 15, 15, 0.06);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.roadmap-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(200, 169, 110, 0.2);
    padding-bottom: 10px;
    margin-bottom: 5px;
}

.roadmap-year {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--gold-dark);
    letter-spacing: 1px;
}

.roadmap-city {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--dark-3);
    opacity: 0.7;
}

.roadmap-hub {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-3);
    line-height: 1.3;
}

.roadmap-desc {
    font-size: 0.8rem;
    color: var(--theme-text-light);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .roadmap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .roadmap-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vision-stats {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}

/* ========== UNIFIED BUTTON SYSTEM ========== */
/* ========== STANDARDIZED PREMIUM BUTTONS ========== */
.btn {
    --chv: 28px;
    /* Fixed depth for consistent angles without warping */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    padding: 18px 55px 18px 75px;
    /* Offset padding to favor the chevron direction */
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    clip-path: polygon(var(--chv) 0%, calc(100% - var(--chv)) 0%, 100% 50%, calc(100% - var(--chv)) 100%, var(--chv) 100%, 0% 50%);
    position: relative;
    outline: none;
    border: none;
    text-decoration: none;
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
}

/* Principal - The Royal Gold */
.btn-p {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white) !important;
    box-shadow: 0 10px 30px rgba(200, 169, 110, 0.3);
}

.btn-p:hover {
    filter: brightness(1.15);
    box-shadow: 0 20px 50px rgba(200, 169, 110, 0.5);
}

/* Secondary - The Solid Fill Variant */
.btn-s {
    background: var(--white);
    color: var(--dark) !important;
    font-weight: 700;
    border: none !important;
    clip-path: polygon(var(--chv) 0%, calc(100% - var(--chv)) 0%, 100% 50%, calc(100% - var(--chv)) 100%, var(--chv) 100%, 0% 50%);
}

.btn-s:hover {
    background: var(--gold-light);
    color: var(--dark) !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(200, 169, 110, 0.3);
}

/* Tertiary / Dark - The Obsidian Gold */
.btn-t {
    background: var(--dark);
    color: var(--gold) !important;
    border: 1px solid rgba(200, 169, 110, 0.3) !important;
}

.btn-t:hover {
    background: #000;
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Base Nav Variant */
.btn-register-nav {
    --chv: 20px;
    /* Slimmer for nav */
    padding: 12px 35px 12px 45px !important;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white) !important;
    font-size: 0.82rem !important;
    font-weight: 700;
    clip-path: polygon(var(--chv) 0%, calc(100% - var(--chv)) 0%, 100% 50%, calc(100% - var(--chv)) 100%, var(--chv) 100%, 0% 50%);
}

.hero-controls {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 3;
}

.hero-arrow {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    transition: all var(--transition);
}

.hero-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
}

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

.hero-dot {
    width: 32px;
    height: 4px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.35);
    transition: all var(--transition);
}

.hero-dot.active {
    width: 48px;
    background: var(--gold);
}

/* ========================================
   SECTION 2: VISION
   ======================================== */
.vision {
    padding: 80px 0;
    min-height: 30vh;
    background: var(--theme-bg);
    transition: background-color 0.4s ease;
    /* Deep black for elite contrast */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.vision-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-7);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    /* Left for logo, Right for text */
    align-items: center;
    gap: var(--space-8);
}

.vision-content {
    display: flex;
    flex-direction: column;
}

.vision-header {
    text-align: left;
    margin-bottom: 24px;
}

.vision-header .section-title {
    font-size: 3.2rem;
    margin-bottom: 24px;
    line-height: 1.1;
    color: var(--theme-text);
}

.vision-lead {
    font-size: 1.15rem;
    color: var(--theme-text);
    opacity: 0.8;
    max-width: 100%;
    margin-left: 0;
    line-height: 1.8;
}

/* Global Reveal System */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Specific Vision Reveal: From Right */
.vision .reveal {
    transform: translateX(100px);
}

.vision .reveal.visible {
    transform: translateX(0);
}

.vision-lead strong {
    color: var(--gold-dark);
    font-weight: 700;
}

/* ========== ANGLED CAROUSEL (PROFIL DES VISITEURS) ========== */
.angled-carousel-container {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    overflow-x: auto;
    /* Enable native horizontal scrolling */
    overflow-y: hidden;
    padding: 40px 0;
    box-sizing: border-box;
    margin-top: 60px;
    scrollbar-width: none;
    /* Firefox: hide scrollbar */
    -ms-overflow-style: none;
    /* IE: hide scrollbar */
    cursor: grab;
    /* Indicate draggable */
}

.angled-carousel-container:active {
    cursor: grabbing;
}

.angled-carousel-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari: hide scrollbar */
}

.angled-carousel-track {
    display: flex;
    width: max-content;
    gap: 0;
    /* Items touch in skew mode to form one line */
}

.angled-item {
    position: relative;
    width: 480px;
    /* Increased 50% from 320px */
    height: 500px;
    overflow: hidden;
    transform: skewX(-14deg);
    margin-right: -125px;
    /* Negative margin to pull skewed items together and remove white gaps */
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1),
        margin 0.7s cubic-bezier(0.25, 1, 0.5, 1),
        width 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.angled-item-inner {
    position: absolute;
    top: 0;
    left: -65px;
    /* Counter offset due to skew */
    width: calc(100% + 130px);
    /* Extra width to prevent clipping */
    height: 100%;
    transform: skewX(14deg);
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1),
        left 0.7s cubic-bezier(0.25, 1, 0.5, 1),
        width 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.angled-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
    transition: filter 0.5s ease, transform 0.8s ease;
}

.angled-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
    transition: opacity 0.6s ease;
    z-index: 1;
}

.angled-item-content {
    position: absolute;
    bottom: 40px;
    /* Moved back to bottom */
    left: 0;
    width: 100%;
    padding: 0 30px;
    color: var(--white);
    z-index: 5;
    text-align: center;
    transform: translateX(-52px);
    /* Corrects the visual off-center effect caused by the leftward skew at the bottom of the card */
    transition: all 0.6s ease;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.angled-item-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    /* Scaled down slightly to fit the skewed boundaries */
    font-weight: 800;
    margin: 0 auto 12px;
    line-height: 1.15;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
    letter-spacing: -0.2px;
    max-width: 280px;
    /* Forces wide titles to break securely into two lines */
}

.angled-item-content p {
    font-size: 0.82rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    max-width: 450px;
    /* Constrain description width */
    margin: 0 auto;
}

/* Hovering the container straightens ALL items */
.angled-carousel-container:hover .angled-item {
    transform: skewX(0deg);
    margin: 0;
    /* Strict zero gaps */
}

.angled-carousel-container:hover .angled-item-inner {
    transform: skewX(0deg);
    left: 0;
    width: 100%;
}

.angled-carousel-container:hover .angled-item-content {
    transform: translateX(0);
    /* Restores true center when the skew angle drops to 0 */
}

/* Specific item hover enhancements */
.angled-item:hover {
    width: 960px;
    /* Doubles the new 480px base size on hover */
}

.angled-item:hover .angled-item-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.3) 100%);
}

.angled-item:hover img {
    filter: brightness(0.9);
    transform: scale(1.05);
    /* Slight zoom within the expanded card */
}

.angled-item:hover .angled-item-content h3 {
    /* Font size and constraints remain locked as requested */
}

.angled-item:hover .angled-item-content p {
    opacity: 1;
    transform: translateY(0);
}

@keyframes scrollAngled {
    0% {
        transform: translateX(0);
    }

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

@media (max-width: 768px) {
    .angled-item {
        width: 260px;
        height: 400px;
    }

    .angled-item:hover {
        width: 350px;
    }

    /* Proportional expansion for mobile */
    .angled-item-content h3 {
        font-size: 1.5rem;
    }

    .angled-item-content {
        padding: 0 20px;
    }
}

/* ========================================
   SECTION 3: PREMIUM DYNAMIC EXPOSER PANEL
   ======================================== */
.exposer-page-wrap {
    background-color: var(--theme-bg);
    margin-top: 0 !important;
}

.page-section {
    padding: 120px 5%;
    /* Standardized comfortable spacing */
}


/* ========================================
   REESWEX UNIVERSAL BANNER SYSTEM
   ======================================== */
.site-banner {
    position: relative;
    width: 100%;
    height: 700px; /* High-impact height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme-bg);
}

.banner-bg-layer {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
    opacity: 0.8; /* Subtle atmosphere */
}

/* Subtle Zoom Animation on Load */
.site-banner.loaded .banner-bg-layer {
    transform: scale(1.05);
    opacity: 1;
}

.banner-mask-wrapper {
    position: absolute;
    bottom: -1px; /* Overlap to prevent white lines */
    left: 0;
    width: 100%;
    z-index: 5; /* Lowered to sit between video and content */
    line-height: 0;
    pointer-events: none;
    
    /* Dynamic theme-adaptive color - Defaults to White */
    background-color: #FFFFFF !important;
    -webkit-mask-image: url('assets/images/banners/BANNER%20MASK.svg');
    mask-image: url('assets/images/banners/BANNER%20MASK.svg');
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    
    /* Match SVG aspect ratio */
    aspect-ratio: 1024 / 593;
    transition: background-color 0.4s ease;
}

:root[data-theme="dark"] .banner-mask-wrapper {
    background-color: #18181A !important;
}

.banner-mask-svg {
    width: 100%;
    height: auto;
    display: block;
    /* Hide the original white image content, only use it as a mask above */
    opacity: 0 !important;
}

.banner-content {
    position: relative;
    z-index: 110; /* Higher than the mask (100) */
    text-align: center;
    color: #FFFFFF;
    max-width: 1100px;
    padding: 0 2rem;
    text-shadow: 0 4px 25px rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 5rem;
    margin-bottom: -30px; /* Slight overlap for a premium integrated look */
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

:root[data-theme="light"] .banner-content,
:root[data-theme="light"] .banner-title {
    color: #000000 !important;
    text-shadow: none !important;
}

.banner-title {
    font-size: clamp(2.8rem, 8vw, 5.2rem);
    font-weight: 950;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0;
}

.banner-subheading {
    font-size: clamp(1.1rem, 2.2vw, 1.45rem);
    font-weight: 400;
    color: rgba(255,255,255,0.95);
    max-width: 850px;
    line-height: 1.7;
    margin: 0 auto;
    transition: color 0.4s ease;
}

:root[data-theme="light"] .banner-subheading {
    color: rgba(0, 0, 0, 0.7) !important;
}

:root[data-theme="light"] .banner-badge {
    color: #A68B50 !important;
    border-color: rgba(166, 139, 80, 0.4) !important;
    background: rgba(166, 139, 80, 0.05) !important;
}

.banner-badge {
    display: inline-block;
    padding: 0.7rem 2.2rem;
    border: 1px solid var(--gold);
    border-radius: 50px;
    background: rgba(200, 169, 110, 0.1);
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 0 20px rgba(200, 169, 110, 0.1);
}

/* INTERACTIVE SECTION */
.exposer-interactive-section {
    padding-bottom: 120px;
    background-color: var(--bg-page-deep);
    margin-top: 0 !important;
}

.exposer-master-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 80px 1fr;
    /* Title side and main container */
    gap: 40px;
    padding: 0 5%;
}

.exposer-side-label {
    writing-mode: vertical-lr;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.side-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--theme-text);
    opacity: 0.6;
    letter-spacing: 5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 20px;
}

.side-text .nav-chevron {
    color: #B89762;
    transform: rotate(90deg);
}

/* MASTER CONTAINER (Split Desktop) */
.exposer-master-container {
    display: grid;
    grid-template-columns: 320px 1fr;
    /* 30% / 70% effectively */
    column-gap: 100px;
    position: relative;
}

/* ITEM WRAPPER */
.exposer-box-item {
    display: contents;
    /* Allows children to be placed in parent grid directly */
}

/* TRIGGER (Left Column) */
.exposer-box-trigger {
    grid-column: 1;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 24px 0;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.exposer-box-trigger .trigger-label {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
    /* Gold for unselected */
    text-transform: uppercase;
    transition: all 0.3s ease;
    opacity: 0.6;
    /* Slightly transparent for 'inactive' feel */
}

/* MENU ARROW BULLET */
.box-bullet {
    width: 20px;
    height: 20px;
    background-color: var(--gold);
    -webkit-mask-image: url('assets/images/asset-6.png');
    mask-image: url('assets/images/asset-6.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    opacity: 0;
    transform: translateX(-15px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* HOVER & ACTIVE TRIGGER */
.exposer-box-item:hover .exposer-box-trigger .trigger-label,
.exposer-box-item.active .exposer-box-trigger .trigger-label {
    color: #FFFFFF;
    /* Pure White active (Default for dark sections) */
    opacity: 1;
}

:root:not([data-theme="dark"]) .exposer-box-trigger .trigger-label {
    color: #888;
    /* Grey for light mode unselected */
}

:root:not([data-theme="dark"]) .exposer-box-item:hover .exposer-box-trigger .trigger-label,
:root:not([data-theme="dark"]) .exposer-box-item.active .exposer-box-trigger .trigger-label {
    color: var(--gold) !important;
    /* Gold for light mode active */
    opacity: 1;
}

.exposer-box-item:hover .exposer-box-trigger {
    transform: translateX(10px);
}

.exposer-box-item:hover .box-bullet,
.exposer-box-item.active .box-bullet {
    opacity: 1;
    transform: translateX(0);
}

/* CONTENT (Right Column Stacked) */
.exposer-box-content {
    grid-column: 2;
    grid-row: 1 / 5;
    /* Stack all content panels in the same grid spot */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    display: flex;
    align-items: flex-start;
    padding-top: 24px;
}

.exposer-box-item.active .exposer-box-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.content-fade-wrap {
    max-width: 850px;
}

.box-headline {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--theme-text);
    margin-bottom: 35px;
    letter-spacing: -1px;
}

.box-body {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--theme-text-light);
    /* Mid-grey as specified */
    margin-bottom: 50px;
    opacity: 0.85;
}

.box-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: #B89762;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.box-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #B89762;
    transition: width 0.3s ease;
}

.box-cta:hover {
    color: var(--white);
    gap: 18px;
}

.box-cta:hover::after {
    width: 100%;
}

/* FINAL CTA */
.exposer-final-cta {
    padding: 120px 5%;
    background-color: var(--bg-page-deep);
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.final-cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

/* MOBILE ACCORDION STYLES */
@media (max-width: 1024px) {
    .exposer-master-layout {
        grid-template-columns: 1fr;
        padding-top: 40px;
    }

    .exposer-side-label {
        display: none;
    }

    .exposer-master-container {
        grid-template-columns: 1fr;
        display: block;
        /* Switch to normal block for accordion */
    }

    .exposer-box-item {
        display: block;
        margin-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .exposer-box-trigger {
        padding: 30px 20px;
        background: rgba(255, 255, 255, 0.02);
    }

    .exposer-box-content {
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 20px 40px;
        background: rgba(255, 255, 255, 0.02);
        grid-column: auto;
        grid-row: auto;
    }

    .exposer-box-item.active .exposer-box-content {
        display: block;
    }

    .box-headline {
        font-size: 2.2rem;
    }
}

/* ========================================
   INTERACTIVE EXHIBITION PLAN (PREMIUM)
   ======================================== */
/* ========================================
   INTERACTIVE EXHIBITION PLAN (PREMIUM)
   ======================================== */
.exposer-master-layout {
    display: flex;
    gap: 40px;
    max-width: 1600px;
    /* Expansive width */
    margin: 0 auto;
    padding: 0 4%;
}

.exposer-interactive-wrap {
    display: flex;
    gap: 0;
    width: 100%;
    height: 850px;
    background: #fdfdfd !important;
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* Lock content inside the container */
    border: none !important;
    position: relative;
}

.plan-map-column {
    flex: 1;
    /* Stretch to fill exactly half if balanced */
    height: 100%;
    position: relative;
    background: #f0f0f0;
    /* Default background */
    overflow: hidden;
    /* Ensure SVG doesn't exceed 850px */
}

:root[data-theme="dark"] .plan-map-column {
    background: #1a1a1a;
}

.interactive-plan-mount {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.interactive-plan-mount svg {
    max-width: 95%;
    max-height: 95%;
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
}

:root[data-theme="dark"] .exposer-interactive-wrap {
    background: #1a1a1a !important;
    /* Match Dark SVG background */
}

/* Structural Outlines - Precision Paths (Both Modes) */
.interactive-plan-mount svg path[d*="M1134.29,207.95"],
.interactive-plan-mount svg path[d*="M851.93,207.95"],
.interactive-plan-mount svg path[d*="M281.35,207.95"] {
    fill: none !important;
    stroke: #434343 !important;
    /* Default for Light Mode */
    stroke-width: 1.5px !important;
}

.interactive-plan-mount svg text {
    fill: #888888;
    /* Unified Grey for all labels */
    pointer-events: none;
    transition: fill 0.3s ease;
}

.booth-interactive {
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    stroke-width: 0.5px !important;
    stroke: rgba(255, 255, 255, 0.1) !important;
}

.booth-interactive:hover {
    fill: rgba(200, 169, 110, 0.3) !important;
}

.booth-interactive.selected {
    stroke: #ffffff !important;
    stroke-width: 1.5px !important;
    filter: drop-shadow(0 0 10px rgba(200, 169, 110, 0.4));
}

.sel-diamant {
    fill: url(#grad-diamant) !important;
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.7)) !important;
}

.sel-gold {
    fill: url(#grad-gold) !important;
    filter: drop-shadow(0 0 15px rgba(255, 140, 0, 0.7)) !important;
}

.sel-argent {
    fill: url(#grad-argent) !important;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.7)) !important;
}

.sel-bronze {
    fill: url(#grad-bronze) !important;
    filter: drop-shadow(0 0 15px rgba(205, 127, 50, 0.7)) !important;
}

.sel-exposant {
    fill: url(#grad-exposant) !important;
    filter: drop-shadow(0 0 15px rgba(255, 0, 0, 0.7)) !important;
}

:root:not([data-theme="dark"]) .booth-interactive.selected {
    stroke-width: 2px !important;
}

.booth-id-display {
    font-family: 'Diodrum Arabic', sans-serif;
    font-size: 3.8rem;
    /* Recovered majestic scale */
    font-weight: 800;
    color: var(--gold) !important;
    line-height: 1;
}

.booth-area-display {
    font-family: 'Diodrum Arabic', sans-serif;
    font-size: 3.5rem;
    /* Recovered majestic scale */
    font-weight: 700;
    color: var(--gold) !important;
    line-height: 1;
}

.booth-area-display span {
    font-size: 1.6rem;
    vertical-align: super;
}

:root[data-theme="dark"] .interactive-plan-mount svg path[d*="M1134.29,207.95"],
:root[data-theme="dark"] .interactive-plan-mount svg path[d*="M851.93,207.95"],
:root[data-theme="dark"] .interactive-plan-mount svg path[d*="M281.35,207.95"] {
    stroke: #aaaaaa !important;
    /* High contrast for Dark Mode */
}

/* Global Fix: Remove line on the bottom by clipping rogue SVG artifacts */
.interactive-plan-mount svg {
    overflow: hidden !important;
}

.plan-map-column {
    flex: 1.6;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    border-right: 1px solid rgba(128, 128, 128, 0.1);
}

.interactive-plan-mount {
    flex: 1;
    overflow: auto;
    cursor: grab;
    position: relative;
    padding: 0;
    scrollbar-width: none;
}

.interactive-plan-mount::-webkit-scrollbar {
    display: none;
}

.interactive-plan-mount svg {
    width: 100%;
    height: auto;
    display: block;
}

/* Booth Style Overrides - Clair Fill Aesthetic */
.booth-interactive {
    cursor: pointer;
    transition: all 0.3s ease;
    stroke: rgba(128, 128, 128, 0.25) !important;
    /* Extremely subtle strokes */
    stroke-width: 0.5px !important;
    fill: rgba(200, 169, 110, 0.15) !important;
    /* Premium 'Clair Fill' Tint */
    transform-box: fill-box;
    transform-origin: center;
    pointer-events: all !important;
}

:root[data-theme="dark"] .booth-interactive {
    fill: rgba(255, 255, 255, 0.08) !important;
    stroke: rgba(255, 255, 255, 0.05) !important;
}

/* Unified Modern Interaction Aura */
@keyframes modern-booth-aura {
    0% {
        stroke-width: 1.5px;
        filter: drop-shadow(0 0 8px var(--aura-color, rgba(255, 255, 255, 0.3)));
        transform: scale(1);
    }

    45% {
        stroke-width: 5px;
        filter: drop-shadow(0 0 30px var(--aura-color, rgba(255, 255, 255, 0.6)));
        transform: scale(1.08);
    }

    100% {
        stroke-width: 1.5px;
        filter: drop-shadow(0 0 8px var(--aura-color, rgba(255, 255, 255, 0.3)));
        transform: scale(1);
    }
}

.booth-interactive:hover {
    --aura-color: rgba(255, 215, 0, 0.6);
    fill: #FFD700 !important;
    stroke: #fff !important;
    animation: modern-booth-aura 1.2s infinite cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 200;
}

.booth-interactive[data-booth-id^="A"]:hover {
    --aura-color: rgba(0, 210, 255, 0.8);
    fill: #e5e4e2 !important;
    stroke: #00D2FF !important;
}

.booth-interactive[data-booth-id^="B"]:hover {
    --aura-color: rgba(255, 215, 0, 0.8);
    fill: #FFD700 !important;
    stroke: #FFD700 !important;
}

.booth-interactive[data-booth-id^="E"]:hover {
    --aura-color: rgba(234, 42, 41, 0.8);
    fill: #ea2a29 !important;
    stroke: #ff3c3c !important;
}

.booth-interactive[data-booth-id^="D"]:hover {
    --aura-color: rgba(139, 69, 19, 0.8);
    fill: #8B4513 !important;
    stroke: #8B4513 !important;
}

.booth-interactive[data-booth-id^="C"]:hover {
    --aura-color: rgba(128, 128, 128, 0.8);
    fill: #7a7a7a !important;
    stroke: #7a7a7a !important;
}

:root[data-theme="dark"] .booth-interactive[data-booth-id^="C"]:hover {
    fill: #E0E0E0 !important;
    stroke: #ffffff !important;
    --aura-color: rgba(255, 255, 255, 0.5);
}

.booth-interactive.selected {
    stroke: #ffffff !important;
    animation: modern-booth-aura 1.8s infinite cubic-bezier(0.4, 0, 0.2, 1) !important;
    z-index: 300;
}

.booth-interactive.selected.sel-diamant,
.booth-interactive.selected[data-booth-id^="A"] {
    --aura-color: #00D2FF;
    fill: url(#grad-diamant) !important;
}

.booth-interactive.selected.sel-gold,
.booth-interactive.selected[data-booth-id^="B"] {
    --aura-color: #FFD700;
    fill: url(#grad-gold) !important;
}

.booth-interactive.selected.sel-exposant,
.booth-interactive.selected[data-booth-id^="E"] {
    --aura-color: #ea2a29;
    fill: url(#grad-exposant) !important;
}

.booth-interactive.selected.sel-bronze,
.booth-interactive.selected[data-booth-id^="D"] {
    --aura-color: #8B4513;
    fill: url(#grad-bronze) !important;
}

.booth-interactive.selected.sel-argent,
.booth-interactive.selected[data-booth-id^="C"] {
    --aura-color: #7a7a7a;
    fill: url(#grad-argent) !important;
}

:root[data-theme="dark"] .booth-interactive.selected.sel-argent,
:root[data-theme="dark"] .booth-interactive.selected[data-booth-id^="C"] {
    --aura-color: #ffffff;
}

/* Category Specific Colors */
.booth-interactive.selected[data-category="A"] {
    fill: #e5e4e2 !important;
}

/* DIAMANT - Platinum */
.booth-interactive.selected[data-category="B"] {
    fill: #FFD700 !important;
}

/* GOLD */
.booth-interactive.selected[data-category="C"] {
    fill: #7a7a7a !important;
}

/* ARGENT - Silver */
.booth-interactive.selected[data-category="D"] {
    fill: #8B4513 !important;
}

/* BRONZE */
.booth-interactive.selected[data-category="E"] {
    fill: #ea2a29 !important;
}

/* EXPOSANT - Red */

/* Tooltip System */
.booth-tooltip {
    position: fixed;
    background: var(--dark);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    pointer-events: none;
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px) translateX(-50%);
    transition: opacity 0.3s, transform 0.3s;
    border: 1px solid var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.booth-tooltip.visible {
    opacity: 1;
    transform: translateY(-15px) translateX(-50%);
}

.tt-head {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.tt-head span {
    color: var(--gold);
}

.tt-meta {
    font-size: 0.75rem;
    color: var(--theme-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.booth-category {
    display: block;
    font-size: 0.85rem;
    color: var(--theme-text-light);
    font-weight: 400;
    margin-top: 8px;
    letter-spacing: 0;
    text-transform: none;
}

/* Hide raw SVG text if it interferes - RESTORED for design fidelity as per user request */
.interactive-plan-mount svg text {
    opacity: 1 !important;
    pointer-events: none;
    user-select: none;
}

/* Force all structural boxes to be outlines (targeted classes only) */
.interactive-plan-mount svg .cls-15,
.interactive-plan-mount svg .cls-17 {
    fill: none !important;
    stroke: #434343 !important;
    stroke-width: 1px !important;
}

:root[data-theme="dark"] .interactive-plan-mount svg .cls-15,
:root[data-theme="dark"] .interactive-plan-mount svg .cls-17 {
    stroke: #aaaaaa !important;
}

/* Specific Clean-up: Letters, Stand Numbers and Labels (Turning to pure fill style) */
.interactive-plan-mount svg text,
.interactive-plan-mount svg tspan,
.interactive-plan-mount svg .cls-1,
.interactive-plan-mount svg .cls-2,
.interactive-plan-mount svg .cls-3,
.interactive-plan-mount svg .cls-4,
.interactive-plan-mount svg .cls-5,
.interactive-plan-mount svg .cls-6,
.interactive-plan-mount svg .cls-7,
.interactive-plan-mount svg .cls-8,
.interactive-plan-mount svg .cls-16,
.interactive-plan-mount svg .cls-27 {
    stroke: none !important;
}

/* REMOVE MAJOR AREA LABELS & PLACEHOLDERS (As per user request) */
/* cls-4: ESPACE VIP/ADMIN/TECH, cls-2: STAGE (Light Mode), cls-7: Podcast/Acceuil */
.interactive-plan-mount svg .cls-4,
.interactive-plan-mount svg .cls-7 {
    display: none !important;
}

/* In Light Mode, cls-2 is used for structural labels. In Dark Mode, it encodes Category A numbers. */
.interactive-plan-mount svg .cls-2 {
    display: none !important;
}

[data-theme="dark"] .interactive-plan-mount svg .cls-2 {
    display: block !important;
}

/* Hide any text containing placeholders (squares) or non-stand words visually */
.interactive-plan-mount svg text[data-label="structural"],
.interactive-plan-mount svg text:empty {
    display: none !important;
}

/* Controls */
.plan-controls {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
}

.ctrl-btn {
    width: 40px;
    height: 40px;
    background: var(--dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.ctrl-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.plan-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Booking Column - Theme-Responsive Golden Gradient */
.plan-booking-column {
    flex: 1;
    /* Match the map column weight */
    height: 100%;
    /* Symmetrical vertical footprint */
    background: linear-gradient(135deg, rgba(200, 169, 110, 0.15) 0%, rgba(0, 0, 0, 0.6) 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 320px;
    color: #fff !important;
    position: relative;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

:root:not([data-theme="dark"]) .plan-booking-column {
    background: linear-gradient(135deg, #f5ede0 0%, #ffffff 100%);
    color: var(--dark) !important;
    border-left: 1px solid rgba(0, 0, 0, 0.05);
}

:root:not([data-theme="dark"]) .selection-empty p,
:root:not([data-theme="dark"]) .booth-booking-form label,
:root:not([data-theme="dark"]) .booth-booking-form input,
:root:not([data-theme="dark"]) .booth-booking-form textarea {
    color: var(--dark) !important;
}

.selection-empty p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin: 15px 0 8px;
    color: #fff !important;
}

.selection-empty .hint {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6) !important;
}

.booth-booking-form label {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600;
    margin-bottom: 0px;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.booth-booking-form input,
.booth-booking-form textarea {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
    padding: 10px 12px !important;
    /* Compact inputs */
    font-size: 0.9rem;
}

.selection-summary h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold) !important;
    margin-bottom: 2px;
}

.selection-icon {
    width: 60px;
    height: 60px;
    background: rgba(200, 169, 110, 0.1);
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.selection-icon svg {
    width: 30px;
    height: 30px;
}

.booth-booking-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    /* More compact gap */
}

.booth-booking-form.hidden {
    display: none;
}

.selection-summary {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 0;
    /* REMOVED GAPS */
}

.selection-top-meta {
    padding-bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.selection-top-meta h4 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold) !important;
    /* Force Brand Gold */
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
    display: block !important;
    visibility: visible !important;
}

:root[data-theme="dark"] .selection-top-meta h4 {
    color: #C8A96E !important;
    /* High-contrast gold reinforcement */
    text-shadow: 0 0 10px rgba(200, 169, 110, 0.3);
}

.booth-status-row {
    display: flex;
    gap: 12px;
}

.status-badge {
    padding: 6px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 90px;
}

.status-badge.dispo {
    background: #1a1a1a;
    color: var(--gold) !important;
    position: relative;
    border: none;
    /* Removing raw border which cuts off */
    filter:
        drop-shadow(1px 0px 0px var(--gold)) drop-shadow(-1px 0px 0px var(--gold)) drop-shadow(0px 1px 0px var(--gold)) drop-shadow(0px -1px 0px var(--gold));
}

.status-badge.indispo {
    background: #333;
    color: #888 !important;
    position: relative;
    border: none;
    filter:
        drop-shadow(1px 0px 0px #444) drop-shadow(-1px 0px 0px #444) drop-shadow(0px 1px 0px #444) drop-shadow(0px -1px 0px #444);
}

.selection-main-data {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 12px 0;
    border-top: 1px solid rgba(200, 169, 110, 0.4);
    border-bottom: 1px solid rgba(200, 169, 110, 0.4);
    margin-top: 5px;
}

.booth-id-display {
    font-family: 'Diodrum Arabic', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold) !important;
    line-height: 1;
}

.booth-area-display {
    font-family: 'Diodrum Arabic', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--gold) !important;
    line-height: 1;
}

.booth-area-display span {
    font-size: 1.5rem;
    vertical-align: super;
}

:root:not([data-theme="dark"]) .status-badge.dispo {
    background: #fff;
    border: 1px solid var(--gold);
}

.booth-interactive:hover {
    filter: brightness(1.2);
    cursor: pointer;
}

.w-100 {
    width: 100%;
}

@media (max-width: 1200px) {
    .exposer-interactive-wrap {
        flex-direction: column;
        height: auto;
    }

    .plan-map-column {
        height: 500px;
    }

    .plan-booking-column {
        min-width: 0;
    }
}

@media (max-width: 768px) {
    .plan-map-column {
        height: 400px;
    }

    .selection-summary h4 {
        font-size: 1.8rem;
    }
}


/* ========================================
   SECTION 4: PROFIL DES VISITEURS
   ======================================== */
.visiteurs {
    padding: 120px 0;
    background: var(--theme-bg);
}

.visiteurs-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.visiteurs-content {
    text-align: center;
    margin-bottom: 60px;
}

.visiteurs-lead {
    font-size: 1.1rem;
    color: var(--theme-text-light);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.profile-card {
    padding: var(--space-6) var(--space-5);
    background: var(--bg-page-dark);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition);
    border: 1px solid rgba(200, 169, 110, 0.1);
    cursor: default;
}

.profile-card:hover {
    background: var(--white);
    border-color: var(--gold);
    box-shadow: 0 8px 30px rgba(200, 169, 110, 0.15);
    transform: translateY(-4px);
}

.profile-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold-pale);
    border: 1px solid var(--gold-light);
}

.profile-card h4 {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--theme-text);
    line-height: 1.4;
}

/* ========== INTERNAL PAGES COMMON ========== */
.internal-page {
    background: var(--theme-bg);
    color: var(--theme-text);
}



/* VISION ANCRAGE */
.vision-ancrage {
    padding: 100px 0;
    background: var(--theme-bg);
    color: var(--theme-text);
}

.vision-ancrage-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ancrage-lead {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.8;
}

.ancrage-quote blockquote {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    color: var(--gold);
    border-left: 4px solid var(--gold);
    padding-left: 30px;
    line-height: 1.3;
}

/* POURQUOI EXPOSER REDESIGN */
.exposer {
    padding: 120px 0;
    background: var(--theme-bg);
    position: relative;
    overflow: hidden;
    transition: var(--theme-transition);
}

.exposer .section-title {
    color: var(--theme-text);
}

.exposer::before {
    display: none; /* Remove subtle gradient for flat look */
}

.exposer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.exposer-header {
    margin-bottom: 80px;
    max-width: 800px;
}

.exposer-lead {
    font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.8;
    color: var(--theme-text);
    margin-top: 20px;
}

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

.exposer-card {
    background: linear-gradient(145deg, #1A1A1A 0%, #000000 100%) !important;
    border: 1px solid rgba(200, 169, 110, 0.1) !important;
    padding: 50px 40px;
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.exposer-card:hover {
    background: linear-gradient(145deg, #222222 0%, #050505 100%) !important;
    border-color: rgba(200, 169, 110, 0.3) !important;
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.exposer-card-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 800;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(200, 169, 110, 0.2);
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.exposer-card:hover .exposer-card-number {
    -webkit-text-stroke: 1px var(--gold);
    transform: scale(1.1);
}

.exposer-card-icon {
    position: absolute;
    top: 10px; /* Moved up to 10px */
    right: 15px;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(15deg);
    animation: floatTilt 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Faster 0.4s for reactive feel */
    pointer-events: none; /* Let clicks pass through to card */
}

@keyframes floatTilt {
    0%, 100% {
        transform: rotate(15deg) translateY(0);
    }
    50% {
        transform: rotate(10deg) translateY(-15px);
    }
}

.exposer-card-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.2));
}

.exposer-card:hover .exposer-card-icon {
    opacity: 1;
    z-index: 100;
    animation: forcedPop 4s cubic-bezier(0.4, 0, 0.2, 1) infinite; /* Looped animation recovered */
}

@keyframes forcedPop {
    0%, 100% {
        transform: rotate(10deg) scale(1.35) translateY(-35px);
    }
    50% {
        transform: rotate(15deg) scale(1.45) translateY(-45px); /* Get bigger and further outside */
    }
}

.exposer-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold) !important;
    margin-bottom: 20px;
}

.exposer-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7) !important;
}

.exposer-card-line {
    width: 40px;
    height: 2px;
    background: #111;
    margin-top: auto;
    padding-top: 0;
    transition: width 0.4s ease;
}

.exposer-card:hover .exposer-card-line {
    width: 100%;
}

@media (max-width: 1024px) {
    .exposer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .exposer-grid {
        grid-template-columns: 1fr;
    }

    .exposer-card-number {
        font-size: 4rem;
    }
}


/* LAWS SECTION */
.laws-section {
    padding: 120px 0;
    background: var(--bg-page-dark);
}

.laws-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
}

.laws-header {
    text-align: center;
    margin-bottom: 80px;
}

.laws-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.law-card {
    background: var(--bg-page-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-7) var(--space-6);
    border-radius: var(--radius);
    position: relative;
    transition: all var(--transition);
}

.law-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    transform: translateY(-10px);
}

.law-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 30px;
}

.law-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
}

/* ROADMAP TIMELINE */
.roadmap-timeline {
    padding: 100px 0;
    background: var(--theme-bg);
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(200, 169, 110, 0.3);
}

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

.timeline-dot {
    position: absolute;
    left: 36px;
    top: 10px;
    width: 9px;
    height: 9px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--gold);
}

.timeline-year {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* AGENDA TABS */
.agenda-section {
    padding: 80px 0 120px;
}

.agenda-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

.agenda-tabs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    margin-bottom: 80px;
    position: relative;
    width: 100%;
    height: 120px;
    /* Fixed height to allow perfect centering */
}

.timeline-horizontal-line {
    position: absolute;
    top: 50%;
    left: 8px;
    right: 8px;
    height: 2px;
    background: var(--gold);
    opacity: 0.2;
    z-index: 1;
    transform: translateY(-50%);
}

.roadmap-point {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 100%;
    /* Take full header height */
}

.roadmap-label-top {
    position: absolute;
    top: 0;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.5;
    /* Keeping label slightly dimmed but dot 100% */
    font-weight: 700;
    white-space: nowrap;
}

.roadmap-label-bottom {
    position: absolute;
    bottom: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
}

.roadmap-dot {
    width: 16px;
    height: 16px;
    background: var(--theme-bg);
    border: 3px solid var(--gold);
    /* Active color */
    border-radius: 50%;
    z-index: 3;
    opacity: 1 !important;
    /* Strictly 100% Opacity */
}

/* Monochrome state for upcoming or passed points */
.roadmap-point.monochrome .roadmap-dot {
    border-color: #666;
    /* Solid color, no transparency */
}

.roadmap-point.monochrome .roadmap-label-bottom {
    opacity: 0.4;
}

.roadmap-day-btn {
    width: 220px;
    height: 60px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    border: none;
    color: transparent;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0 50%);
    opacity: 1 !important;
}

/* Day 1 Specific */
.btn-day1 {
    background-image: url('assets/images/btn-day1-inactive.svg?v=5');
}

.btn-day1.active {
    background-image: url('assets/images/btn-day1-active.svg?v=5');
}

/* Day 2 Specific */
.btn-day2 {
    background-image: url('assets/images/btn-day2-inactive.svg?v=5');
}

.btn-day2.active {
    background-image: url('assets/images/btn-day2-active.svg?v=5');
}

/* LIGHT MODE OVERRIDES (Matches default root or explicit light) */
:root:not([data-theme="dark"]) .btn-day1,
[data-theme="light"] .btn-day1 {
    background-image: url('assets/images/btn-day1-inactive-light.svg?v=5') !important;
}

:root:not([data-theme="dark"]) .btn-day1.active,
[data-theme="light"] .btn-day1.active {
    background-image: url('assets/images/btn-day1-active-light.svg?v=5') !important;
}

:root:not([data-theme="dark"]) .btn-day2,
[data-theme="light"] .btn-day2 {
    background-image: url('assets/images/btn-day2-inactive-light.svg?v=5') !important;
}

:root:not([data-theme="dark"]) .btn-day2.active,
[data-theme="light"] .btn-day2.active {
    background-image: url('assets/images/btn-day2-active-light.svg?v=5') !important;
}

[data-theme="light"] .roadmap-day-btn.active,
:root:not([data-theme="dark"]) .roadmap-day-btn.active {
    filter: drop-shadow(0 0 15px rgba(200, 169, 110, 0.3));
}

/* Past buttons monochrome filter - Disabled for Light Mode to keep white/gold clarity */
[data-theme="dark"] .roadmap-point.monochrome .roadmap-day-btn {
    filter: grayscale(1);
}

:root:not([data-theme="dark"]) .roadmap-point.monochrome .roadmap-dot,
[data-theme="light"] .roadmap-point.monochrome .roadmap-dot {
    border-color: #e0e0e0;
}

.roadmap-day-btn:hover:not(.active) {
    transform: translateY(-2px);
    filter: brightness(1.2) drop-shadow(0 0 10px rgba(200, 169, 110, 0.3));
}

/* Update tab content for roadmap integration */
.tab-btn {
    display: none;
}

/* Hide old tab buttons */

.tab-btn {
    background: none;
    border: none;
    color: var(--theme-text);
    opacity: 0.4;
    font-size: 1.1rem;
    cursor: pointer;
    padding-bottom: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.tab-btn span {
    font-weight: 700;
    color: var(--gold);
}

.tab-btn.active {
    opacity: 1;
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

/* SLEEK TIMELINE DESIGN */
.timeline-list {
    position: relative;
    padding-left: 50px;
    margin-top: 40px;
}

.timeline-list::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 5px;
    bottom: 5px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    opacity: 0.2;
}

.session-card {
    position: relative;
    padding-bottom: 50px;
}

.session-dot {
    position: absolute;
    left: -50px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--theme-bg);
    border: 3px solid var(--gold);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 10px rgba(200, 169, 110, 0.4);
}

.session-time {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.session-body {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all 0.3s ease;
}

:root:not([data-theme="dark"]) .session-body {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.session-body:hover {
    border-color: var(--gold);
    transform: translateX(10px);
}

flex-grow: 1;
background: rgba(255, 255, 255, 0.02);
border: 1px solid rgba(255, 255, 255, 0.05);
border-radius: 20px;
padding: 35px 40px;
transition: transform 0.3s ease,
border-color 0.3s ease;
}

.session-card:hover .session-body {
    border-color: rgba(200, 169, 110, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.session-type {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(200, 169, 110, 0.1);
    color: var(--gold-light);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.star-panel-badge {
    background: linear-gradient(135deg, var(--gold), #f3e5ab);
    color: #1a1a1a;
    box-shadow: 0 4px 15px rgba(200, 169, 110, 0.3);
}

.session-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--white);
    letter-spacing: -0.5px;
}

.session-objective {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 25px;
    font-style: italic;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
    line-height: 1.6;
}

.session-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.details-column h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.details-list {
    list-style: none;
    padding: 0;
}

.details-list li {
    font-size: 0.9rem;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    opacity: 0.7;
    line-height: 1.4;
}

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

.star-panel-badge {
    background: linear-gradient(135deg, #f1c40f 0%, #c0392b 100%) !important;
    color: #fff !important;
    clip-path: polygon(8px 0, calc(100% - 8px) 0, 100% 50%, calc(100% - 8px) 100%, 8px 100%, 0 50%);
}

@media (max-width: 900px) {
    .session-details-grid {
        grid-template-columns: 1fr;
    }
}

/* BLOG GRID PAGE */
.blog-section {
    padding: 80px 0 120px;
    background: var(--bg-page-deep);
}

.blog-banner {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('assets/images/gallery/GAL 4.jpg');
    background-size: cover;
    background-position: center;
}

.category-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 25px;
    border-radius: 2px;
}

.blog-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
}

.blog-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.blog-card-rect {
    background: var(--theme-bg-alt);
    border: 1px solid rgba(200, 169, 110, 0.1);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.blog-card-rect:hover {
    transform: translateY(-15px);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}

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

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

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

.blog-date {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 6px 12px;
}

.blog-content-v2 {
    padding: 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}

.blog-content-v2 h3 {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 15px;
    color: var(--theme-text);
}

.blog-content-v2 p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--theme-text-light);
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more-gold {
    margin-top: auto;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
    text-decoration: none;
}

.read-more-gold:hover {
    gap: 12px;
    color: var(--gold-light);
}

/* CONTACT PAGE SECTION */
.contact-page-section {
    padding: 80px 0 120px;
}

.contact-page-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-card-v {
    background: var(--bg-page-dark);
    border: 1px solid rgba(200, 169, 110, 0.1);
    padding: 60px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.contact-info-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item-v {
    display: flex;
    gap: 20px;
}

.info-item-v h4 {
    font-size: 0.9rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.info-item-v p {
    font-size: 1rem;
    opacity: 0.8;
}

/* EXPOSER SERVICES */
.services-grid-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 50px 5%;
}

.service-card-page {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px;
}

.service-icon-page {
    margin-bottom: 25px;
}

/* PAGE CTA */
.page-cta {
    padding: 100px 0;
    background: var(--gold);
    color: var(--theme-text);
    text-align: center;
}

.page-cta-inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 5%;
}

.page-cta .btn-p {
    background: var(--theme-bg);
    color: var(--theme-text);
    margin-top: 30px;
}

/* RESPONSIVE INTERNAL */
@media (max-width: 992px) {

    .laws-grid,
    .blog-grid-page,
    .contact-page-inner,
    .vision-ancrage-inner {
        grid-template-columns: 1fr;
    }

    .service-card-page {
        grid-template-columns: 1fr;
    }
}

/* ========== TECH TWINS (JUMEAU NUMÉRIQUE) ========== */
.tech-twins {
    padding-top: var(--space-8);
    padding-bottom: 0;
    /* Attach content to bottom */
    background: var(--gold);
    /* Forced gold background in all modes */
    color: var(--dark-3);
    /* Forced dark text for contrast */
    transition: background-color var(--transition);
    overflow: hidden;
    position: relative;
}

.tech-twins .tech-twins-content {
    padding-bottom: var(--space-8);
    /* Restore space for text block only */
}

.tech-twins .section-title {
    color: var(--dark-3);
    /* Dark title */
}

.tech-twins-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-7) 0 150px; /* Shifted content further to the right */
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    /* Centered vertically */
    gap: var(--space-8);
}

.speaker-actions {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    justify-content: flex-start;
}

.tech-twins-lead {
    font-size: var(--fs-lg);
    line-height: 1.8;
    color: rgba(0, 0, 0, 0.7);
    /* Darker text for readability on gold */
    margin-bottom: var(--space-5);
    max-width: 600px;
}

.tech-twins-features {
    display: flex;
    justify-content: flex-start;
    gap: var(--space-7);
    margin-top: var(--space-4);
}

.tech-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-3);
    /* Dark text for contrast against gold */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tech-feature svg {
    stroke: var(--dark-3);
    /* Dark icons on gold */
}

/* Button override for persistent golden background */
.tech-twins .btn-p {
    background: var(--dark);
    color: var(--gold-light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-twins .btn-p:hover {
    background: #000000;
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.tech-twins-visual {
    position: relative;
    width: 100%;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.logo-mark-backdrop {
    width: 480px;
    height: 480px;
    position: absolute;
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background: none;
    /* Pulse moved to pseudo-element for stability */
}

.logo-mark-backdrop::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    /* Halo effect pulse - now independent of logo scale */
    background: radial-gradient(circle at center, rgba(200, 169, 110, 0.15), transparent 70%);
    animation: haloPulse 8s ease-in-out infinite;
    z-index: -1;
}

@keyframes haloPulse {

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

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.glass-logo-mark {
    width: 100%;
    height: 100%;
    position: relative;

    /* Liquid Obsidian Effect: Multiple moving blobs of Dark and Gold */
    background:
        radial-gradient(circle at var(--blob1-x, 20%) var(--blob1-y, 30%), var(--gold-dark), transparent 60%),
        radial-gradient(circle at var(--blob2-x, 80%) var(--blob2-y, 70%), var(--gold), transparent 50%),
        radial-gradient(circle at var(--blob3-x, 50%) var(--blob3-y, 10%), var(--gold-dark), transparent 50%),
        var(--dark);
    background-blend-mode: screen;
    /* Blends blobs into the dark base */

    /* Masking */
    -webkit-mask-image: url('assets/images/LOGO%20MARK.svg');
    mask-image: url('assets/images/LOGO%20MARK.svg');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;

    /* Clean look: Removed Shiny Stroke shadows */
    filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.4));

    opacity: 0.95;
    /* slowRotate for the shell, liquidFlow for the interior blobs */
    animation: slowRotate 100s linear infinite, liquidFlow 30s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite alternate;
    transition: all var(--transition);
}

:root[data-theme="dark"] .glass-logo-mark {
    /* In Dark Mode (Gold background), the liquid blobs become deeper to maintain contrast */
    background:
        radial-gradient(circle at var(--blob1-x, 20%) var(--blob1-y, 30%), var(--dark), transparent var(--blob1-s, 60%)),
        radial-gradient(circle at var(--blob2-x, 80%) var(--blob2-y, 70%), var(--dark-2), transparent var(--blob2-s, 50%)),
        var(--gold-dark);
    background-blend-mode: overlay;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.2));
}

@keyframes liquidFlow {
    0% {
        --blob1-x: 10%;
        --blob1-y: 20%;
        --blob1-s: 60%;
        --blob2-x: 90%;
        --blob2-y: 80%;
        --blob2-s: 40%;
        --blob3-x: 50%;
        --blob3-y: -10%;
    }

    25% {
        --blob1-x: 40%;
        --blob1-y: 60%;
        --blob1-s: 50%;
        --blob2-x: 20%;
        --blob2-y: 30%;
        --blob2-s: 60%;
        --blob3-x: 80%;
        --blob3-y: 40%;
    }

    50% {
        --blob1-x: 80%;
        --blob1-y: 30%;
        --blob1-s: 70%;
        --blob2-x: 50%;
        --blob2-y: 90%;
        --blob2-s: 30%;
        --blob3-x: 10%;
        --blob3-y: 60%;
    }

    75% {
        --blob1-x: 30%;
        --blob1-y: 80%;
        --blob1-s: 50%;
        --blob2-x: 70%;
        --blob2-y: 20%;
        --blob2-s: 70%;
        --blob3-x: 40%;
        --blob3-y: 90%;
    }

    100% {
        --blob1-x: 90%;
        --blob1-y: 10%;
        --blob1-s: 65%;
        --blob2-x: 10%;
        --blob2-y: 90%;
        --blob2-s: 55%;
        --blob3-x: 70%;
        --blob3-y: 20%;
    }
}

/* Define custom properties for animation support */
@property --blob1-x {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 20%;
}

@property --blob1-y {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 30%;
}

@property --blob1-s {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 60%;
}

@property --blob2-x {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 80%;
}

@property --blob2-y {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 70%;
}

@property --blob2-s {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 50%;
}

@property --blob3-x {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 50%;
}

@property --blob3-y {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 10%;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0, 0 0;
    }

    100% {
        background-position: -200% 0, 0 0;
    }
}

@keyframes slowRotate {
    from {
        transform: rotate(0deg);
    }

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



.speaker-carousel-wrapper {
    position: absolute;
    bottom: 0;
    /* Perfectly aligned with the bottom edge */
    width: 600px;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 2;
    pointer-events: none;
}

.speaker-carousel {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    width: 100%;
}

.speaker-slide {
    position: absolute;
    bottom: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    transform: scale(0.4) translateX(0);
    z-index: 1;
    pointer-events: none;
}

.speaker-slide img {
    height: 520px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: filter 0.6s ease;
}

.speaker-slide.prev {
    opacity: 0;
    transform: translate(-300px, 300px) scale(0.6);
    /* Slide from bottom left */
}

.speaker-slide.active {
    opacity: 1;
    transform: translate(0, 0) scale(1.1);
    /* Focal center */
    z-index: 10;
    pointer-events: auto;
}

.speaker-slide.next {
    opacity: 0;
    transform: translate(300px, 300px) scale(0.6);
    /* Slide from bottom right */
}

.glass-orb::after {
    content: '';
    position: absolute;
    inset: 20%;
    border-radius: 50%;
    border: 1px dashed rgba(200, 169, 110, 0.3);
    animation: rotate 20s linear infinite;
}

@keyframes orbPulse {

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

    50% {
        transform: scale(1.05) translateY(-15px);
    }
}

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

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

/* ========================================
   SECTION 5: DEVENIR PARTENAIRE
   ======================================== */
.partenaire {
    padding: 120px 0;
    background: var(--theme-bg);
    color: var(--theme-text);
}

.partenaire-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--space-7);
    display: flex;
    justify-content: center; /* Anchor form in the center */
    align-items: center;
    position: relative;
    z-index: 10;
}

.partenaire-form-image {
    position: absolute;
    left: -70px; /* Shifted 50px more to the left from -20px */
    width: 650px; /* Increased from 550px */
    z-index: 20;
    pointer-events: none;
    animation: floatZoom 6s ease-in-out infinite;
}

@keyframes floatZoom {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.03);
    }
}

.partenaire-form-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.5));
    border-radius: 20px;
}

.partenaire-info {
    margin-left: -236px; /* Shifted 236px to the left */
}

.partenaire-info .section-title {
    font-size: 2.4rem;
}

.partenaire-lead {
    font-size: 1rem;
    color: var(--theme-text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.partenaire-lead strong {
    color: var(--gold-dark);
}

.sponsoring-tiers {
    display: flex;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.tier {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: var(--radius);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tier-diamond {
    background: linear-gradient(135deg, #e8e8e8, #d4d4d4);
    color: #333;
    border: 1px solid #c0c0c0;
}

.tier-gold {
    background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
    color: var(--gold-dark);
    border: 1px solid var(--gold);
}

.tier-silver {
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    color: #666;
    border: 1px solid #ccc;
}

.tier-bronze {
    background: linear-gradient(135deg, #f0e6d6, #e0d0b8);
    color: #8B6914;
    border: 1px solid #c9a96e;
}

.partenaire-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text);
}

.partenaire-form {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 28px;
    line-height: 1.4;
}

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

.form-group {
    position: relative;
    margin-bottom: 8px !important;
    /* Unified Margin */
}

.file-upload-group {
    margin-left: -10px !important;
    /* Physical displacement requested */
}

/* Base Form Styles */
.form-group input,
.form-group select {
    width: 100%;
    padding: 16px 15px;
    height: 54px;
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
}

.form-group label:not(.custom-file-upload) {
    display: none;
}

.file-upload-group {
    margin-left: 0 !important;
    /* Re-aligning with the stack */
    margin-bottom: 8px !important;
}

.custom-file-upload {
    width: 100%;
    padding: 16px 15px !important;
    height: 54px !important;
    border: 1px solid rgba(200, 169, 110, 0.2) !important;
    border-radius: var(--radius);
    font-size: 0.95rem !important;
    font-family: var(--font-body);
    color: var(--text-lighter);
    /* Matching placeholder color */
    background: linear-gradient(60deg, #2F2B24 0%, #100F0F 100%) !important;
    transition: all var(--transition);
    outline: none;
    position: relative;
    z-index: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-decoration: none;
    cursor: pointer;
    gap: 15px;
    text-transform: none;
    /* Matching placeholders */
    font-weight: 500;
    /* Matching placeholders */
}

.hidden-file-input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.upload-icon-right {
    color: var(--gold);
    transition: all 0.3s ease;
}

.custom-file-upload:hover {
    background: rgba(200, 169, 110, 0.05);
    border-color: var(--gold);
}

.custom-file-upload:hover .upload-icon-right {
    transform: translateY(-3px);
}

:root[data-theme="dark"] .form-group input,
:root[data-theme="dark"] .form-group select {
    background: #1e1e1e;
    border-color: rgba(255, 255, 255, 0.1);
    color: white;
}

:root[data-theme="dark"] .form-group label {
    color: rgba(255, 255, 255, 0.4);
}

:root[data-theme="dark"] .form-group input:focus~label,
:root[data-theme="dark"] .form-group input:not(:placeholder-shown)~label,
:root[data-theme="dark"] .form-group select:focus~label,
:root[data-theme="dark"] .form-group select:valid~label {
    background: #1e1e1e;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--gold);
    flex-shrink: 0;
}

.form-checkbox label {
    font-size: 0.82rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: var(--text-light) !important;
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: none;
    clip-path: polygon(22px 0%, calc(100% - 22px) 0%, 100% 50%, calc(100% - 22px) 100%, 22px 100%, 0% 50%);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-submit:hover {
    filter: brightness(1.1);
}

/* ========================================
   SECTION 6: CONCIERGERIE VIP
   ======================================== */
.conciergerie {
    padding: 450px 0 120px 0; /* Increased top padding to protect content */
    margin-top: -350px; /* Merge with the section above */
    border-radius: 80px 80px 0 0; /* Curved top edge */
    background: var(--bg-page-dark);
    position: relative;
    overflow: hidden;
}

.conciergerie::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 50%, rgba(200, 169, 110, 0.08), transparent 60%);
}

.conciergerie-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

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

.conciergerie-badge {
    display: inline-block;
    padding: 6px 20px;
    border: 1px solid rgba(200, 169, 110, 0.4);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 28px;
    text-transform: uppercase;
}

.conciergerie-title {
    color: var(--theme-text) !important;
    font-size: 2.6rem !important;
    margin-bottom: 20px !important;
}

.conciergerie-lead {
    font-size: 1.1rem;
    color: var(--theme-text-light);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    padding: 28px 16px;
    background: var(--bg-page-deep);
    border: 1px solid rgba(200, 169, 110, 0.12);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.service-item:hover {
    background: rgba(200, 169, 110, 0.08);
    border-color: rgba(200, 169, 110, 0.3);
    transform: translateY(-4px);
}

.service-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--theme-text);
    line-height: 1.4;
}

/* ==================== SECTION 4.5 : SPONSOR CTA (GOLDEN) ==================== */
.sponsor-cta {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    position: relative;
    clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
    margin: -60px 0;
    /* To overlap slightly and create a seamless inclined effect */
    z-index: 5;
    text-align: center;
}

.pillar-card {
    background: var(--bg-page-dark);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: var(--space-7) var(--space-6);
    text-align: center;
    transition: all var(--transition);
    border: 1px solid rgba(200, 169, 110, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sponsor-cta-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.sponsor-cta-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--dark-3);
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.sponsor-cta-desc {
    font-size: 1.25rem;
    color: var(--dark-2);
    font-weight: 500;
    max-width: 700px;
    margin: 0 auto;
}

/* .btn-sponsor-cta replaced by global .btn-p */


@media (max-width: 768px) {
    .sponsor-cta {
        padding: 100px 0;
        clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    }

    .sponsor-cta-title {
        font-size: 2.4rem;
    }

    .sponsor-cta-desc {
        font-size: 1.1rem;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-cta::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.footer-cta-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.footer-cta-title {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-6);
    line-height: 1.1;
}

.footer-cta-title .title-accent {
    color: var(--dark);
}

/* .btn-cta-gold replaced by global .btn-t */


/* ========================================
   FOOTER BANNER CTA (MOT D'ORGANISATEUR)
   ======================================== */
.footer-banner-cta {
    display: flex;
    width: 100%;
    height: 200px;
    text-decoration: none;
    transition: all var(--transition);
    overflow: hidden;
    position: relative;
    z-index: 10;
    background: linear-gradient(90deg, #8B7345 0%, #A68B5B 20%, #C8A96E 50%, #A68B5B 80%, #8B7345 100%);
    padding-right: 100px;
}

.footer-banner-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: 5;
}

.footer-banner-cta:hover {
    filter: brightness(1.08);
}

.fb-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 5%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    color: var(--dark);
    font-size: var(--fs-2xl);
    font-weight: 800;
    clip-path: polygon(0% 0%, calc(100% - 80px) 0%, 100% 50%, calc(100% - 80px) 100%, 0% 100%);
    z-index: 2;
    white-space: nowrap;
    filter: drop-shadow(20px 0 25px rgba(0, 0, 0, 0.25));
    position: relative;
}

.fb-right {
    flex: 0 0 28%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 80px;
    padding-right: 80px;
    background: linear-gradient(135deg, var(--gold-dark), #705B35);
    color: var(--dark);
    font-size: var(--fs-xl);
    font-weight: 700;
    margin-left: -80px;
    clip-path: polygon(0% 0%, calc(100% - 80px) 0%, 100% 50%, calc(100% - 80px) 100%, 0% 100%);
    transition: all var(--transition);
    text-align: center;
}

.footer-banner-cta:hover .fb-right {
    background: linear-gradient(135deg, #9d8350, #8B7345);
    padding-left: 90px;
    padding-right: 70px;
}

@media (max-width: 1024px) {
    .fb-left {
        font-size: 1.8rem;
    }

    .fb-right {
        font-size: 1.2rem;
        flex-basis: 30%;
        padding-left: 80px;
    }
}

@media (max-width: 768px) {
    .footer-banner-cta {
        height: auto;
        flex-direction: column;
        padding-right: 0;
    }

    .fb-left {
        padding: 35px 20px;
        font-size: 1.5rem;
        clip-path: none;
        width: 100%;
        white-space: normal;
        text-align: center;
        justify-content: center;
    }

    .fb-right {
        padding: 25px 20px;
        font-size: 1.2rem;
        margin-left: 0;
        width: 100%;
        clip-path: none;
        justify-content: center;
        text-align: center;
    }
}

.footer-main {
    background: var(--dark);
    padding: 48px 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    height: 60px;
    width: auto;
    filter: brightness(1.2);
}

.footer-brand-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand-tagline {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 2px;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.footer-bottom {
    background: var(--dark-3);
    padding: 18px 0;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(200, 169, 110, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .profiles-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .nav-list {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        padding: 40px 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        display: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .main-nav.open {
        display: block;
    }

    .main-nav.open .nav-list {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        padding: 0 20px;
    }

    .nav-link {
        padding: 14px 20px;
        font-size: 1rem;
    }

    .btn-register-nav {
        display: none;
    }

    .hero-title {
        font-size: var(--fs-2xl);
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: var(--fs-xl);
    }

    .vision-header .section-title {
        font-size: 2.4rem;
    }

    .partenaire-inner {
        grid-template-columns: 1fr;
    }

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

    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-brand {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}


@media (max-width: 600px) {
    .hero {
        height: 100vh;
        min-height: 600px;
    }

    .hero-title {
        font-size: var(--fs-xl);
    }

    .hero-badge {
        font-size: 0.65rem;
        letter-spacing: 2px;
        padding: 6px 18px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

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

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

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

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

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

    .footer-cta-title {
        font-size: var(--fs-xl);
    }

    .sponsoring-tiers {
        flex-wrap: wrap;
    }
}

/* ========== FLOATING ASSET ========== */
.floating-asset-container {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
    pointer-events: none;
}

.floating-logo-img {
    width: 480px;
    height: auto;
    filter: drop-shadow(0 0 60px rgba(0, 0, 0, 0.5));
}

.hero-grid.entrance-animated .floating-logo-img {
    /* Animation removed for static centering */
    opacity: 1;
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        padding-top: 100px;
        justify-items: center;
        text-align: center;
        gap: 40px;
    }

    .hero-column {
        text-align: center;
        align-items: center;
    }

    .hero-column-left .hero-subtitle {
        margin-left: 0;
    }

    .hero-logo-center {
        grid-row: 1;
    }

    .floating-logo-img {
        width: 200px;
    }
}

/* ========== REVEAL ON SCROLL ========== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delay staggered children if any */
.reveal[style*="--delay"] {
    transition-delay: var(--delay);
}

/* Removed old absolute nav-white and nav-black overrides */

/* ========================================
   REESWEX — À PROPOS SECTION REDESIGN
   ======================================== */

/* ---------- 1. VISION ROYAL (IMPERIAL) ---------- */
.vision-royal-page {
    background-color: var(--bg-page-dark);
    /* Deep black as seen in reference */
    color: var(--text);
}

/* SPLIT LAYOUT CONTAINER */
.vision-royal-split {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    /* Image takes slightly more space */
    min-height: 100vh;
    padding-top: 80px;
    /* Header space */
}

/* PORTRAIT COLUMN */
.vision-portrait-column {
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: var(--bg-page-dark);
}

.vision-portrait-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 100%);
}

/* CONTENT COLUMN - CENTERED & REFINED */
.vision-content-column {
    padding: 200px 15% 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 5;
    text-align: center;
    /* Center everything */
}

.vision-content-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8vw;
    /* Reduced from 18vw for a subtler tilt */
    width: calc(100% + 8vw);
    height: 100%;
    background-color: var(--bg-page-dark);
    clip-path: polygon(8vw 0, 100% 0, 100% 100%, 0% 100%);
    z-index: -1;
    pointer-events: none;
}

.vision-royal-title {
    font-size: 3.8rem;
    /* Made smaller */
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 70px;
    color: var(--theme-text);
    text-align: center;
}

.vision-royal-title .royal-accent {
    color: var(--gold);
    display: block;
    /* Stack as per reference if column is tight, otherwise spans */
}

/* SALUTATION STYLE */
.vision-salutation {
    font-style: italic;
    font-size: 1.15rem;
    /* Made smaller */
    color: var(--theme-text);
    margin-bottom: 45px;
    opacity: 0.9;
    text-align: center;
}

/* SPEECH CONTENT */
.vision-royal-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    /* Made smaller (reduced from 1.15rem) */
    line-height: 1.8;
    color: var(--theme-text-light);
    /* Better contrast than white-on-white */
    text-align: center;
    /* Centered body text */
}

.vision-royal-text p {
    margin-bottom: 2rem;
}

/* PARTNERS FOOTER (INSIDE COLUMN) */
.vision-split-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.split-footer-tag {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-light);
    margin-bottom: 25px;
    display: block;
}

.split-footer-logos {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.split-partner-logo {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

/* RESPONSIVE STACK */
@media (max-width: 1024px) {
    .vision-royal-split {
        grid-template-columns: 1fr;
    }

    .vision-portrait-column {
        position: relative;
        height: 60vh;
        top: 0;
    }

    .vision-content-column {
        padding: 60px 5%;
        margin-left: 0;
        clip-path: none;
    }

    .vision-royal-title {
        font-size: 3.5rem;
    }
}

.quote-left {
    top: 60px;
    left: 40px;
}

.quote-right {
    bottom: 60px;
    right: 40px;
    transform: rotate(180deg);
}

/* ---------- 2. MOT D'ORGANISATEUR (FOUNDER) ---------- */
.founder-page {
    background-color: var(--bg-page-dark);
    color: var(--theme-text);
}

.founder-split {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    /* Text on left, image on right */
    min-height: 100vh;
    padding-top: 80px;
}

.founder-content-column {
    padding: 100px 10% 120px 12%;
    /* Adjusted to match reference tighter */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 5;
    background-color: var(--bg-page-deep);
}

/* The slant divider */
.founder-content-column::after {
    content: '';
    position: absolute;
    top: 0;
    right: -8vw;
    width: 8vw;
    height: 100%;
    background-color: inherit;
    clip-path: polygon(0 0, 100% 0, 0% 100%, 0% 100%);
    z-index: 4;
}

.founder-title {
    font-family: var(--font-heading);
    font-size: 5.2rem;
    font-weight: 800;
    line-height: 0.85;
    margin-bottom: 50px;
    letter-spacing: -2px;
}

.founder-title span {
    display: block;
}

.founder-title .title-top {
    color: var(--text);
}

.founder-title .title-bottom {
    color: var(--gold);
    margin-top: 5px;
}

.founder-salutation {
    font-size: 1.1rem;
    color: var(--theme-text-light);
    margin-bottom: 35px;
    font-style: italic;
    opacity: 0.9;
}

.founder-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--theme-text-light);
    max-width: 600px;
    font-family: var(--font-body);
}

.founder-text p {
    margin-bottom: 1.8rem;
}

.founder-portrait-column {
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    overflow: hidden;
    background-color: var(--bg-page-dark);
}

.founder-portrait-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

@media (max-width: 1024px) {
    .founder-split {
        grid-template-columns: 1fr;
    }

    .founder-portrait-column {
        height: 60vh;
        position: relative;
        top: 0;
    }

    .founder-content-column {
        padding: 60px 8%;
    }

    .founder-content-column::after {
        display: none;
    }

    .founder-title {
        font-size: 3.5rem;
    }
}


/* BOTTOM CTA BANNER */
.vision-bottom-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #d4ba8a 0%, #a68b50 100%);
    padding: 50px 8%;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.cta-button-wrapper {
    display: flex;
    align-items: center;
}

.vision-bottom-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.vision-bottom-cta:hover::after {
    left: 150%;
}

.cta-title {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--theme-text);
    letter-spacing: -1px;
}



.cta-arrow-btn {
    background-color: #7b6335;
    /* Dark desaturated gold from image */
    color: var(--white);
    padding: 22px 50px 22px 80px;
    font-weight: 800;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 480px;
    /* Elongated as seen in the image */
    /* Chevron shape: Slanted left indent and pointed right tip */
    clip-path: polygon(12% 0%, 92% 0%, 100% 50%, 92% 100%, 12% 100%, 25% 50%);
    transition: all 0.4s ease;
}

.vision-bottom-cta:hover .cta-arrow-btn {
    transform: translateX(10px);
}

@media (max-width: 768px) {
    .vision-bottom-cta {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        padding: 40px 5%;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .cta-arrow-btn {
        font-size: 1.4rem;
    }
}

.speech-footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.speech-footer-tagline {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 25px;
}

.speech-logo {
    height: 30px;
    filter: brightness(0) invert(1);
    opacity: 0.6;
    transition: opacity 0.3s;
}

.speech-logo:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .vision-speech-card {
        padding: 60px 30px;
    }

    .quote-icon {
        width: 60px;
    }

    .speech-footer-logos {
        flex-wrap: wrap;
        gap: 20px;
    }
}



/* ---------- 3. CONCEPT REESWEX (DYNAMIC) ---------- */
.concept-hero {
    height: 100vh;
    background: fixed url('assets/images/concept_hero_futuristic_1775934805238.png') no-repeat center center / cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.concept-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--dark-3), transparent);
}

.concept-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.concept-title {
    font-size: 5rem;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--theme-text);
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.concept-keyword {
    color: var(--gold);
    display: block;
}

.concept-section {
    padding: 120px 0;
    background: var(--theme-bg);
}

.concept-block {
    max-width: 1000px;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.concept-block:nth-child(even) {
    direction: rtl;
}

.concept-block:nth-child(even) .concept-block-text {
    direction: ltr;
}

.concept-block-text h2 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.concept-block-text p {
    font-size: 1.1rem;
    color: var(--theme-text-light);
}

/* ---------- 4. VALEURS & OBJECTIFS (CARDS) ---------- */
.valeurs-section {
    padding: 120px 5%;
    background: var(--theme-bg);
}

.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto;
}

.valeur-card {
    background: var(--bg-page-dark);
    padding: 60px 40px;
    border-radius: 20px;
    color: var(--theme-text);
    position: relative;
    overflow: hidden;
    transition: transform 0.5s var(--transition);
}

.valeur-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/value_card_texture_1775934833068.png') center / cover;
    opacity: 0.2;
    transition: opacity 0.5s var(--transition);
}

.valeur-card:hover {
    transform: translateY(-15px);
}

.valeur-card:hover::before {
    opacity: 0.4;
}

.valeur-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 30px;
    color: var(--gold);
    position: relative;
}

.valeur-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
}

.valeur-card p {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.6;
    position: relative;
}

.objectifs-list {
    max-width: 800px;
    margin: 80px auto;
}

.objectif-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    cursor: pointer;
}

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

.objectif-header h3 {
    font-size: 1.8rem;
    color: var(--dark-3);
    transition: color 0.3s;
}

.objectif-item:hover .objectif-header h3 {
    color: var(--gold);
}

.objectif-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    color: var(--theme-text-light);
    font-size: 1.1rem;
    padding-top: 0;
}

.objectif-item.active .objectif-content {
    max-height: 500px;
    padding-top: 20px;
    transition: max-height 0.8s ease-in-out;
}

/* ---------- 5. ROADMAP (TIMELINE) ---------- */
.roadmap-page {
    background: var(--dark-3);
    color: var(--white);
}

.roadmap-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

.roadmap-globe-img {
    position: absolute;
    width: 600px;
    opacity: 0.3;
    pointer-events: none;
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 5%;
}

.timeline-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.timeline-row::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-step {
    display: flex;
    gap: 60px;
    padding-bottom: 100px;
    position: relative;
}

.timeline-marker {
    width: 80px;
    height: 80px;
    background: var(--dark-3);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 30px rgba(200, 169, 110, 0.3);
}

.timeline-marker span {
    font-weight: 700;
    color: var(--gold);
}

.timeline-content {
    flex-grow: 1;
}

.timeline-city-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) saturate(100%) invert(75%) sepia(19%) saturate(830%) hue-rotate(3deg) brightness(89%) contrast(85%);
    /* Gold filter */
}

.timeline-content h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 1.1rem;
    opacity: 0.7;
    max-width: 700px;
}

@media (max-width: 900px) {

    .founder-split,
    .concept-block {
        grid-template-columns: 1fr;
    }

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

    .concept-hero h1 {
        font-size: 3rem;
    }
}

/* ========================================
   EDITORIAL LAYOUT (VISION & FOUNDER)
   ======================================== */
.editorial-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.editorial-portrait-column {
    flex: 1;
    background: var(--dark);
    /* Consistent Brand Charcoal #1A1A1A */
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.editorial-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    filter: grayscale(20%);
}

.editorial-portrait-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px 10%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95), transparent);
    color: var(--white);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 30px;
}

.caption-logo-wrapper {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.caption-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Robust Theme-Adaptive Logos (Speaker Section & Global) */
.logo-light, .caption-logo.logo-light {
    display: block !important;
}
.logo-dark, .caption-logo.logo-dark {
    display: none !important;
}

:root[data-theme="dark"] .logo-light, 
:root[data-theme="dark"] .caption-logo.logo-light {
    display: none !important;
}

:root[data-theme="dark"] .logo-dark,
:root[data-theme="dark"] .caption-logo.logo-dark {
    display: block !important;
}

:root[data-theme="light"] .logo-light,
:root[data-theme="light"] .caption-logo.logo-light {
    display: block !important;
}

:root[data-theme="light"] .logo-dark,
:root[data-theme="light"] .caption-logo.logo-dark {
    display: none !important;
}

.editorial-portrait-caption h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.editorial-portrait-caption p {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 400px;
}

.editorial-content-column {
    position: relative;
    /* Added to act as anchor for the inset image */
    flex: 1;
    background: var(--theme-bg);
    /* Use theme bg instead of hardcoded white */
    padding: 140px 8% 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Removed old editorial-inset-img system in favor of caption-integrated branding */

.editorial-nav-list {
    list-style: none;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.editorial-nav-list li {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-lighter);
    cursor: pointer;
    transition: all 0.3s ease;
}

.editorial-nav-list li.active,
.editorial-nav-list li:hover {
    color: var(--dark);
    transform: translateX(5px);
}

.editorial-main-text {
    max-width: 650px;
    line-height: 1.9;
    font-size: 1.05rem;
    color: var(--theme-text-light);
    /* Softer text color */
}

.editorial-main-text p {
    margin-bottom: 2em;
}

.editorial-main-text strong {
    color: var(--theme-text);
    font-weight: 700;
}

.editorial-footer-img {
    margin-top: auto;
    width: 250px;
    align-self: flex-end;
    border: 2px solid var(--theme-text-light);
    padding: 5px;
    background: var(--theme-bg);
    opacity: 0.6;
}

.editorial-footer-img img {
    width: 100%;
    height: auto;
    filter: brightness(0.95);
}

@media (max-width: 768px) {

    /* Global Normalization */
    :root {
        --fs-2xl: 1.8rem;
        --fs-3xl: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }

    .hero-title {
        font-size: 2.8rem !important;
    }

    /* Hero Mobility */
    .hero {
        height: auto;
        min-height: 90vh;
        padding: 120px 5% 60px;
        overflow: hidden;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        position: relative;
        text-align: center;
        gap: 40px;
    }

    .hero-column {
        align-items: center;
        text-align: center;
        transform: none !important;
        opacity: 1 !important;
    }

    .hero-column-left,
    .hero-column-right {
        transform: none !important;
    }

    .hero-logo-center {
        min-width: auto;
        order: -1;
        transform: scale(0.8) !important;
        opacity: 1 !important;
    }

    .floating-logo-img {
        width: 280px;
    }

    /* Vision Section */
    .vision {
        padding: 60px 0;
        min-height: auto;
    }

    .vision-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .vision-logo-slot {
        height: 150px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .vision-header .section-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .vision-lead {
        font-size: 1rem;
        text-align: center;
    }

    /* Agenda / Roadmap Mobility */
    .agenda-inner {
        padding: 40px 15px;
    }

    .agenda-tabs-header {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 20px 0 40px;
        -webkit-overflow-scrolling: touch;
        gap: 30px;
        scrollbar-width: none;
    }

    .agenda-tabs-header::-webkit-scrollbar {
        display: none;
    }

    .timeline-horizontal-line {
        width: 200%;
    }

    /* Stretch line for scrolling */

    .roadmap-point {
        flex-shrink: 0;
        min-width: 120px;
    }

    .roadmap-day-btn {
        width: 160px;
        height: 45px;
    }

    .session-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .session-time {
        position: static;
        margin-bottom: 15px;
    }

    /* Angled Carousel */
    .angled-item {
        min-width: 280px;
        height: 350px;
    }

    .angled-item-content h3 {
        font-size: 1.2rem;
    }

    /* Navigation */
    .btn-register-nav {
        display: none;
    }

    /* Hide in nav, keep in mobile menu if needed */
    .logo-img {
        height: 35px;
    }

    /* Footer */
    .footer-cta {
        padding: 60px 5%;
        height: auto;
        min-height: 250px;
    }

    .footer-cta-title {
        font-size: 1.8rem;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .floating-logo-img {
        width: 220px;
    }

    .hero-title {
        font-size: 2.2rem !important;
    }

    .roadmap-day-btn {
        width: 140px;
    }
}

/* ========================================
   FASCINATING LUXURY DOSSIER SECTION
   ======================================== */
.exposer-final-cta {
    padding: 180px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fdfcf9;
    /* Very subtle warm paper tone */
    position: relative;
    overflow: hidden;
}

.exposer-final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(200, 169, 110, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.luxury-dossier-wrap {
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 5;
}

.luxury-dossier-card {
    background: white;
    padding: 100px 80px;
    border-radius: 2px;
    /* Sharp, premium architectural edges */
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.05),
        inset 0 0 0 1px rgba(200, 169, 110, 0.2);
    position: relative;
    text-align: center;
    transition: transform 0.8s var(--transition);
}

.luxury-dossier-card::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(200, 169, 110, 0.1);
    pointer-events: none;
}

.dossier-inner {
    position: relative;
    z-index: 2;
}

.dossier-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 700;
}

@keyframes gold-shimmer {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.dossier-title {
    font-size: 5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #333 0%, #C8A96E 50%, #333 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gold-shimmer 4s infinite linear;
    letter-spacing: -2px;
}

.dossier-separator {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 40px;
}

.dossier-lead {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

/* Dossier Download Grid */
.dossier-download-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto 60px;
}

.download-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(200, 169, 110, 0.05);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: 12px;
    text-decoration: none;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.download-item:hover {
    background: rgba(200, 169, 110, 0.1);
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.download-icon-box {
    width: 54px;
    height: 54px;
    background: var(--gold);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.download-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.download-text strong {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #333;
    display: block;
}

.download-text span {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Premium Chevron CTA */
.premium-chevron-cta {
    --chv: 35px;
    /* Deeper for impact section */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #7b6335;
    color: white !important;
    text-decoration: none;
    padding: 24px 65px 24px 85px;
    font-weight: 800;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    clip-path: polygon(var(--chv) 0%, calc(100% - var(--chv)) 0%, 100% 50%, calc(100% - var(--chv)) 100%, var(--chv) 100%, 0% 50%);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(123, 99, 53, 0.3);
}

.premium-chevron-cta:hover {
    transform: scale(1.05) translateX(10px);
    background: #8e7443;
    box-shadow: 0 20px 50px rgba(123, 99, 53, 0.5);
}

@keyframes scanner-move {
    0% {
        left: -100%;
        opacity: 0;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        left: 200%;
        opacity: 0;
    }
}

.chevron-scanner {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: scanner-move 3s infinite ease-in-out;
}

.chevron-text {
    position: relative;
    z-index: 2;
}

/* Dark Mode Adaptation */
:root[data-theme="dark"] .exposer-final-cta {
    background: var(--dark);
}

:root[data-theme="dark"] .luxury-dossier-card {
    background: #1e1e1e;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(200, 169, 110, 0.15);
}

:root[data-theme="dark"] .dossier-title {
    background: linear-gradient(90deg, #eee 0%, #C8A96E 50%, #eee 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
}

@media (max-width: 768px) {
    .exposer-final-cta {
        padding: 100px 5%;
    }

    .luxury-dossier-card {
        padding: 60px 30px;
    }

    .dossier-title {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .premium-chevron-cta {
        padding: 20px 40px 20px 55px;
        font-size: 1.1rem;
        min-width: auto;
    }

    .dossier-lead {
        font-size: 1.1rem;
    }
}

/* ========== NEW FORMS LAYOUTS ========== */
/* ========== ROYAL CONTRAST GOLDEN FORMS UI ========== */
.partenaire-form-container,
.speaker-apply-form-wrap,
#partenaire-form {
    background: linear-gradient(135deg, #C8A96E 0%, #A6854D 100%) !important;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    color: #000;
    max-width: 650px; /* Base width */
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.partenaire-form-container {
    padding-left: 530px !important;
}

.partenaire-form-wrapper {
    width: 100%;
}

/* Double width and 2-column layout for the Visiteur Pass Form */
#partenaire-form {
    max-width: 1400px; /* Increased to ensure text doesn't wrap in equal columns */
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Forces equal column widths */
    grid-template-rows: repeat(3, auto);
    gap: 15px 40px;
    align-items: end;
    /* Removed large negative margins to keep it centered as an anchor */
    padding-left: 530px !important; /* Reduced by 50px from 580px */
}

.partenaire-form-container .form-title,
.speaker-apply-form-wrap .form-title,
#partenaire-form .form-title {
    color: #000 !important;
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 35px;
    letter-spacing: -1px;
    text-transform: uppercase;
    grid-column: 1 / -1; /* Title spans both columns */
}

.partenaire-form-container .form-group,
.speaker-apply-form-wrap .form-group,
#partenaire-form .form-group {
    margin-bottom: 0; /* Let grid handle the gap */
}

/* PREMIUM CUSTOM DROPDOWN (SELECT) UI */
.custom-select-wrapper {
    position: relative;
    user-select: none;
    width: 100%;
}

.custom-select-wrapper select {
    display: none !important; /* Hide original */
}

.custom-select-trigger {
    background: linear-gradient(60deg, #2F2B24 0%, #100F0F 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 0 25px !important;
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
    color: #fff !important;
    font-size: 1.1rem;
    cursor: pointer;
    justify-content: space-between;
    transition: all 0.3s ease;
    white-space: nowrap; /* Prevent height increase from wrapping */
    box-sizing: border-box;
}

.custom-select-trigger:hover,
.custom-select-wrapper.open .custom-select-trigger {
    border-color: var(--gold) !important;
    box-shadow: 0 0 15px rgba(200, 169, 110, 0.1);
}

.custom-select-trigger::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(45deg) translateY(-2px);
    transition: all 0.3s ease;
    margin-right: 5px;
}

.custom-select-wrapper.open .custom-select-trigger::after {
    transform: rotate(-135deg) translateY(-2px);
}

.custom-options {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(24, 24, 26, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: 15px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.98);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.custom-select-wrapper.open .custom-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.custom-option {
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-option:hover {
    background: var(--gold);
    color: #000;
    font-weight: 700;
    transform: translateX(5px);
}

.custom-option.selected {
    background: rgba(200, 169, 110, 0.1);
    color: var(--gold);
    font-weight: 700;
}

.partenaire-form-container input,
.partenaire-form-container select,
.partenaire-form-container textarea,
.speaker-apply-form-wrap input,
.speaker-apply-form-wrap select,
.speaker-apply-form-wrap textarea,
#partenaire-form input,
#partenaire-form select,
#partenaire-form textarea {
    background: linear-gradient(60deg, #2F2B24 0%, #100F0F 100%) !important; /* Premium Dark Gradient */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 0 25px !important;
    height: 70px !important; /* Increased from 60px */
    color: #fff !important;
    font-size: 1.1rem; /* Slightly larger */
    width: 100%;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.partenaire-form-container input::placeholder,
#partenaire-form input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* THE MIDNIGHT CHEVRON BUTTON */
.partenaire-form-container .btn-p,
.speaker-apply-form-wrap .btn-p,
#partenaire-form .btn-p,
.btn-submit {
    background: #000 !important; /* Midnight Black */
    color: #C8A96E !important; /* Gold Text */
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    height: 70px !important; /* Perfectly matches input/select height */
    padding: 0 40px !important;
    border: none !important;
    border-radius: 0 !important;
    clip-path: polygon(30px 0%, calc(100% - 30px) 0%, 100% 50%, calc(100% - 30px) 100%, 30px 100%, 0% 50%);
    width: auto !important;
    max-width: 100%;
    min-width: 320px; /* Increased back for a 'bigger' feel */
    justify-self: center; /* Center it within the grid cell */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-5px); /* Shifted up by 5px */
}

.partenaire-form-container .btn-p:hover,
#partenaire-form .btn-p:hover {
    background: #222 !important;
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.form-tabs-header {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 35px;
    justify-content: center;
}

.form-tab-btn {
    color: rgba(0, 0, 0, 0.5);
    font-weight: 800;
    padding: 12px 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-tab-btn.active {
    color: #000;
    background: rgba(0, 0, 0, 0.05);
    border-bottom: 3px solid #000;
    border-radius: 0;
}

/* Label styling for gold background */
.partenaire-form-container label,
.speaker-apply-form-wrap label {
    color: #000 !important;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

/* Speaker Apply Section */
.speaker-apply-section {
    padding: 120px 0;
    background: var(--theme-bg-alt);
}

.speaker-apply-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 5%;
}

.speaker-apply-header {
    text-align: center;
    margin-bottom: 60px;
}

.speaker-apply-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: flex-start;
}

.benefit-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(200, 169, 110, 0.1);
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--gold);
}

.benefit-text h4 {
    font-family: var(--font-heading);
    margin-bottom: 5px;
    color: var(--theme-text);
}

.benefit-text p {
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .speaker-apply-grid {
        grid-template-columns: 1fr;
    }
}

/* ========== AGENDA ENHANCEMENTS ========== */
.session-objective {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.4;
}

.breakdown-item {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(200, 169, 110, 0.1);
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.point-fort {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 12px;
    background: rgba(200, 169, 110, 0.1);
    border-left: 3px solid var(--gold);
    font-size: 0.9rem;
    color: var(--gold-light);
    font-weight: 600;
    font-style: italic;
    border-radius: 0 4px 4px 0;
}

.expert-notes {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(200, 169, 110, 0.3);
    border-radius: 12px;
}

.expert-notes h4 {
    color: var(--gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.expert-notes h4::before {
    content: '◈';
}

.expert-note-item {
    font-size: 0.9rem;
    color: var(--text-lighter);
    margin-bottom: 8px;
    line-height: 1.5;
}

.expert-note-item strong {
    color: var(--white);
    font-weight: 600;
}

.session-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-lighter);
}

.footer-tag span {
    color: var(--gold);
    font-weight: 700;
}

/* ========== MOBILE COMPATIBILITY OVERRIDES ========== */
@media (max-width: 1024px) {
    .partenaire-inner {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        padding: 0 15px !important;
        display: flex !important;
    }
    
    .partenaire-form-image {
        position: relative !important;
        left: 0 !important;
        width: 100% !important;
        max-width: 320px !important;
        margin: 0 auto 20px !important;
        transform: none !important;
        animation: none !important;
    }

    .partenaire-form-container,
    #partenaire-form {
        padding: 40px 20px !important;
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        max-width: 100% !important;
    }

    .partenaire-form {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .partenaire-form .form-title {
        font-size: 1.5rem !important;
        margin-bottom: 25px !important;
    }

    .form-group input, 
    .form-group select, 
    .form-group textarea {
        height: 60px !important;
        font-size: 1rem !important;
    }

    .partenaire-form .btn-submit {
        min-width: 100% !important;
    }
}