:root {
    --forest: #1a3a2a;
    --moss: #2d5a3d;
    --sage: #4a7c59;
    --leaf: #6aaa7a;
    --mist: #c8dfc0;
    --cream: #f5f0e8;
    --warm: #e8dcc8;
    --gold: #c9933a;
    --amber: #e8a84a;
    --white: #faf9f6;
    --dark: #0f1f17;
    --text: #2a3d2f;
    --light-text: #6b8c72;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(74, 124, 89, 0.15);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.7rem 1.5rem;
    background: rgba(245, 240, 232, 0.98);
    box-shadow: 0 2px 20px rgba(26, 58, 42, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;

}

#logo-img {
    height: 100px;
    width: 100px;
    margin-left: 2rem;
}

.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--forest);
    line-height: 1;
}

.logo-sub {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage);
    display: block;
    margin-top: 2px;
}

.nav-links {
    display: none;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.03em;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 100%;
    height: 1.5px;
    background: var(--sage);
    transition: right 0.3s ease;
}

.nav-links a:hover::after {
    right: 0;
}

.nav-links a:hover {
    color: var(--sage);
}

.nav-ctas {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

.btn-volunteer {
    padding: 0.55rem 1.2rem;
    border: 1.5px solid var(--forest);
    background: transparent;
    color: var(--forest);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-volunteer:hover {
    background: var(--forest);
    color: var(--white);
}

.btn-donate {
    padding: 0.55rem 1.2rem;
    background: var(--gold);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
    box-shadow: 0 2px 12px rgba(201, 147, 58, 0.35);
}

.btn-donate:hover {
    background: var(--amber);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(201, 147, 58, 0.45);
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--forest);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--forest);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.18, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--cream);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}

.mobile-menu a:hover {
    color: var(--amber);
}

.mobile-menu-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 80%;
    max-width: 300px;
    margin-top: 1rem;
}

.mobile-menu .btn-volunteer {
    border-color: var(--mist);
    color: var(--mist);
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 0.9rem;
}

.mobile-menu .btn-volunteer:hover {
    background: var(--mist);
    color: var(--forest);
}

.mobile-menu .btn-donate {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    padding: 0.9rem;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background-image: url(assets/backgrounds/children.jpg);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 7rem 1.5rem 4rem;
}

/* 
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(106, 170, 122, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(201, 147, 58, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(45, 90, 61, 0.3) 0%, transparent 60%);
    pointer-events: none;
} */

/* .hero-leaf {
    position: absolute;
    font-size: 8rem;
    opacity: 0.04;
    pointer-events: none;
} */

.hero-leaf:nth-child(1) {
    top: 10%;
    right: 5%;
    font-size: 14rem;
    transform: rotate(20deg);
}

.hero-leaf:nth-child(2) {
    bottom: 15%;
    left: 2%;
    font-size: 10rem;
    transform: rotate(-30deg);
    opacity: 0.03;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(106, 170, 122, 0.15);
    border: 1px solid rgba(106, 170, 122, 0.3);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--leaf);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease both;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.7s 0.1s ease both;
}

.hero h1 span {
    color: var(--amber);
    display: block;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--mist);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.7s 0.2s ease both;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s 0.3s ease both;
}

.hero .btn-volunteer {
    border-color: var(--mist);
    color: var(--mist);
    font-size: 0.9rem;
    padding: 0.85rem 2rem;
}

.hero .btn-volunteer:hover {
    background: var(--mist);
    color: var(--forest);
}

.hero .btn-donate {
    font-size: 0.9rem;
    padding: 0.85rem 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 4rem;
    animation: fadeInUp 0.7s 0.4s ease both;
    border-top: 1px solid rgba(106, 170, 122, 0.2);
    padding-top: 2.5rem;
}

.stat {
    text-align: center;
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 900;
    color: var(--amber);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--mist);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.3rem;
    opacity: 0.8;
}

/* ===== SECTION BASE ===== */
section {
    padding: 5rem 1.5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage);
    border-left: 3px solid var(--sage);
    padding-left: 0.7rem;
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--forest);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.section-title span {
    color: var(--sage);
}

.section-desc {
    font-size: 1rem;
    color: var(--light-text);
    line-height: 1.75;
    max-width: 560px;
    font-weight: 300;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ===== WHAT WE DO ===== */
.what-we-do {
    background: var(--cream);
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 3rem;
}

.wwd-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(74, 124, 89, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wwd-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage), var(--leaf));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.wwd-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 58, 42, 0.1);
}

.wwd-card:hover::before {
    transform: scaleX(1);
}

.wwd-icon {
    width: 52px;
    height: 52px;
    background: var(--cream);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.wwd-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 0.6rem;
}

.wwd-desc {
    font-size: 0.9rem;
    color: var(--light-text);
    line-height: 1.65;
    font-weight: 300;
}

/* ===== FOUNDER ===== */
.founder {
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

.founder::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: -1rem;
    font-family: 'Playfair Display', serif;
    font-size: 18rem;
    color: rgba(106, 170, 122, 0.06);
    line-height: 1;
    pointer-events: none;
    font-weight: 900;
}

.founder-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.founder-image-wrap {
    display: flex;
    justify-content: center;
}

.founder-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--moss), var(--leaf));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    border: 5px solid rgba(201, 147, 58, 0.4);
    box-shadow: 0 0 0 12px rgba(106, 170, 122, 0.08);
    position: relative;
    overflow: hidden;
}

.founder-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.founder-content .section-label {
    color: var(--leaf);
    border-color: var(--leaf);
}

.founder-content .section-title {
    color: var(--white);
}

.founder-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-style: italic;
    color: var(--mist);
    line-height: 1.6;
    margin: 1.5rem 0;
    font-weight: 400;
}

.founder-bio {
    font-size: 0.95rem;
    color: rgba(200, 223, 192, 0.8);
    line-height: 1.75;
    font-weight: 300;
}

.founder-name {
    margin-top: 1.5rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--amber);
    letter-spacing: 0.05em;
}

.founder-role {
    font-size: 0.8rem;
    color: var(--leaf);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ===== VOLUNTEERS ===== */
.volunteers {
    background: var(--white);
}

.volunteer-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.vol-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.vol-card {
    background: var(--cream);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.vol-card:hover {
    border-color: var(--sage);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74, 124, 89, 0.12);
}

.vol-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--forest), var(--sage));
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 3px solid var(--mist);
}

.vol-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--forest);
    margin-bottom: 0.2rem;
}

.vol-role {
    font-size: 0.75rem;
    color: var(--sage);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.6rem;
}

.vol-desc {
    font-size: 0.8rem;
    color: var(--light-text);
    line-height: 1.5;
    font-weight: 300;
}

.vol-join-banner {
    margin-top: 2.5rem;
    background: linear-gradient(135deg, var(--forest), var(--moss));
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.vol-join-banner h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 900;
    margin-bottom: 0.6rem;
    color: var(--white);
}

.vol-join-banner p {
    font-size: 0.9rem;
    color: var(--mist);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

/* ===== OUR WORK ===== */
.our-work {
    background: var(--cream);
}

.work-tabs {
    display: flex;
    gap: 0.5rem;
    margin: 2rem 0;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
}

.work-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    border: 1.5px solid rgba(74, 124, 89, 0.25);
    background: transparent;
    color: var(--light-text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.tab-btn.active {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}

.tab-btn:hover:not(.active) {
    border-color: var(--sage);
    color: var(--sage);
}

.work-panels {
    position: relative;
}

.work-panel {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.work-panel.active {
    display: block;
}

.work-card-big {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 30px rgba(26, 58, 42, 0.08);
}

.work-card-img {
    height: 200px;
    background: linear-gradient(135deg, var(--forest), var(--sage));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    position: relative;
    overflow: hidden;
}

.work-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(15, 31, 23, 0.5));
}

.work-card-body {
    padding: 1.8rem;
}

.work-tag {
    display: inline-block;
    background: var(--mist);
    color: var(--forest);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.work-card-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 0.8rem;
}

.work-card-body p {
    font-size: 0.9rem;
    color: var(--light-text);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.work-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    border-top: 1px solid rgba(74, 124, 89, 0.1);
    padding-top: 1.5rem;
}

.work-stat {
    text-align: center;
}

.work-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--sage);
}

.work-stat-label {
    font-size: 0.7rem;
    color: var(--light-text);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

/* ===== IMPACT / TESTIMONIALS ===== */
.impact {
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

.impact-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(201, 147, 58, 0.08), transparent 60%);
    pointer-events: none;
}

.impact-inner {
    position: relative;
    z-index: 1;
}

.impact .section-label {
    color: var(--leaf);
    border-color: var(--leaf);
}

.impact .section-title {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(106, 170, 122, 0.15);
    border-radius: 20px;
    padding: 1.8rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(106, 170, 122, 0.3);
}

.testimonial-stars {
    color: var(--amber);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--mist);
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sage), var(--leaf));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 2px solid rgba(201, 147, 58, 0.3);
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}

.author-detail {
    font-size: 0.75rem;
    color: var(--leaf);
    font-weight: 500;
}

/* ===== GET INVOLVED ===== */
.get-involved {
    background: var(--white);
}

.involved-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.involved-card {
    border-radius: 24px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.involved-card.volunteer-card {
    background: var(--cream);
    border: 2px solid rgba(74, 124, 89, 0.2);
}

.involved-card.donate-card {
    background: var(--forest);
    color: var(--white);
}

.involved-card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

.involved-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
}

.volunteer-card h3 {
    color: var(--forest);
}

.donate-card h3 {
    color: var(--white);
}

.involved-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    font-weight: 300;
}

.volunteer-card p {
    color: var(--light-text);
}

.donate-card p {
    color: var(--mist);
}

.involved-card .btn-volunteer,
.involved-card .btn-donate {
    font-size: 0.9rem;
    padding: 0.85rem 2rem;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 31, 23, 0.7);
    backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 420px;
    transform: translateY(30px) scale(0.97);
    transition: all 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.open .modal {
    transform: translateY(0) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--forest);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--light-text);
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--forest);
}

.modal-subtitle {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 300;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 0.4rem;
    letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(74, 124, 89, 0.2);
    border-radius: 12px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    background: var(--white);
    transition: border-color 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.donate-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.amount-btn {
    padding: 0.65rem;
    border: 1.5px solid rgba(74, 124, 89, 0.2);
    border-radius: 10px;
    background: transparent;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
}

.amount-btn.selected,
.amount-btn:hover {
    background: var(--forest);
    color: var(--white);
    border-color: var(--forest);
}

.form-submit {
    width: 100%;
    padding: 1rem;
    border-radius: 14px;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s;
    margin-top: 0.5rem;
}

.form-submit.donate-submit {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(201, 147, 58, 0.35);
}

.form-submit.volunteer-submit {
    background: var(--forest);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(26, 58, 42, 0.2);
}

.form-submit:hover {
    transform: translateY(-1px);
    filter: brightness(1.05);
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    padding: 3rem 1.5rem 2rem;
    color: rgba(200, 223, 192, 0.7);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(106, 170, 122, 0.1);
    margin-bottom: 2rem;
}

.footer-brand .logo-text {
    color: var(--white);
    font-size: 1.5rem;
}

.footer-brand .logo-sub {
    color: var(--leaf);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.65;
    color: rgba(200, 223, 192, 0.6);
    margin-top: 1rem;
    font-weight: 300;
    max-width: 280px;
}

.footer-col h4 {
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: rgba(200, 223, 192, 0.6);
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
    font-weight: 300;
}

.footer-col a:hover {
    color: var(--leaf);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    text-align: center;
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(200, 223, 192, 0.4);
    font-weight: 300;
}

.footer-socials {
    display: flex;
    gap: 0.8rem;
}

.social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(106, 170, 122, 0.1);
    border: 1px solid rgba(106, 170, 122, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--leaf);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.social-btn:hover {
    background: var(--sage);
    color: var(--white);
    border-color: var(--sage);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 600px) {
    .what-we-do-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vol-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .involved-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1000px) {
    nav {
        padding: 1.2rem 3rem;
    }

    nav.scrolled {
        padding: 0.8rem 3rem;
    }

    .nav-links {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .what-we-do-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .vol-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .founder-inner {
        grid-template-columns: 1fr 1.6fr;
        gap: 5rem;
    }

    .footer-top {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    section {
        padding: 7rem 3rem;
    }

    .hero {
        padding: 7rem 3rem 5rem;
    }
}