/* ====================================
   KAYANOU - CSS PROFESSIONAL STYLESHEET
   ==================================== */

/* ============ ROOT VARIABLES - PREMIUM EDITION ============ */
:root {
    /* ===== Palette Vert Premium avec Or ===== */
    --primary-color: #065f46;           /* Vert émeraude foncé - Confiance */
    --secondary-color: #059669;         /* Vert émeraude - Croissance */
    --accent-color: #10b981;            /* Vert moderne - Fraîcheur */
    --gold: #d97706;                    /* Or - Premium/CTA */
    --gold-light: #f59e0b;              /* Or clair - Highlights */

    /* Couleurs de contexte */
    --dark-color: #0f172a;              /* Slate très foncé */
    --light-color: #f8fafc;             /* Gris très clair */
    --text-color: #1e293b;              /* Slate foncé pour texte */
    --text-light: #64748b;              /* Slate moyen */
    --white: #ffffff;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --info: #3b82f6;

    /* ===== Gradients Modernes ===== */
    --gradient-primary: linear-gradient(135deg, #065f46 0%, #059669 100%);
    --gradient-luxury: linear-gradient(135deg, #065f46 0%, #d97706 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(6, 95, 70, 0.95) 0%, rgba(5, 150, 105, 0.85) 100%);
    --gradient-gold: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
    --gradient-subtle: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);

    /* ===== Typographie ===== */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Inter', sans-serif;

    /* ===== Espacements Cohérents ===== */
    --spacing-xs: 0.5rem;    /* 8px */
    --spacing-sm: 1rem;      /* 16px */
    --spacing-md: 1.5rem;    /* 24px */
    --spacing-lg: 2rem;      /* 32px */
    --spacing-xl: 3rem;      /* 48px */
    --spacing-2xl: 4rem;     /* 64px */
    --spacing-3xl: 6rem;     /* 96px */

    /* ===== Ombres Professionnelles ===== */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

    /* ===== Transitions & Animations ===== */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;

    /* ===== Border Radius ===== */
    --radius-sm: 0.375rem;   /* 6px */
    --radius-md: 0.5rem;     /* 8px */
    --radius-lg: 0.75rem;    /* 12px */
    --radius-xl: 1rem;       /* 16px */
    --radius-2xl: 1.5rem;    /* 24px */
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

a:hover {
    color: var(--secondary-color);
}

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

ul {
    list-style: none;
}

/* ============ CONTAINER ============ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============ SECTION COMMON STYLES - PREMIUM ============ */
section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-2xl);
}

.section-tag {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.section-tag:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.section-title {
    color: var(--dark-color);
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.highlight {
    color: var(--gold);
    position: relative;
    font-weight: 700;
}

.highlight-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ============ BUTTONS PREMIUM ============ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
}

.btn i {
    font-size: 1.125rem;
    transition: var(--transition);
}

.btn:hover i {
    transform: translateX(3px);
}

/* Effet shimmer sur boutons */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

/* Bouton Or pour CTA importants */
.btn-gold {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(217, 119, 6, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.125rem;
}

/* ============ NAVIGATION PREMIUM ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: var(--transition);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-menu a {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text-color);
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu .btn-nav {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
}

.nav-menu .btn-nav:hover {
    background: var(--secondary-color);
    color: var(--white) !important;
    transform: scale(1.05);
}

.nav-menu .btn-nav-secondary {
    background: transparent;
    color: var(--primary-color) !important;
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid var(--primary-color);
}

.nav-menu .btn-nav-secondary:hover {
    background: var(--primary-color);
    color: var(--white) !important;
    transform: scale(1.05);
}

.nav-menu .btn-partner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-menu .btn-partner:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: var(--white) !important;
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 20px rgba(6, 95, 70, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
}

/* ============ HERO SECTION ============ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../images/plan.png') center/cover no-repeat;
    color: var(--white);
    overflow: hidden;
    margin-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    z-index: 0;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

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

.hero-left {
    max-width: 600px;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a3c8f;
}

.hero-title .highlight {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: #e30613;
    background-clip: unset;
    color: #e30613;
    text-shadow: none;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #1a3c8f;
}

.hero-stats-card {
    background: var(--gradient-primary);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-stats-card .stats-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 30px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-stats-card .stat-item {
    text-align: center;
    padding: 30px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-stats-card .stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hero-stats-card .stat-item:first-child {
    padding-top: 0;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    filter: brightness(1.2);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    margin-top: 40px;
}

.trust-badges {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(5, 150, 105, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(6, 95, 70, 0.1);
}

.badge i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.badge span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a3c8f;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* ============ MISSION SECTION ============ */
.mission {
    background: var(--light-color);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.mission-main {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.mission-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.mission-values h3 {
    margin-bottom: 30px;
}

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

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-card h4 {
    margin-bottom: 10px;
    color: var(--dark-color);
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0;
}

.mission-impact {
    margin-top: 50px;
}

.impact-box {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow-lg);
}

.impact-box i {
    font-size: 3rem;
    opacity: 0.9;
}

.impact-box h4 {
    margin-bottom: 10px;
    color: var(--white);
}

.impact-box p {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.6;
}

/* ============ HOW IT WORKS SECTION ============ */
.how-it-works {
    background: var(--white);
    padding: 100px 0;
}

/* Editorial process layout */
.process-editorial {
    max-width: 900px;
    margin: 0 auto;
}

.process-editorial-header {
    margin-bottom: 64px;
}

.process-editorial-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin: 16px 0 20px;
    line-height: 1.2;
}

.process-editorial-intro {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.85;
    max-width: 680px;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.process-editorial-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-editorial-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    align-items: flex-start;
    padding: 40px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: background 0.2s ease;
}

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

.process-editorial-item:hover {
    background: rgba(6, 95, 70, 0.025);
    border-radius: 12px;
    padding-left: 16px;
    padding-right: 16px;
    margin: 0 -16px;
}

.process-num {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.18;
    line-height: 1;
    padding-top: 4px;
    letter-spacing: -2px;
}

.process-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.process-text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .process-editorial-title {
        font-size: 2rem;
    }

    .process-editorial-item {
        grid-template-columns: 56px 1fr;
        gap: 20px;
    }

    .process-num {
        font-size: 2rem;
    }
}


.step-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    box-shadow: var(--shadow-md);
}

.step-title {
    font-size: 1.75rem;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.step-description {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    max-width: 600px;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.slider-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.slider-nav.prev {
    left: 0;
}

.slider-nav.next {
    right: 0;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot:hover {
    background: var(--secondary-color);
}

.dot.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 10px;
}

.process-cta {
    text-align: center;
    margin-top: 60px;
}

.process-cta p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* ============ PROJECT TYPES SECTION ============ */
.project-types {
    background: var(--light-color);
    overflow: hidden;
}

.types-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 80px;
    margin-bottom: 50px;
}

/* Navigation buttons for types slider */
.types-slider-wrapper .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.types-slider-wrapper .slider-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.types-slider-wrapper .slider-nav.prev {
    left: 10px;
}

.types-slider-wrapper .slider-nav.next {
    right: 10px;
}

.types-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.types-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.type-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    min-width: 350px;
    flex-shrink: 0;
}

.type-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.type-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.type-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.type-card > p {
    color: var(--text-light);
    margin-bottom: 25px;
}

.type-features {
    text-align: left;
    margin-bottom: 25px;
}

.type-features li {
    padding: 8px 0;
    color: var(--text-color);
    font-size: 0.9375rem;
}

.type-features i {
    color: var(--success);
    margin-right: 10px;
}

.type-stats {
    padding-top: 20px;
    border-top: 2px solid var(--light-color);
}

.stat-badge {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9375rem;
}

/* Slider Progress */
.slider-progress {
    width: 100%;
    height: 4px;
    background: #ddd;
    border-radius: 10px;
    margin-top: 30px;
    overflow: hidden;
}

.progress-line {
    height: 100%;
    background: var(--gradient-primary);
    width: 20%;
    border-radius: 10px;
    transition: var(--transition);
}

.types-footer {
    margin-top: 50px;
}

.info-box {
    background: #fff3cd;
    border-left: 4px solid var(--warning);
    padding: 20px 30px;
    border-radius: 10px;
    display: flex;
    gap: 20px;
    align-items: start;
}

.info-box i {
    color: var(--warning);
    font-size: 1.5rem;
    margin-top: 5px;
}

.info-box p {
    margin: 0;
    color: var(--text-color);
}

/* ============ ACTIVE PROJECTS SECTION ============ */
.active-projects {
    background: var(--white);
    overflow: hidden;
}

.projects-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 80px;
    margin-bottom: 50px;
}

.projects-slider {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.projects-slider::-webkit-scrollbar {
    display: none;
}

/* Navigation buttons for projects slider */
.projects-slider-wrapper .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.projects-slider-wrapper .slider-nav:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.projects-slider-wrapper .slider-nav.prev {
    left: 10px;
}

.projects-slider-wrapper .slider-nav.next {
    right: 10px;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    width: 456px;
    flex-shrink: 0;
}

.project-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent-color);
}

.project-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-status {
    position: absolute;
    top: 20px;
    right: 20px;
}

.status-badge {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.status-badge.active {
    background: rgba(40, 167, 69, 0.9);
    color: var(--white);
}

.status-badge.funding {
    background: rgba(255, 193, 7, 0.9);
    color: var(--dark-color);
}

.project-content {
    padding: 20px 15px;
}

.project-category {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-card h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
    font-size: 1.125rem;
}

.project-description {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 15px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    line-height: 1.4;
}

.project-details {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-light);
    font-size: 0.8125rem;
}

.detail-item i {
    color: var(--primary-color);
}

.project-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 15px;
}

.stat {
    text-align: center;
    padding: 10px;
    background: var(--light-color);
    border-radius: 8px;
}

.stat .label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.stat .value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
}

.project-progress {
    margin-bottom: 20px;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9375rem;
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: width 1s ease;
}

.projects-cta {
    text-align: center;
    margin-top: 60px;
}

.projects-cta p {
    font-size: 1.125rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

/* Mobile View All Projects Button */
.projects-view-all-mobile {
    display: none;
    text-align: center;
    margin-top: 30px;
}

.projects-view-all-mobile .btn {
    padding: 15px 35px;
    font-size: 1rem;
}

/* Projects Modal */
.projects-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.projects-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
}

.projects-modal .modal-content {
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    margin: 20px auto;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.projects-modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid var(--border-color);
}

.projects-modal .modal-header h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: 0;
}

.projects-modal .modal-close {
    width: 40px;
    height: 40px;
    background: var(--light-color);
    border: none;
    border-radius: 50%;
    color: var(--text-color);
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.projects-modal .modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.projects-modal .modal-body {
    padding: 20px;
    max-height: calc(100vh - 140px);
    overflow-y: auto;
}

.modal-projects-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-project-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.modal-project-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.modal-project-card .project-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

.modal-project-card .project-content {
    padding: 20px;
}

.modal-project-card .project-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-color);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.modal-project-card h3 {
    font-size: 1.25rem;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.modal-project-card .project-description {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-project-card .project-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.modal-project-card .detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-color);
    font-size: 0.875rem;
}

.modal-project-card .detail-item i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.modal-project-card .project-stats {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 15px;
    background: var(--light-color);
    border-radius: 10px;
    margin-bottom: 15px;
}

.modal-project-card .stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.modal-project-card .stat .label {
    font-size: 0.75rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-project-card .stat .value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--heading-color);
}

.modal-project-card .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
}

/* ============ WHY INVEST SECTION ============ */
.why-invest {
    background: var(--light-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.benefit-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.benefit-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--light-color);
    color: var(--text-color);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8125rem;
}

.feature-tag i {
    color: var(--success);
    font-size: 0.75rem;
}

.invest-comparison {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.invest-comparison h3 {
    text-align: center;
    margin-bottom: 30px;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--light-color);
}

.comparison-row.header {
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 700;
    border-radius: 10px 10px 0 0;
    border-bottom: none;
}

.comparison-row .col {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.comparison-row .col:first-child {
    justify-content: flex-start;
}

.comparison-row.highlight .highlight {
    background: var(--light-color);
    padding: 10px;
    border-radius: 8px;
}

.comparison-row i.fa-check-circle {
    color: var(--success);
    margin-right: 5px;
}

.comparison-row i.fa-times-circle {
    color: var(--danger);
    margin-right: 5px;
}

/* ============ PARALLAX PROJECTS SECTION ============ */
.active-projects-parallax {
    position: relative;
    width: 100%;
    /* Height = 100vh per slide, so 4 slides = 400vh */
    height: 400vh;
}

.parallax-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.parallax-project {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    pointer-events: none;
}

.parallax-project.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.parallax-image {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 130%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    transform: translateY(0px);
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(6, 95, 70, 0.35) 0%, rgba(5, 150, 105, 0.2) 100%);
    z-index: 1;
}

/* Force AOS to not interfere inside parallax section */
.active-projects-parallax [data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.active-projects-parallax .parallax-project.active [data-aos] {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.parallax-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.project-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
    padding: 3rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-2xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.project-info.visible,
.parallax-project.active .project-info {
    opacity: 1 !important;
    transform: translateY(0) !important;
    visibility: visible !important;
}

.project-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-gold);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.project-info h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.project-info p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.project-location {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.project-location i {
    color: var(--gold-light);
}

.scroll-indicator {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: bounce 2s infinite;
    pointer-events: none;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--white);
    opacity: 0.8;
}

.slide-indicators {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.slide-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    opacity: 0.6;
}

.slide-dot:hover {
    opacity: 1;
    transform: scale(1.2);
}

.slide-dot.active {
    background: var(--white);
    opacity: 1;
    transform: scale(1.3);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .parallax-project {
        height: 80vh;
        min-height: 500px;
    }

    .project-info {
        padding: 2rem 1.5rem;
    }

    .project-info h2 {
        font-size: 2rem;
    }

    .project-info p {
        font-size: 1rem;
    }

    .slide-indicators {
        right: 1rem;
        gap: 0.75rem;
    }

    .slide-dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .parallax-project {
        height: 70vh;
        min-height: 450px;
    }

    .project-info {
        padding: 1.5rem 1rem;
    }

    .project-info h2 {
        font-size: 1.75rem;
    }

    .project-info p {
        font-size: 0.9375rem;
        margin-bottom: 1.5rem;
    }

    .project-tag {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}

/* ============ TRANSPARENCY SECTION ============ */
.transparency {
    background: var(--white);
}

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

.transparency-card {
    background: var(--light-color);
    padding: 40px;
    border-radius: 20px;
    transition: var(--transition);
}

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

.trans-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 20px;
}

.transparency-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.transparency-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.trans-list li {
    padding: 10px 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.trans-list i {
    color: var(--success);
    font-size: 0.875rem;
}

.transparency-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-box {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-md);
}

.stat-box i {
    font-size: 2.5rem;
    opacity: 0.9;
}

.stat-content h4 {
    color: var(--white);
    margin-bottom: 5px;
}

.stat-content p {
    margin: 0;
    font-size: 0.9375rem;
    opacity: 0.95;
}

.transparency-cta {
    text-align: center;
}

.cta-box {
    background: var(--light-color);
    padding: 50px;
    border-radius: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h3 {
    margin-bottom: 15px;
}

.cta-box p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* ============ TEAM SECTION ============ */
.team {
    background: var(--light-color);
}

.team-slider-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 80px;
    margin-bottom: 60px;
}

.team-slider {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.team-slider::-webkit-scrollbar {
    display: none;
}

.team-slider-wrapper .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: var(--transition);
    z-index: 10;
}

.team-slider-wrapper .slider-nav:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.team-slider-wrapper .slider-nav.prev {
    left: 10px;
}

.team-slider-wrapper .slider-nav.next {
    right: 10px;
}

.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    width: 320px;
    flex-shrink: 0;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.team-card:hover .team-social {
    opacity: 1;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.team-info {
    padding: 30px;
}

.team-info h3 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.expertise-tag {
    background: var(--light-color);
    color: var(--text-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 500;
}

.advisory-board {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 50px;
}

.advisory-board h3 {
    text-align: center;
    margin-bottom: 15px;
}

.advisory-board > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

.advisors-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.advisor-item {
    display: flex;
    gap: 20px;
    align-items: start;
    padding: 20px;
    background: var(--light-color);
    border-radius: 15px;
}

.advisor-item i {
    color: var(--primary-color);
    font-size: 2rem;
}

.advisor-item h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.advisor-item p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-light);
}

.team-cta {
    text-align: center;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
}

.team-cta h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.team-cta p {
    margin-bottom: 25px;
    opacity: 0.95;
}

/* ============ FORMS SECTION ============ */
.forms-section {
    background: var(--white);
}

.forms-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 50px;
}

.form-wrapper {
    background: var(--light-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.form-wrapper-wide {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

/* Tablet navbar - évite le débordement entre 769px et 1024px */\n@media (max-width: 1024px) and (min-width: 769px) {\n    .nav-menu {\n        gap: 14px;\n    }\n\n    .nav-menu a {\n        font-size: 0.85rem;\n    }\n\n    .nav-menu .btn-nav,\n    .nav-menu .btn-nav-secondary {\n        padding: 8px 14px;\n        font-size: 0.82rem;\n    }\n\n    .logo-img {\n        height: 48px;\n    }\n}\n\n@media (max-width: 1024px) {
    .form-wrapper-wide {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .form-wrapper {
        padding: 25px 15px;
        border-radius: 15px;
    }
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

@media (max-width: 480px) {
    .form-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
}

.form-header h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

@media (max-width: 480px) {
    .form-header h3 {
        font-size: 1.25rem;
    }
}

.form-header p {
    color: var(--text-light);
    margin: 0;
}

.form-group {
    margin-bottom: 25px;
}

@media (max-width: 480px) {
    .form-group {
        margin-bottom: 20px;
    }
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 0.9375rem;
}

@media (max-width: 480px) {
    .form-group label {
        font-size: 0.875rem;
        gap: 6px;
    }
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    border: 2px solid transparent;
    border-radius: 10px;
    background: var(--white);
    color: var(--text-color);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(26, 77, 46, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin: 25px 0;
}

.checkbox-label {
    display: flex !important;
    align-items: start;
    gap: 10px;
    font-weight: 400 !important;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.875rem;
    color: var(--text-light);
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: var(--success);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.form-input {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: var(--white);
    color: var(--text-color);
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .form-input {
        padding: 12px 14px;
        font-size: 0.9375rem;
        border-radius: 8px;
    }
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(26, 77, 46, 0.1);
}

.form-input.is-invalid {
    border-color: #ef4444;
}

.error-message {
    display: block;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

@media (max-width: 480px) {
    .btn-block {
        padding: 14px 20px;
        font-size: 0.9375rem;
    }
}

/* ============ FOOTER ============ */
.footer {
    background: var(--dark-color);
    color: var(--white);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
}

.footer-logo h2 {
    color: var(--white);
    margin-bottom: 5px;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 25px;
}

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

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-column h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-links i {
    font-size: 0.75rem;
    color: var(--accent-color);
}

.footer-contact li {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
}

.footer-contact i {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-top: 3px;
}

.footer-contact strong {
    color: var(--white);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    padding: 50px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.newsletter-text h3 {
    color: var(--white);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid transparent;
    border-radius: 50px;
    background: var(--white);
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.footer-bottom {
    padding: 40px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-legal p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.legal-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: var(--transition);
}

.legal-links a:hover {
    color: var(--white);
}

.footer-certifications {
    display: flex;
    gap: 15px;
}

.footer-certifications img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-certifications img:hover {
    opacity: 1;
}

.footer-disclaimer {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.footer-disclaimer strong {
    color: var(--warning);
}

/* ============ BACK TO TOP BUTTON ============ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ============ RESPONSIVE DESIGN ============ */

/* Tablet */
@media (max-width: 991px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    section {
        padding: 80px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .steps-slider-wrapper {
        padding: 0 60px;
    }

    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .forms-container {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .logo-img {
        height: 45px;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(6, 95, 70, 0.08);
        border-radius: 8px;
        border: none;
        font-size: 1.4rem;
        color: var(--primary-color);
        cursor: pointer;
        z-index: 1100;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 72px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        padding: 20px 0;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 1050;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 14px 24px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0,0,0,0.06);
        color: var(--text-color);
    }

    .nav-menu .btn-nav,
    .nav-menu .btn-nav-secondary {
        display: block;
        margin: 8px 20px;
        text-align: center;
        border-radius: 50px;
        border-bottom: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        margin-top: 70px;
        min-height: auto;
        padding: 80px 0;
    }

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

    .hero-title {
        font-size: 2rem;
    }

    .hero-stats-card {
        padding: 40px 30px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .types-slider-wrapper {
        padding: 0 50px;
    }

    .types-slider-wrapper .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .type-card {
        min-width: 300px;
    }

    .projects-slider-wrapper {
        padding: 0 50px;
    }

    .projects-slider-wrapper .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .project-card {
        width: 380px;
    }

    .benefits-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-slider-wrapper {
        padding: 0 50px;
    }

    .team-slider-wrapper .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .team-card {
        width: 280px;
    }

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

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .comparison-row .col {
        justify-content: flex-start;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        max-width: none;
        flex-direction: column;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .legal-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .forms-container {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .steps-slider-wrapper {
        padding: 0 15px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step {
        padding: 40px 30px;
        min-height: 350px;
    }

    .step-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .step-title {
        font-size: 1.5rem;
    }

    .types-slider-wrapper {
        padding: 0 15px;
    }

    .types-slider-wrapper .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .types-slider-wrapper .slider-nav.prev {
        left: 5px;
    }

    .types-slider-wrapper .slider-nav.next {
        right: 5px;
    }

    .type-card {
        min-width: 230px;
        padding: 20px 15px;
    }

    .type-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .type-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .type-card > p {
        font-size: 0.75rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .type-features {
        margin-bottom: 15px;
    }

    .type-features li {
        padding: 5px 0;
        font-size: 0.75rem;
    }

    .type-features i {
        font-size: 0.7rem;
        margin-right: 6px;
    }

    .type-stats {
        padding-top: 12px;
        font-size: 0.8rem;
    }

    .projects-slider-wrapper {
        padding: 0 15px;
    }

    .projects-slider-wrapper .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .projects-slider-wrapper .slider-nav.prev {
        left: 5px;
    }

    .projects-slider-wrapper .slider-nav.next {
        right: 5px;
    }

    .project-card {
        width: 230px;
    }

    .project-image {
        height: 120px;
    }

    .project-content {
        padding: 12px 10px;
    }

    .project-category {
        font-size: 0.7rem;
        padding: 3px 8px;
        margin-bottom: 6px;
    }

    .project-card h3 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }

    .project-description {
        font-size: 0.75rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .project-details {
        margin-bottom: 10px;
    }

    .detail-item {
        font-size: 0.7rem;
    }

    .detail-item i {
        font-size: 0.7rem;
    }

    .project-stats {
        gap: 8px;
        margin-bottom: 10px;
    }

    .project-stats .stat {
        padding: 6px;
    }

    .project-stats .label {
        font-size: 0.65rem;
    }

    .project-stats .value {
        font-size: 0.85rem;
    }

    .project-card .btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }

    .team-slider-wrapper {
        padding: 0 15px;
    }

    .team-slider-wrapper .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .team-slider-wrapper .slider-nav.prev {
        left: 5px;
    }

    .team-slider-wrapper .slider-nav.next {
        right: 5px;
    }

    .team-card {
        width: 260px;
    }

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

    /* Mobile Projects: Show only first project + view all button */
    .projects-slider .project-card:not(:first-child) {
        display: none;
    }

    .projects-slider {
        justify-content: center;
        overflow-x: visible;
    }

    .projects-slider .project-card {
        width: 100%;
        max-width: 320px;
    }

    .projects-slider-wrapper .slider-nav,
    .projects-slider-wrapper .slider-progress {
        display: none;
    }

    .projects-view-all-mobile {
        display: block;
    }

    .projects-cta {
        display: none;
    }

    /* Modal responsive on mobile */
    .projects-modal.active {
        padding: 0;
    }

    .projects-modal .modal-content {
        border-radius: 0;
        max-width: 100%;
        height: 100vh;
        margin: 0;
    }

    .projects-modal .modal-header {
        padding: 20px 15px;
        position: sticky;
        top: 0;
        background: var(--white);
        z-index: 10;
    }

    .projects-modal .modal-header h2 {
        font-size: 1.25rem;
    }

    .projects-modal .modal-body {
        padding: 15px;
        max-height: calc(100vh - 80px);
    }
}

/* ============ UTILITY CLASSES ============ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ============ INVESTOR TYPES SECTION ============ */
.investor-types {
    background: var(--light-color);
}

.investor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.investor-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

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

.investor-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.investor-card h3 {
    color: var(--dark-color);
    margin-bottom: 15px;
}

.investor-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}
