/* ===================================
   CSS Variables & Reset
   =================================== */

:root {
    /* Brand Colors */
    --forest-600: #3d6b2f;
    --forest-700: #325627;
    --forest-500: #4a7c60;
    --golden-400: #d4a84b;
    --earth-900: #4a3429;
    --earth-800: #5c4033;
    --earth-50: #f9f6f2;

    /* Extended Palette */
    --blue-600: #2563eb;
    --purple-600: #9333ea;
    --rose-600: #e11d48;
    --amber-600: #d97706;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

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

/* Responsive media elements */
img,
video,
svg {
    max-width: 100%;
    height: auto;
}

img {
    display: block;
}

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

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--earth-900);
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--earth-900);
}

/* ===================================
   Utility Classes
   =================================== */

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.section-padding {
    padding: clamp(4rem, 8vw, 7rem) 0;
}

.bg-light {
    background-color: var(--earth-50);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }

    .section-padding {
        padding: var(--space-2xl) 0;
    }
}

/* ===================================
   Navigation
   =================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: var(--space-sm);
    padding-bottom: var(--space-sm);
}

.nav-container .logo {
    margin-bottom: var(--space-sm);
}

.nav-container .nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

.nav-container .nav-toggle {
    position: absolute;
    right: var(--space-md);
    top: var(--space-md);
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
    }

    .nav-container .logo {
        margin-bottom: 0;
        flex: 1;
        justify-content: center;
    }

    .nav-container .nav-menu {
        width: 100%;
        justify-content: center;
    }
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    color: var(--earth-900);
    font-weight: 700;
    font-size: 1.25rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.logo:hover {
    opacity: 0.8;
}

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

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--forest-600);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--earth-900);
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-link {
    text-decoration: none;
    color: var(--earth-800);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--forest-600);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--forest-600);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link-cta {
    color: var(--forest-600);
    font-weight: 600;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: var(--space-lg);
        gap: var(--space-md);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link::after {
        display: none;
    }
}

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 1rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--forest-600);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(61, 107, 47, 0.3);
}

.btn-primary:hover {
    background: var(--forest-700);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(61, 107, 47, 0.4);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: white;
    color: var(--earth-900);
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    border-color: var(--forest-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 1.125rem 2rem;
    font-size: 1.0625rem;
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f9f6f2 0%, #ffffff 50%, #f0f7f4 100%);
    overflow: hidden;
    padding-top: 73px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(61, 107, 47, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.05);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    text-align: center;
}

.hero.hero-home .container {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
    align-items: center;
    text-align: center;
}

/* Logo Hero Section */
.logo-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 400px;
    max-height: 600px;
    background: linear-gradient(135deg, #f9f6f2 0%, #ffffff 25%, #f0f7f4 50%, #e8f5e9 100%);
    overflow: hidden;
    margin-top: 73px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(61, 107, 47, 0.08) 0%, transparent 60%);
    animation: float 20s ease-in-out infinite;
}

.logo-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(212, 168, 75, 0.06) 0%, transparent 60%);
    animation: float 15s ease-in-out infinite reverse;
}

.logo-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: var(--space-xl);
}

.hero-logo-image {
    max-width: 400px;
    width: 80vw;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(61, 107, 47, 0.15));
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoFloat {

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

    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

@media (max-width: 768px) {
    .logo-hero {
        height: 50vh;
        min-height: 300px;
    }

    .hero-logo-image {
        max-width: 280px;
    }
}


@media (max-width: 968px) {
    .hero.hero-home .container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        text-align: center;
    }
}

.hero-content {
    animation: slideUp 0.8s ease-out;
    max-width: 900px;
    margin: 0 auto;
}

.hero.hero-home .hero-content {
    max-width: none;
    margin: 0 auto;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-md);
    background: rgba(61, 107, 47, 0.08);
    border: 1px solid rgba(61, 107, 47, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--forest-700);
    margin-bottom: var(--space-lg);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--forest-600);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.6;
        transform: scale(0.9);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--forest-600) 0%, var(--forest-500) 50%, var(--golden-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.7;
    color: var(--earth-800);
    margin-bottom: var(--space-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 968px) {
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 968px) {
    .hero-cta {
        justify-content: center;
    }
}

.hero-visual {
    position: relative;
    animation: slideUp 0.8s ease-out 0.2s both;
}

.hero-image {
    position: relative;
    padding: var(--space-2xl);
    background: linear-gradient(135deg, rgba(61, 107, 47, 0.05) 0%, rgba(212, 168, 75, 0.05) 100%);
    border-radius: var(--radius-2xl);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.logo-large {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    animation: floatGentle 6s ease-in-out infinite;
}

@keyframes floatGentle {

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

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

.scripture-card {
    position: absolute;
    bottom: -var(--space-lg);
    left: -var(--space-lg);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-xl);
    padding: var(--space-md) var(--space-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: var(--space-md);
    animation: slideUp 0.8s ease-out 0.6s both;
}

@media (max-width: 968px) {
    .scripture-card {
        position: static;
        margin-top: var(--space-lg);
        justify-content: center;
    }
}

.card-icon {
    flex-shrink: 0;
    color: var(--forest-600);
}

.card-content {
    flex: 1;
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--earth-900);
    margin-bottom: 0.25rem;
}

.card-subtitle {
    font-size: 0.875rem;
    color: var(--earth-800);
    opacity: 0.8;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
    color: #f9f6f2;
}

/* ===================================
   Section Headers
   =================================== */

.section-header {
    max-width: 800px;
    margin: 0 auto clamp(3rem, 5vw, 4rem);
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--forest-600);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    color: var(--earth-700);
    line-height: 1.7;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(61, 107, 47, 0.08);
    color: var(--forest-600);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.7;
    color: var(--earth-800);
    opacity: 0.9;
}

/* ===================================
   Mission & Impact Section
   =================================== */

.mission-impact {
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    position: relative;
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(61, 107, 47, 0.03) 0%, rgba(212, 168, 75, 0.03) 100%);
    border: 1px solid rgba(61, 107, 47, 0.1);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--forest-600);
}

.stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(61, 107, 47, 0.08);
    border-radius: var(--radius-xl);
    color: var(--forest-600);
    margin: 0 auto var(--space-lg);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--forest-600);
    line-height: 1;
    display: inline-block;
}

.stat-unit {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--golden-400);
    display: inline-block;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--earth-900);
    margin: var(--space-sm) 0;
}

.stat-description {
    font-size: 0.9375rem;
    color: var(--earth-800);
    opacity: 0.8;
}

/* ===================================
   Scripture Section - Homepage
   =================================== */

.scripture-section {
    background: linear-gradient(135deg, var(--forest-600) 0%, var(--forest-700) 100%);
    position: relative;
    overflow: hidden;
}

.scripture-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.scripture-card-home {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scripture-card-home .scripture-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.scripture-card-home .scripture-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.scripture-card-home .scripture-text {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.scripture-card-home .scripture-text cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    opacity: 0.95;
    font-weight: 600;
    font-style: normal;
}

.scripture-card-home .scripture-description {
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
}

/* ===================================
   Programs Section
   =================================== */

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.program-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--forest-600);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(0, 0, 0, 0.12);
}

.program-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
}

.program-icon.forest {
    background: rgba(61, 107, 47, 0.1);
    color: var(--forest-600);
}

.program-icon.blue {
    background: rgba(37, 99, 235, 0.1);
    color: var(--blue-600);
}

.program-icon.purple {
    background: rgba(147, 51, 234, 0.1);
    color: var(--purple-600);
}

.program-icon.rose {
    background: rgba(225, 29, 72, 0.1);
    color: var(--rose-600);
}

.program-icon.amber {
    background: rgba(217, 119, 6, 0.1);
    color: var(--amber-600);
}

.program-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.program-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--earth-800);
    margin-bottom: var(--space-md);
    opacity: 0.9;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--forest-600);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
    transition: gap 0.3s ease;
}

.program-link:hover {
    gap: var(--space-sm);
}

.programs-cta {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.programs-cta p {
    font-size: 1.125rem;
    color: var(--earth-800);
    margin-bottom: var(--space-md);
}

/* ===================================
   Testimonials Section
   =================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.testimonial-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.quote-icon {
    color: var(--golden-400);
    opacity: 0.3;
    margin-bottom: var(--space-md);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--earth-900);
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    padding-top: var(--space-md);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.author-name {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--earth-900);
    margin-bottom: 0.25rem;
}

.author-program {
    font-size: 0.9375rem;
    color: var(--earth-800);
    opacity: 0.8;
}

.testimonials-cta {
    text-align: center;
    padding-top: var(--space-xl);
}

/* ===================================
   CTA Banner
   =================================== */

.cta-banner {
    background: linear-gradient(135deg, var(--forest-600) 0%, var(--forest-700) 100%);
    padding: var(--space-3xl) 0 calc(var(--space-3xl) + 2rem);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: var(--space-md);
}

.cta-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
}

.cta-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--forest-600);
}

.cta-buttons .btn-primary:hover {
    background: var(--golden-400);
    color: white;
}

.cta-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.8);
    padding-top: calc(var(--space-3xl) + 2rem);
    position: relative;
}

.footer-roots {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.1);
}

.footer-roots svg {
    width: 100%;
    height: 100%;
}

.root {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawRoot 3s ease-out forwards;
}

.root-1 {
    animation-delay: 0.2s;
}

.root-2 {
    animation-delay: 0.4s;
}

.root-3 {
    animation-delay: 0.6s;
}

@keyframes drawRoot {
    to {
        stroke-dashoffset: 0;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--space-md);
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-size: 1.25rem;
    color: white;
    font-weight: 700;
}


.footer-mission {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    display: flex;
    align-items: center;
    justify-center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--forest-600);
    color: white;
    transform: translateY(-4px);
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--space-md);
    font-family: var(--font-display);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-xs);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-2xl) 0 var(--space-xl);
    gap: var(--space-lg);
}

.footer-scripture {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: var(--space-sm);
}

.footer-scripture p {
    margin: 0;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    align-items: center;
}

.footer-legal p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-nonprofit {
    font-size: 0.8125rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.footer-legal-links {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
    font-size: 0.875rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: white;
}

.footer-legal-links span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-scripture {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* ===================================
   Animations
   =================================== */

[data-animate] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animate-in {
    opacity: 1;
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-up"].animate-in {
    transform: translateY(0);
}

[data-animate="fade-in"] {
    transform: scale(0.95);
}

[data-animate="fade-in"].animate-in {
    transform: scale(1);
}

/* ===================================
   About Page - Mission & Vision
   =================================== */

.hero-about {
    min-height: 60vh;
}

.mission-vision {
    background: linear-gradient(180deg, #ffffff 0%, #f9f6f2 100%);
}

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

.mv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(61, 107, 47, 0.15);
}

.mv-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--forest-600), var(--forest-500));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.mv-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2vw, 1.75rem);
    color: var(--forest-600);
    margin-bottom: 1rem;
    font-weight: 700;
}

.mv-text {
    color: var(--earth-700);
    line-height: 1.7;
    font-size: 1rem;
}

/* Scripture Card */
.scripture-card {
    background: linear-gradient(135deg, var(--forest-600) 0%, var(--forest-500) 100%);
    padding: 3rem;
    border-radius: 20px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.scripture-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

.scripture-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.scripture-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.scripture-text {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.scripture-text cite {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 600;
}

.scripture-description {
    font-size: 1rem;
    line-height: 1.7;
    opacity: 0.95;
    max-width: 800px;
    margin: 1.5rem auto 0;
    position: relative;
    z-index: 1;
}

/* ===================================
   About Page - Leadership
   =================================== */

.leadership-section {
    background: white;
}

.leadership-category {
    margin-bottom: 4rem;
}

.leadership-category:last-child {
    margin-bottom: 0;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--forest-600);
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

/* Staff Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(61, 107, 47, 0.15);
    border-color: var(--forest-200);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(61, 107, 47, 0.2);
}

.team-avatar svg {
    width: 100%;
    height: 100%;
}

.team-avatar-photo {
    width: 140px;
    height: 140px;
    border: 4px solid var(--golden-400);
    box-shadow: 0 8px 24px rgba(212, 168, 75, 0.3);
}

.team-avatar-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-featured {
    background: linear-gradient(135deg, var(--forest-50) 0%, white 100%);
    border: 2px solid var(--golden-400);
    grid-column: span 2;
}

.team-card-featured .team-bio {
    max-width: none;
}

@media (max-width: 968px) {
    .team-card-featured {
        grid-column: span 1;
    }
}

.team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--forest-600);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-role {
    color: var(--golden-400);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--earth-700);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Board of Directors Grid */
.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.board-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f6f2 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.board-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest-600), var(--golden-400));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.board-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(61, 107, 47, 0.2);
    border-color: var(--golden-300);
}

.board-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(61, 107, 47, 0.25);
    border: 3px solid white;
}

.board-avatar svg {
    width: 100%;
    height: 100%;
}

.board-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--forest-600);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.board-title {
    color: var(--earth-700);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.board-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--forest-600), var(--forest-500));
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================================
   About Page - Financials
   =================================== */

.financials-section {
    background: linear-gradient(180deg, #f9f6f2 0%, #ffffff 100%);
}

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

.financial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.financial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--golden-400);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.financial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(212, 168, 75, 0.15);
}

.financial-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--golden-400), var(--golden-300));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 1.5rem;
}

.financial-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--forest-600);
    margin-bottom: 1rem;
    font-weight: 700;
}

.financial-stat {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--forest-600), var(--golden-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.financial-text {
    color: var(--earth-700);
    line-height: 1.7;
    font-size: 0.95rem;
}

.financial-badge {
    display: inline-block;
    background: var(--forest-600);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1rem;
}

/* Financial Reports Section */
.financial-reports {
    background: linear-gradient(135deg, var(--forest-600), var(--forest-500));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.reports-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.reports-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.reports-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.reports-actions .btn-outline {
    background: white;
    color: var(--forest-600);
    border-color: white;
}

.reports-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* ===================================
   About Page - Research
   =================================== */

.research-section {
    background: white;
}

.research-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.research-text {
    color: var(--earth-700);
    font-size: 1.125rem;
    line-height: 1.8;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.research-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7f4 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.research-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(61, 107, 47, 0.15);
    border-color: var(--forest-200);
}

.research-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--forest-600), var(--golden-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.research-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--forest-600);
    margin-bottom: 1rem;
    font-weight: 700;
}

.research-description {
    color: var(--earth-700);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.research-source {
    color: var(--earth-600);
    font-size: 0.8rem;
    font-style: italic;
    opacity: 0.8;
}

/* Research Methodology */
.research-methodology {
    background: linear-gradient(135deg, #f9f6f2 0%, #f0f7f4 100%);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
}

.methodology-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 2.5vw, 2rem);
    color: var(--forest-600);
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.methodology-item {
    text-align: center;
}

.methodology-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.methodology-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    color: var(--forest-600);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.methodology-item p {
    color: var(--earth-700);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Research CTA */
.research-cta {
    background: linear-gradient(135deg, var(--forest-600), var(--forest-500));
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.research-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.research-cta p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.research-cta .btn-primary {
    background: white;
    color: var(--forest-600);
}

.research-cta .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* ===================================
   Program Pages
   =================================== */

.program-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.program-hero-reentry {
    background: linear-gradient(135deg, #3d6b2f 0%, #5c8245 100%);
}

.program-hero-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
}

.program-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.program-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.program-hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.95;
    line-height: 1.6;
}

.program-hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-item .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Program Overview */
.program-overview {
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text {
    color: var(--earth-700);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.overview-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
}

.image-placeholder svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(61, 107, 47, 0.3));
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, #f9f6f2 0%, #ffffff 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(61, 107, 47, 0.15);
    border-color: var(--forest-200);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--forest-600), var(--forest-500));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--forest-600);
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-description {
    color: var(--earth-700);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Process Timeline */
.process-section {
    background: white;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 40px;
    bottom: 40px;
    width: 3px;
    background: linear-gradient(180deg, var(--forest-600), var(--golden-400));
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--forest-600), var(--forest-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(61, 107, 47, 0.3);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--forest-600);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.step-description {
    color: var(--earth-700);
    line-height: 1.7;
    font-size: 1rem;
}

/* Metrics Section */
.metrics-section {
    background: linear-gradient(180deg, #f9f6f2 0%, #f0f7f4 100%);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.metric-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(61, 107, 47, 0.15);
}

.metric-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.metric-stat {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--forest-600), var(--golden-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.metric-stat::after {
    content: '%';
    font-size: 0.6em;
}

.metric-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--forest-600);
    margin-bottom: 1rem;
    font-weight: 700;
}

.metric-description {
    color: var(--earth-700);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* Eligibility Section */
.eligibility-section {
    background: white;
}

.eligibility-content {
    max-width: 900px;
    margin: 0 auto;
}

.eligibility-intro {
    text-align: center;
    color: var(--earth-700);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.eligibility-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.eligibility-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: linear-gradient(135deg, #ffffff 0%, #f9f6f2 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.check-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--forest-600);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
}

.eligibility-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    color: var(--forest-600);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.eligibility-item p {
    color: var(--earth-700);
    line-height: 1.6;
}

.eligibility-note {
    background: linear-gradient(135deg, var(--forest-600), var(--forest-500));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    font-size: 1.125rem;
    line-height: 1.7;
}

.eligibility-note strong {
    display: block;
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

/* ===================================
   Programs Overview Page
   =================================== */

.hero-programs {
    min-height: 50vh;
}

.programs-overview {
    background: white;
}

.overview-text-center {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.large-text {
    font-size: clamp(1.125rem, 2vw, 1.35rem);
    line-height: 1.8;
    color: var(--earth-700);
}

.programs-detailed-grid {
    display: grid;
    gap: 3rem;
}

.program-detailed-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f6f2 100%);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.program-detailed-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(61, 107, 47, 0.15);
    border-color: var(--forest-200);
}

.program-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.program-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.program-icon-large.forest {
    background: linear-gradient(135deg, var(--forest-600), var(--forest-500));
    color: white;
}

.program-icon-large.blue {
    background: linear-gradient(135deg, var(--blue-600), #3b82f6);
    color: white;
}

.program-icon-large.amber {
    background: linear-gradient(135deg, var(--amber-600), #f59e0b);
    color: white;
}

.program-icon-large.purple {
    background: linear-gradient(135deg, var(--purple-600), #a855f7);
    color: white;
}

.program-icon-large.rose {
    background: linear-gradient(135deg, var(--rose-600), #f43f5e);
    color: white;
}

.program-detailed-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--forest-600);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.program-badge-text {
    color: var(--golden-400);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.program-detailed-description {
    color: var(--earth-700);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.program-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    color: var(--earth-700);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Programs Integration */
.programs-integration {
    background: linear-gradient(180deg, #f9f6f2 0%, #f0f7f4 100%);
}

.integration-visual {
    position: relative;
    max-width: 600px;
    margin: 0 auto 3rem;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--forest-600), var(--forest-500));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 10;
    box-shadow: 0 8px 24px rgba(61, 107, 47, 0.3);
}

.integration-center h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.integration-center p {
    font-size: 0.875rem;
    opacity: 0.9;
}

.integration-connections {
    position: absolute;
    width: 100%;
    height: 100%;
}

.connection-line {
    position: absolute;
    width: 2px;
    height: 140px;
    background: linear-gradient(180deg, var(--forest-600), transparent);
    top: 50%;
    left: 50%;
    transform-origin: top center;
}

.connection-line.line-1 {
    transform: translate(-50%, -100%) rotate(0deg);
}

.connection-line.line-2 {
    transform: translate(-50%, -100%) rotate(72deg);
}

.connection-line.line-3 {
    transform: translate(-50%, -100%) rotate(144deg);
}

.connection-line.line-4 {
    transform: translate(-50%, -100%) rotate(216deg);
}

.connection-line.line-5 {
    transform: translate(-50%, -100%) rotate(288deg);
}

.integration-programs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.int-program {
    position: absolute;
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--forest-600);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--forest-200);
    text-align: center;
    font-size: 0.875rem;
}

.int-program.int-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.int-program.int-2 {
    top: 25%;
    right: 10%;
}

.int-program.int-3 {
    bottom: 25%;
    right: 15%;
}

.int-program.int-4 {
    bottom: 25%;
    left: 15%;
}

.int-program.int-5 {
    top: 25%;
    left: 10%;
}

.integration-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.integration-description p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--earth-700);
}

/* ===================================
   Get Help Page
   =================================== */

.hero-get-help {
    background: linear-gradient(135deg, #2a4a1f 0%, #3d6b2f 100%);
    min-height: 50vh;
    position: relative;
}

.hero-get-help::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.hero-get-help .container {
    position: relative;
    z-index: 1;
}

.hero-get-help .hero-content {
    color: white;
}

.hero-get-help .hero-title {
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-get-help .gradient-text {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-get-help .hero-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.25rem;
    font-weight: 500;
}

.who-can-apply {
    background: white;
}

.eligibility-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.eligibility-option {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f9f6f2 100%);
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.eligibility-option:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(61, 107, 47, 0.15);
}

.option-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.eligibility-option h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--forest-600);
    margin-bottom: 1rem;
    font-weight: 700;
}

.eligibility-option p {
    color: var(--earth-700);
    line-height: 1.7;
}

.eligibility-note-box {
    background: linear-gradient(135deg, var(--forest-600), var(--forest-500));
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    margin-top: 3rem;
    font-size: 1.125rem;
}

.eligibility-note-box strong {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.application-process {
    background: linear-gradient(180deg, #f9f6f2 0%, #ffffff 100%);
}

.process-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process-step-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.process-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(61, 107, 47, 0.15);
}

.step-num {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--forest-600), var(--forest-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    font-family: 'Playfair Display', serif;
}

.process-step-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--forest-600);
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-step-card p {
    color: var(--earth-700);
    line-height: 1.7;
}

.contact-methods {
    background: white;
}

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

.contact-method-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7f4 100%);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(61, 107, 47, 0.15);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-method-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    color: var(--forest-600);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.method-detail {
    color: var(--golden-400);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    word-break: break-word;
    overflow-wrap: break-word;
}

.contact-method-card p {
    color: var(--earth-700);
    line-height: 1.7;
}

/* Application Form */
.application-form-section {
    background: linear-gradient(180deg, #f9f6f2 0%, #f0f7f4 100%);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--forest-600);
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-header p {
    color: var(--earth-700);
    font-size: 1.05rem;
    line-height: 1.7;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--earth-800);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--forest-600);
    box-shadow: 0 0 0 3px rgba(61, 107, 47, 0.1);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.checkbox-label:hover {
    background: #f9f6f2;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-actions {
    margin-top: 2rem;
    text-align: center;
}

.form-note {
    margin-top: 1rem;
    color: var(--earth-600);
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: linear-gradient(135deg, #ffffff 0%, #f9f6f2 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    color: var(--forest-600);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.faq-item p {
    color: var(--earth-700);
    line-height: 1.7;
}

/* Emergency Resources */
.emergency-resources {
    background: linear-gradient(135deg, #e11d48, #dc2626);
    padding: 3rem 0;
}

.emergency-banner {
    text-align: center;
    color: white;
}

.emergency-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.emergency-banner p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.emergency-number {
    display: inline-block;
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 700;
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    margin: 1rem 0;
    transition: all 0.3s ease;
    word-break: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.emergency-number:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.emergency-note {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-top: 1rem;
}

/* Impact Page */
.hero-impact {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    min-height: 50vh;
}

.hero-impact .hero-content {
    color: white;
}

/* ===================================
   Responsive
   =================================== */

/* Tablet Breakpoint */
@media (max-width: 968px) {
    .container {
        padding: 0 1.5rem;
    }

    /* Video Hero Mobile Optimization */
    .video-hero {
        height: 70vh;
        margin-top: 60px;
    }

    .video-hero-player {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    /* Hero adjustments */
    .hero {
        min-height: auto;
        padding: 4rem 0 3rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    /* Grid layouts stack on tablet */
    .programs-grid,
    .leadership-grid,
    .board-grid,
    .giving-grid,
    .volunteer-grid,
    .other-ways-grid,
    .contact-methods-grid,
    .departments-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    /* Stats grid - 2 columns on tablet */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Images scale down */
    .logo-large {
        max-width: 200px;
    }

    /* Section spacing reduction */
    .section,
    .section-padding {
        padding: clamp(3rem, 6vw, 5rem) 0;
    }

    .section-header {
        margin-bottom: clamp(2rem, 4vw, 3rem);
    }

    /* Navigation improvements */
    .nav-menu {
        gap: 0.5rem;
    }
}

/* Mobile Breakpoint */
@media (max-width: 640px) {

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

    /* Video Hero Mobile */
    .video-hero {
        height: 60vh;
        min-height: 350px;
    }

    .video-hero-player {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    /* Hero mobile optimization */
    .hero {
        padding: 3rem 0 2rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Buttons stack on mobile */
    .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons,
    .hero-cta {
        flex-direction: column;
        gap: var(--space-md);
    }

    /* Logo sizing */
    .logo-img {
        width: 32px;
        height: 32px;
    }

    .logo-text {
        font-size: 1rem;
    }

    .logo-large {
        max-width: 150px;
    }

    /* All grids single column on mobile */
    .programs-grid,
    .stats-grid,
    .leadership-grid,
    .board-grid,
    .giving-grid,
    .impact-levels,
    .volunteer-grid,
    .other-ways-grid,
    .contact-methods-grid,
    .departments-grid,
    .faq-grid,
    .amount-options {
        grid-template-columns: 1fr;
    }

    /* Form adjustments */
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-group.full-width {
        grid-column: span 1;
    }

    .custom-amount {
        grid-column: span 1;
    }

    .gift-type-options {
        grid-template-columns: 1fr;
    }

    /* Featured card no scale on mobile */
    .giving-card.featured {
        transform: scale(1);
    }

    .giving-card.featured:hover {
        transform: translateY(-4px);
    }

    /* Section spacing - tighter on mobile */
    .section,
    .section-padding {
        padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    }

    .section-header {
        margin-bottom: clamp(1.5rem, 3vw, 2rem);
    }

    .section-title {
        font-size: clamp(1.75rem, 5vw, 2.25rem);
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Cards padding reduction */
    .program-card,
    .stat-card,
    .giving-card,
    .volunteer-card,
    .other-way-card,
    .contact-method,
    .department-card,
    .faq-item,
    .donation-form,
    .contact-form {
        padding: var(--space-lg);
    }

    /* Footer improvements */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        text-align: center;
    }

    .footer-links {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: var(--space-md);
    }

    .footer-legal-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Navigation mobile-friendly */
    .nav-menu a {
        font-size: 1rem;
    }

    /* Hero wave adjustments */
    .hero-wave {
        height: 60px;
    }

    /* Images responsive */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Progress circles smaller on mobile */
    .progress-circle {
        width: 150px;
        height: 150px;
    }

    .progress-number {
        font-size: 2rem;
    }

    /* Impact page metrics */
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    /* Eligibility grid mobile */
    .eligibility-grid {
        grid-template-columns: 1fr;
    }

    /* Application steps mobile */
    .application-steps {
        grid-template-columns: 1fr;
    }

    /* Contact methods mobile */
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Extra small mobile */
@media (max-width: 375px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .video-hero {
        height: 50vh;
        min-height: 300px;
    }

    .video-hero-player {
        object-fit: contain;
    }

    /* Even tighter spacing on very small screens */
    .section,
    .section-padding {
        padding: 2rem 0;
    }

    .program-card,
    .stat-card,
    .giving-card,
    .volunteer-card {
        padding: var(--space-md);
    }
}

/* ===================================
   Get Involved / Donate Page Styles
   =================================== */

.giving-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.giving-card {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--earth-200);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.giving-card.featured {
    background: linear-gradient(135deg, var(--forest-600) 0%, var(--forest-700) 100%);
    color: white;
    border-color: var(--forest-600);
    transform: scale(1.05);
}

.giving-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.giving-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.giving-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--golden-400);
    color: var(--forest-700);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
}

.giving-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.giving-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: var(--forest-700);
}

.giving-card.featured .giving-title {
    color: white;
}

.giving-description {
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    color: var(--earth-700);
}

.giving-card.featured .giving-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Impact of Giving Section */
.impact-giving {
    background: linear-gradient(135deg, var(--forest-50) 0%, white 100%);
}

.impact-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.impact-level {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--golden-200);
    text-align: center;
    transition: all 0.3s ease;
}

.impact-level:hover {
    border-color: var(--golden-400);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(212, 168, 75, 0.2);
}

.impact-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--golden-600);
    margin-bottom: var(--space-sm);
}

.impact-level h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--forest-700);
    margin-bottom: var(--space-sm);
}

.impact-level p {
    color: var(--earth-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Volunteer Section */
.volunteer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.volunteer-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--earth-200);
    transition: all 0.3s ease;
}

.volunteer-card:hover {
    border-color: var(--forest-600);
    box-shadow: 0 8px 24px rgba(61, 107, 47, 0.15);
    transform: translateY(-4px);
}

.volunteer-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-md);
}

.volunteer-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--forest-700);
    margin-bottom: var(--space-md);
}

.volunteer-card p {
    color: var(--earth-700);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.volunteer-details {
    list-style: none;
    padding: var(--space-md);
    background: var(--forest-50);
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
}

.volunteer-details li {
    font-size: 0.9375rem;
    color: var(--forest-700);
    padding: 0.375rem 0;
    border-bottom: 1px solid rgba(61, 107, 47, 0.1);
}

.volunteer-details li:last-child {
    border-bottom: none;
}

.volunteer-details li::before {
    content: "✓ ";
    color: var(--forest-600);
    font-weight: 700;
    margin-right: 0.5rem;
}

.volunteer-cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* Other Ways Section */
.other-ways {
    background: var(--earth-50);
}

.other-ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.other-way-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--golden-400);
    transition: all 0.3s ease;
}

.other-way-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.other-way-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--forest-700);
    margin-bottom: var(--space-md);
}

.other-way-card p {
    color: var(--earth-700);
    line-height: 1.7;
}

/* Donation Form */
.donation-form-section {
    background: linear-gradient(135deg, var(--forest-50) 0%, white 100%);
}

.donation-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.donation-form {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-section {
    margin-bottom: var(--space-2xl);
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--forest-700);
    margin-bottom: var(--space-md);
}

.gift-type-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.gift-type-option {
    position: relative;
    cursor: pointer;
}

.gift-type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.option-label {
    display: block;
    padding: var(--space-md);
    border: 2px solid var(--earth-200);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 0.3s ease;
}

.gift-type-option input[type="radio"]:checked~.option-label {
    border-color: var(--forest-600);
    background: var(--forest-50);
}

.option-label strong {
    display: block;
    font-size: 1rem;
    color: var(--forest-700);
    margin-bottom: 0.25rem;
}

.option-label small {
    display: block;
    font-size: 0.875rem;
    color: var(--earth-600);
}

.amount-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--space-sm);
}

.amount-option {
    position: relative;
    cursor: pointer;
}

.amount-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.amount-option span,
.custom-amount-input {
    display: block;
    padding: var(--space-md);
    border: 2px solid var(--earth-200);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 700;
    color: var(--forest-700);
    transition: all 0.3s ease;
}

.amount-option input[type="radio"]:checked~span {
    border-color: var(--forest-600);
    background: var(--forest-600);
    color: white;
}

.custom-amount {
    grid-column: span 2;
}

.custom-amount-input {
    width: 100%;
    font-size: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--forest-700);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--earth-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--forest-600);
}

.secure-notice {
    background: var(--forest-50);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    color: var(--forest-700);
    font-size: 0.9375rem;
    text-align: center;
    margin-bottom: var(--space-md);
}

.payment-placeholder {
    background: var(--earth-50);
    padding: var(--space-xl);
    border-radius: var(--radius-md);
    text-align: center;
    color: var(--earth-700);
}

.payment-placeholder em {
    color: var(--earth-600);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    margin-bottom: var(--space-md);
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-label span {
    flex: 1;
    font-size: 0.9375rem;
    color: var(--earth-700);
}

.btn-full {
    width: 100%;
}

.donation-disclaimer {
    text-align: center;
    font-size: 0.875rem;
    color: var(--earth-600);
    margin-top: var(--space-lg);
    line-height: 1.6;
}

/* ===================================
   Impact Page Styles
   =================================== */

.hero-impact {
    background: linear-gradient(135deg, var(--forest-600) 0%, var(--forest-700) 100%);
    color: white;
    min-height: 50vh;
}

.hero-impact .hero-title,
.hero-impact .hero-subtitle {
    color: white;
}

.hero-impact .gradient-text {
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    color: white;
}

/* Impact Metrics Section */
.impact-metrics {
    background: white;
}

.metrics-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.metric-highlight {
    background: var(--forest-50);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.metric-highlight:hover {
    border-color: var(--forest-600);
    box-shadow: 0 8px 24px rgba(61, 107, 47, 0.15);
    transform: translateY(-4px);
}

.metric-visual {
    margin-bottom: var(--space-md);
    display: flex;
    justify-content: center;
}

.metric-chart {
    width: 140px;
    height: 140px;
}

.metric-highlight-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--forest-700);
    margin-bottom: var(--space-sm);
}

.metric-highlight-text {
    color: var(--earth-700);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* Participant Outcomes */
.participant-outcomes {
    background: linear-gradient(135deg, var(--forest-50) 0%, white 100%);
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.outcome-card {
    background: white;
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--earth-200);
    transition: all 0.3s ease;
}

.outcome-card:hover {
    border-color: var(--golden-400);
    box-shadow: 0 4px 16px rgba(212, 168, 75, 0.2);
}

.outcome-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--golden-600);
    margin-bottom: 0.5rem;
}

.outcome-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--forest-700);
    margin-bottom: 0.25rem;
}

.outcome-description {
    font-size: 0.875rem;
    color: var(--earth-600);
}

/* Community Impact */
.community-impact {
    background: var(--earth-50);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.impact-item {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--forest-600);
    transition: all 0.3s ease;
}

.impact-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.impact-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--forest-700);
    margin-bottom: var(--space-md);
}

.impact-item p {
    color: var(--earth-700);
    line-height: 1.7;
}

/* Mobile optimizations for impact page */
@media (max-width: 640px) {
    .metric-chart {
        width: 100px;
        height: 100px;
    }

    .metric-chart text {
        font-size: 20px;
    }

    .outcome-number {
        font-size: 2rem;
    }

    .metrics-highlight-grid,
    .outcomes-grid,
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Contact Page Styles
   =================================== */

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.contact-method {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--earth-200);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--forest-600);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(61, 107, 47, 0.15);
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.contact-method h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--forest-700);
    margin-bottom: var(--space-md);
}

.contact-detail {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--forest-600);
    margin-bottom: var(--space-sm);
}

.contact-detail a {
    color: var(--forest-600);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--golden-600);
}

.contact-description {
    font-size: 1rem;
    color: var(--earth-700);
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.contact-hours {
    font-size: 0.9375rem;
    color: var(--earth-600);
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, var(--forest-50) 0%, white 100%);
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.contact-form {
    background: white;
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--earth-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    color: var(--forest-700);
    background: white;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.contact-form select:focus {
    outline: none;
    border-color: var(--forest-600);
}

.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--earth-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.contact-form textarea:focus {
    outline: none;
    border-color: var(--forest-600);
}

.form-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--earth-600);
    margin-top: var(--space-lg);
    line-height: 1.6;
}

/* Departments Section */
.departments-section {
    background: var(--earth-50);
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.department-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--forest-600);
    transition: all 0.3s ease;
}

.department-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.department-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--forest-700);
    margin-bottom: var(--space-md);
}

.department-card p {
    color: var(--earth-700);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.department-card p:last-child {
    margin-bottom: 0;
}

.department-card a {
    color: var(--forest-600);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.department-card a:hover {
    color: var(--golden-600);
}

.department-description {
    font-size: 0.9375rem !important;
    color: var(--earth-600) !important;
    font-weight: 400 !important;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.faq-item {
    background: var(--forest-50);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--forest-600);
    background: white;
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--forest-700);
    margin-bottom: var(--space-md);
}

.faq-item p {
    color: var(--earth-700);
    line-height: 1.7;
}

/* ===================================
   App Section Styles
   =================================== */

.app-section {
    background: linear-gradient(135deg, var(--forest-50) 0%, white 100%);
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.app-features {
    margin: var(--space-xl) 0;
    display: grid;
    gap: var(--space-md);
}

.app-feature {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.app-feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.app-feature h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--forest-700);
    margin-bottom: 0.25rem;
}

.app-feature p {
    color: var(--earth-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.app-cta {
    margin-top: var(--space-xl);
}

/* Phone Mockup */
.app-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-header {
    background: var(--forest-600);
    color: white;
    padding: 1rem;
    text-align: center;
}

.phone-time {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.phone-title {
    font-weight: 700;
    font-size: 1.125rem;
}

.phone-content {
    padding: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.phone-card {
    background: var(--forest-50);
    border-radius: var(--radius-md);
    padding: 1rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
    border: 2px solid var(--forest-200);
}

.phone-card-icon {
    font-size: 1.5rem;
}

.phone-card-text strong {
    display: block;
    color: var(--forest-700);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.phone-card-text small {
    color: var(--earth-600);
    font-size: 0.75rem;
}

@media (max-width: 968px) {
    .app-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .phone-frame {
        width: 240px;
        height: 480px;
    }
}

/* ===================================
   Podcast Section Styles
   =================================== */

.podcast-section {
    background: white;
}

.podcast-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
    align-items: center;
}

.podcast-logo {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.podcast-topics {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin: var(--space-lg) 0;
}

.podcast-topic {
    background: linear-gradient(135deg, var(--forest-600) 0%, var(--forest-700) 100%);
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    border: none;
    box-shadow: 0 2px 8px rgba(61, 107, 47, 0.25);
    transition: all 0.2s ease;
}

.podcast-topic:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 107, 47, 0.35);
}

.podcast-cta {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.podcast-platforms {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.875rem;
    color: var(--earth-600);
}

.platform-links {
    display: flex;
    gap: var(--space-sm);
}

.platform-links a {
    color: var(--forest-600);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.platform-links a:hover {
    color: var(--golden-600);
}

@media (max-width: 968px) {
    .podcast-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .podcast-visual {
        display: flex;
        justify-content: center;
    }

    .podcast-cta {
        justify-content: center;
    }
}

/* ===================================
   Blog Section Styles
   =================================== */

.blog-section {
    background: var(--earth-50);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.blog-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: var(--forest-600);
    box-shadow: 0 8px 24px rgba(61, 107, 47, 0.15);
    transform: translateY(-4px);
}

.blog-category {
    display: inline-block;
    background: var(--golden-100);
    color: var(--golden-600);
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
}

.blog-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--forest-700);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.blog-excerpt {
    color: var(--earth-700);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.blog-link {
    color: var(--forest-600);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-link:hover {
    color: var(--golden-600);
    gap: 0.75rem;
}

.blog-link.coming-soon {
    color: var(--earth-500);
    font-style: italic;
    cursor: default;
}

.blog-link.coming-soon:hover {
    color: var(--earth-500);
    gap: 0.5rem;
}

.blog-cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Reduced Motion
   =================================== */

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

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

/* ===================================
   Form Success & Error States
   =================================== */

.form-success-message {
    background: linear-gradient(135deg, var(--forest-600) 0%, var(--forest-700) 100%);
    color: white;
    padding: var(--space-3xl) var(--space-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    animation: fadeInUp 0.5s ease;
}

.form-success-message .success-checkmark {
    margin-bottom: var(--space-lg);
}

.form-success-message .success-checkmark svg {
    animation: checkmark 0.6s ease-in-out;
}

.form-success-message .success-checkmark circle {
    stroke: rgba(255, 255, 255, 0.9);
}

.form-success-message .success-checkmark path {
    stroke: white;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: dash 0.5s 0.3s ease-in-out forwards;
}

.form-success-message h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 var(--space-md) 0;
}

.form-success-message p {
    font-size: 1.125rem;
    opacity: 0.95;
    margin: 0;
    line-height: 1.6;
}

.form-success-message .btn-outline {
    border-color: white;
    color: white;
}

.form-success-message .btn-outline:hover {
    background: white;
    color: var(--forest-700);
}

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

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

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

    50% {
        transform: scale(1.1);
    }

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

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

.form-error-message {
    background: #fee2e2;
    border: 2px solid #ef4444;
    color: #b91c1c;
    padding: var(--space-md);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    font-size: 0.9375rem;
    line-height: 1.6;
    animation: shake 0.5s ease;
}

.form-error-message a {
    color: #b91c1c;
    font-weight: 600;
}

@keyframes shake {

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

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-4px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(4px);
    }
}

/* Form Input Error States */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.form-group input.error:focus,
.form-group select.error:focus,
.form-group textarea.error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.form-group.error {
    animation: shake 0.5s ease;
}

/* Loading Spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Focus States for Accessibility */
.btn:focus-visible,
.nav-link:focus-visible,
a:focus-visible {
    outline: 3px solid var(--golden-400);
    outline-offset: 2px;
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: none;
    border-color: var(--forest-600);
    box-shadow: 0 0 0 3px rgba(61, 107, 47, 0.2);
}

/* Improved Touch Targets for Mobile */
@media (max-width: 968px) {
    .nav-toggle {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }

    .social-link {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 48px;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    .btn {
        min-height: 48px;
        padding: 0.875rem 1.5rem;
    }
}

/* ===================================
   Media Page Styles
   =================================== */

/* YouTube Section */
.youtube-section {
    background: white;
}

.media-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}

@media (max-width: 968px) {
    .media-content-grid {
        grid-template-columns: 1fr;
    }
}

.youtube-embed-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: var(--radius-xl);
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.youtube-placeholder {
    text-align: center;
    color: white;
    padding: var(--space-xl);
}

.youtube-placeholder-icon {
    color: #ff0000;
    margin-bottom: var(--space-md);
}

.youtube-placeholder h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
    color: white;
}

.youtube-placeholder p {
    opacity: 0.8;
    margin-bottom: var(--space-lg);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.youtube-info-card {
    background: linear-gradient(135deg, rgba(61, 107, 47, 0.03) 0%, rgba(212, 168, 75, 0.03) 100%);
    border: 1px solid rgba(61, 107, 47, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.youtube-info-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--forest-600);
    margin-bottom: var(--space-lg);
}

.media-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.media-feature-list li {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.media-feature-list .feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.media-feature-list strong {
    display: block;
    color: var(--earth-900);
    margin-bottom: 0.25rem;
}

.media-feature-list p {
    font-size: 0.9375rem;
    color: var(--earth-800);
    opacity: 0.8;
    margin: 0;
}

/* Podcast Section Full */
.podcast-section-full {
    background: linear-gradient(135deg, var(--forest-600) 0%, var(--forest-700) 100%);
    position: relative;
    overflow: hidden;
}

.podcast-section-full::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.podcast-content-full {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 968px) {
    .podcast-content-full {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.podcast-visual-full {
    display: flex;
    justify-content: center;
}

.podcast-logo-full {
    max-width: 350px;
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.podcast-text-full {
    color: white;
}

.podcast-text-full .section-label {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

.podcast-text-full .section-title {
    color: white;
}

.podcast-text-full .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.podcast-topics-full {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.podcast-topics-full .podcast-topic {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.podcast-cta-full {
    margin-top: var(--space-xl);
}

.coming-soon-badge {
    display: inline-block;
    background: rgba(212, 168, 75, 0.2);
    color: var(--golden-400);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

/* Social Section */
.social-section {
    background: var(--earth-50);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 968px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}

.social-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.social-card-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    color: white;
}

.social-card.instagram .social-card-icon {
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
}

.social-card.facebook .social-card-icon {
    background: #1877f2;
}

.social-card.linkedin .social-card-icon {
    background: #0a66c2;
}

.social-card.youtube .social-card-icon {
    background: #ff0000;
}

.social-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--earth-900);
    margin-bottom: 0.25rem;
}

.social-card p {
    font-size: 0.875rem;
    color: var(--earth-800);
    opacity: 0.7;
}

/* ===================================
   Development Volunteer Popup
   =================================== */

.volunteer-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.volunteer-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.volunteer-popup {
    background: white;
    border-radius: var(--radius-2xl);
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transform: scale(0.9) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.volunteer-popup-overlay.active .volunteer-popup {
    transform: scale(1) translateY(0);
}

/* Popup Header with Gradient */
.volunteer-popup-header {
    background: linear-gradient(135deg, var(--forest-600) 0%, var(--forest-700) 50%, #2a4a1f 100%);
    padding: var(--space-xl) var(--space-xl) var(--space-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.volunteer-popup-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.15) 0%, transparent 50%);
    animation: popup-shimmer 8s ease-in-out infinite;
}

@keyframes popup-shimmer {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(25%, 25%); }
}

.volunteer-popup-close {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-sm);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
    z-index: 1;
}

.volunteer-popup-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.volunteer-popup-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.volunteer-popup-header h2 {
    font-family: var(--font-display);
    font-size: 1.625rem;
    color: white;
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Popup Body */
.volunteer-popup-body {
    padding: var(--space-lg) var(--space-xl) var(--space-xl);
}

.volunteer-popup-body > p {
    font-size: 1rem;
    color: var(--earth-800);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
    text-align: center;
}

.volunteer-popup-body > p strong {
    color: var(--forest-600);
}

.volunteer-popup-roles {
    background: linear-gradient(135deg, var(--earth-50) 0%, #f0f7f4 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
    border: 1px solid rgba(61, 107, 47, 0.1);
}

.volunteer-popup-roles h4 {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--forest-600);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.volunteer-popup-roles h4::before {
    content: '';
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--forest-600), var(--golden-400));
    border-radius: 1px;
}

.volunteer-popup-roles ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.625rem;
}

.volunteer-popup-roles li {
    font-size: 0.9375rem;
    color: var(--earth-800);
    padding: 0.5rem 0.75rem;
    padding-left: 2.25rem;
    position: relative;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.volunteer-popup-roles li:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 6px rgba(61, 107, 47, 0.1);
}

.volunteer-popup-roles li::before {
    content: "✓";
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: bold;
    font-size: 0.75rem;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--forest-600), var(--forest-500));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.volunteer-popup-actions {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
}

.volunteer-popup-actions .btn {
    min-width: 150px;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
}

.volunteer-popup-actions .btn-primary {
    box-shadow: 0 4px 14px rgba(61, 107, 47, 0.4);
}

.volunteer-popup-actions .btn-primary:hover {
    box-shadow: 0 6px 20px rgba(61, 107, 47, 0.5);
    transform: translateY(-2px);
}

.volunteer-popup-dismiss {
    background: transparent;
    border: 2px solid var(--earth-800);
    color: var(--earth-800);
    cursor: pointer;
    transition: all 0.2s ease;
}

.volunteer-popup-dismiss:hover {
    background: var(--earth-50);
    border-color: var(--forest-600);
    color: var(--forest-600);
}

/* ===================================
   Development Committee Section Enhancements
   =================================== */

/* Featured volunteer card - "Who Belongs Here" */
.volunteer-card.featured {
    background: linear-gradient(135deg, var(--forest-600) 0%, var(--forest-700) 100%);
    border: none;
    position: relative;
    overflow: hidden;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-lg);
    align-items: center;
    padding: var(--space-xl) var(--space-2xl);
}

@media (min-width: 768px) {
    .volunteer-card.featured {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .volunteer-card.featured {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--space-xl);
    }
}

.volunteer-card.featured::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.volunteer-card.featured::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 40%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.volunteer-card.featured:hover {
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(61, 107, 47, 0.3);
    transform: translateY(-4px);
}

.volunteer-card.featured .volunteer-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

@media (max-width: 767px) {
    .volunteer-card.featured .volunteer-icon {
        margin: 0 auto var(--space-md);
    }
}

.volunteer-card.featured .volunteer-card-content {
    position: relative;
    z-index: 1;
}

.volunteer-card.featured h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.volunteer-card.featured p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.volunteer-card.featured .volunteer-details {
    position: relative;
    z-index: 1;
}

.volunteer-card.featured .volunteer-details li {
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 0.5rem;
    display: inline-block;
    margin-right: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.2s ease;
}

.volunteer-card.featured .volunteer-details li:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.volunteer-card.featured .volunteer-details li::before {
    display: none;
}

.volunteer-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: linear-gradient(135deg, var(--golden-400), #e6b84d);
    color: var(--earth-900);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(212, 168, 75, 0.4);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 2px 10px rgba(212, 168, 75, 0.4); }
    50% { box-shadow: 0 2px 20px rgba(212, 168, 75, 0.6); }
}

/* Regular volunteer cards with icon backgrounds */
.volunteer-card:not(.featured) .volunteer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--forest-50) 0%, #e8f5e9 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: var(--space-md);
    border: 1px solid rgba(61, 107, 47, 0.1);
    transition: all 0.3s ease;
}

.volunteer-card:not(.featured):hover .volunteer-icon {
    background: linear-gradient(135deg, var(--forest-600), var(--forest-500));
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 4px 15px rgba(61, 107, 47, 0.3);
}

/* Volunteer details list styling */
.volunteer-card:not(.featured) .volunteer-details {
    background: var(--earth-50);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    margin-top: auto;
}

.volunteer-card:not(.featured) .volunteer-details li {
    font-size: 0.8125rem;
    padding: 0.375rem 0;
    border-bottom: 1px dashed rgba(92, 64, 51, 0.15);
}

.volunteer-card:not(.featured) .volunteer-details li:last-child {
    border-bottom: none;
}

.volunteer-card:not(.featured) .volunteer-details li::before {
    content: '→';
    color: var(--forest-600);
    margin-right: 0.5rem;
    font-weight: bold;
}

/* Development Committee section header enhancement */
#volunteer .section-header .section-subtitle {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

#volunteer .section-header .section-subtitle strong {
    display: inline-block;
    background: linear-gradient(135deg, var(--golden-400), #e6b84d);
    color: var(--earth-900);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* CTA button enhancement */
.volunteer-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    box-shadow: 0 4px 20px rgba(61, 107, 47, 0.3);
    transition: all 0.3s ease;
}

.volunteer-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(61, 107, 47, 0.4);
}

@media (max-width: 480px) {
    .volunteer-popup-overlay {
        padding: var(--space-sm);
        align-items: flex-start;
        padding-top: var(--space-lg);
    }

    .volunteer-popup {
        margin: 0;
        max-width: 100%;
        max-height: calc(100vh - var(--space-2xl));
        overflow-y: auto;
        border-radius: var(--radius-xl);
    }

    .volunteer-popup-header {
        padding: var(--space-md) var(--space-md) var(--space-sm);
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .volunteer-popup-header h2 {
        font-size: 1.125rem;
        line-height: 1.3;
    }

    .volunteer-popup-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-bottom: var(--space-xs);
    }

    .volunteer-popup-close {
        width: 32px;
        height: 32px;
        font-size: 1.25rem;
        top: var(--space-xs);
        right: var(--space-xs);
    }

    .volunteer-popup-body {
        padding: var(--space-sm) var(--space-md) var(--space-md);
    }

    .volunteer-popup-body > p {
        font-size: 0.875rem;
        margin-bottom: var(--space-sm);
    }

    .volunteer-popup-roles {
        padding: var(--space-sm);
        margin-bottom: var(--space-sm);
    }

    .volunteer-popup-roles h4 {
        font-size: 0.6875rem;
        margin-bottom: var(--space-xs);
    }

    .volunteer-popup-roles li {
        font-size: 0.8125rem;
        padding: 0.375rem 0.5rem 0.375rem 1.75rem;
    }

    .volunteer-popup-roles li::before {
        width: 14px;
        height: 14px;
        font-size: 0.625rem;
        left: 0.5rem;
    }

    .volunteer-popup-actions {
        flex-direction: column;
        gap: var(--space-xs);
    }

    .volunteer-popup-actions .btn {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .volunteer-badge {
        top: var(--space-sm);
        right: var(--space-sm);
        font-size: 0.625rem;
        padding: 0.25rem 0.75rem;
    }
}