/* ========================================
   OLYMPIQUE SUSTAINABLE - CSS STYLESHEET
   Professional Multi-Page Website
   ======================================== */

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

:root {
    --primary-green: #2d8659;
    --secondary-green: #4a9d6f;
    --light-green: #6cb383;
    --accent-teal: #3cb6a3;
    --dark-green: #1f5d3f;
    --background-light: #f8fffe;
    --background-white: #ffffff;
    --text-dark: #2c3e50;
    --text-gray: #5a6c7d;
    --text-light: #7f8c8d;
    --border-light: #e1e8ed;
    --shadow-light: rgba(45, 134, 89, 0.1);
    --shadow-medium: rgba(45, 134, 89, 0.15);
    --shadow-dark: rgba(45, 134, 89, 0.25);

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

html {
    scroll-behavior: smooth;
}

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

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

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

.navbar:hover {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo h2 {
    color: var(--primary-green);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    animation: slideDown 0.8s ease-out;
}

.nav-logo .tagline {
    font-size: 0.8rem;
    color: var(--text-gray);
    font-weight: 400;
    margin-top: -4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-teal));
    transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-green);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    margin: 5px 0;
    transition: 0.4s;
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    padding: 120px 2rem 4rem;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--background-white) 0%, var(--background-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e1e8ed" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.2;
    z-index: 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 500px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 20px var(--shadow-light);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px var(--shadow-dark);
}

.cta-button:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--accent-teal), var(--light-green));
}

.btn-tertiary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.1rem;
    min-width: 200px;
}

.btn-small {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
}

.hero-image {
    position: relative;
    height: 500px;
    animation: slideInRight 1s ease-out;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px var(--shadow-medium);
    animation: float 3s ease-in-out infinite;
} 

.card-1 {
    top: 50px;
    right: 50px;
    animation-delay: 0s;
}

.card-2 {
    top: 250px;
    animation-delay: 0.5s;
}

.card-3 {
    bottom: 100px;
    right: 30px;
    animation-delay: 1s;
}

.card-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.floating-card h3 {
    font-size: 1rem;
    color: var(--primary-green);
}

/* ===== PAGE HEADER ===== */
.page-header {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

.page-header-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.page-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0rem;
    margin-top: 3rem;
    letter-spacing: -0.02em;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== SECTIONS ===== */
section {
    padding: 6rem 0;
}

section h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-teal));
    border-radius: 2px;
}

/* ===== WORLD MAP SECTION ===== */
.world-map-section {
    background: var(--background-white);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.map-wrapper {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px var(--shadow-light);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.world-map {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light);
    margin-bottom: 2rem;
}

.map-legend {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
    color: var(--text-gray);
}

.legend-color {
    width: 14px;
    height: 14px;
    border-radius: 3px;
}

.active-projects {
    background: var(--primary-green);
}

.planned-projects {
    background: var(--accent-teal);
}

.partner-regions {
    background: var(--light-green);
}

/* ===== STATS SECTION ===== */
.quick-stats {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    color: white;
    padding: 6rem 0;
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-bounce);
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ===== MISSION SECTION ===== */
.mission-hero {
    background: white;
    padding: 4rem 0;
}

.mission-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mission-hero-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.mission-tagline {
    font-size: 1.4rem;
    color: var(--primary-green);
    font-weight: 600;
    font-style: italic;
}

.mission-definition {
    background: white;
}

.definition-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px var(--shadow-light);
    border: 1px solid var(--border-light);
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid var(--primary-green);
}

.definition-card h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.definition-card p {
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== TABS ===== */
.mission-tabs-section {
    background: white;
    padding: 6rem 0;
}

.tabs-container {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 50px var(--shadow-light);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.tab-buttons-wrapper {
    display: flex;
    background: linear-gradient(135deg, var(--background-light) 0%, #f5fbf9 100%);
    border-bottom: 2px solid var(--border-light);
    gap: 0;
}

.tab-btn {
    flex: 1;
    padding: 1.8rem 2rem;
    border: none;
    background: transparent;
    color: var(--text-gray);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    position: relative;
    font-size: 0.95rem;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-teal));
    transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.tab-btn.active {
    color: var(--primary-green);
    background: white;
}

.tab-btn.active::after {
    width: 100%;
}

.tab-btn:hover {
    background: rgba(45, 134, 89, 0.04);
    color: var(--primary-green);
}

.tab-icon {
    font-size: 1.8rem;
}

.tab-text {
    display: block;
    font-size: 0.95rem;
}

.tab-content {
    display: none;
    padding: 3.5rem;
    animation: fadeInUp 0.6s ease-out;
    background: white;
}

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

.tab-content h3 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tab-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1rem;
}

/* Tab 2 Grid Layout */
.tab-2-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.tab-2-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(45, 134, 89, 0.12);
    box-shadow: 0 4px 20px rgba(45, 134, 89, 0.08);
    transition: var(--transition-bounce);
    position: relative;
    overflow: visible;
}

.tab-2-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.tab-2-card:hover::before {
    transform: scaleX(1);
}

.tab-2-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(45, 134, 89, 0.15);
    border-color: var(--primary-green);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.card-badge {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.tab-2-card:hover .card-badge {
    transform: scale(1.1) rotate(8deg);
}

.card-header h4 {
    color: var(--primary-green);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
}

.tab-2-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Quadruple Bottom Line Specific Styling */
.qbl-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.qbl-item {
    background: white;
    padding: 0.9rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(45, 134, 89, 0.1);
    transition: var(--transition);
    box-sizing: border-box;
}

.qbl-item:hover {
    background: linear-gradient(135deg, rgba(45, 134, 89, 0.05), rgba(60, 182, 163, 0.05));
    border-color: var(--accent-teal);
    transform: translateY(-2px);
}

.qbl-icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.4rem;
}

.qbl-item h5 {
    color: var(--primary-green);
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
}

/* Highlight Text */
.highlight-text {
    color: var(--primary-green);
    font-weight: 600;
    background: rgba(45, 134, 89, 0.08);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    margin-top: 1.5rem;
}

/* ===== PILLARS ===== */
.three-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.pillar-card {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-bounce);
    border: 2px solid transparent;
}

.pillar-card:hover {
    transform: translateY(-5px);
    background: white;
    border-color: var(--primary-green);
    box-shadow: 0 8px 25px var(--shadow-light);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.pillar-card h4 {
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.pillar-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

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

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: var(--transition-bounce);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px var(--shadow-medium);
    border-color: var(--primary-green);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    color: var(--primary-green);
    margin-bottom: 0.8rem;
}

.value-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ===== STAKEHOLDERS ===== */
.stakeholders-section {
    background: white;
}

.stakeholders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.stakeholder-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 6px 20px var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.stakeholder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-teal));
}

.stakeholder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px var(--shadow-medium);
}

.stakeholder-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.stakeholder-card h3 {
    color: var(--primary-green);
    margin-bottom: 0.8rem;
}

.stakeholder-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ===== SERVICES ===== */
.services-section {
    background: white;
}

.services-list {
    display: grid;
    gap: 1.5rem;
}

.service-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 15px var(--shadow-light);
    transition: var(--transition-bounce);
}

.service-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px var(--shadow-medium);
    border-color: var(--primary-green);
}

.service-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-content h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.service-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ===== STEPS/PROCESS ===== */
.six-step-process {
    background: white;
}

.steps-timeline {
    display: grid;
    gap: 1.5rem;
}

.step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px var(--shadow-light);
    border: 1px solid var(--border-light);
    transition: var(--transition-bounce);
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-medium);
    border-color: var(--primary-green);
}

.step-header {
    margin-bottom: 1.5rem;
}

.step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.step-card h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.step-connector {
    height: 30px;
    background: linear-gradient(180deg, var(--primary-green), var(--accent-teal));
    width: 3px;
    margin: -15px auto;
    position: relative;
    z-index: 1;
}

/* ===== KPI SECTION ===== */
.kpi-section {
    background: white;
}

.kpi-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-gray);
    font-size: 1.1rem;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.kpi-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px var(--shadow-light);
    border: 2px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.kpi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(45, 134, 89, 0.05);
    transition: left 0.3s ease;
}

.kpi-card:hover::before {
    left: 0;
}

.kpi-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: 0 12px 35px var(--shadow-medium);
}

.kpi-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease;
}

.kpi-card:hover .kpi-icon {
    transform: scale(1.1) rotate(5deg);
}

.kpi-name {
    color: var(--primary-green);
    font-weight: 600;
    display: block;
    position: relative;
    z-index: 1;
}

/* ===== MARKETPLACE SECTION ===== */
.marketplace-section {
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdfb 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.marketplace-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(60, 182, 163, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.marketplace-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 134, 89, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.marketplace-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.marketplace-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.marketplace-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.marketplace-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.marketplace-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(45, 134, 89, 0.08);
    border: 1px solid rgba(45, 134, 89, 0.1);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.marketplace-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.marketplace-card:hover::before {
    transform: scaleX(1);
}

.marketplace-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(45, 134, 89, 0.15);
    border-color: var(--primary-green);
}

.card-icon {
    font-size: 3.5rem;
    display: block;
    margin: 0 auto 0.5rem;
    transition: transform 0.4s ease;
}

.marketplace-card:hover .card-icon {
    transform: scale(1.15) rotate(8deg);
}

.marketplace-card h3 {
    font-size: 1.4rem;
    color: var(--primary-green);
    font-weight: 700;
    margin: 0.5rem 0;
}

.marketplace-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
    margin: 0;
}

.card-link {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--transition);
    margin-top: 1rem;
}

.card-link span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.marketplace-card:hover .card-link {
    color: var(--primary-green);
    gap: 1rem;
}

.marketplace-card:hover .card-link span {
    transform: translateX(4px);
}

/* ===== DISCOVER SECTION ===== */
.discover-intro,
.projects-intro,
.methodology-intro,
.what-we-do-intro {
    background: white;
    text-align: center;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    margin-bottom: 1rem;
}

.intro-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.intro-highlight {
    font-size: 1.3rem;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.mode-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.mode-btn {
    background: white;
    border: 2px solid var(--border-light);
    padding: 1.2rem 2rem;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition-bounce);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    font-size: 1rem;
    min-width: 180px;
}

.mode-btn.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    box-shadow: 0 8px 25px var(--shadow-light);
}

.mode-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.mode-icon {
    font-size: 2rem;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-item {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-bounce);
}

.benefit-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 8px 25px var(--shadow-light);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ===== PROJECTS SECTION ===== */
.project-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 30px var(--shadow-light);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition-bounce);
    margin-bottom: 2rem;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px var(--shadow-dark);
}

.project-header {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-header h3 {
    font-size: 1.5rem;
    margin: 0;
}

.project-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-badge.active {
    background: rgba(76, 175, 80, 0.3);
    color: white;
}

.project-badge.planned {
    background: rgba(60, 182, 163, 0.3);
    color: white;
}

.project-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
}

.project-image {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--background-light), white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.project-details h4 {
    color: var(--primary-green);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.project-details p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.project-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.stat {
    flex: 1;
}

.stat-number {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.3rem;
    display: block;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.project-footer {
    padding: 2rem;
    background: var(--background-light);
    text-align: center;
}

/* ===== PROJECTS MAP STYLING ===== */
.project-map-toggle {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.map-toggle-btn {
    background: var(--background-light);
    color: var(--text-dark);
    border: 2px solid var(--border-light);
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
}

.map-toggle-btn.active {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border-color: var(--primary-green);
    box-shadow: 0 8px 25px rgba(45, 134, 89, 0.3);
}

.map-toggle-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.map-toggle-btn.active:hover {
    color: white;
}

.project-map-view {
    display: none;
    animation: fadeInUp 0.6s ease-out;
}

.project-map-view.active {
    display: block;
}

.project-map-view h3 {
    color: var(--primary-green);
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.projects-map {
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid var(--border-light);
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px var(--shadow-light);
}

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

.dashboard-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px var(--shadow-light);
    border: 2px solid var(--border-light);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}

.dashboard-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: 0 12px 40px var(--shadow-medium);
}

.dashboard-stage {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.project-count {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-green);
    margin-bottom: 0.5rem;
}

.stage-label {
    color: var(--text-gray);
    font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, #0a1f1a 0%, #1a3d32 100%);
    color: white;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-teal), var(--light-green));
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand Section */
.footer-brand h4 {
    color: var(--accent-teal);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.footer-description {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Social Media Section */
.social-links h5 {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.social {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link svg {
    color: white;
    display: block;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    box-shadow: 0 8px 24px rgba(60, 182, 163, 0.4);
    border-color: transparent;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Footer Sections */
.footer-section {
    color: rgba(255, 255, 255, 0.95);
}

.footer-section h4 {
    color: rgba(255, 255, 255, 0.98);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-teal), transparent);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--accent-teal);
    transform: translateX(5px);
}

/* Contact Section */
.footer-contact .contact-info {
    margin-bottom: 1rem;
}

.footer-contact .contact-line {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    line-height: 1.6;
}

.footer-contact .contact-line svg {
    flex-shrink: 0;
    opacity: 0.8;
}

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

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

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-legal .separator {
    color: rgba(255, 255, 255, 0.3);
}




/* Responsive Design */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

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

@media (max-width: 680px) {
    .footer-top { grid-template-columns: 1fr; gap: 1rem; }
    .social-link { width: 36px; height: 36px; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px var(--shadow-light);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        padding: 120px 1rem 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-image {
        display: none;
    }

    .hero-buttons {
        gap: 0.8rem;
    }

    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .modal {
        width: 90% !important;
        margin: 10% auto !important;
    }

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

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .project-body {
        grid-template-columns: 1fr;
    }

    .project-image {
        width: 100px;
        height: 100px;
    }

    .tab-btn {
        padding: 1.2rem 1rem;
        font-size: 0.85rem;
    }

    .tab-icon {
        font-size: 1.5rem;
    }

    .tab-content {
        padding: 2rem;
    }

    .tab-2-grid {
        grid-template-columns: 1fr;
    }

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

    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .social {
        justify-content: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact .contact-line {
        justify-content: center;
    }

}

@media (max-width: 480px) {

    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-legal .separator {
        display: none;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
        height: 70px;
    }

    .nav-logo h2 {
        font-size: 1.2rem;
    }

    .page-header {
        min-height: 200px;
        padding-top: 70px;
    }

    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 1.8rem;
    }

    .mode-btn {
        min-width: auto;
        padding: 1rem 1.5rem;
    }

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