/* ========================================
   TERRE VIVANTE - ECO ASSOCIATION REDESIGN
   Emotional, Clean, Impactful Design
   ======================================== */

:root {
    /* Nature Palette */
    --green: #2D8F5F;
    --green-light: #4ABA7D;
    --green-dark: #1E5E3F;
    --blue: #3B82B0;
    --orange: #E07C39;

    /* Neutral */
    --cream: #FDFBF7;
    --light-gray: #F5F5F0;
    --dark: #1A2E1A;
    --text: #3A3A3A;
    --text-light: #6B6B6B;

    /* Typography */
    --font-display: 'Fraunces', serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing */
    --section-padding: 7rem 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    color: var(--dark);
    font-weight: 600;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
    font-size: 1.4rem;
}

h4 {
    font-size: 1.1rem;
}

p {
    color: var(--text);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========================================
   WATERMARK
   ======================================== */
.watermark {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(45, 143, 95, 0.15);
    text-transform: uppercase;
    pointer-events: none;
    z-index: 9999;
    writing-mode: vertical-rl;
}

/* ========================================
   NAVIGATION
   ======================================== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.4s;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.logo-icon i {
    width: 20px;
    height: 20px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.nav-links a:hover {
    color: var(--green);
}

.btn-donate {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--green);
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-donate:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(45, 143, 95, 0.3);
}

.btn-donate i {
    width: 18px;
    height: 18px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(26, 46, 26, 0.5) 0%,
            rgba(26, 46, 26, 0.7) 100%);
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 2rem;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.hero h1 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero h1 .highlight {
    color: var(--green-light);
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.hero-stat {
    text-align: center;
}

.hero-stat .stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--green-light);
}

.hero-stat .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: var(--green);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1rem;
}

.btn-primary:hover {
    background: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(45, 143, 95, 0.4);
}

.btn-outline {
    padding: 1rem 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1rem;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--green-light);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        opacity: 0;
    }
}

/* ========================================
   URGENCY BAND
   ======================================== */
.urgency-band {
    background: var(--dark);
    padding: 1rem 0;
    overflow: hidden;
}

.urgency-content {
    display: flex;
    gap: 4rem;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}

.urgency-content span {
    font-size: 0.9rem;
    color: #fff;
    letter-spacing: 1px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========================================
   SECTION LABELS & HEADERS
   ======================================== */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.section-label.light {
    color: rgba(255, 255, 255, 0.6);
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.centered {
    text-align: center;
}

.section-header h2 {
    max-width: 600px;
}

.section-header.centered h2 {
    margin: 0 auto;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-section {
    padding: var(--section-padding);
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.img-main {
    width: 80%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.img-secondary {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 50%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 5px solid #fff;
}

.floating-card {
    position: absolute;
    top: 30px;
    right: 50px;
    background: var(--green);
    color: #fff;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
}

.floating-card .big-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.floating-card span {
    font-size: 0.85rem;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content>p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.value-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.value-icon {
    color: var(--green);
    flex-shrink: 0;
}

.value-icon i {
    width: 24px;
    height: 24px;
}

.value-item strong {
    display: block;
    color: var(--dark);
    margin-bottom: 0.2rem;
}

.value-item span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--green);
    font-weight: 600;
}

.btn-text i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.btn-text:hover i {
    transform: translateX(5px);
}

/* ========================================
   ACTIONS SECTION
   ======================================== */
.actions-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.action-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
}

.action-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.action-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.action-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.action-card:hover .action-image img {
    transform: scale(1.05);
}

.action-icon {
    position: absolute;
    bottom: -25px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.action-icon i {
    width: 24px;
    height: 24px;
}

.action-icon.green {
    background: var(--green);
}

.action-icon.blue {
    background: var(--blue);
}

.action-icon.orange {
    background: var(--orange);
}

.action-content {
    padding: 2.5rem 2rem 2rem;
}

.action-content h3 {
    margin-bottom: 1rem;
}

.action-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.action-stats {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.action-stats li {
    font-size: 0.85rem;
    color: var(--text-light);
}

.action-stats strong {
    color: var(--dark);
}

.action-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--green);
    font-weight: 600;
    font-size: 0.9rem;
}

.action-link i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.action-link:hover i {
    transform: translateX(5px);
}

/* ========================================
   IMPACT SECTION
   ======================================== */
.impact-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.impact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.impact-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 46, 26, 0.85);
}

.impact-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: #fff;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.impact-content h2 {
    color: #fff;
    margin-bottom: 3rem;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.impact-item {
    text-align: center;
}

.impact-item i {
    width: 40px;
    height: 40px;
    color: var(--green-light);
    margin-bottom: 1rem;
}

.impact-num {
    display: block;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.impact-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.btn-white {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #fff;
    color: var(--green-dark);
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ========================================
   PROJECTS SECTION
   ======================================== */
.projects-section {
    padding: var(--section-padding);
    background: #fff;
}

.projects-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-outline-dark {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--dark);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
}

.btn-outline-dark:hover {
    background: var(--dark);
    color: #fff;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--light-gray);
    border-radius: 16px;
    overflow: hidden;
}

.project-image {
    position: relative;
    min-height: 280px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.4rem 1rem;
    background: var(--orange);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.project-badge.urgent {
    background: #DC3545;
}

.project-badge.new {
    background: var(--green);
}

.project-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.project-location i {
    width: 14px;
    height: 14px;
}

.project-content h3 {
    margin-bottom: 0.8rem;
}

.project-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.project-progress {
    margin-bottom: 1.5rem;
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}

.progress-bar {
    height: 8px;
    background: #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--green);
    border-radius: 4px;
    transition: width 1s ease-out;
}

.project-cta {
    margin-top: auto;
    padding: 0.8rem 1.5rem;
    background: var(--dark);
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 8px;
}

.project-cta:hover {
    background: var(--green);
}

/* ========================================
   TEAM SECTION
   ======================================== */
.team-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.member-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    margin-bottom: 0.3rem;
}

.member-role {
    display: block;
    font-size: 0.85rem;
    color: var(--green);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.team-member p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: var(--section-padding);
    background: #fff;
}

.testimonial-large {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 8rem;
    color: var(--green-light);
    line-height: 0.5;
    opacity: 0.3;
}

.testimonial-large blockquote {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ========================================
   PARTNERS SECTION
   ======================================== */
.partners-section {
    padding: 4rem 0;
    background: var(--light-gray);
    text-align: center;
}

.partners-section h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-family: var(--font-body);
    font-weight: 500;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #bbb;
    letter-spacing: 2px;
}

/* ========================================
   DONATION SECTION
   ======================================== */
.donate-section {
    padding: var(--section-padding);
    background: var(--cream);
}

.donate-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
}

.donate-content {
    padding: 4rem;
}

.donate-content h2 {
    margin-bottom: 1rem;
}

.donate-content>p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.donation-amounts {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.amount-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #eee;
    background: #fff;
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.amount-btn:hover,
.amount-btn.active {
    border-color: var(--green);
    background: var(--green);
    color: #fff;
}

.amount-custom {
    padding: 0.8rem 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    width: 120px;
    font-size: 1rem;
    outline: none;
}

.amount-custom:focus {
    border-color: var(--green);
}

.donation-type {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--green);
}

.btn-donate-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    width: 100%;
    padding: 1.2rem;
    background: var(--green);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 1.5rem;
}

.btn-donate-large:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
}

.btn-donate-large i {
    width: 20px;
    height: 20px;
}

.security-badges {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.security-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.security-badges i {
    width: 18px;
    height: 18px;
    color: var(--green);
}

.donate-image {
    position: relative;
}

.donate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(45, 143, 95, 0.95);
    color: #fff;
    padding: 1.5rem;
    text-align: center;
}

.image-caption strong {
    display: block;
    font-size: 1.2rem;
}

.image-caption span {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ========================================
   FOOTER
   ======================================== */
footer {
    background: var(--dark);
    color: #fff;
    padding: 5rem 0 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-brand .logo-icon {
    background: var(--green);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--green);
    border-color: var(--green);
}

.social-links i {
    width: 18px;
    height: 18px;
}

.footer-links h4,
.footer-newsletter h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--green-light);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem;
    color: #fff;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    background: var(--green);
    border: none;
    padding: 0 1.5rem;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--green-light);
}

.newsletter-form button i {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: var(--green-light);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .actions-grid {
        grid-template-columns: 1fr 1fr;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .donate-card {
        grid-template-columns: 1fr;
    }

    .donate-image {
        height: 300px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        text-align: center;
    }

    .actions-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        grid-template-columns: 1fr;
    }

    .project-image {
        min-height: 200px;
    }

    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .impact-num {
        font-size: 2.2rem;
    }

    .donate-content {
        padding: 2rem;
    }

    .testimonial-large blockquote {
        font-size: 1.3rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand .logo,
    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .partners-logos {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-stat .stat-num {
        font-size: 2rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
    }

    .donation-amounts {
        justify-content: center;
    }

    .amount-custom {
        width: 100%;
    }

    .team-member {
        padding: 0 1rem;
    }
}