/* ====================== ROOT & GLOBAL RESET ====================== */
:root {
    --foundation-green: #7ed957;
    --foundation-purple: #3d07a8;
    --foundation-cream: #faf8f2;
    --text-dark: #1f2937;
    --text-gray: #374151;
    --text-light: #f3f4f6;
}

/* Critical Mobile Gap Fix */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    max-width: 100%;
    overflow-x: hidden !important;
}

/* Global Container Protection */
.container {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
}

/* ====================== HEADER ====================== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    width: 100% !important;
}

/* Single Clean Rule for .container.nav */
.container.nav {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0.85rem 1rem !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-sizing: border-box;
}

/* Mobile - Very Tight Padding */
@media (max-width: 480px) {
    .container.nav {
        padding-left: 0.85rem !important;
        padding-right: 0.85rem !important;
    }
}

/* Tablet */
@media (min-width: 481px) and (max-width: 1024px) {
    .container.nav {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    .container.nav {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

/* ====================== Logo ====================== */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

.logo img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    flex-shrink: 0;
}

.logo-text {
    line-height: 1.1;
}

.full-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--foundation-purple);
    margin: 0;
    display: none;
}

.short-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--foundation-purple);
    margin: 0;
    display: block;
}

.logo-text small {
    font-size: 0.78rem;
    color: #6b7280;
    font-weight: 600;
    display: block;
    margin-top: 2px;
}

/* Show full name only on very large screens */
@media (min-width: 1280px) {
    .full-name { display: block; }
    .short-name { display: none; }
    .logo img { width: 72px; height: 72px; }
}

/* ====================== Desktop Navigation ====================== */
.nav-links {
    display: none;
    align-items: center;
    gap: 1.6rem;
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s;
}

.nav-links a:hover {
    color: var(--foundation-green);
}

/* Donate Button */
.btn-nav {
    background-color: var(--foundation-green);
    color: var(--foundation-purple);
    padding: 0.85rem 1.75rem;
    border-radius: 9999px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
}

/* ====================== Mobile Menu Button ====================== */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    font-size: 1.6rem;
    background: none;
    border: none;
    color: var(--foundation-purple);
    cursor: pointer;
    z-index: 1010;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* ====================== Mobile Menu ====================== */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 1.25rem;
    gap: 1.1rem;
}

.mobile-menu-content a {
    font-size: 1.1rem;
    padding: 0.5rem 0;
    color: #374151;
    text-decoration: none;
}

.mobile-donate-btn {
    background: var(--foundation-green);
    color: var(--foundation-purple);
    text-align: center;
    padding: 1rem;
    border-radius: 9999px;
    font-weight: 700;
    margin-top: 1rem;
}

/* ====================== Hero Section ====================== */
.hero-section {
    position: relative;
    min-height: 100vh;           /* Full viewport height */
    display: flex;
    align-items: center;
    background-color: var(--foundation-purple);
    overflow: hidden;
    padding-top: 5px;            /* Space for sticky header */
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: brightness(0.9) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(61, 7, 168, 0.88) 0%,
        rgba(61, 7, 168, 0.78) 40%,
        rgba(61, 7, 168, 0.65) 60%,
        rgba(126, 217, 87, 0.25) 100%
    );
    z-index: 2;
}

/* .hero-content {
    position: relative;
    z-index: 10;
    width: 100% !important;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
} */

.hero-content {
    position: relative;
    z-index: 10;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    padding: 2rem 1rem 4rem !important;     /* Very tight */
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    box-sizing: border-box;
}

/* ====================== Mobile-First Typography ====================== */
.hero-inner {
    color: white;
    max-width: 100%;
}

.hero-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(126, 217, 87, 0.2);
    color: var(--foundation-green);
    border: 1px solid rgba(126, 217, 87, 0.4);
    border-radius: 9999px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 8.5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-highlight {
    color: var(--foundation-green);
    font-style: italic;
}

.hero-desc {
    font-size: clamp(1.1rem, 4.5vw, 1.25rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.hero-btn-primary,
.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.3s ease;
    min-height: 25px;           /* Better touch target */
}

.hero-btn-primary {
    background: var(--foundation-green);
    color: var(--foundation-purple);
}

.hero-btn-primary:hover {
    background: white;
    transform: translateY(-3px);
}

.hero-btn-secondary {
    border: 2px solid white;
    color: white;
}

.hero-btn-secondary:hover {
    background: white;
    color: var(--foundation-purple);
}

.hero-icon {
    margin-right: 10px;
    font-size: 1.3rem;
}

/* ====================== Image + Stats Container ====================== */
.hero-image-container {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 1.25rem;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    aspect-ratio: 4 / 5;
    border: 8px solid rgba(255,255,255,0.15);
}

/* Stat Badges - Better positioning on mobile */
.stat-badge {
    position: absolute;
    background: white;
    border-radius: 1rem;
    padding: 1rem 1.2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 0.9rem;
    backdrop-filter: blur(8px);
    font-size: 0.95rem;
}

.stat-primary {
    top: 8%;
    left: -10%;
}

.stat-accent {
    bottom: 12%;
    right: -8%;
}

.stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.stat-primary .stat-icon { background: rgba(126, 217, 87, 0.15); color: var(--foundation-green); }
.stat-accent .stat-icon  { background: rgba(61, 7, 168, 0.12); color: var(--foundation-purple); }

.stat-number {
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    line-height: 1.3;
    color: #374151;
}

/* ====================== Scroll Indicator ====================== */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    animation: bounce 2.5s infinite;
    display: none;                    /* Hidden on small phones by default */
}

@media (min-height: 700px) {
    .hero-scroll { display: block; }
}

.hero-scroll-icon {
    width: 2.2rem;
    height: 2.2rem;
    color: rgba(255,255,255,0.75);
}

/* ====================== Desktop Improvements ====================== */
@media (min-width: 1024px) {
    .hero-content {
        grid-template-columns: 1.1fr 0.9fr;
        padding: 5rem 2.5rem 7rem !important;     
        gap: 5rem;
        max-width: 1480px !important;
        margin: 0 auto !important;
    }

    /* .hero-content {
        padding: 5rem 2rem 7rem !important;
        max-width: 1480px !important;
        margin: 0 auto !important;
    } */
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-image-container {
        max-width: 520px;
        margin: 0;
    }
    
    .stat-primary { top: 12%; left: -12%; }
    .stat-accent  { bottom: 15%; right: -12%; }
}

/* ====================== Mission & Vision Section ====================== */
.mv-section {
    padding: 5.5rem 0 6rem;
    background-color: var(--foundation-cream);
}

.mv-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.mv-grid {
    display: grid;
    gap: 3.5rem;
    align-items: center;
}

@media (min-width: 992px) {
    .mv-grid {
        grid-template-columns: 1fr 1.1fr;
    }
}

/* Image Wrapper */
.mv-image-wrapper {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}

.mv-image-bg {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    width: 7.5rem;
    height: 7.5rem;
    background: rgba(126, 217, 87, 0.25);
    border-radius: 9999px;
    z-index: 0;
}

.mv-image {
    position: relative;
    z-index: 10;
    width: 100%;
    height: auto;
    border-radius: 1.25rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    aspect-ratio: 5 / 4;
    object-fit: cover;
}

/* Quote */
.mv-quote {
    position: absolute;
    bottom: -1.25rem;
    right: -1rem;
    background: var(--foundation-purple);
    color: white;
    padding: 1.4rem 1.6rem;
    border-radius: 1rem;
    box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.15);
    z-index: 20;
    max-width: 260px;
}

.mv-quote-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.45;
    margin: 0;
}

/* Text Content */
.mv-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.section-tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(126, 217, 87, 0.15);
    color: var(--foundation-green);
    font-weight: bolder;
    font-size: 0.95rem;
    border-radius: 9999px;
    margin-bottom: 0.5rem;
}

.mv-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.1rem, 5.5vw, 2.8rem);
    font-weight: 700;
    color: var(--foundation-purple);
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.mv-subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--foundation-purple);
    margin-bottom: 1rem;
}

.mv-green {
    color: var(--foundation-green);
}

.mv-desc {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #374151;
}

/* Link */
.mv-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--foundation-purple);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.mv-link:hover {
    color: var(--foundation-green);
    gap: 0.9rem;
}

.mv-link-icon {
    transition: transform 0.3s ease;
}

.mv-link:hover .mv-link-icon {
    transform: translateX(6px);
}

/* Mobile Adjustments */
@media (max-width: 640px) {
    .mv-section {
        padding: 4.5rem 0;
    }
    
    .mv-quote {
        position: static;
        margin-top: 1.5rem;
        max-width: 100%;
    }
    
    .mv-image-wrapper {
        margin-bottom: 1rem;
    }
}

/* ====================== Stats / Impact Section ====================== */
.stats-section {
    padding: 5rem 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.stats-bg-top {
    position: absolute;
    top: -4rem;
    left: -6rem;
    width: 18rem;
    height: 18rem;
    background: rgba(126, 217, 87, 0.08);
    border-radius: 9999px;
    z-index: 1;
}

.stats-bg-bottom {
    position: absolute;
    bottom: -6rem;
    right: -8rem;
    width: 22rem;
    height: 22rem;
    background: rgba(61, 7, 168, 0.06);
    border-radius: 9999px;
    z-index: 1;
}

.stats-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 2;
}

.stats-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.stats-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(126, 217, 87, 0.15);
    color: var(--foundation-green);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 9999px;
    margin-bottom: 0.75rem;
}

.stats-main-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.1rem, 5.5vw, 2.75rem);
    font-weight: 700;
    color: var(--foundation-purple);
    margin: 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.stats-card {
    background: var(--foundation-cream);
    padding: 2.25rem 1.75rem;
    border-radius: 1.25rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(126, 217, 87, 0.1);
    position: relative;
    z-index: 2;
}

.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
    border-color: var(--foundation-green);
}

.stats-number {
    font-size: clamp(2.4rem, 6vw, 3.4rem);
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.75rem;
    color: var(--foundation-purple);
}

.stats-green {
    color: var(--foundation-green);
}

.stats-label {
    font-size: 1.02rem;
    color: #374151;
    font-weight: 500;
    line-height: 1.4;
}

/* Bottom note */
.stats-note {
    text-align: center;
    margin-top: 3rem;
    font-size: 1.05rem;
    color: #4b5563;
    font-style: italic;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* ====================== Counter Animation ====================== */
.counter {
    font-variant-numeric: tabular-nums;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .stats-card {
        padding: 1.85rem 1.25rem;
    }
    
    .stats-grid {
        gap: 1.5rem;
    }
}

/* About Section */
/* .about-section {
    padding: 6rem 0;
    background-color: white;
}

.about-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

.about-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--foundation-purple);
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-desc {
    font-size: 1.125rem;
    color: #374151;
    line-height: 1.75;
    max-width: 768px;
    margin: 0 auto;
} */

/* ====================== Programs Section ====================== */
/* ====================== Programs Section ====================== */
.programs-section {
    padding: 2rem 0;
    background-color: white;
}

.programs-content {
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.programs-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 4rem;
}

.programs-tag {
    color: var(--foundation-green);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 1rem;
}

.programs-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.25rem, 5.5vw, 3.2rem);
    font-weight: 700;
    color: var(--foundation-purple);
    margin: 0.8rem 0 1.25rem;
}

.programs-desc {
    font-size: 1.15rem;
    color: #4b5563;
    line-height: 1.7;
}

/* Grid */
.programs-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 640px) {
    .programs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .programs-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Individual Card */
.programs-card {
    background: var(--foundation-cream);
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.programs-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.programs-card-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

/* Icon */
.programs-icon-wrapper {
    margin: -2.5rem 1.75rem 1rem 1.75rem;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 2;
    flex-shrink: 0;
}

.programs-purple-bg {
    background: rgba(61, 7, 168, 0.15);
}

.programs-icon {
    font-size: 1.85rem;
    color: var(--foundation-purple);
}

.programs-green { color: var(--foundation-green); }

/* Content */
.programs-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.32rem;
    font-weight: 700;
    color: var(--foundation-purple);
    margin: 0 1.75rem 0.75rem;
    line-height: 1.25;
}

.programs-card-desc {
    color: #4b5563;
    line-height: 1.65;
    margin: 0 1.75rem 1rem;
    flex-grow: 1;
}

.impact-note {
    background: rgba(126, 217, 87, 0.12);
    color: var(--foundation-green);
    font-weight: 600;
    padding: 0.65rem 1rem;
    border-radius: 9999px;
    font-size: 0.95rem;
    margin: 0 1.75rem 1rem;
    display: inline-block;
}

/* Learn More Button */
.programs-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--foundation-green);
    color: var(--foundation-purple);
    font-weight: 700;
    padding: 0.95rem 1.75rem;
    border-radius: 9999px;
    text-decoration: none;
    margin: 0.25rem 1.75rem 1.75rem 1.75rem;
    transition: all 0.3s ease;
    align-self: flex-start;
    font-size: 1.02rem;
}

.programs-card-btn:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(126, 217, 87, 0.35);
}

/* CTA at bottom */
.programs-cta {
    text-align: center;
    margin-top: 4.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
}

.programs-cta-btn {
    padding: 1rem 2.25rem;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 220px;
}

.programs-cta-btn.primary {
    background: var(--foundation-green);
    color: var(--foundation-purple);
}

.programs-cta-btn.primary:hover {
    background: white;
    transform: translateY(-3px);
}

.programs-cta-btn.secondary {
    border: 2px solid var(--foundation-purple);
    color: var(--foundation-purple);
}

.programs-cta-btn.secondary:hover {
    background: var(--foundation-purple);
    color: white;
}

/* ====================== Transparency / Reports Section ====================== */
.transparency-section {
    padding: 6rem 0;
    background: white;
}

.transparency-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 4rem;
}

.transparency-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.2rem, 5.5vw, 3rem);
    font-weight: 700;
    color: var(--foundation-purple);
}

.transparency-desc {
    font-size: 1.15rem;
    color: #4b5563;
}

/* Grid */
.transparency-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 992px) {
    .transparency-grid {
        grid-template-columns: 1.1fr 1fr;
    }
}

.transparency-card {
    background: var(--foundation-cream);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

/* Fund Breakdown */
.fund-breakdown {
    margin: 2rem 0;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-weight: 500;
}

.progress-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 9999px;
    margin-bottom: 1.25rem;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--foundation-green);
    border-radius: 9999px;
}

.progress.admin {
    background: #9ca3af;
}

.note {
    font-size: 1.02rem;
    color: var(--foundation-purple);
    font-weight: 600;
    margin-top: 1.5rem;
}

/* Reports List */
.reports-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 2rem 0;
}

.report-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.report-item:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.report-item i {
    font-size: 1.8rem;
    color: var(--foundation-green);
}

.view-all-reports {
    display: inline-block;
    margin-top: 1.5rem;
    color: var(--foundation-purple);
    font-weight: 700;
    text-decoration: none;
}

.trust-badges {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
    color: #4b5563;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.25rem;
}

.badges span {
    background: white;
    padding: 0.65rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* ====================== Testimonials Section ====================== */
/* ====================== Testimonials Section ====================== */
.testimonials-section {
    padding: 6rem 0;
    background: var(--foundation-cream);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.testimonials-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.25rem, 5.5vw, 3rem);
    font-weight: 700;
    color: var(--foundation-purple);
    margin: 1rem 0 0.75rem;
}

/* Scrollable Container */
.testimonials-wrapper {
    overflow: hidden;
    position: relative;
    border-radius: 1.5rem;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
    scrollbar-width: none; /* Firefox */
}

.testimonials-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.testimonial-card {
    background: white;
    border-radius: 1.25rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    min-width: 340px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-quote {
    font-size: 1.08rem;
    line-height: 1.65;
    color: #374151;
    font-style: italic;
    flex-grow: 1;
    margin-bottom: 2rem;
}

.testimonial-quote::before {
    content: '“';
    font-size: 4rem;
    color: var(--foundation-green);
    opacity: 0.15;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-photo {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--foundation-green);
}

/* Navigation Arrows */
.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.testimonial-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--foundation-green);
    color: var(--foundation-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-arrow:hover {
    background: var(--foundation-green);
    color: white;
    transform: scale(1.08);
}

/* CTA */
.programs-cta {
    text-align: center;
    margin-top: 4rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
}

.programs-cta-btn {
    padding: 1rem 2.25rem;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 220px;
}

.programs-cta-btn.primary {
    background: var(--foundation-green);
    color: var(--foundation-purple);
}

.programs-cta-btn.primary:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(126, 217, 87, 0.3);
}

.programs-cta-btn.secondary {
    border: 2px solid var(--foundation-purple);
    color: var(--foundation-purple);
}

.programs-cta-btn.secondary:hover {
    background: var(--foundation-purple);
    color: white;
}


/* ====================== Final CTA Section ====================== */
.cta-section {
    padding: 7rem 0;
    background: var(--foundation-purple);
    position: relative;
    overflow: hidden;
    color: white;
}

.cta-bg {
    position: absolute;
    inset: 0;
    opacity: 0.12;
    z-index: 1;
}

.cta-pattern {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
    text-align: center;
}

.cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 6vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.cta-desc {
    font-size: 1.2rem;
    max-width: 680px;
    margin: 0 auto 3rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}

/* Impact Suggestions */
.cta-impact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.impact-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    min-width: 180px;
    border: 1px solid rgba(255,255,255,0.2);
}

.impact-item strong {
    display: block;
    font-size: 1.35rem;
    color: var(--foundation-green);
    margin-bottom: 0.3rem;
}

.impact-item span {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
}

/* Buttons */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
    margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.cta-btn-primary,
.cta-btn-secondary {
    padding: 1.15rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    min-width: 240px;
    justify-content: center;
}

.cta-btn-primary {
    background: var(--foundation-green);
    color: var(--foundation-purple);
}

.cta-btn-primary:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(126, 217, 87, 0.4);
}

.cta-btn-secondary {
    border: 2px solid white;
    color: white;
}

.cta-btn-secondary:hover {
    background: white;
    color: var(--foundation-purple);
}

.cta-icon {
    font-size: 1.35rem;
}

/* Trust Line */
.trust-line {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    margin-top: 1rem;
}

.trust-line i {
    color: var(--foundation-green);
    margin-right: 8px;
}

/* ====================== Footer ====================== */
.site-footer {
    background: #1f2937;
    color: #e5e7eb;
    padding-top: 4rem;
}

.footer-content {
    width: 100%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 640px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1.2fr;
    }
}

.footer-col h3 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.85rem;
}

.footer-col a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--foundation-green);
}

/* Logo Column */
.logo-col .footer-logo img {
    height: 180px;
    width: auto;
    border-radius: 0.75rem;
    margin-bottom: 0.2rem;
}

.footer-mission {
    line-height: 1.6;
    max-width: 320px;
    margin-bottom: 1.5rem;
    color: #9ca3af;
}

/* Social Links */
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--foundation-green);
    color: var(--foundation-purple);
    transform: translateY(-3px);
}

/* Contact Info */
.contact-info i {
    width: 20px;
    color: var(--foundation-green);
    margin-right: 10px;
}

/* Bottom Bar */
.footer-bottom {
    background: #111827;
    padding: 1.5rem 0;
    margin-top: 3rem;
    font-size: 0.95rem;
    color: #9ca3af;
}

.footer-bottom .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.made-with-love {
    color: var(--foundation-green);
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}