/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #F3F4F6;
    overflow-x: hidden;
    position: relative;
    isolation: isolate;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('images/BackgroundAll.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.12;
    pointer-events: none;
    z-index: -1;
}

.about,
.howwehelp,
.worldprojects,
.contribution {
    background: transparent !important;
}

/* CSS Custom Properties for consistent theming */
:root {
    --color-primary: #1E3A8A;
    --color-primary-light: #2D4EA3;
    --color-primary-dark: #1e3a8a;
    --color-secondary: #16A34A;
    --color-secondary-dark: #15803D;
    --color-white: #FFFFFF;
    --color-gray-light: #F3F4F6;
    --color-gray: #6b7280;
    --color-gray-dark: #374151;
    --color-dark: #1f2937;

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow-primary: 0 0 30px rgba(30, 58, 138, 0.3);
    --shadow-glow-secondary: 0 0 30px rgba(22, 163, 74, 0.3);

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s ease;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus indicators */
*:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Container */
.container {
    max-width: 1670px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.875rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-gray);
}

/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

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

    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px 10px rgba(22, 163, 74, 0);
    }
}

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

    100% {
        background-position: 200% center;
    }
}

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

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

@keyframes gradientShift {

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

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

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

@keyframes slideInStagger {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes iconBounce {

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

    50% {
        transform: translateY(-8px);
    }
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(30, 58, 138, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(30, 58, 138, 0.4);
    }
}

/* ============================================
   HEADER AND NAVIGATION
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    z-index: 1000;
    height: 80px;
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.nav {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 80px;
    padding: 0 24px;
    gap: 16px;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 420px;
}

.nav__logo {
    height: 45px;
    width: auto;
    transition: transform var(--transition-normal);
}

.nav__logo:hover {
    transform: scale(1.05);
}

.nav__brand h1 {
    color: var(--color-primary);
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.25;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nav__link {
    text-decoration: none;
    color: var(--color-gray-dark);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0.65rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 3px;
    border-radius: 2px;
    background: var(--hc-accent, #17776E);
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

.nav__link:hover::after {
    width: 70%;
}

.nav__link:hover {
    color: var(--hc-accent, #17776E);
    background: none;
}

.nav__link.active {
    color: var(--hc-accent, #17776E);
}

.nav__link.active::after {
    width: 70%;
}

/* Nav Overflow / More Dropdown */
.nav__more {
    display: none;
    position: relative;
    list-style: none;
}

.nav--overflow .nav__item--overflow {
    display: none;
}

.nav--overflow .nav__more {
    display: block;
}

.nav__more-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 2px solid var(--color-gray-light);
    border-radius: 10px;
    cursor: pointer;
    color: var(--color-gray-dark);
    transition: all var(--transition-fast);
}

.nav__more-toggle:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(30, 58, 138, 0.05);
}

.nav__more-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 220px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 100;
}

.nav__more.active .nav__more-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__more-link {
    display: block;
    padding: 0.65rem 1rem;
    color: var(--color-gray-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.nav__more-link:hover {
    background: rgba(30, 58, 138, 0.06);
    color: var(--color-primary);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav__contact-btn {
    border: 2px solid var(--color-primary);
    background: var(--color-white);
    color: var(--color-primary);
    transition: all var(--transition-normal);
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.25rem;
    white-space: nowrap;
}

.nav__contact-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.nav__lang-toggle {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
    min-width: 60px;
    position: relative;
    overflow: hidden;
}

.nav__lang-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav__lang-toggle:hover::before {
    left: 100%;
}

.nav__lang-toggle:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-primary);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: transparent;
    border: 2px solid var(--color-gray-light);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    transition: all var(--transition-normal);
}

.nav__toggle:hover {
    border-color: var(--color-primary);
    background: rgba(30, 58, 138, 0.05);
}

.nav__toggle-icon,
.nav__toggle-icon::before,
.nav__toggle-icon::after {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--color-primary);
    border-radius: 1px;
    transition: all var(--transition-normal);
}

.nav__toggle-icon {
    position: relative;
}

.nav__toggle-icon::before,
.nav__toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
}

.nav__toggle-icon::before {
    top: -6px;
}

.nav__toggle-icon::after {
    top: 6px;
}

/* Hamburger animation when menu is active */
.nav__toggle.active .nav__toggle-icon {
    background: transparent;
}

.nav__toggle.active .nav__toggle-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.nav__toggle.active .nav__toggle-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, #3B5998 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: white;
    padding: 160px 0 120px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Floating decorative elements */
.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 12s ease-in-out infinite;
    pointer-events: none;
}

.hero__content {
    max-width: 600px;
    position: relative;
    z-index: 1;
    text-align: left;
}

/* Hero Two-Column Layout */
.hero__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

/* Hero Image */
.hero__image-container {
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: fadeInRight 1s ease forwards;
    animation-delay: 0.5s;
}

.hero__image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.hero__image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.hero__image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.hero__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
    pointer-events: none;
}

.hero__title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.2s;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #dbeafe;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.4s;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.6s;
}

.hero__supporting {
    margin-top: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.9s;
}

.hero__supporting-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 0.35rem;
    font-weight: 400;
}

.hero__cta {
    background: white;
    color: var(--color-primary);
    border: none;
    padding: 1.25rem 5rem;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    min-width: 350px;
}

.hero__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

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

.hero__cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.hero__cta--primary {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
    color: white;
    animation: pulse 3s ease-in-out infinite;
    animation-delay: 1s;
}

.hero__cta--primary:hover {
    background: linear-gradient(135deg, var(--color-secondary-dark) 0%, var(--color-secondary) 100%);
    box-shadow: var(--shadow-glow-secondary);
}

.hero__cta--secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.hero__cta--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
}

/* Floating shapes decoration */
.hero__decoration {
    position: absolute;
    pointer-events: none;
}

.hero__decoration--1 {
    top: 15%;
    right: 10%;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero__decoration--2 {
    bottom: 20%;
    left: 8%;
    width: 40px;
    height: 40px;
    background: rgba(22, 163, 74, 0.3);
    border-radius: 8px;
    transform: rotate(45deg);
    animation: floatSlow 8s ease-in-out infinite;
}

.hero__decoration--3 {
    top: 40%;
    left: 15%;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float 5s ease-in-out infinite reverse;
}

/* Hero Trust Badge */
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
    animation-delay: 0.1s;
}

.hero__badge-icon {
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

.hero__badge-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
}

/* Hero Stats */
.hero__stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.8s;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero__stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero__stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Hero Particles */
.hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__particles span {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
}

.hero__particles span:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.hero__particles span:nth-child(2) {
    left: 25%;
    width: 6px;
    height: 6px;
    animation-delay: 2s;
    animation-duration: 18s;
}

.hero__particles span:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.hero__particles span:nth-child(4) {
    left: 70%;
    width: 8px;
    height: 8px;
    animation-delay: 6s;
    animation-duration: 20s;
}

.hero__particles span:nth-child(5) {
    left: 90%;
    width: 5px;
    height: 5px;
    animation-delay: 8s;
    animation-duration: 28s;
}

@keyframes particleFloat {
    0% {
        top: 100%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: -10%;
        opacity: 0;
    }
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.2s;
}

.hero__scroll-indicator span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.hero__scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: scrollIndicator 2s ease-in-out infinite;
}

@keyframes scrollIndicator {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.5;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    padding: 100px 0;
    background-color: var(--color-gray-light);
    position: relative;
}

.features__title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-dark);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.features__title.animate {
    opacity: 1;
    transform: translateY(0);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid rgba(229, 231, 235, 0.5);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: left;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.feature-card__icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: transform var(--transition-normal);
}

.feature-card:hover .feature-card__icon {
    animation: iconBounce 0.6s ease;
}

.feature-card__icon--svg {
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card__icon--svg svg {
    width: 56px;
    height: 56px;
}

.feature-card__title {
    color: var(--color-dark);
    margin-bottom: 1rem;
    font-size: 1.35rem;
    transition: color var(--transition-normal);
}

.feature-card:hover .feature-card__title {
    color: var(--color-primary);
}

.feature-card__description {
    color: var(--color-gray);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 120px 0 44px;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about__title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-size: 2.5rem;
    font-weight: 700;
}

.about__badge {
    display: block;
    margin: 0 auto 2rem;
    height: auto;
}

/* About Grid Layout */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about__images {
    position: relative;
    min-height: 620px;
}

.about__image-card {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 4px 30px 0px rgba(23, 119, 110, 0.25);
}

.about__image-card--primary {
    bottom: 0;
    left: 0;
    width: 65%;
    z-index: 2;
}

.about__image-card--secondary {
    top: 0;
    right: 0;
    width: 50%;
    z-index: 1;
}

.about__image {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about__content {
    max-width: 100%;
    text-align: center;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about__image-card--primary {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.about__image-card--secondary {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.about__images.animate .about__image-card--primary {
    opacity: 1;
    transform: translateX(0);
}

.about__images.animate .about__image-card--secondary {
    opacity: 1;
    transform: translateY(0);
}

.about__subtitle {
    color: var(--color-primary);
    margin-bottom: 1rem;
    margin-top: 2.5rem;
    position: relative;
    display: block;
}

h3.about__subtitle {
    font-size: 1.75rem;
    padding-bottom: 0.75rem;
}

h4.about__subtitle {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    padding-bottom: 0.5rem;
}

.about__subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-secondary), transparent);
    border-radius: 2px;
}

.about__description {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0%;
    text-align: center;
    color: #012120;
    margin-bottom: 1rem;
}

.about__carousel-dots,
.about__ellipsis,
.about__read-more {
    display: none;
}

/* ============================================
   HOW WE HELP SECTION
   ============================================ */

.howwehelp {
    padding: 80px 0;
    background: #F5F5F5;
}

.howwehelp__title {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-weight: 400;
    font-size: 2.5rem;
    text-align: center;
    color: #012120;
    margin-bottom: 0.5rem;
}

.howwehelp__badge {
    display: block;
    margin: 0 auto 3rem;
}

.howwehelp__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1580px;
    margin: 0 auto;
}

.howwehelp__card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    text-align: center;
    padding: 0 16px 20px;
    box-shadow: 0px 10px 50px 0px #12686033;
    height: 465px;
    display: flex;
    flex-direction: column;
}

.howwehelp__card-img {
    width: calc(100% + 32px);
    margin-left: -16px;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

.howwehelp__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.howwehelp__card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #C3FFA8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -28px auto 12px;
    position: relative;
    z-index: 2;
}

.howwehelp__card-icon img {
    width: 28px;
    height: 28px;
}

.howwehelp__card-title {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 110%;
    color: #17776E;
    text-align: center;
    margin-bottom: 8px;
}

.howwehelp__card-desc {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 130%;
    color: #012120;
    text-align: center;
    margin: 0;
}

.howwehelp__dots {
    display: none;
}

/* ============================================
   WORLD PROJECTS SECTION
   ============================================ */

.worldprojects {
    padding: 40px 0;
    background: #F0F0F0;
}

.worldprojects .container {
    max-width: 1670px;
    padding: 0 40px;
}

.worldprojects__layout {
    display: flex;
    align-items: stretch;
    gap: clamp(12px, 1.5vw, 20px);
    padding: 20px;
    border-radius: 30px;
    background: rgba(23, 119, 110, 0.1);
}

.worldprojects__intro {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 12px;
}

.worldprojects__title {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 110%;
    color: #001C1A;
    white-space: nowrap;
}

.worldprojects__badge {
    width: 100%;
    max-width: 260px;
}

.worldprojects__desc {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 110%;
    color: #012120;
}

.worldprojects__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7.5px;
    background: #0E5750;
    color: #F5F5F5;
    border: none;
    border-radius: 15px;
    padding: 8px 30px;
    height: 60px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    text-decoration: none;
    transition: background 0.3s ease;
    margin-top: auto;
    white-space: nowrap;
}

.worldprojects__btn:hover {
    background: #17776E;
}

.worldprojects__btn-icon {
    width: 30px;
    height: 30px;
}

.worldprojects__cards {
    display: contents;
}

.worldprojects__card {
    flex: 1 1 0;
    height: 304px;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0px 7.59px 37.96px 0px rgba(18, 104, 96, 0.2);
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 18.22px;
}

.worldprojects__card-img {
    height: 147px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
}

.worldprojects__card-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.worldprojects__card-body {
    padding: 0 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.worldprojects__card-title {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    color: #17776E;
}

.worldprojects__card-desc {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 15.18px;
    line-height: 110%;
    color: #012120;
    margin-bottom: 1rem !important
}

.worldprojects__cta {
    flex: 1.2 1 0;
    border-radius: 30px;
    background: #02221F;
    box-shadow: 0px 7.59px 37.96px 0px rgba(18, 104, 96, 0.2);
    padding: 20px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18.22px;
    position: relative;
    overflow: hidden;
}

.worldprojects__cta-bg {
    position: absolute;
    top: 0;
    right: -15%;
    bottom: 0;
    width: 115%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    pointer-events: none;
}

.worldprojects__cta::after {
    content: '';
    position: absolute;
    top: 30%;
    right: 5%;
    width: 60%;
    height: 70%;
    background: radial-gradient(circle at center, rgba(147, 226, 112, 0.55) 0%, rgba(147, 226, 112, 0.25) 40%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
    mix-blend-mode: screen;
}

.worldprojects__cta-title {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 110%;
    color: #C3FFA8;
    position: relative;
    z-index: 2;
}

.worldprojects__cta-desc {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 140%;
    color: #F5F5F5;
    position: relative;
    z-index: 2;
}

.worldprojects__cta-btn {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 8px;
    background: #C3FFA8;
    color: #012120;
    border-radius: 12px;
    padding: 10px 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.3s ease;
    position: relative;
    z-index: 2;
    width: fit-content;
}

.worldprojects__cta-btn:hover {
    background: #93E270;
}

.worldprojects__dots {
    display: none;
}

/* ============================================
   CONTRIBUTION BANNER
   ============================================ */

.contribution {
    padding: 10px 0;
    background: white;
    overflow: visible;
}

.contribution .container {
    max-width: 1670px;
    padding: 0 40px;
}

.contribution__banner {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #012120;
    border-top-left-radius: 100px;
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
    border-bottom-left-radius: 100px;
    padding: 5px 0 5px 5px;
}

.contribution__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1 1 auto;
    min-width: 0;
}

.contribution__icon-main {
    flex-shrink: 0;
    width: 102px;
    height: 102px;
    border-radius: 50%;
    border: 3px solid #93E270;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.contribution__logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.contribution__title {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 110%;
    color: #93E270;
    margin-bottom: 0;
}

.contribution__desc {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 140%;
    color: #F5F5F5;
    margin: 0;
}

.contribution__icons {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.contribution__item-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid #C3FFA8;
    background: #17776E;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.contribution__item-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.contribution__photo {
    flex-shrink: 0;
    height: 100%;
    overflow: hidden;
    border-radius: 0 30px 30px 0;
}

.contribution__photo-img {
    height: 112px;
    width: auto;
    display: block;
    object-fit: cover;
}

.contribution__icon-label {
    display: none !important;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--color-gray-light) 0%, #E5E7EB 100%);
    position: relative;
}

.contact__title {
    text-align: center;
    margin-bottom: 4rem;
    color: var(--color-dark);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.contact__title.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact__content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.contact__content.animate {
    opacity: 1;
    transform: translateY(0);
}

.contact__form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-gray-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all var(--transition-normal);
    background-color: white;
    min-height: 48px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
    outline: none;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ef4444;
}

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

.error-message.show {
    display: block;
}

.contact__submit {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.contact__submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

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

.contact__submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-primary);
}

.contact__submit:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    display: none;
}

.form-status.success {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #065f46;
    display: block;
    animation: fadeInUp 0.5s ease;
}

.form-status.error {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    display: block;
    animation: fadeInUp 0.5s ease;
}

.contact__email-alt {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
    color: var(--color-gray);
    font-size: 0.95rem;
}

.contact__email-alt a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-normal);
}

.contact__email-alt a:hover {
    color: var(--color-secondary);
    text-decoration: underline;
}

.btn {
    display: inline-block;
    padding: 1.25rem 3.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    text-align: center;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

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

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

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-secondary);
}

.contact__info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.contact__info-title {
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact__info-item {
    margin-bottom: 1.25rem;
    color: var(--color-gray);
    padding: 0.75rem 0;
    border-bottom: 1px solid #f3f4f6;
    transition: all var(--transition-normal);
}

.contact__info-item:hover {
    padding-left: 10px;
    border-color: var(--color-secondary);
}

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

.contact__info-item strong {
    color: var(--color-gray-dark);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

/* ============================================
   LANGUAGE DROPDOWN
   ============================================ */

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: #012120;
    color: #F5F5F5;
    padding: 0;
}

.footer .container {
    max-width: 1670px;
    padding: 0 40px;
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-bottom: 1px solid rgba(245, 245, 245, 0.1);
    gap: 40px;
}

.footer__disclaimers {
    display: flex;
    gap: 40px;
    flex: 1;
}

.footer__disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer__disclaimer-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.footer__disclaimer p {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: 150%;
    color: rgba(245, 245, 245, 0.7);
    margin: 0;
}

.footer__social {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    padding: 5px;
    background: #17776E;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.footer__social-link:hover {
    opacity: 0.7;
}

.footer__social-link img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer__divider {
    display: none;
}

.footer__contact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(245, 245, 245, 0.1);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer__contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    padding: 20px;
    background: #17776E;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 1;
}

.footer__contact-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer__contact-info h4 {
    font-family: 'Special Gothic Expanded One', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 110%;
    color: #C3FFA8;
    margin: 0 0 6px;
}

.footer__contact-info p {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 160%;
    color: #F5F5F5;
    margin: 0;
}

.footer__bottom {
    padding: 20px 0;
    text-align: center;
}

.footer__copyright {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: rgba(245, 245, 245, 0.5);
    margin: 0;
}

.footer__donate-btn {
    display: none;
}



/* ============================================
   ANIMATION CLASSES FOR SCROLL REVEAL
   ============================================ */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delay for grid items */
.feature-card:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3) {
    transition-delay: 0.3s;
}

.feature-card:nth-child(4) {
    transition-delay: 0.4s;
}

/* ============================================
   LOADING STATES
   ============================================ */

.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    margin: -12px 0 0 -12px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: rotate 0.8s linear infinite;
}

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

/* Large desktop - slight reduction */
@media (max-width: 1440px) {
    .nav {
        padding: 0 20px;
    }

    .nav__menu {
        gap: 0.5rem;
    }

    .nav__link {
        font-size: 0.9rem;
        padding: 0.5rem 0.6rem;
    }
}

/* Medium desktop - more compact */
@media (max-width: 1280px) {
    .nav {
        padding: 0 16px;
    }

    .nav__menu {
        gap: 0.25rem;
    }

    .nav__link {
        font-size: 0.85rem;
        padding: 0.5rem 0.5rem;
    }

    .nav__actions {
        gap: 6px;
    }

    .nav__contact-btn {
        padding: 0 0.75rem;
        font-size: 0.85rem;
        height: 36px;
    }

    .lang-dropdown__toggle {
        padding: 0.35rem 0.6rem;
        min-width: 75px;
        height: 36px;
    }

    .lang-dropdown__text {
        font-size: 0.8rem;
    }
}

/* Small desktop - switch to mobile hamburger */
@media (max-width: 1100px) {
    .container {
        padding: 0 15px;
    }

    .hero__title {
        font-size: 3rem;
    }

    .contact__content {
        gap: 2rem;
    }

    /* Hero responsive for tablets */
    .hero__wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .hero__content {
        max-width: 100%;
        text-align: center;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__image-container {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero__image-wrapper {
        transform: none;
    }

    /* About Grid responsive for tablets */
    .about__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about__images {
        min-height: 350px;
        margin-bottom: 1rem;
        order: 2;
    }

    .about__content {
        order: 1;
    }

    .about__image-card--primary {
        width: 60%;
    }

    .about__image-card--secondary {
        width: 55%;
    }

    .about__content {
        text-align: center;
    }

    .about__subtitle::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Header tablet/mobile fixes - start hamburger menu at 1100px */
    .header {
        min-height: 60px;
        height: 60px;
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 16px;
        gap: 10px;
        height: 60px;
    }

    .nav__brand {
        flex: 0 0 auto;
        order: 1;
        margin-left: 8px;
    }

    .nav__brand h1 {
        display: none;
    }

    .nav__logo {
        height: 40px;
    }

    .nav__toggle {
        display: flex;
        order: 0;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
    }

    .nav__menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        height: auto;
        max-height: calc(100vh - 60px);
        max-height: calc(100dvh - 60px);
        background: white;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1rem 1.25rem;
        padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        gap: 0;
        white-space: normal;
        z-index: 9999;
        overflow-y: auto;
        justify-content: flex-start;
        align-items: stretch;
        /* Hidden by default */
        visibility: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: transform 0.25s ease, visibility 0.25s ease, opacity 0.25s ease;
    }

    .nav__menu.active {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .nav__item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav__item:last-of-type {
        border-bottom: none;
    }

    .nav__link {
        width: 100%;
        text-align: left;
        padding: 0.85rem 0.5rem;
        font-size: 0.95rem;
    }

    .nav__actions {
        order: 2;
        gap: 8px;
        margin-left: auto;
        flex-shrink: 0;
        overflow: visible;
    }

    .nav__contact-btn {
        display: inline-flex;
        height: 30px;
        padding: 0 0.5rem;
        font-size: 0.7rem;
        border-radius: 50px;
    }

    .lang-dropdown__toggle {
        padding: 0.25rem;
        min-width: auto;
        height: 30px;
        width: 30px;
        font-size: 0.75rem;
        justify-content: center;
    }

    .lang-dropdown__text {
        display: none;
    }

    .lang-dropdown__arrow {
        display: none;
    }

    .lang-dropdown__flag {
        font-size: 1.1rem;
    }

    .lang-dropdown__menu {
        right: -10px;
    }

    /* Hero mobile fixes */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero__content {
        padding: 0 10px;
    }

    .hero__badge {
        padding: 0.4rem 1rem;
    }

    .hero__badge-text {
        font-size: 0.8rem;
        white-space: nowrap;
    }

    .hero__title {
        font-size: 1.75rem;
        padding: 0 5px;
    }

    .hero__subtitle {
        font-size: 0.95rem;
        padding: 0 5px;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 0 10px;
    }

    .hero__cta {
        width: 100%;
        max-width: 280px;
    }

    /* Fix hero stats overflow on mobile */
    .hero__stats {
        flex-wrap: wrap;
        gap: 1rem 1.5rem;
        padding: 1.5rem 0;
        margin-top: 2rem;
    }

    .hero__stat {
        flex: 1 1 auto;
        min-width: 80px;
    }

    .hero__stat-number {
        font-size: 1.75rem;
    }

    .hero__stat-label {
        font-size: 0.75rem;
    }

    .hero__stat-divider {
        display: none;
    }

    /* Features mobile */
    .features__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Contact mobile */
    .contact__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer mobile */
    .footer .container {
        padding: 0 24px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer__top {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer__disclaimers {
        flex-direction: column;
        gap: 16px;
    }

    .footer__social {
        gap: 16px;
    }

    .footer__social-link {
        width: 40px;
        height: 40px;
    }

    .footer__social-link img {
        width: 100%;
        height: 100%;
    }

    .footer__divider {
        display: block;
        width: 100%;
        height: 1px;
        background: rgba(245, 245, 245, 0.15);
        margin: 24px 0;
    }

    .footer__contact {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 0 0 24px;
        border-bottom: none;
        position: relative;
        padding-bottom: 100px;
    }

    .footer__contact-item {
        flex: 0 0 auto;
        cursor: pointer;
    }

    .footer__contact-item .footer__contact-info {
        display: none;
    }

    .footer__contact-item--active .footer__contact-icon {
        border-color: #C3FFA8;
        background: rgba(195, 255, 168, 0.1);
    }

    .footer__contact-item--active .footer__contact-info {
        display: block;
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        text-align: center;
    }

    .footer__contact-icon {
        width: 56px;
        height: 56px;
        transition: border-color 0.3s ease, background 0.3s ease;
    }

    .footer__donate-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #C3FFA8;
        color: #012120;
        border-radius: 50px;
        padding: 14px 32px;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        font-size: 16px;
        text-decoration: none;
        transition: background 0.3s ease;
        margin-top: 16px;
    }

    .footer__donate-btn:hover {
        background: #93E270;
    }

    /* Typography */
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.35rem;
    }
}

/* Tablet and large phones - 768px breakpoint */
@media (max-width: 768px) {

    /* Reset overflow on mobile - show all items in mobile menu */
    .nav--overflow .nav__item--overflow {
        display: block !important;
    }

    .nav__more {
        display: none !important;
    }

    /* Hero improvements for mobile */
    .hero {
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero__wrapper {
        gap: 2rem;
    }

    .hero__content {
        padding: 0 0.5rem;
    }

    .hero__title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero__subtitle {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .hero__actions {
        flex-wrap: wrap;
    }

    .hero__cta {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .hero__supporting {
        margin-top: 1.5rem;
    }

    .hero__supporting-text {
        font-size: 0.8rem;
    }

    .hero__badge {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .hero__badge-text {
        font-size: 0.75rem;
        white-space: normal;
        text-align: center;
    }

    /* Hide decorative elements on mobile to prevent overlap */
    .hero__decoration,
    .hero__particles {
        display: none;
    }

    .hero__scroll-indicator {
        display: none;
    }

    /* Hero image - properly sized on mobile */
    .hero__image-container {
        max-width: 100%;
        padding: 0;
    }

    .hero__image-wrapper {
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .hero__image {
        aspect-ratio: 16/10;
    }

    /* About section images - stack properly */
    .about__images {
        min-height: 280px;
        margin-bottom: 2rem;
    }

    .about__image-card--primary,
    .about__image-card--secondary {
        position: relative;
        width: 100%;
        margin-bottom: 1rem;
    }

    .about__image-card--secondary {
        margin-bottom: 0;
    }

    .about__title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    h3.about__subtitle {
        font-size: 1.3rem;
        margin-top: 1.5rem;
    }

    .about__description {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    /* Features grid for tablets */
    .features__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card__title {
        font-size: 1.1rem;
    }

    /* Contact section improvements */
    .contact__form {
        padding: 1.5rem;
    }

    .contact__info {
        padding: 1.5rem;
    }

    /* Typography */
    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    /* Container padding */
    .container {
        padding: 0 1rem;
    }

    /* Section padding */
    .features,
    .about,
    .contact {
        padding: 60px 0;
    }

    .features__title,
    .about__title,
    .contact__title {
        margin-bottom: 2rem;
    }

    /* Transparency section tablet fixes */
    .about__content>.about__text>div[style] {
        padding: 1.25rem !important;
        margin-top: 1.5rem !important;
    }

    .about__content>.about__text>div[style]>div>div {
        flex-wrap: wrap !important;
    }
}

@media (max-width: 480px) {

    /* Hero small mobile */
    .hero {
        padding: 70px 0 30px;
    }

    .hero__title {
        font-size: 1.3rem;
        line-height: 1.3;
    }

    .hero__subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
    }

    .hero__cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
        width: 100%;
        text-align: center;
    }

    .hero__actions {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .hero__stats {
        justify-content: center;
        gap: 0.75rem 1.25rem;
        padding: 1rem 0.5rem;
    }

    .hero__stat-number {
        font-size: 1.5rem;
    }

    .hero__stat-label {
        font-size: 0.7rem;
    }

    /* Sections small mobile */
    .features,
    .about,
    .contact {
        padding: 40px 0;
    }

    .features__title,
    .about__title,
    .contact__title {
        font-size: 1.35rem;
        margin-bottom: 1.5rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-card__icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .feature-card__title {
        font-size: 1rem;
    }

    .feature-card__description {
        font-size: 0.9rem;
    }

    .contact__form,
    .contact__info {
        padding: 1rem;
        border-radius: 12px;
    }

    .contact__info-title {
        font-size: 1.1rem;
    }

    /* About section small mobile */
    .about__subtitle {
        font-size: 1.15rem !important;
        margin-top: 1.5rem;
    }

    h4.about__subtitle {
        font-size: 1rem !important;
    }

    .about__description {
        font-size: 0.9rem;
        line-height: 1.65;
        margin-bottom: 1.25rem;
    }

    /* Transparency section small mobile */
    .about__content>.about__text>div {
        padding: 0.875rem !important;
        border-radius: 10px !important;
        margin-top: 1rem !important;
    }

    .about__content>.about__text>div>div {
        gap: 0.75rem !important;
    }

    .about__content>.about__text>div>div>div {
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
    }

    .about__content>.about__text>div>div>div>span:first-child {
        font-size: 1.25rem !important;
    }

    /* Ensure text doesn't overflow on small screens */
    .hero__badge {
        max-width: 100%;
    }

    .hero__badge-text {
        white-space: normal;
        line-height: 1.4;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {

    .header,
    .footer__social,
    .hero__cta,
    .contact__submit,
    .nav__lang-toggle {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .container {
        max-width: none;
        padding: 0;
    }

    .hero {
        background: none;
        color: black;
        min-height: auto;
        padding: 2rem 0;
    }

    .hero__title,
    .hero__subtitle {
        color: black;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

@media (prefers-contrast: high) {
    .hero__cta {
        border: 2px solid white;
    }

    .nav__lang-toggle,
    .contact__submit {
        border: 2px solid white;
    }

    .feature-card {
        border: 2px solid var(--color-gray-dark);
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .hero {
        animation: none;
    }

    .hero__cta--primary {
        animation: none;
    }
}

/* ============================================
   OUR PROJECTS SECTION
   ============================================ */

.projects {
    padding: 100px 0;
    background: linear-gradient(180deg, #F3F4F6 0%, #EEF2FF 50%, #F3F4F6 100%);
    position: relative;
    overflow: hidden;
}

.projects::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.15), transparent);
}

.projects__title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    position: relative;
}

.projects__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    border-radius: 2px;
    margin: 1rem auto 0;
}

.projects__subtitle {
    text-align: center;
    font-size: 1.15rem;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

.projects__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Project Card */
.project-card {
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(30, 58, 138, 0.15);
}

/* Featured Card */
.project-card--featured {
    border: 1px solid rgba(30, 58, 138, 0.1);
    position: relative;
}

.project-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary), var(--color-primary));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

/* Card Header */
.project-card__header {
    padding: 1.5rem 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(22, 163, 74, 0.08));
    border: 1px solid rgba(30, 58, 138, 0.12);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-primary);
}

.project-card__badge-icon {
    font-size: 0.95rem;
}

/* Card Body */
.project-card__body {
    padding: 1.5rem 2rem 2rem;
}

.project-card__logo-area {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.project-card__logo-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.project-card__logo-img {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.project-card__name {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0;
    letter-spacing: -0.02em;
}

.project-card__tagline {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-secondary);
    letter-spacing: 0.01em;
}

.project-card__description {
    font-size: 1rem;
    color: var(--color-gray);
    line-height: 1.7;
}

/* Features List */
.project-card__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.project-card__feature {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #F8FAFC, #F1F5F9);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    color: var(--color-gray-dark);
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-fast);
}

.project-card__feature:hover {
    background: linear-gradient(135deg, #EEF2FF, #E0E7FF);
    border-color: rgba(30, 58, 138, 0.1);
    transform: translateY(-1px);
}

.project-card__feature-icon {
    font-size: 1rem;
}

/* Card Actions */
.project-card__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.project-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    color: white;
    text-decoration: none;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.25);
    position: relative;
    overflow: hidden;
}

.project-card__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.project-card__cta:hover::before {
    left: 100%;
}

.project-card__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.35);
}

.project-card__cta svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.project-card__cta:hover svg {
    transform: translate(2px, -2px);
}

.project-card__url {
    font-size: 0.875rem;
    color: var(--color-gray);
    font-weight: 500;
}

/* Projects Section Responsive */
@media (max-width: 768px) {
    .projects {
        padding: 60px 0;
    }

    .projects__title {
        font-size: 2rem;
    }

    .projects__subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .project-card__body {
        padding: 1.25rem 1.5rem 1.5rem;
    }

    .project-card__header {
        padding: 1.25rem 1.5rem 0;
    }

    .project-card__name {
        font-size: 1.5rem;
    }

    .project-card__features {
        gap: 0.5rem;
    }

    .project-card__feature {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }

    .project-card__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .project-card__cta {
        width: 100%;
        justify-content: center;
    }

    .project-card__url {
        text-align: center;
        width: 100%;
    }
}

/* Touch Targets for Mobile */
@media (hover: none) and (pointer: coarse) {

    .nav__link,
    .hero__cta,
    .contact__submit,
    .nav__lang-toggle,
    .footer__social-link,
    .project-card__cta {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ============================================================
   REDESIGNED HEADER + HERO (overrides earlier rules)
   ============================================================ */

:root {
    --hc-bg: #062F2A;
    --hc-bg-deep: #04241F;
    --hc-panel: #0B3F37;
    --hc-text: #F1F5F4;
    --hc-text-dim: #B6CFC9;
    --hc-accent: #9CFFB5;
    --hc-accent-strong: #B6FF9C;
    --hc-accent-dim: rgba(156, 255, 181, 0.18);
    --hc-border: rgba(156, 255, 181, 0.22);
}

.header {
    position: fixed;
    inset: 0 0 auto 0;
    height: auto;
    background: rgba(6, 47, 42, 0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: none;
    padding: 10px 0;
    z-index: 1000;
    transition: background 0.25s ease, padding 0.25s ease;
}

.header.scrolled {
    background: rgba(4, 36, 31, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    padding: 8px 0;
}

.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: auto;
    gap: 24px;
}

.nav__brand {
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav__brand-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.nav__logo {
    height: 32px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.nav__logo--mobile {
    display: none;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-self: center;
}

.nav__link {
    position: relative;
    color: var(--hc-text);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s ease;
}

.nav__link--active,
.nav__link.active {
    color: var(--hc-accent);
}

.nav__link--active::after,
.nav__link.active::after {
    width: 70%;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-self: end;
}

.lang-dropdown {
    position: relative;
    display: inline-block;
}

.lang-dropdown__toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: #F5F5F5;
    outline: none;
    transition: background 0.2s ease;
}

.lang-dropdown__toggle:focus,
.lang-dropdown__toggle:focus-visible,
.lang-dropdown__toggle:active {
    outline: none;
    box-shadow: none;
}

.lang-dropdown__toggle:hover {
    background: rgba(245, 245, 245, 0.08);
    border-radius: 30px;
}

.lang-dropdown__flag {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    flex-shrink: 0;
}

.lang-dropdown__chevron {
    color: #F5F5F5;
    transition: transform 0.3s ease;
}

.lang-dropdown.active .lang-dropdown__chevron {
    transform: rotate(180deg);
}

.lang-dropdown__menu {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 91px;
    height: 102px;
    list-style: none;
    margin: 0;
    padding: 5px 10px 5px 5px;
    background: #20B87BCC;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1000;
}

.lang-dropdown.active .lang-dropdown__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown__option {
    background: transparent;
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    border-radius: 90.97px;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, transform 0.2s ease;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.lang-dropdown__option:focus,
.lang-dropdown__option:focus-visible,
.lang-dropdown__option:active {
    outline: none;
    box-shadow: none;
}

.lang-dropdown__option .lang-dropdown__flag {
    width: 100%;
    height: 100%;
}

.lang-dropdown__option.active {
    width: 40px;
    height: 40px;
    border: 2px solid #C3FFA8;
    border-radius: 90.97px;
    opacity: 1;
}

.lang-dropdown__option:hover {
    transform: scale(1.05);
}

.btn-donate {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7.5px;
    min-width: 200px;
    height: 60px;
    padding: 8px 30px;
    background: #C3FFA8;
    color: #012120;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
    text-decoration: none;
    border-radius: 15px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-donate:hover {
    transform: translateY(-1px);
    background: #d4ffbf;
    box-shadow: 0 10px 24px rgba(195, 255, 168, 0.25);
}

.btn-donate__icon {
    color: #012120;
}

/* Hero -------------------------------------------------------- */

.hero {
    display: block;
    position: relative;
    background: var(--hc-bg);
    color: var(--hc-text);
    min-height: 100vh;
    padding: 100px 0 240px;
    overflow: visible;
    box-sizing: border-box;
    text-align: left;
}

.hero::before,
.hero::after {
    content: none;
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: url('images/Background.png') center center / cover no-repeat;
}

.hero__container {
    position: relative;
    z-index: 1;
    overflow: visible;
}

/* Hero entrance animations */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes heroScaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

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

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

@keyframes heroSealPop {
    0% { opacity: 0; transform: scale(0.4) rotate(-30deg); }
    60% { opacity: 1; transform: scale(1.1) rotate(10deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

@keyframes heroSealPopCentered {
    0% { opacity: 0; transform: translateX(-50%) scale(0.4) rotate(-30deg); }
    60% { opacity: 1; transform: translateX(-50%) scale(1.1) rotate(10deg); }
    100% { opacity: 1; transform: translateX(-50%) scale(1) rotate(0deg); }
}

.hero__badge {
    opacity: 0;
    animation: heroFadeUp 0.6s ease both;
    animation-delay: 0.1s;
}

.hero__title {
    opacity: 0;
    animation: heroFadeUp 0.7s ease both;
    animation-delay: 0.25s;
}

.hero__lede {
    opacity: 0;
    animation: heroFadeUp 0.6s ease both;
    animation-delay: 0.45s;
}

.hero__highlight {
    opacity: 0;
    animation: heroFadeUp 0.6s ease both;
    animation-delay: 0.6s;
}

.hero__actions {
    opacity: 0;
    animation: heroFadeUp 0.6s ease both;
    animation-delay: 0.75s;
}

.hero__seal {
    opacity: 0;
    animation: heroSealPop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation-delay: 0.2s;
}

.hero__photo--main {
    opacity: 0;
    animation: heroSlideLeft 0.7s ease both;
    animation-delay: 0.7s;
}

.hero__photo--top {
    opacity: 0;
    animation: heroSlideRight 0.6s ease both;
    animation-delay: 1.1s;
}

.hero__photo--bottom {
    opacity: 0;
    animation: heroSlideRight 0.6s ease both;
    animation-delay: 1.3s;
}

.hero__stats {
    opacity: 0;
    animation: heroFadeUp 0.7s ease both;
    animation-delay: 1s;
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
    align-items: start;
    width: 100%;
}

.hero__content {
    max-width: 560px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 10px 20px;
    background: linear-gradient(90deg, rgba(195, 255, 168, 0.3) 0%, rgba(2, 34, 31, 0.3) 100%);
    box-shadow: 0px 4px 4px 0px #011C1A;
    border: none;
    border-radius: 30px;
    color: #9FFE74;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero__badge-icon {
    color: #9FFE74;
}

.hero__title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(2.2rem, 4.6vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.5px;
    margin: 0 0 28px;
    text-transform: uppercase;
    color: var(--hc-text);
}

.hero__title-line {
    display: block;
}

.hero__title-line--accent {
    color: var(--hc-accent);
}

.hero__lede {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 300;
    font-size: 28px;
    line-height: 110%;
    letter-spacing: 0;
    color: #F5F5F5;
    margin: 0 0 24px;
}

.hero__highlight {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #9FFE74;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: -0.02em;
    margin: 0 0 32px;
}

.hero__highlight svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn__icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.btn--primary {
    gap: 7.5px;
    min-width: 229.5px;
    height: 60px;
    padding: 7.5px 37.5px;
    border-radius: 15px;
    background: #C3FFA8;
    color: #012120;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
}

.btn--primary:hover {
    background: #d4ffbf;
    transform: translateY(-1px);
}

.btn--ghost {
    gap: 7.5px;
    min-width: 240.5px;
    height: 60px;
    padding: 7.5px 37.5px;
    border-radius: 15px;
    border: none;
    background: #0E5750;
    color: #F5F5F5;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 110%;
}

.btn--ghost:hover {
    background: #12665e;
    transform: translateY(-1px);
}

/* Hero media (3-image collage) */

.hero__media {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    width: 100%;
    max-width: 600px;
    height: 500px;
    margin-left: auto;
}

.hero__photo {
    position: relative;
    margin: 0;
    border-radius: 20px;
    overflow: visible;
    background: none;
    box-shadow: none;
}

.hero__photo img:not(.hero__seal) {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
}

.hero__photo--main {
    grid-column: 1;
    grid-row: 1 / span 2;
}

.hero__photo--top {
    grid-column: 2;
    grid-row: 1;
}

.hero__photo--bottom {
    grid-column: 2;
    grid-row: 2;
}

.hero__seal {
    position: absolute;
    top: -90px;
    left: -90px;
    width: 220px;
    height: 220px;
    pointer-events: none;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.45));
    z-index: 2;
}

/* Hero stats bar */

.hero__stats-wrapper {
    position: absolute;
    bottom: -68px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1670px;
    z-index: 10;
}

.hero__stats-arrow {
    display: none;
}

.hero__stats {
    position: relative;
    padding: 30px 100px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 136px;
    box-sizing: border-box;
    background: #001C1A;
    box-shadow: 0px -2px 0px 0px #073732;
    border: none;
    border-radius: 30px;
    opacity: 1;
    animation: none;
    margin: 0;
    gap: 0;
}

.hero__stat {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.hero__stat-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    padding: 20px;
    border-radius: 50px;
    border: 1px solid #C3FFA8;
    background: none;
    color: var(--hc-accent);
    box-sizing: content-box;
}

.hero__stat-number {
    font-family: 'Special Gothic Expanded One', 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 110%;
    color: #C3FFA8;
}

.hero__stat-label {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 110%;
    color: #F5F5F5;
    margin-top: 4px;
}

/* Hero responsive — tablet */

@media (max-width: 960px) {
    .nav {
        display: flex;
        justify-content: space-between;
    }

    .nav__menu {
        display: none;
    }

    .hero {
        height: auto;
        max-height: none;
        padding: 80px 0 80px;
    }

    .hero__container {
        display: block;
        overflow: visible;
    }

    .hero__grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 32px;
    }

    .hero__media {
        order: -1;
        min-height: 280px;
        max-height: 360px;
    }

    .hero__content {
        max-width: 100%;
        text-align: left;
    }

    .hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero__stats-wrapper {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: calc(100% - 32px);
        max-width: none;
        margin: 40px auto 0;
        z-index: 2;
    }

    .hero__stats {
        padding: 24px 32px;
        height: auto;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
    }
}

/* Hero responsive — mobile */

@media (max-width: 560px) {
    .header {
        padding: 8px 0;
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        position: relative;
    }

    .nav__logo {
        height: 24px;
    }

    .nav__logo--desktop {
        display: none !important;
    }

    .nav__logo--mobile {
        display: block !important;
        height: 24px;
        width: auto;
        filter: none;
    }

    .nav__brand {
        position: static;
        z-index: 10001;
        gap: 0;
    }

    .nav .lang-dropdown {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 10001;
    }

    .nav .lang-dropdown__menu {
        left: 50%;
        transform: translateX(-50%) translateY(-8px);
    }

    .nav .lang-dropdown.active .lang-dropdown__menu {
        transform: translateX(-50%) translateY(0);
    }

    .nav__actions {
        display: none;
    }

    .nav__toggle {
        display: flex;
        order: 10;
        border: 2.5px solid #0E5750;
        border-radius: 10px;
        background: transparent;
        width: 44px;
        height: 44px;
    }

    .nav__toggle-icon,
    .nav__toggle-icon::before,
    .nav__toggle-icon::after {
        background-color: #C3FFA8;
    }

    .hero {
        padding: 110px 0 80px;
    }

    .hero__grid {
        gap: 24px;
    }

    .hero__media {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        grid-template-rows: minmax(0, 1fr) minmax(0, 1fr);
        gap: 8px;
        max-width: 100%;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        max-height: 460px;
        min-height: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .hero__photo--main {
        grid-column: 1;
        grid-row: 1 / span 2;
        animation: mobileSlideLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both !important;
        animation-delay: 0.2s !important;
    }

    .hero__photo--top {
        grid-column: 2;
        grid-row: 1;
        animation: mobileSlideRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both !important;
        animation-delay: 0.4s !important;
    }

    .hero__photo--bottom {
        grid-column: 2;
        grid-row: 2;
        animation: mobileSlideRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both !important;
        animation-delay: 0.6s !important;
    }

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

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

    .hero__seal {
        width: 130px;
        height: 130px;
        top: -55px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 5;
        animation-name: heroSealPopCentered !important;
    }

    .hero__badge {
        font-size: 14px;
        padding: 6px 14px;
        gap: 8px;
        margin-bottom: 16px;
    }

    .hero__badge-icon {
        width: 16px;
        height: 16px;
    }

    .hero__title {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }

    .hero__lede {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .hero__highlight {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .hero__highlight svg {
        width: 16px;
        height: 16px;
    }

    .hero__actions {
        flex-direction: row;
        gap: 10px;
    }

    .btn--primary,
    .btn--ghost {
        min-width: 0;
        flex: 1;
        height: 48px;
        padding: 7px 16px;
        font-size: 14px;
        border-radius: 12px;
        white-space: nowrap;
    }

    .btn__icon {
        width: 20px;
        height: 20px;
    }

    .hero__stats-wrapper {
        position: relative !important;
        transform: none !important;
        bottom: auto !important;
        left: auto !important;
        width: auto !important;
        max-width: none;
        margin: 24px 12px 0;
        z-index: 2;
    }

    .hero__stats {
        padding: 20px 48px;
        height: auto !important;
        border-radius: 20px;
        display: flex !important;
        flex-wrap: nowrap;
        gap: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        opacity: 1 !important;
        animation: none !important;
        scrollbar-width: none;
        justify-content: flex-start !important;
    }

    .hero__stats::-webkit-scrollbar {
        display: none;
    }

    .hero__stat {
        flex: 0 0 100%;
        min-width: 0;
        gap: 14px;
        scroll-snap-align: center;
        justify-content: center;
    }

    .hero__content {
        text-align: left;
    }

    .hero__stat-icon {
        width: 32px;
        height: 32px;
        padding: 14px;
    }

    .hero__stat-number {
        font-size: 28px;
    }

    .hero__stat-label {
        font-size: 14px;
    }

    .hero__stats-arrow {
        display: flex;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        color: rgba(195, 255, 168, 0.5);
        font-size: 18px;
        cursor: pointer;
        z-index: 3;
        padding: 0;
        transition: color 0.2s;
    }

    .hero__stats-arrow:hover {
        color: #C3FFA8;
    }

    .hero__stats-arrow--prev {
        left: 10px;
    }

    .hero__stats-arrow--next {
        right: 10px;
    }

    /* Mobile nav overlay */
    .header {
        z-index: 10001;
    }

    .nav__menu.active {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        max-height: none !important;
        background: rgba(4, 36, 31, 0.97);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        z-index: 10000;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 0;
        margin: 0;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        overflow-y: auto;
        box-shadow: none !important;
    }

    .nav__menu.active .nav__item {
        list-style: none;
        border-bottom: none;
    }

    .nav__menu.active .nav__link {
        font-size: 22px;
        font-family: 'Outfit', 'Inter', sans-serif;
        font-weight: 400;
        color: #F5F5F5;
        padding: 28px 0;
        display: block;
        text-align: center;
        letter-spacing: 0.02em;
    }

    .nav__menu.active .nav__link--active,
    .nav__menu.active .nav__link.active {
        color: #C3FFA8;
    }

    .nav__menu.active .nav__link--active::after,
    .nav__menu.active .nav__link.active::after {
        content: '';
        display: block;
        width: 40px;
        height: 2px;
        background: #4A9E7F;
        margin: 8px auto 0;
        left: auto;
        position: static;
        transform: none;
    }

    .nav__toggle {
        z-index: 10002;
    }

    .nav__toggle.active {
        border: 2.5px solid #0E5750;
        border-radius: 50%;
        width: 40px;
        height: 40px;
    }

    /* About section mobile */
    .about__grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
    }

    .about__images {
        position: relative !important;
        min-height: auto !important;
        order: 2 !important;
        display: flex !important;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-bottom: 0;
        gap: 16px;
        padding: 16px 0;
    }

    .about__images::-webkit-scrollbar {
        display: none;
    }

    .about__image-card {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        flex: 0 0 100% !important;
        width: 100% !important;
        border-radius: 16px;
        opacity: 1 !important;
        transform: none !important;
        box-shadow: 0px 0px 80px 30px rgba(23, 119, 110, 0.08);
        scroll-snap-align: center;
    }

    .about__image-card--primary,
    .about__image-card--secondary {
        display: block !important;
    }

    .about__image {
        aspect-ratio: 16/10;
    }

    .about__carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 16px 0;
        order: 4 !important;
        width: 100%;
    }

    .about__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #D9D9D9;
        cursor: pointer;
    }

    .about__dot--active {
        background: #0E5750;
    }

    .about__content {
        display: contents !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .about__title {
        font-size: 2rem !important;
        margin-bottom: 0.5rem !important;
        order: 1 !important;
        text-align: center !important;
        width: 100%;
    }

    .about__badge {
        margin-bottom: 1rem;
        order: 2 !important;
    }

    .about__images {
        order: 3 !important;
    }

    .about__text {
        order: 5 !important;
    }

    .about__read-more {
        order: 6 !important;
    }

    .about__description {
        font-size: 16px;
    }

    .about__description--extra {
        display: none;
    }

    .about__text.expanded .about__description--extra {
        display: block;
    }

    .about__ellipsis {
        display: block;
        text-align: center;
        font-size: 24px;
        color: #012120;
        letter-spacing: 4px;
        margin-bottom: 8px;
    }

    .about__text.expanded .about__ellipsis {
        display: none;
    }

    .about__read-more {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 0 auto;
        background: none;
        border: none;
        font-family: 'Outfit', sans-serif;
        font-size: 18px;
        font-weight: 600;
        color: #012120;
        cursor: pointer;
        padding: 8px 0;
    }

    .about__read-more-icon {
        display: none;
    }

    .about__read-more.expanded .about__read-more-icon {
        display: none;
    }

    .howwehelp {
        padding: 44px 0;
    }

    .howwehelp__title {
        font-size: 1.75rem;
        margin-bottom: 0.25rem;
    }

    .howwehelp__badge {
        margin-bottom: 1.5rem;
    }

    .howwehelp {
        overflow: hidden;
    }

    .howwehelp__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        gap: 0;
        padding: 10px 0;
    }

    .howwehelp__grid::-webkit-scrollbar {
        display: none;
    }

    .howwehelp__card {
        flex: 0 0 calc(100% - 32px);
        scroll-snap-align: center;
        height: auto;
        margin: 0 16px;
        box-shadow: 0px 4px 20px 0px rgba(18, 104, 96, 0.12);
    }

    .howwehelp__dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }

    .howwehelp__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .howwehelp__dot--active {
        background: #17776E;
    }

    .worldprojects {
        padding: 24px 0;
        overflow: hidden;
    }

    .worldprojects .container {
        max-width: 100%;
        padding: 0 16px;
    }

    .worldprojects__layout {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .worldprojects__intro {
        padding: 24px 20px;
    }

    .worldprojects__title {
        font-size: 24px;
    }

    .worldprojects__desc {
        font-size: 16px;
    }

    .worldprojects__cards {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        gap: 16px;
        padding: 10px 0;
    }

    .worldprojects__cards::-webkit-scrollbar {
        display: none;
    }

    .worldprojects__card {
        flex: 0 0 calc(100% - 32px);
        scroll-snap-align: center;
    }

    .worldprojects__cta {
        width: 100%;
        flex-shrink: 0;
        padding: 24px 20px;
        min-height: 380px;
        scroll-snap-align: center;
        flex: 0 0 calc(100% - 32px);
    }

    .worldprojects__cta-title {
        font-size: 26px;
        max-width: 62%;
    }

    .worldprojects__cta-desc {
        font-size: 14px;
        max-width: 55%;
    }

    .worldprojects__cta-btn {
        align-self: flex-start;
        margin-top: auto;
    }

    .worldprojects__cta-bg {
        right: -10%;
        width: 80%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    .worldprojects__dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 12px;
    }

    .worldprojects__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .worldprojects__dot--active {
        background: #17776E;
    }

    .contribution {
        padding: 24px 0;
    }

    .contribution .container {
        padding: 0 16px;
    }

    .contribution__banner {
        flex-direction: column;
        gap: 16px;
        border-radius: 20px;
        padding: 0 0 24px;
        text-align: center;
        overflow: hidden;
    }

    .contribution__photo {
        order: -1;
        width: 100%;
        border-radius: 0;
    }

    .contribution__photo-img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .contribution__icon-main {
        width: 56px;
        height: 56px;
        border-width: 2px;
        flex-shrink: 0;
        margin: -28px 0 0 20px;
        z-index: 2;
    }

    .contribution__logo {
        width: 36px;
        height: 36px;
    }

    .contribution__content {
        align-items: flex-start;
        padding: 0 20px;
        gap: 8px;
    }

    .contribution__title {
        font-size: 16px;
        white-space: normal;
        padding: 0;
        text-align: left;
    }

    .contribution__desc {
        font-size: 14px;
        text-align: left;
    }

    .contribution__icons {
        gap: 16px;
        justify-content: center;
    }

    .contribution__item-icon {
        width: 56px;
        height: 56px;
        cursor: pointer;
        transition: transform 0.2s ease, background 0.2s ease;
    }

    .contribution__item-icon.active {
        background: #C3FFA8;
        border: 2.5px solid #17776E;
    }

    .contribution__item-icon.active .contribution__item-img {
        filter: brightness(0) saturate(100%) invert(28%) sepia(50%) saturate(700%) hue-rotate(140deg);
    }

    .contribution__item-icon svg {
        width: 22px;
        height: 22px;
    }

    .contribution__icon-label {
        display: none !important;
        font-family: 'Outfit', sans-serif;
        font-weight: 300;
        font-size: 20px;
        line-height: 110%;
        color: #012120;
        text-align: center;
        background: #C3FFA8;
        border-radius: 10px;
        padding: 5px 15px;
        margin: 0 20px;
        min-height: 0;
        transition: opacity 0.3s ease;
    }

    .contribution__icon-label.visible {
        display: block !important;
    }
}