/* ==========================================================================
   ORVANTYX CAPITAL - PREMIUM INVESTMENT WEBSITE
   DESIGN SYSTEM & UI COMPONENTS
   ========================================================================== */

/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */
:root {
    /* Colors */
    --bg-primary: #0A0C14;
    --bg-secondary: #0F111A;
    --bg-tertiary: #131625;
    --gold-primary: #D4A84F;
    --gold-secondary: #B8883A;
    --gold-light: #F1D27A;
    --gold-dark: #8B6A2B;
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E0E0E0;
    --gray-300: #B0B0B0;
    --gray-400: #8A99AD;
    --gray-500: #6B7A8E;
    --gray-600: #4A5568;
    --gray-700: #2D3748;
    --gray-800: #1A202C;
    --gray-900: #171923;
    --success: #0F4C4C;
    --error: #C53030;
    
    /* Navbar Colors - SOLID PREMIUM DARK */
    --navbar-bg: #060812;
    --navbar-bg-scrolled: #05070F;
    --navbar-border: rgba(212, 168, 79, 0.15);
    
    /* Effects */
    --glow-gold: 0 0 30px rgba(212, 168, 79, 0.3);
    --glow-gold-strong: 0 0 50px rgba(212, 168, 79, 0.5);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 15px 50px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 25px 70px rgba(0, 0, 0, 0.5);
    
    /* Transitions */
    --transition-fast: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Layout */
    --container-width: 1400px;
    --header-height: 90px;
    --header-scrolled: 70px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--white);
    line-height: 1.6;
    /* overflow-x: hidden;
    cursor: none; */
}


html, body {
    overflow-x: hidden;
    width: 100%;
}



/* Selection */
::selection {
    background: var(--gold-primary);
    color: var(--bg-primary);
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-secondary);
}

/* ==========================================================================
   2. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
}

p {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    color: var(--gray-400);
    line-height: 1.7;
}

.gold-text {
    color: var(--gold-primary);
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* ==========================================================================
   3. CUSTOM CURSOR
   ========================================================================== */


/* ==========================================================================
   4. LOADER
   ========================================================================== */
.premium-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.premium-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-ring {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border: 3px solid transparent;
    border-top-color: var(--gold-primary);
    border-right-color: var(--gold-primary);
    border-radius: 50%;
    animation: loader-spin 1s linear infinite;
}

@keyframes loader-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 8px;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0;
    animation: loader-fade-in 0.5s ease forwards 0.3s;
}

.loader-line {
    width: 200px;
    height: 2px;
    background: rgba(212, 168, 79, 0.2);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    animation: loader-line 1.5s ease infinite;
}

@keyframes loader-line {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes loader-fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   5. NAVIGATION - PREMIUM SOLID DARK (NO TRANSPARENCY)
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-base);
    padding: 20px 0;
    background: var(--navbar-bg);
    /* border-bottom: 5px solid var(--navbar-border); */
    border-bottom:2px solid rgb(157 114 28 / 60%)
}

.navbar.scrolled {
    padding: 12px 0;
    background: var(--navbar-bg-scrolled);
    border-bottom-color: rgba(212, 168, 79, 0.25);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
}

.logo-icon svg {
    transition: var(--transition-fast);
}

.nav-logo:hover .logo-icon svg {
    transform: scale(1.05);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--white);
    line-height: 1;
}

.logo-sub {
    font-size: 0.55rem;
    letter-spacing: 3px;
    color: var(--gold-primary);
    font-weight: 600;
    margin-top: 4px;
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-300);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-primary);
    transition: var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-primary);
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dropdown-trigger i {
    font-size: 1rem;
    transition: var(--transition-fast);
}

.nav-dropdown:hover .dropdown-trigger i {
    transform: rotate(180deg);
    color: var(--gold-primary);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: var(--navbar-bg);
    border: 1px solid rgba(212, 168, 79, 0.2);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-base);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    text-decoration: none;
    color: var(--gray-300);
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.dropdown-menu a i {
    font-size: 1.1rem;
    color: var(--gold-primary);
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background: rgba(212, 168, 79, 0.08);
    color: var(--gold-primary);
    padding-left: 28px;
}

.dropdown-menu a:hover i {
    transform: scale(1.1);
}

/* Navigation Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn-nav-cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--bg-primary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
    transition: var(--transition-fast);
}

.btn-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
@media (max-width: 1024px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--navbar-bg);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 100px 40px;
        gap: 24px;
        transition: var(--transition-base);
        z-index: 1000;
        border-left: 1px solid rgba(212, 168, 79, 0.2);
        box-shadow: var(--shadow-xl);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        font-size: 1rem;
        padding: 12px 0;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-trigger {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.03);
        border: none;
        border-left: 2px solid var(--gold-primary);
        border-radius: 0;
        padding-left: 20px;
        display: none;
        margin-top: 8px;
        box-shadow: none;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-dropdown.active .dropdown-trigger i {
        transform: rotate(180deg);
    }

    .hamburger {
        display: block;
    }

    .btn-nav-cta {
        display: none;
    }
}

/* ==========================================================================
   6. HERO SLIDER
   ========================================================================== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 55px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg video,
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 8, 18, 0.88) 0%, rgba(6, 8, 18, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 5%;
    transform: translateY(40px);
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.active .hero-content {
    transform: translateY(0);
}

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-text {
    font-size: 1rem;
    max-width: 550px;
    margin-bottom: 40px;
    color: var(--gray-300);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 40px;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-gold);
    gap: 12px;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-primary);
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-400);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--gold-primary);
    width: 70px;
}

.slider-arrows {
    display: flex;
    gap: 12px;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    background: rgba(6, 8, 18, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 168, 79, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
    border-color: var(--gold-primary);
}

@media (max-width: 768px) {
    .hero-content {
        margin-left: 0;
        padding: 0 24px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-value {
        font-size: 1.2rem;
    }

    .slider-controls {
        bottom: 20px;
        padding: 0 20px;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
    }
}

/* ==========================================================================
   7. COMMON SECTION STYLES
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtext {
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-400);
}

/* ==========================================================================
   8. STRATEGIES SECTION
   ========================================================================== */
.strategies {
    padding: 120px 0;
    background: var(--bg-primary);
}

.strategies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.strategy-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 28px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(212, 168, 79, 0.05), transparent);
    opacity: 0;
    transition: var(--transition-base);
}

.strategy-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
}

.strategy-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 25px;
}

.strategy-card h3 {
    margin-bottom: 15px;
}

.strategy-card p {
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.card-metrics {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric strong {
    font-size: 1.2rem;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.metric span {
    font-size: 0.7rem;
    color: var(--gray-400);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.card-link:hover {
    gap: 12px;
}

@media (max-width: 1200px) {
    .strategies-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .strategies {
        padding: 80px 0;
    }

    .strategies-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   9. PERFORMANCE SECTION
   ========================================================================== */
.performance {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.performance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.performance-stats {
    display: flex;
    gap: 30px;
    margin: 40px 0;
}

.perf-stat {
    flex: 1;
}

.perf-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
}

.perf-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 8px;
}

.performance-chart {
    margin-top: 30px;
}

.chart-bar {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.chart-bar > span:first-child {
    width: 120px;
    font-size: 0.85rem;
    color: var(--gray-300);
}

.bar-fill {
    flex: 1;
    height: 8px;
    background: rgba(212, 168, 79, 0.2);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.bar-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--width);
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    border-radius: 4px;
    animation: bar-fill 1s ease forwards;
}

@keyframes bar-fill {
    from { width: 0; }
    to { width: var(--width); }
}

.bar-value {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-primary);
    min-width: 60px;
}

.performance-image {
    position: relative;
}

.performance-image img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(212, 168, 79, 0.2);
    box-shadow: var(--shadow-xl);
}

.floating-card {
    position: absolute;
    top: -30px;
    right: -30px;
    background: var(--bg-tertiary);
    backdrop-filter: blur(20px);
    border: 1px solid var(--gold-primary);
    border-radius: 16px;
    padding: 20px 25px;
    text-align: center;
    z-index: 2;
}

.floating-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-primary);
}

.floating-text {
    font-size: 0.75rem;
    color: var(--gray-300);
    margin-top: 5px;
}

@media (max-width: 1024px) {
    .performance-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .floating-card {
        top: -20px;
        right: -20px;
        padding: 15px 20px;
    }
}

/* ==========================================================================
   10. PORTFOLIO SECTION
   ========================================================================== */
.portfolio {
    padding: 120px 0;
    background: var(--bg-primary);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-300);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    border-radius: 30px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: var(--bg-primary);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-item {
    transition: var(--transition-base);
}

.portfolio-img {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 20px;
    aspect-ratio: 16/11;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 8, 18, 0.92);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition-base);
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-info h4 {
    margin-bottom: 10px;
}

.portfolio-info p {
    font-size: 0.8rem;
    margin-bottom: 15px;
}

.portfolio-info a {
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
}

.portfolio-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.portfolio-item h4 {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   11. PARTNERS SECTION
   ========================================================================== */
.partners {
    padding: 80px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.partners-slider {
    width: 100%;
    overflow: hidden;
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: scroll-partners 30s linear infinite;
    width: fit-content;
}

.partner-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gray-500);
    white-space: nowrap;
    transition: var(--transition-fast);
}

.partner-logo:hover {
    color: var(--gold-primary);
}

@keyframes scroll-partners {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ==========================================================================
   12. INSIGHTS SECTION
   ========================================================================== */
.insights {
    padding: 120px 0;
    background: var(--bg-primary);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.insight-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-base);
}

.insight-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.insight-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.insight-card:hover .insight-image img {
    transform: scale(1.05);
}

.insight-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: var(--gold-primary);
    color: var(--bg-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.insight-content {
    padding: 24px;
}

.insight-date {
    font-size: 0.7rem;
    color: var(--gray-500);
    margin-bottom: 12px;
}

.insight-content h4 {
    margin-bottom: 12px;
    line-height: 1.4;
}

.insight-content p {
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.insight-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.insight-link:hover {
    gap: 12px;
}

@media (max-width: 1024px) {
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .insights-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   13. NEWSLETTER SECTION
   ========================================================================== */
.newsletter {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
}

.newsletter-wrapper {
    background: var(--bg-tertiary);
    border: 1px solid rgba(212, 168, 79, 0.2);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
}

.newsletter-content {
    margin-bottom: 40px;
}

.newsletter-content .section-tag {
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 50px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    color: var(--white);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold-primary);
}

.newsletter-form .btn-primary {
    padding: 14px 32px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.contact-item strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
    font-size: 0.85rem;
    color: var(--gray-300);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--gold-primary);
}

@media (max-width: 768px) {
    .newsletter-wrapper {
        padding: 40px 24px;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

/* ==========================================================================
   14. FOOTER
   ========================================================================== */
.footer {
    background: var(--bg-primary);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.85rem;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
}

.footer-links h4 {
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    text-decoration: none;
    color: var(--gray-400);
    font-size: 0.8rem;
    transition: var(--transition-fast);
}

.footer-links ul li a:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.7rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   15. BACK TO TOP
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 100;
    color: var(--bg-primary);
    font-size: 1.2rem;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--glow-gold);
}

/* ==========================================================================
   16. RESPONSIVE ADJUSTMENTS
   ========================================================================== */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .performance-stats {
        flex-direction: column;
        gap: 20px;
    }

    .chart-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .chart-bar > span:first-child {
        width: auto;
    }

    .contact-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* ==========================================================================
   17. ANIMATIONS
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* AOS Overrides */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

#logot{
    width:230px;
}

/* ==========================================================================
   EXPERTISES SECTION - PREMIUM GRID
   ========================================================================== */

.expertises {
    padding: 5px 0;
    background: var(--bg-primary);
}

.expertises-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.expertise-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-base);
}

.expertise-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.expertise-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.expertise-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.expertise-card:hover .expertise-image img {
    transform: scale(1.05);
}

.expertise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 168, 79, 0.9) 0%, rgba(139, 106, 43, 0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.expertise-card:hover .expertise-overlay {
    opacity: 1;
}

.expertise-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: var(--transition-base);
}

.expertise-card:hover .expertise-icon {
    transform: scale(1);
}

.expertise-icon i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.expertise-content {
    padding: 30px;
}

.expertise-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--white);
}

.expertise-content p {
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.expertise-list {
    list-style: none;
    margin-bottom: 25px;
}

.expertise-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: var(--gray-400);
}

.expertise-list li i {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.expertise-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.expertise-link:hover {
    gap: 12px;
    color: var(--gold-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .expertises-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .expertises {
        padding: 8px 0;
    }
    
    .expertises-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-content {
        padding: 25px;
    }
    
    .expertise-content h3 {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   ABOUT SECTION - ORVANTYX GROUP
   ========================================================================== */

.about {
    padding: 5px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(212, 168, 79, 0.03), transparent);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Colonne Gauche - Contenu */
.about-content {
    position: relative;
     padding: 80px 0;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--gray-300);
}

.about-qualities {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.quality-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.quality-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 168, 79, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.quality-item:hover .quality-icon {
    background: var(--gold-primary);
    transform: translateY(-3px);
}

.quality-icon i {
    font-size: 1.5rem;
    color: var(--gold-primary);
    transition: var(--transition-fast);
}

.quality-item:hover .quality-icon i {
    color: var(--bg-primary);
}

.quality-text h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--white);
}

.quality-text p {
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

/* Bouton Lire plus */
.about-btn-wrapper {
    margin-top: 20px;
}

.btn-about {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--bg-primary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    border-radius: 40px;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-about:hover {
    transform: translateY(-3px);
    gap: 18px;
    box-shadow: var(--glow-gold);
}

.btn-about i {
    font-size: 1.1rem;
    transition: var(--transition-fast);
}

.btn-about:hover i {
    transform: translateX(3px);
}

/* Colonne Droite - Image */
.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-xl);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 168, 79, 0.1), transparent);
    pointer-events: none;
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--bg-primary);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--gold-primary);
    box-shadow: var(--shadow-md);
}

.badge-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
}

.badge-text {
    font-size: 0.7rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Stats sous l'image */
.image-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.image-stats .stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.image-stats .stat i {
    font-size: 1.2rem;
    color: var(--gold-primary);
}

.image-stats .stat span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--white);
}

/* Responsive */
@media (max-width: 1024px) {
    .about {
        padding: 8px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-qualities {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .image-stats {
        max-width: 500px;
        margin: 25px auto 0;
    }
}

@media (max-width: 768px) {
    .about-text {
        font-size: 0.9rem;
    }
    
    .image-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .btn-about {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   SECTOR IMPACT SECTION - PREMIUM GRID
   ========================================================================== */

.sector-impact {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.sector-impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sector-impact-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.sector-impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 30%, rgba(212, 168, 79, 0.03), transparent);
    opacity: 0;
    transition: var(--transition-base);
}

.sector-impact-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.sector-impact-card:hover::before {
    opacity: 1;
}

.sector-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 168, 79, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-fast);
}

.sector-impact-card:hover .sector-icon {
    background: var(--gold-primary);
}

.sector-icon i {
    font-size: 2rem;
    color: var(--gold-primary);
    transition: var(--transition-fast);
}

.sector-impact-card:hover .sector-icon i {
    color: var(--bg-primary);
}

.sector-impact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.sector-stats {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sector-stat {
    flex: 1;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-top: 5px;
}

.sector-impact-card p {
    font-size: 0.85rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.sector-progress {
    margin-bottom: 25px;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    border-radius: 4px;
    position: relative;
    transition: width 1s ease;
}

.sector-impact-card:hover .progress-fill {
    animation: progressPulse 1s ease;
}

@keyframes progressPulse {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.progress-label {
    font-size: 0.7rem;
    color: var(--gray-400);
}

.sector-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
}

.sector-link:hover {
    gap: 12px;
    color: var(--gold-light);
}

/* Responsive */
@media (max-width: 1024px) {
    .sector-impact {
        padding: 80px 0;
    }
    
    .sector-impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .sector-impact-grid {
        grid-template-columns: 1fr;
    }
    
    .sector-impact-card {
        padding: 30px;
    }
    
    .sector-stats {
        gap: 15px;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   METHODOLOGY & FINANCEMENT SECTION
   ========================================================================== */

.methodology {
    padding: 5px 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.methodology::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(212, 168, 79, 0.04), transparent);
    pointer-events: none;
}

.methodology-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Colonne Gauche - Contenu */
.methodology-content {
    position: relative;
}

.methodology-text {
    font-size: 1rem;
    line-height: 1.8;
    margin: 25px 0 40px;
    color: var(--gray-300);
}

.methodology-phases {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.phase {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.phase-number {
    width: 45px;
    height: 45px;
    background: rgba(212, 168, 79, 0.1);
    border: 1px solid rgba(212, 168, 79, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--gold-primary);
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.phase:hover .phase-number {
    background: var(--gold-primary);
    color: var(--bg-primary);
    transform: scale(1.05);
}

.phase-content h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--white);
}

.phase-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--gray-400);
    margin: 0;
}

/* Boutons CTA */
.methodology-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-methodology {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--bg-primary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    border-radius: 40px;
    transition: var(--transition-fast);
}

.btn-methodology:hover {
    transform: translateY(-3px);
    gap: 18px;
    box-shadow: var(--glow-gold);
}

.btn-methodology-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    border: 1.5px solid rgba(212, 168, 79, 0.5);
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    border-radius: 40px;
    transition: var(--transition-fast);
}

.btn-methodology-outline:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 168, 79, 0.1);
    transform: translateY(-3px);
    gap: 14px;
}

/* Colonne Droite - Image */
.methodology-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-slow);
}

.image-container:hover img {
    transform: scale(1.02);
}

/* Cartes flottantes sur l'image */
.image-card {
    position: absolute;
    background: rgba(10, 12, 20, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 168, 79, 0.3);
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-md);
}

.image-card:hover {
    transform: translateY(-3px);
    border-color: var(--gold-primary);
}

.image-card i {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.image-card strong {
    display: block;
    font-size: 0.7rem;
    color: var(--gray-400);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.image-card span {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
}

.image-card-1 {
    top: 20px;
    left: -20px;
}

.image-card-2 {
    bottom: 80px;
    right: -20px;
}

.image-card-3 {
    bottom: 20px;
    left: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .methodology {
        padding: 8px 0;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .image-card-1 {
        top: 10px;
        left: 10px;
    }
    
    .image-card-2 {
        bottom: 70px;
        right: 10px;
    }
    
    .image-card-3 {
        bottom: 10px;
        left: 10px;
    }
}

@media (max-width: 768px) {
    .methodology-phases {
        gap: 20px;
    }
    
    .phase {
        gap: 15px;
    }
    
    .phase-number {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
    
    .methodology-cta {
        flex-direction: column;
    }
    
    .btn-methodology,
    .btn-methodology-outline {
        justify-content: center;
        width: 100%;
    }
    
    .image-card {
        padding: 10px 15px;
    }
    
    .image-card i {
        font-size: 1.2rem;
    }
    
    .image-card strong {
        font-size: 0.6rem;
    }
    
    .image-card span {
        font-size: 0.85rem;
    }
    
    .image-card-2 {
        bottom: 50px;
    }
}


/* ==========================================================================
   PARTNERS SECTION - CARROUSEL INFINI AVEC LOGOS
   ========================================================================== */

.partners {
    padding: 80px 0;
    background: var(--bg-secondary);
    overflow: hidden;
    position: relative;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.partners::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.section-subtext {
    text-align: center;
    max-width: 600px;
    margin: 15px auto 0;
}

/* Carrousel */
.partners-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

/* Masques latéraux pour effet fondu */
.partners-carousel::before,
.partners-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-secondary), transparent);
}

.partners-carousel::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-secondary), transparent);
}

/* Track animation */
.partners-track {
    display: flex;
    gap: 50px;
    animation: scrollPartners 30s linear infinite;
    width: fit-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

/* Style des logos */
.partner-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.partner-item:hover {
    background: rgba(212, 168, 79, 0.08);
    transform: scale(1.05);
}

.partner-logo-img {
    height: 40px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8) contrast(1.2);
    transition: var(--transition-fast);
    opacity: 0.7;
}

.partner-item:hover .partner-logo-img {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* Animation défilement */
@keyframes scrollPartners {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Version alternative avec texte si les images ne chargent pas */
.partner-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-500);
    white-space: nowrap;
    padding: 15px 25px;
    transition: var(--transition-fast);
    letter-spacing: 1px;
}

.partner-item:hover .partner-logo {
    color: var(--gold-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .partners {
        padding: 6px 0;
    }
    
    .partners-carousel::before,
    .partners-carousel::after {
        width: 60px;
    }
    
    .partner-item {
        padding: 15px 20px;
    }
    
    .partner-logo-img {
        height: 30px;
        max-width: 90px;
    }
    
    .partners-track {
        gap: 30px;
        animation-duration: 20s;
    }
}

/* Pour les écrans très petits */
@media (max-width: 480px) {
    .partner-item {
        padding: 12px 15px;
    }
    
    .partner-logo-img {
        height: 25px;
        max-width: 70px;
    }
    
    .partners-track {
        gap: 20px;
        animation-duration: 15s;
    }
}



/* ==========================================================================
   VISION INTERNATIONALE SECTION
   ========================================================================== */

.international-vision {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.international-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 168, 79, 0.03), transparent);
    pointer-events: none;
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Colonne Image */
.vision-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay-globe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.image-badges {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(10, 12, 20, 0.9);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 40px;
    border: 1px solid rgba(212, 168, 79, 0.3);
    transition: var(--transition-fast);
}

.badge:hover {
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.badge i {
    font-size: 1rem;
    color: var(--gold-primary);
}

.badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
}

/* Colonne Contenu */
.vision-content {
    position: relative;
}

.vision-text {
    font-size: 1rem;
    line-height: 1.8;
    margin: 20px 0 30px;
    color: var(--gray-300);
}

.vision-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vision-stat {
    flex: 1;
    text-align: center;
}

.vision-stat .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
}

.vision-stat .stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-top: 8px;
}

.vision-countries {
    margin-bottom: 40px;
}

.vision-countries h4 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.country {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray-300);
    transition: var(--transition-fast);
}

.country i {
    color: var(--gold-primary);
    font-size: 0.7rem;
}

.country:hover {
    color: var(--gold-primary);
    transform: translateX(5px);
}

.btn-vision {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--bg-primary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    border-radius: 40px;
    transition: var(--transition-fast);
}

.btn-vision:hover {
    transform: translateY(-3px);
    gap: 18px;
    box-shadow: var(--glow-gold);
}

/* Responsive */
@media (max-width: 1024px) {
    .international-vision {
        padding: 80px 0;
    }

    .vision-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .vision-image {
        order: 1;
    }

    .vision-content {
        order: 2;
    }

    .image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .vision-stats {
        flex-direction: column;
        gap: 20px;
    }

    .vision-stat {
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .vision-stat .stat-label {
        margin-top: 0;
    }

    .countries-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .btn-vision {
        width: 100%;
        justify-content: center;
    }

    .image-badges {
        bottom: 10px;
        left: 10px;
        right: 10px;
        gap: 8px;
    }

    .badge {
        padding: 6px 12px;
    }

    .badge i {
        font-size: 0.8rem;
    }

    .badge span {
        font-size: 0.7rem;
    }
}

/* ==========================================================================
   ABOUT PAGE - STYLES COMPLÉMENTAIRES
   ========================================================================== */

/* Page Banner */
.page-banner {
  
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 90px;
    overflow: hidden;
   
}

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 12, 20, 0.85), rgba(10, 12, 20, 0.7));
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.banner-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--gold-primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.banner-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.banner-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.banner-breadcrumb a {
    color: var(--gold-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.banner-breadcrumb a:hover {
    text-decoration: underline;
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold-primary), rgba(212, 168, 79, 0.1));
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    width: 45%;
    text-align: right;
    padding-right: 30px;
}

.timeline-item:nth-child(even) .timeline-date {
    text-align: left;
    padding-left: 30px;
    padding-right: 0;
}

.timeline-date h3 {
    font-size: 1.8rem;
    color: var(--gold-primary);
    font-weight: 800;
}

.timeline-content {
    width: 45%;
    background: var(--bg-secondary);
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 3px solid var(--gold-primary);
    transition: var(--transition-fast);
}

.timeline-item:nth-child(even) .timeline-content {
    border-left: none;
    border-right: 3px solid var(--gold-primary);
}

.timeline-content:hover {
    transform: translateX(5px);
    background: var(--bg-tertiary);
}

.timeline-content h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--white);
}

.timeline-content p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: var(--gold-primary);
    border-radius: 50%;
    top: 20px;
    box-shadow: 0 0 10px var(--gold-primary);
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 25px;
    text-align: center;
    transition: var(--transition-base);
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 168, 79, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-fast);
}

.value-card:hover .value-icon {
    background: var(--gold-primary);
}

.value-icon i {
    font-size: 2rem;
    color: var(--gold-primary);
    transition: var(--transition-fast);
}

.value-card:hover .value-icon i {
    color: var(--bg-primary);
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.value-card p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-base);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.team-image {
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--white);
}

.team-role {
    color: var(--gold-primary);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.team-desc {
    font-size: 0.8rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
}

.cta-wrapper {
    background: linear-gradient(135deg, rgba(212, 168, 79, 0.08), transparent);
    border: 1px solid rgba(212, 168, 79, 0.2);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 15px;
}

.cta-wrapper p {
    color: var(--gray-400);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--bg-primary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    border-radius: 40px;
    transition: var(--transition-fast);
}

.btn-cta:hover {
    transform: translateY(-3px);
    gap: 18px;
    box-shadow: var(--glow-gold);
}

/* Responsive About Page */
@media (max-width: 1024px) {
    .page-banner {
        margin-top: 80px;
        min-height: 350px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        flex-direction: column;
        margin-left: 50px;
    }

    .timeline-date,
    .timeline-content {
        width: 100%;
        text-align: left;
        padding-left: 0;
    }

    .timeline-date {
        margin-bottom: 10px;
        padding-right: 0;
    }

    .timeline-item:nth-child(even) .timeline-date {
        padding-left: 0;
    }

    .timeline-content {
        border-left: 3px solid var(--gold-primary);
        border-right: none;
    }

    .timeline-dot {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .page-banner {
        margin-top: 70px;
        min-height: 300px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .team-image {
        height: 250px;
    }

    .cta-wrapper {
        padding: 40px 25px;
    }

    .timeline-date h3 {
        font-size: 1.4rem;
    }

    .timeline-content {
        padding: 15px 20px;
    }

    .timeline-content h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .banner-tag {
        letter-spacing: 4px;
        font-size: 0.65rem;
    }

    .badge {
        padding: 6px 12px;
    }

    .badge i {
        font-size: 0.8rem;
    }

    .badge span {
        font-size: 0.7rem;
    }
}



/* ==========================================================================
   MISSION & VISION SECTION
   ========================================================================== */

.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.mission-box,
.vision-box {
    background: var(--bg-tertiary);
    border: 1px solid rgba(212, 168, 79, 0.15);
    border-radius: 24px;
    padding: 50px 40px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.mission-box::before,
.vision-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.mission-box:hover,
.vision-box:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 168, 79, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mv-icon i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.mv-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.mv-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.mv-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: 25px;
}

.mv-list {
    list-style: none;
}

.mv-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: var(--gray-300);
}

.mv-list li i {
    color: var(--gold-primary);
    font-size: 1rem;
}

.vision-quote {
    margin-top: 30px;
    padding: 20px;
    background: rgba(212, 168, 79, 0.05);
    border-left: 3px solid var(--gold-primary);
    border-radius: 12px;
}

.vision-quote i {
    font-size: 1.5rem;
    color: var(--gold-primary);
    opacity: 0.5;
    margin-bottom: 10px;
    display: block;
}

.vision-quote p {
    font-size: 1rem;
    font-style: italic;
    color: var(--white);
    margin: 0;
}

/* ==========================================================================
   OBJECTIVES SECTION
   ========================================================================== */

.objectives {
    padding: 80px 0;
    background: var(--bg-primary);
}

.objectives-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.objectives-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-300);
    margin: 20px 0 40px;
}

.global-objective {
    background: rgba(212, 168, 79, 0.05);
    border: 1px solid rgba(212, 168, 79, 0.15);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}

.global-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.global-header i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.global-header h3 {
    font-size: 1.3rem;
    margin: 0;
    color: var(--white);
}

.global-objective p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-300);
    margin: 0;
    padding-left: 50px;
}

.specific-objectives h4 {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.specific-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.specific-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.specific-number {
    width: 35px;
    height: 35px;
    background: rgba(212, 168, 79, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-primary);
    flex-shrink: 0;
}

.specific-content h5 {
    font-size: 0.9rem;
    margin-bottom: 5px;
    color: var(--white);
}

.specific-content p {
    font-size: 0.75rem;
    color: var(--gray-400);
    line-height: 1.5;
    margin: 0;
}

/* Colonne Image */
.objectives-image {
    position: relative;
}

.obj-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    aspect-ratio: 4/3;
}

.obj-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.obj-image-wrapper:hover img {
    transform: scale(1.05);
}

.obj-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 168, 79, 0.1), transparent);
    pointer-events: none;
}

.obj-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-primary);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--gold-primary);
    box-shadow: var(--shadow-md);
}

.obj-badge-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
}

.obj-badge-text {
    font-size: 0.65rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.obj-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
}

.obj-stat {
    text-align: center;
    flex: 1;
}

.obj-stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--gold-primary);
}

.obj-stat-label {
    font-size: 0.7rem;
    color: var(--gray-400);
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
    .mv-grid,
    .objectives-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-box,
    .vision-box {
        padding: 40px 30px;
    }

    .specific-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .mission-vision,
    .objectives {
        padding: 60px 0;
    }

    .mv-title {
        font-size: 1.6rem;
    }

    .global-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .global-objective p {
        padding-left: 0;
    }

    .specific-grid {
        grid-template-columns: 1fr;
    }

    .obj-stats {
        flex-direction: column;
        gap: 15px;
    }

    .obj-stat {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .obj-stat-label {
        margin-top: 0;
    }
}



/* ==========================================================================
   CONTACT PAGE - STYLES COMPLÉMENTAIRES
   ========================================================================== */

/* Contact Page Layout */
.contact-page {
    padding: 80px 0;
    background: var(--bg-primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Formulaire */
.contact-form-wrapper {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px;
    transition: var(--transition-base);
}

.contact-form-wrapper:hover {
    border-color: rgba(212, 168, 79, 0.2);
}

.form-header {
    margin-bottom: 35px;
}

.form-header .section-tag {
    margin-bottom: 10px;
}

.form-header .section-title {
    margin-bottom: 15px;
}

.form-header p {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-300);
    margin-bottom: 10px;
    font-weight: 500;
}

.form-group label i {
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.05);
}

.form-group select option {
    background: var(--bg-secondary);
    color: var(--white);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--gold-primary);
}

.checkbox-group label {
    margin: 0;
    font-size: 0.75rem;
    text-transform: none;
    letter-spacing: normal;
    color: var(--gray-400);
}

.checkbox-group label a {
    color: var(--gold-primary);
    text-decoration: none;
}

.checkbox-group label a:hover {
    text-decoration: underline;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--bg-primary);
    border: none;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-submit:hover {
    transform: translateY(-3px);
    gap: 16px;
    box-shadow: var(--glow-gold);
}

.btn-submit i {
    font-size: 1rem;
}

/* Informations de contact */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-card {
    display: flex;
    gap: 15px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    transition: var(--transition-fast);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 168, 79, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.info-content h4 {
    font-size: 0.85rem;
    margin-bottom: 8px;
    color: var(--white);
}

.info-content p {
    font-size: 0.8rem;
    color: var(--gray-400);
    line-height: 1.5;
    margin: 0;
}

.info-content a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition-fast);
}

.info-content a:hover {
    color: var(--gold-primary);
}

/* Map Container */
.map-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container iframe {
    display: block;
}

/* Contact Social */
.contact-social {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
}

.contact-social h4 {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
    transform: translateY(-3px);
}

/* Animation pour le loader */
.ri-spin {
    animation: ri-spin 1s linear infinite;
}

@keyframes ri-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Contact Page */
@media (max-width: 1024px) {
    .contact-page {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-wrapper {
        padding: 40px;
    }

    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 50px 0;
    }

    .contact-form-wrapper {
        padding: 30px 25px;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .info-card {
        padding: 15px;
    }
}


.nav-link.active{
    color:#b8883a;
    font-weight:600;
}

.nav-link.active::after{
    width:100%;
}




/* ==========================================================================
   FORM-INVEST.PHP - PAGE INVESTISSEUR
   ========================================================================== */

/* Page Banner spécifique */
.invest-banner {
    margin-top: 90px;
}

/* Grille principale */
.invest-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.invest-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Colonne gauche - Contenu */
.invest-content {
    position: sticky;
    top: 120px;
}

.invest-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 168, 79, 0.15);
    border: 1px solid rgba(212, 168, 79, 0.3);
    border-radius: 40px;
    padding: 8px 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold-primary);
    margin-bottom: 25px;
}

.invest-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.invest-content p {
    font-size: 1rem;
    color: var(--gray-300);
    margin-bottom: 40px;
}

.invest-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.invest-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    transition: var(--transition-fast);
}

.invest-feature:hover {
    transform: translateY(-3px);
    border-color: var(--gold-primary);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 168, 79, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.invest-feature strong {
    display: block;
    font-size: 0.85rem;
    color: var(--white);
    margin-bottom: 5px;
}

.invest-feature span {
    font-size: 0.7rem;
    color: var(--gray-400);
}

/* Colonne droite - Formulaire */
.invest-form-wrapper {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
}

.invest-form-wrapper .form-header {
    text-align: center;
    margin-bottom: 30px;
}

.invest-form-wrapper .form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--white);
}

.invest-form-wrapper .form-header p {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.invest-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.invest-form .form-group {
    margin-bottom: 20px;
}

.invest-form .form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-300);
    margin-bottom: 10px;
    font-weight: 500;
}

.invest-form .form-group label i {
    color: var(--gold-primary);
}

.invest-form .form-group input,
.invest-form .form-group select,
.invest-form .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.invest-form .form-group input:focus,
.invest-form .form-group select:focus,
.invest-form .form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.05);
}

.invest-form .form-group select option {
    background: var(--bg-secondary);
    color: var(--white);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0;
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--gold-primary);
}

.checkbox-group label {
    margin: 0;
    font-size: 0.75rem;
    text-transform: none;
    letter-spacing: normal;
}

.checkbox-group label a {
    color: var(--gold-primary);
    text-decoration: none;
}

.btn-submit-invest {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--bg-primary);
    border: none;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-submit-invest:hover {
    transform: translateY(-3px);
    gap: 16px;
    box-shadow: var(--glow-gold);
}

/* Messages AJAX */
.form-message {
    margin-top: 20px;
}

.message-success,
.message-error {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 0.85rem;
}

.message-success {
    background: rgba(15, 76, 76, 0.2);
    border: 1px solid var(--success);
    color: var(--success);
}

.message-error {
    background: rgba(197, 48, 48, 0.2);
    border: 1px solid var(--error);
    color: var(--error);
}

.message-success i,
.message-error i {
    font-size: 1.2rem;
}

/* Avantages Section */
.invest-advantages {
    padding: 80px 0;
    background: var(--bg-primary);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.advantage-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: var(--transition-base);
}

.advantage-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.advantage-card i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    display: inline-block;
}

.advantage-card h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--white);
}

.advantage-card p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin: 0;
}

/* Animation spin */
.ri-spin {
    animation: ri-spin 1s linear infinite;
}

@keyframes ri-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1024px) {
    .invest-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .invest-content {
        position: static;
    }

    .invest-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .invest-form-section {
        padding: 60px 0;
    }

    .invest-title {
        font-size: 1.8rem;
    }

    .invest-features {
        grid-template-columns: 1fr;
    }

    .invest-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .invest-form-wrapper {
        padding: 30px 25px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }
}



/* ==========================================================================
   PAGE ACTUALITÉS - STYLE RÉSEAU SOCIAL
   ========================================================================== */

.news-feed-section {
    padding: 60px 0;
    background: var(--bg-primary);
    min-height: calc(100vh - 200px);
}

.feed-grid {
    display: grid;
    grid-template-columns: 280px 1fr 300px;
    gap: 30px;
}

/* Sidebar gauche */
.feed-sidebar {
    position: sticky;
    top: 120px;
    align-self: start;
}

.filter-card, .stats-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
}

.filter-card h3, .stats-card h3, .trends-card h3 {
    font-size: 1rem;
    margin-bottom: 20px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-card h3 i, .stats-card h3 i, .trends-card h3 i {
    color: var(--gold-primary);
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.filter-group select {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item span {
    color: var(--gray-400);
    font-size: 0.85rem;
}

.stat-item strong {
    color: var(--gold-primary);
    font-size: 1rem;
}

/* Colonne centrale - Flux */
.feed-main {
    min-width: 0;
}

.feed-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feed-header h2 {
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feed-header h2 i {
    color: var(--gold-primary);
}

#refreshBtn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 8px 20px;
    color: var(--gray-300);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

#refreshBtn:hover {
    background: rgba(212, 168, 79, 0.1);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* Post individuel */
.feed-post {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    margin-bottom: 30px;
    overflow: hidden;
    transition: var(--transition-base);
}

.feed-post:hover {
    transform: translateY(-3px);
    border-color: rgba(212, 168, 79, 0.3);
    box-shadow: var(--shadow-lg);
}

.post-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
}

.post-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    font-size: 1.3rem;
    color: var(--bg-primary);
}

.author-name {
    font-weight: 600;
    color: var(--white);
    display: block;
}

.post-time {
    font-size: 0.7rem;
    color: var(--gray-500);
}

.category-badge {
    background: rgba(212, 168, 79, 0.15);
    color: var(--gold-primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
}

.post-image {
    cursor: pointer;
    overflow: hidden;
    max-height: 400px;
}

.post-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.post-image:hover img {
    transform: scale(1.02);
}

.post-content {
    padding: 20px 25px;
}

.post-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.post-content h3:hover {
    color: var(--gold-primary);
}

.post-content p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.post-stats {
    display: flex;
    gap: 25px;
    padding: 15px 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.post-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    border-bottom: none;
    padding: 0;
}

.post-stats .stat-item i {
    font-size: 1.1rem;
    color: var(--gray-500);
}

.post-stats .stat-item span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.post-stats .stat-item:hover i {
    color: var(--gold-primary);
}

/* Colonne droite - Tendances */
.feed-trends {
    position: sticky;
    top: 120px;
    align-self: start;
}

.trends-card, .newsletter-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
}

.trending-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition-fast);
    padding: 8px;
    border-radius: 12px;
}

.trending-item:hover {
    background: rgba(212, 168, 79, 0.05);
    transform: translateX(5px);
}

.trending-rank {
    width: 28px;
    height: 28px;
    background: rgba(212, 168, 79, 0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--gold-primary);
}

.trending-info h4 {
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.trending-info span {
    font-size: 0.65rem;
    color: var(--gray-500);
}

.newsletter-card {
    text-align: center;
}

.newsletter-card i {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.newsletter-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.newsletter-card p {
    font-size: 0.75rem;
    margin-bottom: 15px;
}

.newsletter-card input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: var(--white);
    margin-bottom: 10px;
}

.newsletter-card button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    border: none;
    border-radius: 30px;
    color: var(--bg-primary);
    font-weight: 600;
    cursor: pointer;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-secondary);
    border-radius: 24px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--white);
    z-index: 10;
}

.modal-post img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}

.modal-post-content {
    padding: 30px;
}

.modal-category {
    display: inline-block;
    background: rgba(212, 168, 79, 0.15);
    color: var(--gold-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-bottom: 15px;
}

.modal-post-content h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.modal-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-meta span {
    font-size: 0.8rem;
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 5px;
}

.modal-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.modal-stats span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.modal-description {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.modal-content-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-300);
}

/* Loading & Empty states */
.loading-spinner {
    text-align: center;
    padding: 50px;
}

.loading-spinner .loader-ring {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.no-posts, .error-posts {
    text-align: center;
    padding: 60px 20px;
}

.no-posts i, .error-posts i {
    font-size: 3rem;
    color: var(--gray-600);
    margin-bottom: 15px;
    display: block;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.page-btn {
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--gray-300);
    cursor: pointer;
    transition: var(--transition-fast);
}

.page-btn.active, .page-btn:hover {
    background: var(--gold-primary);
    color: var(--bg-primary);
    border-color: var(--gold-primary);
}

/* Toast message */
.toast-message {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold-primary);
    color: var(--bg-primary);
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 10000;
    animation: slideInRight 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Responsive */
@media (max-width: 1200px) {
    .feed-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feed-sidebar, .feed-trends {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .filter-card, .stats-card, .trends-card, .newsletter-card {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .feed-sidebar, .feed-trends {
        grid-template-columns: 1fr;
    }
    
    .post-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .post-stats {
        justify-content: space-around;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .modal-post-content {
        padding: 20px;
    }
    
    .modal-post-content h2 {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   PAGES EXPERTISES - COORDINATION OPÉRATIONNELLE
   ========================================================================== */

/* Banner expertise */
.expertise-banner {
    position: relative;
    height: 50vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    margin-top: 90px;
    overflow: hidden;
}

.banner-bg-expertise {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-bg-expertise img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 12, 20, 0.85), rgba(10, 12, 20, 0.7));
}

.banner-content-expertise {
    position: relative;
    z-index: 3;
    text-align: center;
}

.expertise-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-primary);
    background: rgba(212, 168, 79, 0.15);
    padding: 5px 15px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.expertise-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.expertise-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.expertise-breadcrumb a {
    color: var(--gold-primary);
    text-decoration: none;
}

/* Section présentation */
.expertise-presentation {
    padding: 80px 0;
    background: var(--bg-primary);
}

.presentation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.presentation-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: 25px;
}

.presentation-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.presentation-stats .stat {
    flex: 1;
    text-align: center;
}

.presentation-stats .stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-primary);
}

.presentation-stats .stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-top: 8px;
}

.presentation-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.presentation-image img {
    width: 100%;
    height: auto;
    transition: var(--transition-slow);
}

.presentation-image:hover img {
    transform: scale(1.02);
}

.image-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 12, 20, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    color: var(--gold-primary);
}

/* Services grid */
.expertise-services {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 168, 79, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    background: var(--gold-primary);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--gold-primary);
    transition: var(--transition-fast);
}

.service-card:hover .service-icon i {
    color: var(--bg-primary);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--white);
}

.service-card p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.service-list li i {
    color: var(--gold-primary);
    font-size: 0.8rem;
}

/* Méthodologie */
.expertise-methodology {
    padding: 80px 0;
    background: var(--bg-primary);
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr 200px;
    gap: 30px;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 30px;
    transition: var(--transition-base);
}

.step.reverse {
    direction: rtl;
}

.step.reverse .step-content,
.step.reverse .step-number {
    direction: ltr;
}

.step:hover {
    transform: translateX(10px);
    border-color: var(--gold-primary);
}

.step.reverse:hover {
    transform: translateX(-10px);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-primary);
    opacity: 0.3;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--white);
}

.step-content p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 15px;
}

.step-duration {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: var(--gold-primary);
    background: rgba(212, 168, 79, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
}

.step-image {
    width: 200px;
    height: 130px;
    border-radius: 16px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.step:hover .step-image img {
    transform: scale(1.05);
}

/* Galerie projets */
.expertise-projects {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.projects-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 168, 79, 0.9), rgba(139, 106, 43, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition-base);
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h4 {
    color: var(--bg-primary);
    font-size: 1rem;
    margin-bottom: 8px;
}

.gallery-info p {
    color: var(--bg-primary);
    font-size: 0.7rem;
    margin-bottom: 8px;
}

.gallery-location {
    font-size: 0.65rem;
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* CTA section */
.expertise-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
}

.cta-box {
    background: linear-gradient(135deg, rgba(212, 168, 79, 0.08), transparent);
    border: 1px solid rgba(212, 168, 79, 0.2);
    border-radius: 24px;
    padding: 50px;
    text-align: center;
}

.cta-content i {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    display: inline-block;
}

.cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--white);
}

.cta-content p {
    color: var(--gray-400);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--bg-primary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    border-radius: 40px;
    transition: var(--transition-fast);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    gap: 15px;
    box-shadow: var(--glow-gold);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: transparent;
    border: 1.5px solid rgba(212, 168, 79, 0.5);
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    border-radius: 40px;
    transition: var(--transition-fast);
}

.btn-cta-secondary:hover {
    border-color: var(--gold-primary);
    background: rgba(212, 168, 79, 0.1);
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .projects-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .presentation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step.reverse {
        direction: ltr;
    }
    
    .step-number {
        text-align: center;
    }
    
    .step-image {
        width: 100%;
        height: 200px;
        margin-top: 20px;
    }
    
    .step-duration {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-gallery {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .presentation-stats {
        flex-direction: column;
        gap: 20px;
    }
}


/* ==========================================================================
   PAGES EXPERTISES - INTERMÉDIATION & BUSINESS DEV
   ========================================================================== */

/* Section partenaires réalisés */
.expertise-partners {
    padding: 80px 0;
    background: var(--bg-primary);
}

.partners-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.partner-card {
    display: flex;
    gap: 20px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    transition: var(--transition-base);
    align-items: center;
}

.partner-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.partner-logo {
    width: 70px;
    height: 70px;
    background: rgba(212, 168, 79, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-logo i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.partner-info h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--white);
}

.partner-info p {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 8px;
}

.partner-value {
    font-size: 0.7rem;
    color: var(--gold-primary);
    font-weight: 600;
}

/* Section réseau international */
.expertise-network {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
}

.network-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.network-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-300);
    margin: 20px 0 30px;
}

.network-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.network-stats div {
    text-align: center;
}

.network-stats strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.network-stats span {
    font-size: 0.7rem;
    color: var(--gray-400);
}

.btn-network {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--bg-primary);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    border-radius: 40px;
    transition: var(--transition-fast);
}

.btn-network:hover {
    transform: translateY(-3px);
    gap: 18px;
    box-shadow: var(--glow-gold);
}

.network-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.network-image img {
    width: 100%;
    height: auto;
    transition: var(--transition-slow);
}

.network-image:hover img {
    transform: scale(1.02);
}

/* Responsive */
@media (max-width: 1024px) {
    .partners-showcase {
        grid-template-columns: 1fr;
    }
    
    .network-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .network-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .partner-card {
        flex-direction: column;
        text-align: center;
    }
    
    .network-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-network {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   PAGES EXPERTISES - COMMERCE INTERNATIONAL & IMPORT-EXPORT
   ========================================================================== */

/* Section couverture géographique */
.expertise-geography {
    padding: 80px 0;
    background: var(--bg-primary);
}

.geography-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.geo-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-base);
}

.geo-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.geo-card i {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
    display: inline-block;
}

.geo-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--white);
}

.geo-card p {
    font-size: 0.8rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin: 0;
}

/* Section chiffres clés */
.expertise-numbers {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-primary));
    position: relative;
    overflow: hidden;
}

.expertise-numbers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 168, 79, 0.03), transparent);
    pointer-events: none;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.number-item {
    padding: 30px;
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: var(--transition-base);
}

.number-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.number-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-primary);
    line-height: 1;
}

.number-label {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .geography-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .geography-grid {
        grid-template-columns: 1fr;
    }
    
    .numbers-grid {
        grid-template-columns: 1fr;
    }
    
    .number-value {
        font-size: 2.5rem;
    }
}


/* ==========================================================================
   PAGES EXPERTISES - INNOVATION & SMART SOLUTIONS
   ========================================================================== */

/* Section technologies */
.expertise-tech {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.tech-card {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-base);
}

.tech-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.tech-card i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    display: inline-block;
}

.tech-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--white);
}

.tech-card p {
    font-size: 0.8rem;
    color: var(--gray-400);
    line-height: 1.5;
    margin: 0;
}

/* Section cas d'usage */
.expertise-use-cases {
    padding: 80px 0;
    background: var(--bg-primary);
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.usecase-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.usecase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-primary), transparent);
}

.usecase-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.usecase-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 168, 79, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.usecase-icon i {
    font-size: 1.8rem;
    color: var(--gold-primary);
}

.usecase-card h4 {
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--white);
}

.usecase-card p {
    font-size: 0.8rem;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 15px;
}

.usecase-result {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold-primary);
    background: rgba(212, 168, 79, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .usecases-grid {
        grid-template-columns: 1fr;
    }
    
    .usecase-card {
        padding: 25px;
    }
}


/* ==========================================================================
   PAGES EXPERTISES - SOLUTIONS TECHNIQUES & INFRASTRUCTURES
   ========================================================================== */

/* Section réalisations */
.expertise-achievements {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.achievement-card {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-base);
}

.achievement-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.achievement-image {
    height: 220px;
    overflow: hidden;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.achievement-card:hover .achievement-image img {
    transform: scale(1.05);
}

.achievement-info {
    padding: 25px;
}

.achievement-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--white);
}

.achievement-info p {
    font-size: 0.8rem;
    color: var(--gray-400);
    margin-bottom: 15px;
}

.achievement-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.achievement-details span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: var(--gold-primary);
    background: rgba(212, 168, 79, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

.achievement-details i {
    font-size: 0.8rem;
}

/* Section certifications */
.expertise-certifications {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
}

.certifications-content {
    text-align: center;
    margin-bottom: 50px;
}

.certifications-content p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray-400);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.certif-card {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition-base);
}

.certif-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.certif-card i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    display: inline-block;
}

.certif-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--white);
}

.certif-card p {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .certifications-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-details {
        gap: 10px;
    }
    
    .certif-card {
        padding: 25px;
    }
}

/* ==========================================================================
   PAGES EXPERTISES - TRANSFORMATION DIGITALE
   ========================================================================== */

/* Section bénéfices */
.expertise-benefits {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    display: inline-block;
}

.benefit-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--white);
}

.benefit-card p {
    font-size: 0.8rem;
    color: var(--gray-400);
    line-height: 1.5;
    margin: 0;
}

/* Section technologies stack */
.expertise-tech-stack {
    padding: 80px 0;
    background: var(--bg-primary);
}

.tech-stack-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tech-stack-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px 30px;
    min-width: 120px;
    transition: var(--transition-base);
}

.tech-stack-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.tech-stack-item i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.tech-stack-item span {
    font-size: 0.85rem;
    color: var(--gray-300);
    font-weight: 500;
}

/* Section témoignages simplifiée */
.expertise-testimonials {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card-simple {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px;
    transition: var(--transition-base);
}

.testimonial-card-simple:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.testimonial-card-simple i {
    font-size: 2rem;
    color: var(--gold-primary);
    opacity: 0.5;
    margin-bottom: 20px;
    display: inline-block;
}

.testimonial-card-simple p {
    font-size: 0.9rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author-simple strong {
    display: block;
    font-size: 0.85rem;
    color: var(--white);
    margin-bottom: 5px;
}

.testimonial-author-simple span {
    font-size: 0.7rem;
    color: var(--gray-500);
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tech-stack-grid {
        gap: 15px;
    }
    
    .tech-stack-item {
        padding: 15px 20px;
        min-width: 100px;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-stack-item {
        min-width: 80px;
        padding: 12px 15px;
    }
    
    .tech-stack-item i {
        font-size: 1.5rem;
    }
    
    .tech-stack-item span {
        font-size: 0.7rem;
    }
}


/* ==========================================================================
   PAGES SECTEURS - STYLES GÉNÉRIQUES
   ========================================================================== */

/* Banner secteur */
.sector-banner {
    position: relative;
    height: 50vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    margin-top: 90px;
    overflow: hidden;
}

.banner-bg-sector {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-bg-sector img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 12, 20, 0.85), rgba(10, 12, 20, 0.7));
}

.banner-content-sector {
    position: relative;
    z-index: 3;
    text-align: center;
}

.sector-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-primary);
    background: rgba(212, 168, 79, 0.15);
    padding: 5px 15px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.sector-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.sector-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.sector-breadcrumb a {
    color: var(--gold-primary);
    text-decoration: none;
}

/* Section présentation secteur */
.sector-presentation {
    padding: 80px 0;
    background: var(--bg-primary);
}

/* Section services secteur */
.sector-services {
    padding: 80px 0;
    background: var(--bg-secondary);
}

/* Section références */
.sector-references {
    padding: 80px 0;
    background: var(--bg-primary);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.ref-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-base);
}

.ref-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.ref-image {
    height: 200px;
    overflow: hidden;
}

.ref-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.ref-card:hover .ref-image img {
    transform: scale(1.05);
}

.ref-info {
    padding: 20px;
    text-align: center;
}

.ref-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--white);
}

.ref-info p {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-bottom: 10px;
}

.ref-value {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold-primary);
    background: rgba(212, 168, 79, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
}

/* Section CTA secteur */
.sector-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
}

/* Responsive */
@media (max-width: 1024px) {
    .references-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: 1fr;
    }
    
    .sector-banner {
        min-height: 350px;
        margin-top: 70px;
    }
}

/* ==========================================================================
   PAGES SECTEURS - SUPPLY CHAIN & LOGISTIQUE
   ========================================================================== */

/* Section technologies */
.sector-tech {
    padding: 80px 0;
    background: var(--bg-primary);
}

.tech-grid-simple {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tech-item-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px 30px;
    min-width: 120px;
    transition: var(--transition-base);
}

.tech-item-simple:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.tech-item-simple i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.tech-item-simple span {
    font-size: 0.85rem;
    color: var(--gray-300);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .tech-item-simple {
        min-width: 100px;
        padding: 15px 20px;
    }
    
    .tech-item-simple i {
        font-size: 1.5rem;
    }
    
    .tech-item-simple span {
        font-size: 0.7rem;
    }
}


/* ==========================================================================
   PAGES SECTEURS - SMART CITY & TECH URBAINES
   ========================================================================== */

/* Section bénéfices smart city */
.sector-benefits {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.benefits-grid-simple {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-simple {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition-base);
}

.benefit-simple:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.benefit-simple i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    display: inline-block;
}

.benefit-simple h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 10px;
}

.benefit-simple p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid-simple {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid-simple {
        grid-template-columns: 1fr;
    }
    
    .benefit-simple h4 {
        font-size: 1.5rem;
    }
}


/* ==========================================================================
   PAGES SECTEURS - ÉNERGIE & TRANSITION ÉCOLOGIQUE
   ========================================================================== */

/* Section impact environnemental */
.sector-impact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.impact-card {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: var(--transition-base);
}

.impact-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.impact-card i {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    display: inline-block;
}

.impact-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.impact-card p {
    font-size: 0.9rem;
    color: var(--gray-300);
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-number {
        font-size: 2rem;
    }
}


/* ==========================================================================
   PAGES SECTEURS - INNOVATION NUMÉRIQUE & DIGITAL
   ========================================================================== */

/* Section technologies digitales */
.sector-tech-digital {
    padding: 80px 0;
    background: var(--bg-primary);
}

.tech-digital-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tech-digital-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px 30px;
    min-width: 120px;
    transition: var(--transition-base);
}

.tech-digital-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
}

.tech-digital-item i {
    font-size: 2rem;
    color: var(--gold-primary);
}

.tech-digital-item span {
    font-size: 0.85rem;
    color: var(--gray-300);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .tech-digital-item {
        min-width: 100px;
        padding: 15px 20px;
    }
    
    .tech-digital-item i {
        font-size: 1.5rem;
    }
    
    .tech-digital-item span {
        font-size: 0.7rem;
    }
}


/* ==========================================================================
   PAGES SECTEURS - COMMERCE INTERNATIONAL
   ========================================================================== */

/* Section couverture géographique */
.sector-coverage {
    padding: 80px 0;
    background: var(--bg-primary);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.coverage-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-base);
}

.coverage-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.coverage-card i {
    font-size: 2rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
    display: inline-block;
}

.coverage-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--white);
}

.coverage-card p {
    font-size: 0.8rem;
    color: var(--gray-400);
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .coverage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .coverage-grid {
        grid-template-columns: 1fr;
    }
}



/* ==========================================================================
   PAGES PROJETS - MODALITÉS ACCOMPAGNEMENT
   ========================================================================== */
/* ==========================================================================
   PAGES PROJETS - STYLES GÉNÉRIQUES
   ========================================================================== */

/* Banner projets */
.project-banner {
    position: relative;
    height: 50vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    margin-top: 90px;
    overflow: hidden;
}

.banner-bg-project {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-bg-project img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content-project {
    position: relative;
    z-index: 3;
    text-align: center;
}

.project-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-primary);
    background: rgba(212, 168, 79, 0.15);
    padding: 5px 15px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.project-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.project-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.project-breadcrumb a {
    color: var(--gold-primary);
    text-decoration: none;
}

/* Section présentation projets */
.project-presentation {
    padding: 80px 0;
    background: var(--bg-primary);
}

/* Section services projets */
.project-services {
    padding: 80px 0;
    background: var(--bg-secondary);
}

/* Section méthodologie projets */
.project-methodology {
    padding: 80px 0;
    background: var(--bg-primary);
}

/* Section CTA projets */
.project-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
}

/* Responsive */
@media (max-width: 768px) {
    .project-banner {
        min-height: 350px;
        margin-top: 70px;
    }
}
   /* here */
.project-modalities {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.modalities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.modality-card {
    background: var(--bg-tertiary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition-base);
}

.modality-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: var(--shadow-lg);
}

.modality-card i {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    display: inline-block;
}

.modality-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--white);
}

.modality-card p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .modalities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .modalities-grid {
        grid-template-columns: 1fr;
    }
}



/* ==========================================================================
   PAGES LÉGALES - POLITIQUE DE CONFIDENTIALITÉ & MENTIONS LÉGALES
   ========================================================================== */

/* Banner des pages légales */
.legal-banner {
    position: relative;
    height: 45vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    margin-top: 90px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.banner-bg-legal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-bg-legal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 12, 20, 0.88), rgba(10, 12, 20, 0.75));
}

.banner-content-legal {
    position: relative;
    z-index: 3;
    text-align: center;
}

.legal-badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold-primary);
    background: rgba(212, 168, 79, 0.15);
    padding: 5px 15px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.legal-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.legal-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--gray-400);
}

.legal-breadcrumb a {
    color: var(--gold-primary);
    text-decoration: none;
}

.legal-breadcrumb a:hover {
    text-decoration: underline;
}

/* Contenu principal */
.legal-content {
    padding: 80px 0;
    background: var(--bg-primary);
}

.legal-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px;
}

.legal-updated {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gold-primary);
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-article {
    margin-bottom: 40px;
}

.legal-article h2 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: var(--gold-primary);
    font-weight: 700;
}

.legal-article p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-300);
    margin-bottom: 15px;
}

.legal-article ul {
    margin: 15px 0 15px 30px;
}

.legal-article li {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 8px;
}

.legal-article li strong {
    color: var(--white);
}

.legal-info-box {
    background: rgba(212, 168, 79, 0.05);
    border-left: 3px solid var(--gold-primary);
    padding: 20px 25px;
    border-radius: 12px;
    margin: 20px 0;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--gray-300);
}

.legal-info-box strong {
    color: var(--gold-primary);
    display: block;
    margin-bottom: 10px;
}

.legal-info-box a {
    color: var(--gold-primary);
    text-decoration: none;
}

.legal-info-box a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-banner {
        min-height: 300px;
        margin-top: 70px;
    }

    .legal-wrapper {
        padding: 30px 25px;
    }

    .legal-article h2 {
        font-size: 1.2rem;
    }

    .legal-article p, 
    .legal-article li {
        font-size: 0.85rem;
    }

    .legal-info-box {
        padding: 15px 20px;
    }
}


















