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

:root {
    --green-dark: #1a472a;
    --green-mid: #2d6a4f;
    --green-light: #52b788;
    --green-pale: #b7e4c7;
    --cream: #f5f0e8;
    --earth: #8b6f47;
    --earth-light: #c9a96e;
    --sky: #87ceeb;
    --white: #ffffff;
    --shadow: rgba(26, 71, 42, 0.15);
}

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

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    color: #333;
    overflow-x: hidden;
    background: var(--cream);
}

@keyframes fadeInUp {
    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 fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

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

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

@keyframes grassSway {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

@keyframes cloudDrift {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(calc(100vw + 100%)); }
}

@keyframes butterfly {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0; }
    10% { opacity: 1; }
    25% { transform: translate(30px, -40px) rotate(10deg) scale(1.1); }
    50% { transform: translate(-20px, -80px) rotate(-5deg) scale(1); }
    75% { transform: translate(40px, -40px) rotate(8deg) scale(0.9); }
    90% { opacity: 1; }
    100% { transform: translate(60px, 0) rotate(0deg) scale(0); opacity: 0; }
}

@keyframes ripple {
    0% { transform: scale(0); opacity: 0.6; }
    100% { transform: scale(4); opacity: 0; }
}

@keyframes beeFly {
    0% { transform: translate(-80px, var(--fly-offset)) rotate(0deg) scale(1); opacity: 0; }
    5% { opacity: 1; }
    20% { transform: translate(calc(20vw - 40px), calc(var(--fly-offset) - 30px)) rotate(-10deg) scale(1.05); }
    40% { transform: translate(calc(40vw - 40px), calc(var(--fly-offset) + 20px)) rotate(8deg) scale(0.95); }
    60% { transform: translate(calc(60vw - 40px), calc(var(--fly-offset) - 25px)) rotate(-6deg) scale(1.02); }
    80% { transform: translate(calc(80vw - 40px), calc(var(--fly-offset) + 15px)) rotate(5deg) scale(0.98); }
    95% { opacity: 1; }
    100% { transform: translate(calc(105vw - 40px), calc(var(--fly-offset) - 10px)) rotate(0deg) scale(1); opacity: 0; }
}

@keyframes beeWingFlap {
    0%, 100% { transform: rotate(30deg) scaleY(1); }
    50% { transform: rotate(30deg) scaleY(0.5); }
}

@keyframes beeWingFlapLeft {
    0%, 100% { transform: rotate(-30deg) scaleY(1); }
    50% { transform: rotate(-30deg) scaleY(0.5); }
}

.bee-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 9999;
    --fly-offset: 0;
    opacity: 0;
    will-change: transform;
}

.bee-body {
    position: relative;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform: rotate(90deg);
}

.bee-left-wing {
    position: absolute;
    top: 5px;
    left: 12px;
    width: 22px;
    height: 16px;
    background: rgba(180, 220, 255, 0.7);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-30deg);
    animation: beeWingFlapLeft 0.03s ease-in-out infinite;
    transform-origin: right center;
    border: 1px solid rgba(150, 200, 240, 0.5);
    will-change: transform;
}

.bee-right-wing {
    position: absolute;
    top: 5px;
    right: 12px;
    width: 22px;
    height: 16px;
    background: rgba(180, 220, 255, 0.7);
    border-radius: 50% 50% 0 50%;
    transform: rotate(30deg);
    animation: beeWingFlap 0.03s ease-in-out infinite;
    transform-origin: left center;
    border: 1px solid rgba(150, 200, 240, 0.5);
    will-change: transform;
}

.bee-torso {
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 40px;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 50% 50% 45% 45%;
    overflow: hidden;
}

.bee-stripe {
    position: absolute;
    width: 100%;
    height: 6px;
    background: #f5c842;
}

.bee-stripe:nth-child(1) { top: 6px; }
.bee-stripe:nth-child(2) { top: 16px; }
.bee-stripe:nth-child(3) { top: 26px; }

.bee-stinger {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid #1a1a1a;
}

.bee-head {
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 18px;
    background: #1a1a1a;
    border-radius: 50%;
}

.bee-eye {
    position: absolute;
    width: 4px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    top: 6px;
}

.bee-eye.left { left: 3px; }
.bee-eye.right { right: 3px; }

.bee-eye::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 50%;
    top: 1px;
    left: 1px;
}

.bee-antenna {
    position: absolute;
    top: 14px;
    width: 2px;
    height: 10px;
    background: #1a1a1a;
    border-radius: 1px;
}

.bee-antenna.left {
    left: 16px;
    transform: rotate(-30deg);
}

.bee-antenna.right {
    right: 16px;
    transform: rotate(30deg);
}

.bee-antenna::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #f5c842;
    border-radius: 50%;
}

.bee-leg {
    position: absolute;
    width: 2px;
    height: 8px;
    background: #1a1a1a;
    top: 35px;
}

.bee-leg.left-1 { left: 18px; transform: rotate(40deg); }
.bee-leg.left-2 { left: 18px; top: 42px; transform: rotate(50deg); }
.bee-leg.left-3 { left: 18px; top: 49px; transform: rotate(45deg); }
.bee-leg.right-1 { right: 18px; transform: rotate(-40deg); }
.bee-leg.right-2 { right: 18px; top: 42px; transform: rotate(-50deg); }
.bee-leg.right-3 { right: 18px; top: 49px; transform: rotate(-45deg); }

@keyframes borderDance {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* NAV */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 71, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 0 2rem;
    animation: slideDown 0.6s ease;
    transition: box-shadow 0.3s, padding 0.3s;
}

#navbar.scrolled {
    box-shadow: 0 4px 30px var(--shadow);
    padding: 0 1.5rem;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-icon {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--green-pale);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.25rem 0;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-light);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--green-light) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(82, 183, 136, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: transform 0.3s, opacity 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* HERO */
.hero {
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, var(--sky) 0%, #a8d8ea 40%, var(--green-pale) 60%, var(--green-mid) 100%);
}

.hero-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    pointer-events: none;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 100px;
    filter: blur(2px);
}

.cloud::before, .cloud::after {
    content: '';
    position: absolute;
    background: inherit;
    border-radius: 50%;
}

.cloud-1 {
    width: 120px;
    height: 40px;
    top: 10%;
    animation: cloudDrift 25s linear infinite;
}

.cloud-1::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 20px;
}

.cloud-1::after {
    width: 70px;
    height: 70px;
    top: -35px;
    left: 45px;
}

.cloud-2 {
    width: 160px;
    height: 50px;
    top: 20%;
    animation: cloudDrift 35s linear infinite;
    animation-delay: -10s;
}

.cloud-2::before {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 30px;
}

.cloud-2::after {
    width: 80px;
    height: 80px;
    top: -40px;
    left: 55px;
}

.cloud-3 {
    width: 100px;
    height: 35px;
    top: 5%;
    animation: cloudDrift 30s linear infinite;
    animation-delay: -20s;
}

.cloud-3::before {
    width: 45px;
    height: 45px;
    top: -22px;
    left: 15px;
}

.cloud-3::after {
    width: 60px;
    height: 60px;
    top: -30px;
    left: 35px;
}

.hero-grass {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    overflow: hidden;
}

.grass-blade {
    position: absolute;
    bottom: 0;
    width: 8px;
    background: linear-gradient(to top, var(--green-dark), var(--green-mid));
    border-radius: 50% 50% 0 0;
    transform-origin: bottom center;
    animation: grassSway 2s ease-in-out infinite;
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease 0.5s both;
}

.hero h1 {
    font-size: clamp(4.0rem, 7vw, 5rem);
    color: var(--white);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease 0.7s both;
}

.hero h1 span {
    display: inline-block;
    background: linear-gradient(90deg, var(--green-light), var(--earth-light), var(--green-light));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease 0.9s both;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.1s both;
}

.btn-primary {
    background: var(--green-light);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.6s, height 0.6s;
    transform: translate(-50%, -50%);
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(82, 183, 136, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: float 2s ease-in-out infinite;
    z-index: 10;
}

.scroll-indicator a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 2rem;
}

/* SECTIONS */
section {
    padding: 6rem 2rem;
}

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

.section-header .tag {
    display: inline-block;
    background: var(--green-light);
    color: var(--white);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--green-dark);
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* STATS BAR */
.stats-bar {
    background: var(--green-dark);
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--green-light);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--green-pale);
    margin-top: 0.5rem;
}

/* ABOUT */
#about {
    background: var(--white);
}

.about-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-inner {
    text-align: center;
    color: var(--white);
    padding: 2rem;
}

.about-image-inner .emoji-large {
    font-size: 5rem;
    display: block;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.about-image-inner p {
    font-size: 1.2rem;
    font-weight: 700;
}

.about-image::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    animation: borderDance 6s linear infinite;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--green-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--cream);
    border-radius: 12px;
    font-weight: 600;
    color: var(--green-dark);
    font-size: 0.95rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow);
}

.about-feature .icon {
    font-size: 1.3rem;
}

/* FEATURED CAMPAIGNS */
#campa
aigns {
    background: var(--cream);
}

.headline-campaign {
    max-width: 1100px;
    margin: 0 auto 4rem;
    background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
    border-radius: 24px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.headline-campaign::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.headline-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.headline-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    color: var(--green-pale);
    font-size: 0.85rem;
    font-weight: 700;
    width: fit-content;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.headline-badge .dot {
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.headline-content h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.headline-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.progress-bar-container {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    height: 12px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--green-light), var(--earth-light));
    border-radius: 10px;
    width: 68%;
    position: relative;
    overflow: hidden;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 600;
}

.headline-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 3rem;
}

.visual-circle {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-circle::before {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.1);
    animation: borderDance 10s linear infinite;
}

.visual-circle .emoji-large {
    font-size: 6rem;
    animation: float 4s ease-in-out infinite;
}

.campaigns-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.campaign-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
}

.campaign-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--green-light), var(--earth-light), var(--green-mid));
    background-size: 200% 200%;
    animation: borderDance 3s ease infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.campaign-card:hover::before {
    opacity: 1;
}

.campaign-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow);
}

.card-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
}

.card-image-1 { background: linear-gradient(135deg, #e8d5b7, #c9a96e); }
.card-image-2 { background: linear-gradient(135deg, #b7e4c7, #52b788); }
.card-image-3 { background: linear-gradient(135deg, #87ceeb, #4a9bd9); }

.card-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-urgent { background: #ff6b6b; color: white; }
.status-active { background: var(--green-light); color: white; }
.status-new { background: var(--earth-light); color: white; }

.card-body {
    padding: 1.5rem;
}

.card-body h4 {
    font-size: 1.15rem;
    color: var(--green-dark);
    margin-bottom: 0.75rem;
}

.card-body p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--green-mid);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: gap 0.3s, color 0.3s;
}

.card-link:hover {
    gap: 0.8rem;
    color: var(--green-dark);
}

/* GET INVOLVED / CONTACT */
#get-involved {
    background: linear-gradient(180deg, var(--green-dark) 0%, #0d2818 100%);
    position: relative;
    overflow: hidden;
}

#get-involved .section-header h2 {
    color: var(--white);
}

#get-involved .section-header p {
    color: var(--green-pale);
}

#get-involved .section-header .tag {
    background: var(--green-light);
}

.butterflies {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.butterfly {
    position: absolute;
    font-size: 1.5rem;
    animation: butterfly 8s ease-in-out infinite;
}

.butterfly:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 10s; }
.butterfly:nth-child(2) { left: 30%; animation-delay: -3s; animation-duration: 12s; }
.butterfly:nth-child(3) { left: 60%; animation-delay: -6s; animation-duration: 9s; }
.butterfly:nth-child(4) { left: 80%; animation-delay: -2s; animation-duration: 11s; }

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    display: block;
    color: var(--green-pale);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--green-light);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(82, 183, 136, 0.15);
}

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

.captcha-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    transition: border-color 0.3s;
}

.captcha-box.success {
    border-color: var(--green-light);
    background: rgba(82, 183, 136, 0.1);
}

.captcha-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.captcha-checkbox.checked {
    background: var(--green-light);
    border-color: var(--green-light);
}

.captcha-checkbox.checked::after {
    content: '✓';
    color: white;
    font-weight: 900;
    font-size: 1rem;
}

.captcha-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.captcha-text strong {
    color: var(--green-light);
}

.captcha-math {
    background: rgba(82, 183, 136, 0.15);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-weight: 700;
    color: var(--green-light);
    font-size: 0.95rem;
}

.captcha-input-row {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.captcha-input-row input {
    width: 70px;
    text-align: center;
    padding: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.captcha-input-row input:focus {
    border-color: var(--green-light);
}

.form-submit {
    width: 100%;
    padding: 1.1rem;
    background: linear-gradient(135deg, var(--green-light), var(--green-mid));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.form-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.6s, height 0.6s;
    transform: translate(-50%, -50%);
}

.form-submit:hover::before {
    width: 400px;
    height: 400px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(82, 183, 136, 0.3);
}

.form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.6s ease;
}

.form-success .check {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.form-success h3 {
    color: var(--green-light);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--green-pale);
}

/* FOOTER */
footer {
    background: #0a1f13;
    color: var(--green-pale);
    padding: 3rem 2rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-brand .logo-icon {
    animation: float 3s ease-in-out infinite;
}

.footer-brand span {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: var(--green-pale);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--green-light);
}

.footer-copy {
    font-size: 0.9rem;
    color: rgba(183, 228, 199, 0.5);
}

/* MOBILE */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        top: 0px;
        left: 0;
        right: 0;
        background: rgba(26, 71, 42, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-120%);
        transition: transform 0.4s ease;
        overflow: hidden;
        pointer-events: none;
    }

    .nav-links.open {
        transform: translateY(0);
        pointer-events: auto;
    }

    .hamburger {
        display: flex;
    }

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

    .headline-campaign {
        grid-template-columns: 1fr;
    }

    .headline-visual {
        padding: 2rem;
    }

    .campaigns-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-bar {
        gap: 2rem;
    }

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

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    section {
        padding: 4rem 1.25rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}