/* ========================================
   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;
}

/* Logo Image Styling */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 70px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.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, #f8fffe 0%, #e8f8f5 50%, #d4f0ea 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(45, 134, 89, 0.1), rgba(60, 182, 163, 0.1));
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -3%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
}

.hero-bg-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 40%; left: 80%; animation-delay: 1s; }
.particle-3 { top: 70%; left: 20%; animation-delay: 2s; }
.particle-4 { top: 30%; left: 60%; animation-delay: 3s; }
.particle-5 { top: 80%; left: 90%; animation-delay: 4s; }

.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-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(45, 134, 89, 0.1);
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    animation: slideInLeft 0.8s ease-out;
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: slideInUp 1s ease-out;
}

.hero-title .highlight {
    color: var(--primary-green);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(45, 134, 89, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-title .highlight-green {
    color: var(--accent-teal);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 550px;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-green);
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 600;
}

.hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 20px var(--shadow-light);
    position: relative;
    overflow: hidden;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: auto;
    max-width: fit-content;
}

.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) scale(1.02);
    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, #a1ff6b, #70ee5a);
}

.btn-quaternary {
    background: linear-gradient(135deg, #4a9d6f, #2d8659);
}

.btn-icon {
    font-size: 1.2rem;
}

.pulse {
    animation: pulse 2s infinite;
}

.hero-visual {
    position: relative;
    animation: slideInRight 1s ease-out;
}

.hero-illustration {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.illustration-circle {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 8px 25px rgba(45, 134, 89, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.illustration-circle::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-green), var(--accent-teal));
    z-index: -1;
}

.circle-1 { top: 0; left: 0; animation-delay: 0s; }
.circle-2 { top: 0; right: 0; animation-delay: 1s; }
.circle-3 { bottom: 0; left: 0; animation-delay: 2s; }
.circle-4 { bottom: 0; right: 0; animation-delay: 3s; }

.circle-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.circle-icon {
    font-size: 2rem;
}

.circle-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
}

.illustration-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 12px 40px rgba(45, 134, 89, 0.3);
}

.center-icon {
    font-size: 3rem;
    margin-bottom: 0.25rem;
}

.center-text {
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
}

/* ===== ANIMATIONS ===== */
@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.5; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

@keyframes pulse {
    0% { box-shadow: 0 4px 20px var(--shadow-light); }
    50% { box-shadow: 0 4px 20px var(--shadow-light), 0 0 0 10px rgba(45, 134, 89, 0.1); }
    100% { box-shadow: 0 4px 20px var(--shadow-light); }
}

.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;
}

.projects-maps-section {
    padding: 4rem 0 2rem 0;
}

.featured-projects-section {
    padding: 2rem 0 4rem 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;
    position: relative; /* Required for Leaflet maps */
}

.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;
    display: inline-block;
}

.legend-color.active {
    background: #2d8659;
}

.legend-color.planned {
    background: #3cb6a3;
}

.legend-color.completed {
    background: #4a9d6f;
}

.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 ===== */
/* ===== SDG SECTION ===== */
.sdg-section {
    background: white;
    padding: 6rem 0;
}

.sdg-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sdg-label {
    display: inline-block;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.sdg-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.sdg-header h2 .highlight {
    color: var(--primary-green);
}

.sdg-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.sdg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.sdg-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 0.5rem;
    text-align: center;
    transition: var(--transition-bounce);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.sdg-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--sdg-color);
    transition: height 0.3s ease;
}

.sdg-card:hover {
    border-color: var(--sdg-color);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.sdg-card:hover::before {
    height: 8px;
}

.sdg-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--sdg-color);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease;
}

.sdg-card:hover .sdg-badge {
    transform: scale(1.1);
}

.sdg-card p {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.4;
}

.sdg-footer {
    text-align: center;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-teal));
    color: white;
    padding: 3rem 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;
}

/* Benefit Structure Card Scroll */
.benefit-structure {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-green) rgba(45, 134, 89, 0.1);
}

.benefit-structure::-webkit-scrollbar {
    width: 6px;
}

.benefit-structure::-webkit-scrollbar-track {
    background: rgba(45, 134, 89, 0.1);
    border-radius: 3px;
}

.benefit-structure::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 3px;
}

.benefit-structure::-webkit-scrollbar-thumb:hover {
    background: var(--dark-green);
}

/* Quadruple Line Card Scroll */
.quadruple-line {
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-green) rgba(45, 134, 89, 0.1);
}

.quadruple-line::-webkit-scrollbar {
    width: 6px;
}

.quadruple-line::-webkit-scrollbar-track {
    background: rgba(45, 134, 89, 0.1);
    border-radius: 3px;
}

.quadruple-line::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 3px;
}

.quadruple-line::-webkit-scrollbar-thumb:hover {
    background: var(--dark-green);
}

/* ===== 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;
    padding: 4rem 0;
}

.six-step-process h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
    font-size: 2.5rem;
    font-weight: 700;
}

.process-subtitle {
    text-align: center;
    color: var(--accent-teal);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.process-subtitle:last-of-type {
    margin-bottom: 3rem;
}

.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;
}

/* ===== FINANCE TYPES SECTION ===== */
.finance-types-section {
    background: #f7fcfb;
    padding: 4rem 0;
}

.finance-types-section .container {
    max-width: 1100px;
}

.finance-types-section h2 {
    color: var(--primary-green);
    margin-bottom: 0.75rem;
}

.finance-types-section p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.finance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

/* Desktop: 3 columns for balanced layout */
@media (min-width: 1200px) {
    .finance-grid {
        grid-template-columns: repeat(3, minmax(250px, 1fr));
    }
}

/* Tablet: 2 columns for medium screens */
@media (max-width: 1199px) and (min-width: 768px) {
    .finance-grid {
        grid-template-columns: repeat(2, minmax(240px, 1fr));
    }
}

/* Mobile: Single column for small screens */
@media (max-width: 767px) {
    .finance-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}

.finance-card {
    background: white;
    padding: 1.5rem;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(29, 96, 61, 0.08);
    border: 1px solid rgba(132, 183, 160, 0.35);
    transition: var(--transition);
}

.finance-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-green);
    box-shadow: 0 14px 35px rgba(45, 134, 89, 0.18);
}

.finance-card h3 {
    font-size: 1.1rem;
    color: var(--dark-green);
    margin-bottom: 0.9rem;
    font-weight: 700;
}

.finance-card strong {
    color: var(--primary-green);
}

.finance-card ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    gap: 0.5rem;
}

.finance-card li {
    padding-left: 1.4rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.96rem;
    line-height: 1.5;
}

.finance-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-size: 1rem;
}

.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;
}

.discover-modes {
    background: #f4fff9;
    padding: 3rem 0;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.mode-btn {
    min-width: 180px;
    max-width: 260px;
    border-radius: 18px;
    text-align: center;
    padding: 1.2rem 1rem;
    box-shadow: 0 8px 24px rgba(45, 134, 89, 0.08);
}

.mode-btn .mode-icon {
    background: #ffffff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    margin-bottom: 0.55rem;
    border: 1px solid var(--border-light);
}

.mode-btn .mode-label {
    font-weight: 700;
    font-size: 0.95rem;
    margin-top: 0.2rem;
}

.mode-btn.active {
    background: #ffffff;
    border: 2px solid var(--primary-green);
    box-shadow: 0 10px 34px rgba(45, 134, 89, 0.16);
    color: var(--primary-green);
}

.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;
    box-shadow: 0 8px 24px rgba(45, 134, 89, 0.06);
}

.mode-btn.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    box-shadow: 0 8px 25px var(--shadow-light);
    transform: translateY(-2px);
}

.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;
}

.content-version {
    display: block;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2.2rem;
    box-shadow: 0 10px 30px rgba(16, 35, 42, 0.05);
    margin-bottom: 2.5rem;
    transition: var(--transition);
}

.content-version.active {
    /* Keep active class for button styling, display is always block */
}

.content-version h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
}

.content-version p {
    color: var(--text-gray);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 2rem;
    align-items: start;
}

.content-main {
    min-width: 280px;
}

.content-main .section-tag {
    display: inline-block;
    background: rgba(45, 134, 89, 0.1);
    color: var(--primary-green);
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 999px;
    margin-bottom: 0.9rem;
    letter-spacing: 0.09em;
    font-size: 0.85rem;
}

.content-main h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 0.8rem 0 1rem;
    color: var(--dark-green);
}

.content-main p {
    margin-bottom: 1.8rem;
}

.content-panel {
    background: #f8fffe;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 1.5rem;
}

.center-btn {
    margin: 0 auto;
    display: block;
    max-width: 260px;
}

.content-small-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.content-small-card {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    box-shadow: 0 6px 17px rgba(45, 134, 89, 0.08);
}

.content-small-card h3 {
    margin-bottom: 0.45rem;
}

.content-small-card p {
    font-size: 0.92rem;
}

.content-small-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.content-small-card {
    background: var(--background-light);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1rem;
    text-align: left;
    transition: var(--transition);
}

.content-small-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(45, 134, 89, 0.15);
}

.content-small-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.content-small-card p {
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* ===== 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-badge.completed {
    background: rgba(74, 157, 111, 0.3);
    color: white;
}

.projects-grid {
    width: 100%;
}

.project-location {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.project-brief {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-title-section h3 {
    margin: 0;
    padding-right: 1rem;
}

.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;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.project-image img:hover {
    transform: scale(1.05);
}

.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);
    position: relative; /* Required for Leaflet maps */
}

.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: 3rem 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 {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-logo-link {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}

.footer-logo-link:hover {
    transform: scale(1.05);
}

.footer-logo-image {
    height: 80px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
}

.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 {
    position: relative;
    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);
    display: block;
}

.social-link svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    color: white;
}

.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: 1024px) {
    .sdg-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.2rem;
    }
}

@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);
    }

    /* Responsive Logo Styles */
    .nav-logo {
        gap: 0.6rem;
    }

    .logo-image {
        height: 50px;
        max-width: 60px;
    }

    .logo-text h2 {
        font-size: 1rem;
    }

    .logo-text .tagline {
        font-size: 0.7rem;
        display: none;
    }

    .hero {
        padding: 120px 1rem 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .hero-stats {
        justify-content: center;
        gap: 3rem;
    }

    .hero-buttons {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-illustration {
        width: 300px;
        height: 300px;
    }

    .illustration-circle {
        width: 100px;
        height: 100px;
    }

    .illustration-center {
        width: 140px;
        height: 140px;
    }

    .center-icon {
        font-size: 2.5rem;
    }

    .hero-image {
        display: none;
    }

    .hero-buttons {
        gap: 0.8rem;
    }

    .cta-button {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Modal styles are now handled in the main modal section */

    .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;
        align-items: center;
    }

    .footer-logo-link {
        margin: 0 auto 0.5rem;
    }

    .footer-logo-image {
        height: 70px;
        max-width: 90px;
    }
    
    .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;
    }

    .content-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .content-panel {
        padding: 1rem;
    }

    .content-small-cards {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {

    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-legal .separator {
        display: none;
    }

    .hero {
        padding: 100px 1rem 2rem;
    }

    .hero-title {
        font-size: clamp(1.8rem, 10vw, 3rem);
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-stats {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-buttons {
        gap: 0.8rem;
    }

    .cta-button {
        padding: 1rem 1.2rem;
        font-size: 0.9rem;
    }

    .hero-illustration {
        width: 250px;
        height: 250px;
    }

    .illustration-circle {
        width: 80px;
        height: 80px;
    }

    .illustration-center {
        width: 120px;
        height: 120px;
    }

    .center-icon {
        font-size: 2rem;
    }

    .center-text {
        font-size: 0.8rem;
    }

    .hero-bg-shape.shape-1 {
        width: 200px;
        height: 200px;
        top: 5%;
        left: -10%;
    }

    .hero-bg-shape.shape-2 {
        width: 150px;
        height: 150px;
        top: 70%;
        right: -5%;
    }

    .hero-bg-shape.shape-3 {
        width: 100px;
        height: 100px;
        bottom: 15%;
        left: 60%;
    }

    .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;
    }

    /* SDG Section Responsive */
    .sdg-section {
        padding: 4rem 0;
    }

    .sdg-header {
        margin-bottom: 3rem;
    }

    .sdg-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .sdg-subtitle {
        font-size: 1rem;
    }

    .sdg-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .sdg-card {
        padding: 0rem;
    }

    .sdg-badge {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .sdg-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .sdg-section {
        padding: 3rem 0;
    }

    .sdg-header h2 {
        font-size: 1.6rem;
    }

    .sdg-label {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .sdg-subtitle {
        font-size: 0.95rem;
    }

    .sdg-grid {
        grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
        gap: 0.8rem;
        margin-bottom: 2rem;
    }

    /* .sdg-card {
        padding: 0.8rem 0.6rem;
    } */

    .sdg-badge {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .sdg-card p {
        font-size: 0.7rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
    }
}

/* ===== MODAL STYLES ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 16px;
    width: 90%;
    max-width: 700px;
    max-height: calc(100vh - 60px);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideIn 0.3s ease-out;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: calc(100vh - 220px);
    overflow-y: auto;
    padding-right: 0.25rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-green) rgba(45, 134, 89, 0.1);
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(45, 134, 89, 0.05);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #2d8659;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.modal-footer {
    margin-top: 1rem;
    position: sticky;
    bottom: 0;
    background: white;
    padding-top: 1rem;
    z-index: 1;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    color: var(--text-gray);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10001;
}

.close-modal:hover {
    color: var(--primary-green);
}

#modalTitle {
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
}

#modalContent p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-size: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        padding: 1.5rem;
        width: 95%;
        max-height: calc(100vh - 40px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .modal-body {
        max-height: calc(100vh - 180px);
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    #modalTitle {
        font-size: 1.5rem;
    }

    #modalContent p {
        font-size: 0.95rem;
    }
}

/* Contact Modal Form Styles */
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: var(--font-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.cta-button[type="submit"] {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 134, 89, 0.3);
}

/* ===== ACTION BUTTONS STYLES ===== */
.action-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0 3rem 0;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 134, 89, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 134, 89, 0.4);
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
}

.action-btn:active {
    transform: translateY(-1px);
}

.action-icon {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.action-text {
    font-weight: 700;
}

@media (max-width: 768px) {
    .action-buttons {
        gap: 1rem;
        margin: 1.5rem 0 2.5rem 0;
    }
    
    .action-btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .action-icon {
        font-size: 1.3rem;
    }
}

/* ===== NOTIFICATION MODAL ===== */
.notification-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    animation: fadeIn 0.3s ease-out;
}

.notification-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    margin: 15% auto;
    padding: 2.5rem;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 25px 80px rgba(45, 134, 89, 0.3);
    animation: slideIn 0.4s ease-out;
    text-align: center;
    border: 1px solid rgba(45, 134, 89, 0.1);
}

.notification-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.notification-icon svg {
    filter: drop-shadow(0 4px 8px rgba(45, 134, 89, 0.2));
}

#notificationTitle {
    color: var(--primary-green);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(45, 134, 89, 0.1);
}

#notificationMessage {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.notification-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    color: var(--primary-green);
    background-color: rgba(45, 134, 89, 0.1);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .notification-content {
        margin: 20% auto;
        padding: 2rem;
        width: 95%;
    }

    #notificationTitle {
        font-size: 1.5rem;
    }

    #notificationMessage {
        font-size: 1rem;
    }
}
