/* ============================================================
   UCOID Main Stylesheet
   This file integrates all utilities, components, and pages
   ============================================================ */

/* ------------------------------
   Import All CSS Modules
---------------------------------*/

/* Utilities */
@import url('utilities/reset.css');
@import url('utilities/variables.css');
@import url('utilities/responsive.css');

/* Components */
@import url('components/buttons.css');
@import url('components/cards.css');
@import url('components/forms.css');

/* Pages */
@import url('pages/homepage.css');
@import url('pages/programs.css');
@import url('pages/about.css');
@import url('pages/get-involved.css');
@import url('pages/contact.css');
@import url('pages/team.css'); /* Added team page styles */


/* ------------------------------
   Base Styles
---------------------------------*/

html {
    font-size: 16px; /* Base font size for rem units */
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Enables sticky footer */
}

main {
    flex: 1;
    /* Remove padding-top since header is fixed */
}


/* ------------------------------
   Text Selection Styles
---------------------------------*/

::selection {
    background-color: var(--energy-orange);
    color: var(--white);
}

::-moz-selection {
    background-color: var(--energy-orange);
    color: var(--white);
}


/* ------------------------------
   Scrollbar Styles (Webkit Browsers)
---------------------------------*/

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green-dark);
}


/* ------------------------------
   Loading State Styling
---------------------------------*/

.loading {
    opacity: 0.7;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--light-gray);
    border-top: 2px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* ------------------------------
   High Contrast Mode (Accessibility)
---------------------------------*/

@media (prefers-contrast: high) {
    :root {
        --primary-green: #006400;
        --urban-blue: #000080;
        --energy-orange: #8B4513;
    }
}


/* ------------------------------
   Reduced Motion (Accessibility)
---------------------------------*/

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================================
   Header Styles
   ============================================================ */

.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px; /* Fixed height for consistent spacing */
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    height: 100%;
}

.header-logo .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5530;
    font-family: 'Montserrat', sans-serif;
}

/* Navigation Styles */
.header-nav .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #2c5530;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #2c5530;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s ease;
}

.dropdown-link:hover {
    background-color: #f8f9fa;
    color: #2c5530;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.menu-bar {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
    }

    .header-nav.mobile-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .header-nav .nav-list {
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 1rem;
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .logo-img {
        height: 40px;
    }
}

/* ============================================================
   Updated Hero Slideshow with Controls ON Images
   ============================================================ */

.hero-slideshow {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0;
}

.slideshow-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: white;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.4) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: -1;
}

/* Slideshow Controls - INSIDE the slideshow container, positioned at bottom */
.slideshow-controls {
    position: absolute;
    bottom: 30px; /* Position from bottom of slideshow */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
    min-width: 300px;
}

/* Smaller Navigation Buttons */
.nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 36px; /* Smaller size */
    height: 36px; /* Smaller size */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.nav-btn svg {
    width: 18px; /* Smaller icon */
    height: 18px; /* Smaller icon */
    color: #2c5530;
}

/* Slide Indicators */
.slide-indicators {
    display: flex;
    gap: 0.8rem;
}

.indicator {
    width: 8px; /* Smaller indicators */
    height: 8px; /* Smaller indicators */
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.3);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Slide Content Styling */
.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
}

.slide-title .highlight {
    color: var(--energy-orange);
}

.slide-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

.slide-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-slideshow {
        height: 70vh;
        min-height: 500px;
    }
    
    .slideshow-controls {
        bottom: 20px;
        gap: 1.5rem;
        padding: 0.8rem 1.5rem;
        min-width: 280px;
    }
    
    .nav-btn {
        width: 32px;
        height: 32px;
    }
    
    .nav-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .slide-indicators {
        gap: 0.6rem;
    }
    
    .indicator {
        width: 6px;
        height: 6px;
    }
    
    .slide-title {
        font-size: 2.5rem;
    }
    
    .slide-description {
        font-size: 1.1rem;
    }
    
    .slide-content {
        padding: 0 1rem;
    }
    
    .slide-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .slideshow-controls {
        bottom: 15px;
        gap: 1rem;
        padding: 0.6rem 1.2rem;
        min-width: 250px;
    }
    
    .nav-btn {
        width: 28px;
        height: 28px;
    }
    
    .nav-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .slide-indicators {
        gap: 0.5rem;
    }
    
    .indicator {
        width: 5px;
        height: 5px;
    }
    
    .slide-title {
        font-size: 2rem;
    }
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0 2rem;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    min-width: 180px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a522e;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    line-height: 1.3;
}

/* Slideshow Navigation */
.slideshow-nav {
    position: absolute;
    bottom: 160px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0 2rem;
    width: 100%;
    max-width: 1200px;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.nav-btn svg {
    width: 24px;
    height: 24px;
    color: #2c5530;
}

.slide-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Slide Content Styling */
.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    font-family: 'Montserrat', sans-serif;
}

.slide-title .highlight {
    color: var(--energy-orange);
}

.slide-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

.slide-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Hero Styles */
@media (max-width: 768px) {
    .hero-slideshow {
        height: 70vh;
        min-height: 500px;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .slide-description {
        font-size: 1.1rem;
    }

    .hero-stats {
        bottom: 20px;
        gap: 1rem;
        padding: 0 1rem;
    }

    .hero-stat {
        padding: 1rem 1.5rem;
        min-width: 140px;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .slideshow-nav {
        bottom: 120px;
        gap: 1rem;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .slide-content {
        padding: 0 1rem;
    }

    .slide-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .hero-stats {
        bottom: 100px;
        gap: 0.5rem;
    }

    .hero-stat {
        padding: 0.75rem 1rem;
        min-width: 120px;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-label {
        font-size: 0.8rem;
    }

    .slide-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        position: static;
        margin-top: 2rem;
        padding: 0 1rem;
        transform: none;
        left: auto;
    }

    .slideshow-nav {
        bottom: auto;
        top: 50%;
        transform: translate(-50%, -50%);
    }
}

/* ============================================================
   Footer Styles (if not in separate file)
   ============================================================ */

.main-footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ============================================================
   Stats Grid Section
   ============================================================ */

.stats-grid-section {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.4;
    opacity: 0.9;
    max-width: 200px;
}

/* Responsive Stats Grid */
@media (max-width: 768px) {
    .stats-grid-section {
        padding: 3rem 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 2rem 1.5rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

/* ============================================================
   Team Page Styles (Integrated from separate file)
   ============================================================ */

.team-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/images/team/team-hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: var(--space-12) 0;
    text-align: center;
    margin-top: 80px; /* Account for fixed header */
}

.team-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.team-hero-title {
    font-size: 3.5rem;
    margin-bottom: var(--space-6);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.team-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.team-member-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* UPDATED: Aspect ratio 3.5x4.5 = 1:1.2857 */
.team-member-image {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 128.57%; /* 4.5 / 3.5 * 100 = 128.57% */
    overflow: hidden;
    background-color: var(--light-gray);
    flex-shrink: 0; /* Prevent image container from shrinking */
}

.team-member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* UPDATED: Avatar placeholder for aspect ratio */
.avatar-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-color) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.team-member-card:hover .team-member-image img {
    transform: scale(1.05);
}

.team-member-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: var(--space-4);
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.team-member-card:hover .team-member-social {
    opacity: 1;
}

.team-member-social a {
    color: var(--white);
    background: var(--primary-green);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.team-member-social a:hover {
    background: var(--primary-green-dark);
}

.team-member-info {
    padding: var(--space-6);
    flex-grow: 1; /* Allow info section to take remaining space */
    display: flex;
    flex-direction: column;
}

.team-member-name {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: var(--space-1);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.team-member-position {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: var(--space-4);
    font-family: 'Montserrat', sans-serif;
}

.team-member-bio {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: var(--space-4);
    font-family: 'Open Sans', sans-serif;
    flex-grow: 1; /* Allow bio to take available space */
}

.team-member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.expertise-tag {
    background: var(--light-gray);
    color: var(--text-light);
    padding: var(--space-1) var(--space-3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

/* Extended Team Grid */
.extended-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-6);
}

.extended-team-item {
    text-align: center;
    padding: var(--space-4);
}

.extended-team-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto var(--space-4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .team-member-image {
        /* Keep the same aspect ratio on mobile */
        padding-bottom: 128.57%;
    }
    
    .team-member-social {
        opacity: 1; /* Always show social icons on mobile */
        background: rgba(0, 0, 0, 0.6);
    }
    
    .team-member-info {
        padding: var(--space-4);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Extended Team */
.extended-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    margin-top: var(--space-8);
}

.extended-team-item {
    text-align: center;
    padding: var(--space-6);
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.extended-team-item:hover {
    transform: translateY(-5px);
}

.extended-team-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    font-size: 1.8rem;
}

.extended-team-item h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: var(--space-3);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.extended-team-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

/* Section Header Consistency */
.section-header {
    text-align: center;
    margin-bottom: var(--space-8);
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: var(--space-3);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-6);
}

.value-card {
    background: var(--white);
    border-radius: 12px;
    padding: var(--space-6);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
    color: var(--primary-green);
}

.value-title {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: var(--space-3);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.value-description {
    color: var(--text-light);
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

/* CTA Section */
.program-cta {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    color: var(--white);
    padding: var(--space-12) 0;
    text-align: center;
}

.program-cta-title {
    font-size: 2.5rem;
    margin-bottom: var(--space-4);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.program-cta-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto var(--space-6);
    line-height: 1.6;
    opacity: 0.9;
    font-family: 'Open Sans', sans-serif;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

/* Responsive Team Page */
@media (max-width: 768px) {
    .team-hero {
        padding: var(--space-8) 0;
        margin-top: 80px;
    }
    
    .team-hero-title {
        font-size: 2.5rem;
    }
    
    .team-hero-description {
        font-size: 1.1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member-image {
        height: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .team-hero-title {
        font-size: 2rem;
    }
    
    .extended-team-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .program-cta-title {
        font-size: 2rem;
    }
    
    .program-cta-description {
        font-size: 1.1rem;
    }
}

/* Ensure consistent spacing */
.section-padding {
    padding: var(--space-12) 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Utility classes for team page */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: var(--space-4);
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-6 {
    margin-bottom: var(--space-6);
}

.mb-8 {
    margin-bottom: var(--space-8);
}

/* ============================================================
   Programs Page Styles
   ============================================================ */

/* Program Hero */
.programs-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/images/programs/climate-action-hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 6rem 0 4rem;
    text-align: center;
    margin-top: 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.programs-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.program-icon-large {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.programs-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.programs-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
}

/* Program Detail Sections */
.program-detail {
    padding: 5rem 0;
}

.program-header {
    text-align: center;
    margin-bottom: 3rem;
}

.program-header h2 {
    font-size: 2.5rem;
    color: var(--primary-green, #2c5530);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.program-overview {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light, #666);
    max-width: 800px;
    margin: 0 auto 1rem;
    font-family: 'Open Sans', sans-serif;
}

/* Program Stats */
.program-stats-section {
    background: var(--light-gray, #f8f9fa);
    padding: 3rem 0;
    margin: 3rem 0;
    border-radius: 12px;
}

.program-stats-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green, #2c5530);
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.program-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.program-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--white, #fff);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.program-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green, #2c5530);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.program-stat-label {
    font-size: 0.9rem;
    color: var(--text-light, #666);
    font-weight: 500;
    line-height: 1.4;
}

/* Program Goals */
.program-goals {
    margin: 5rem 0;
}

.program-goals h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green, #2c5530);
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.goal-item {
    text-align: center;
    padding: 2rem;
    background: var(--white, #fff);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
}

.goal-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-green, #2c5530);
}

.goal-item h3 {
    font-size: 1.5rem;
    color: var(--text-dark, #333);
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.goal-item p {
    color: var(--text-light, #666);
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

/* Program Features - Specific for program pages */
.program-features-section {
    margin: 5rem 0;
}

.program-features-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-green, #2c5530);
    margin-bottom: 3rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.program-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 1.5rem;
}

.program-card {
    background: var(--white, #fff);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-card-title {
    font-size: 1.5rem;
    color: var(--primary-green, #2c5530);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.program-card-description {
    color: var(--text-light, #666);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: 'Open Sans', sans-serif;
    flex-grow: 1;
}

/* Card Stats */
.card-stats {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--light-gray, #e9ecef);
    border-bottom: 1px solid var(--light-gray, #e9ecef);
}

.card-stat {
    text-align: center;
    flex: 1;
}

.card-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green, #2c5530);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.card-stat .stat-label {
    font-size: 0.85rem;
    color: var(--text-light, #666);
    margin-top: 0.25rem;
}

/* Action Steps */
.action-steps {
    margin-top: 1rem;
}

.action-steps h4 {
    font-size: 1.2rem;
    color: var(--text-dark, #333);
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.action-steps ul {
    padding-left: 1.5rem;
    margin: 0;
}

.action-steps li {
    color: var(--text-light, #666);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-family: 'Open Sans', sans-serif;
}

/* Lists in program cards */
.program-card ul {
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.program-card li {
    color: var(--text-light, #666);
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-family: 'Open Sans', sans-serif;
}

/* Section Subtitle for programs */
.program-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light, #666);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

/* CTA Section for programs */
.program-cta {
    background: linear-gradient(135deg, var(--primary-green, #2c5530) 0%, var(--primary-green-dark, #1e3a24) 100%);
    color: var(--white, #fff);
    padding: 5rem 0;
    text-align: center;
    border-radius: 12px;
    margin: 5rem 0;
}

.program-cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.program-cta-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
    opacity: 0.9;
    font-family: 'Open Sans', sans-serif;
}

.program-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Responsive Design for Programs */
@media (max-width: 768px) {
    .programs-hero {
        padding: 4rem 0 2rem;
        min-height: 50vh;
    }

    .programs-hero-title {
        font-size: 2.5rem;
    }

    .programs-hero-description {
        font-size: 1.1rem;
    }

    .program-icon-large {
        font-size: 4rem;
    }

    .program-header h2,
    .program-goals h2,
    .program-features-section h2,
    .program-stats-section h2 {
        font-size: 2rem;
    }

    .program-stat-number {
        font-size: 2rem;
    }

    .program-features-grid {
        grid-template-columns: 1fr;
    }

    .goals-grid {
        grid-template-columns: 1fr;
    }

    .program-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .program-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .program-cta .btn-lg {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .programs-hero-title {
        font-size: 2rem;
    }

    .programs-hero-description {
        font-size: 1rem;
    }

    .program-icon-large {
        font-size: 3rem;
    }

    .program-header h2,
    .program-goals h2,
    .program-features-section h2,
    .program-stats-section h2 {
        font-size: 1.8rem;
    }

    .program-stat-number {
        font-size: 1.8rem;
    }

    .program-stats-grid {
        grid-template-columns: 1fr;
    }

    .program-card,
    .goal-item {
        padding: 1.5rem;
    }
}

/* ============================================================
   Footer Styles
   ============================================================ */

.main-footer {
    background: var(--dark-gray, #2c3e50);
    color: #fff;
    padding: 4rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Open Sans', sans-serif;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-green, #2c5530);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.2rem;
}

/* Footer Links */
.footer-links h4,
.footer-contact h4,
.footer-newsletter h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.footer-link:hover {
    color: var(--primary-green, #2c5530);
}

/* Contact Info */
.footer-contact {
    color: #2c5530;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-icon {
    color: var(--primary-green, #2c5530);
    font-size: 1.2rem;
    min-width: 20px;
    margin-top: 0.2rem;
}

.contact-text {
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

/* Newsletter */
.footer-newsletter {
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-green, #2c5530);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary-green, #2c5530);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--primary-green-dark, #1e3a24);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-family: 'Open Sans', sans-serif;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Open Sans', sans-serif;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--primary-green, #2c5530);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green, #2c5530);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-green-dark, #1e3a24);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top i {
    font-size: 1.2rem;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .main-footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-btn {
        width: 100%;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 0 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* Testimonial Styling for Program Cards */
.card-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray, #e9ecef);
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: var(--primary-green, #2c5530);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.testimonial-location {
    display: block;
    color: var(--text-light, #666);
    font-size: 0.85rem;
    font-family: 'Open Sans', sans-serif;
    margin-top: 0.25rem;
}

/* ============================================================
   Get Involved Page Styles
   ============================================================ */

/* Get Involved Hero */
.get-involved-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/images/get-involved/get-involved-hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 8rem 0 6rem;
    text-align: center;
    margin-top: 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.get-involved-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.get-involved-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.get-involved-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
}

/* Involvement Options */
.involvement-options {
    padding: 5rem 0;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.option-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.option-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.option-card.partner {
    border-top: 4px solid var(--primary-green, #2c5530);
}

.option-card.donate {
    border-top: 4px solid var(--energy-orange, #e67e22);
}

.option-card.volunteer {
    border-top: 4px solid var(--urban-blue, #3498db);
}

.option-card.contribute {
    border-top: 4px solid var(--primary-purple, #9b59b6);
}

.option-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.option-title {
    font-size: 1.75rem;
    color: var(--text-dark, #333);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.option-description {
    color: var(--text-light, #666);
    line-height: 1.6;
    margin-bottom: 2rem;
    flex-grow: 1;
    font-family: 'Open Sans', sans-serif;
}

.option-card .btn {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

/* Partnership Tiers */
.partnership-tiers {
    background: var(--light-gray, #f8f9fa);
    padding: 5rem 0;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tier-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-5px);
}

.tier-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--primary-green, #2c5530);
    position: relative;
}

.tier-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.tier-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-green, #2c5530);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.tier-header {
    margin-bottom: 2rem;
}

.tier-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-green, #2c5530);
}

.tier-name {
    font-size: 1.5rem;
    color: var(--text-dark, #333);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.tier-price {
    font-size: 2rem;
    color: var(--primary-green, #2c5530);
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.tier-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
    flex-grow: 1;
}

.tier-feature {
    padding: 0.75rem 0;
    color: var(--text-light, #666);
    border-bottom: 1px solid var(--light-gray, #e9ecef);
    font-family: 'Open Sans', sans-serif;
    display: flex;
    align-items: center;
}

.tier-feature:last-child {
    border-bottom: none;
}

.tier-feature::before {
    content: '✓';
    color: var(--primary-green, #2c5530);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Impact Section */
.impact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-green, #2c5530) 0%, var(--primary-green-dark, #1e3a24) 100%);
    color: #fff;
}

.impact-section .section-header {
    margin-bottom: 3rem;
}

.impact-section .section-title {
    color: #fff;
}

.impact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.impact-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-card .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.impact-card .stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-family: 'Open Sans', sans-serif;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--light-gray, #f8f9fa);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    color: var(--text-dark, #333);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--text-light, #666);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-family: 'Open Sans', sans-serif;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-actions .btn {
    min-width: 180px;
}

.btn-cta {
    background: var(--primary-green, #2c5530);
    color: #fff;
    border: none;
}

.btn-cta:hover {
    background: var(--primary-green-dark, #1e3a24);
}

/* Responsive Design */
@media (max-width: 768px) {
    .get-involved-hero {
        padding: 6rem 0 4rem;
        min-height: 50vh;
    }

    .get-involved-hero-title {
        font-size: 2.5rem;
    }

    .get-involved-hero-description {
        font-size: 1.1rem;
    }

    .options-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 2rem auto 0;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 2rem auto 0;
    }

    .tier-card.featured {
        transform: none;
    }

    .tier-card.featured:hover {
        transform: translateY(-5px);
    }

    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-description {
        font-size: 1.1rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .get-involved-hero-title {
        font-size: 2rem;
    }

    .get-involved-hero-description {
        font-size: 1rem;
    }

    .option-card,
    .tier-card {
        padding: 2rem 1.5rem;
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .tier-card.featured::before {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
}

/* ============================================================
   Programs Index Page Styles
   ============================================================ */

/* Programs Hero */
.programs-index-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/images/programs/programs-hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 8rem 0 6rem;
    text-align: center;
    margin-top: 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.programs-index-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.programs-index-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.programs-index-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
}

/* Programs Grid */
.programs-index-section {
    padding: 5rem 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.program-index-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-index-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.program-index-card.climate {
    border-top: 4px solid var(--primary-green, #2c5530);
}

.program-index-card.health {
    border-top: 4px solid var(--energy-orange, #e67e22);
}

.program-index-card.skills {
    border-top: 4px solid var(--urban-blue, #3498db);
}

.program-index-card.governance {
    border-top: 4px solid var(--primary-purple, #9b59b6);
}

.program-index-card.inclusion {
    border-top: 4px solid var(--secondary-green, #27ae60);
}

.program-index-card .card-content {
    padding: 2.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.card-title {
    font-size: 1.5rem;
    color: var(--text-dark, #333);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.4;
}

.card-description {
    color: var(--text-light, #666);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-family: 'Open Sans', sans-serif;
}

.program-index-card .card-stats {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    padding: 1rem 0;
    border-top: 1px solid var(--light-gray, #e9ecef);
    border-bottom: 1px solid var(--light-gray, #e9ecef);
}

.program-index-card .card-stat {
    text-align: center;
    flex: 1;
}

.program-index-card .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green, #2c5530);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.program-index-card .stat-label {
    font-size: 0.85rem;
    color: var(--text-light, #666);
    margin-top: 0.25rem;
    line-height: 1.3;
}

.program-index-card .card-footer {
    margin-top: auto;
    padding-top: 1rem;
}

.program-index-card .btn {
    width: 100%;
}

/* Impact Section for Programs Page */
.programs-impact-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-green, #2c5530) 0%, var(--primary-green-dark, #1e3a24) 100%);
    color: #fff;
}

.programs-impact-section .section-header {
    margin-bottom: 3rem;
}

.programs-impact-section .section-title {
    color: #fff;
}

.programs-impact-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.programs-impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.programs-impact-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.programs-impact-card .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.programs-impact-card .stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-family: 'Open Sans', sans-serif;
}

/* CTA Section for Programs Page */
.programs-cta-section {
    padding: 5rem 0;
    background: var(--light-gray, #f8f9fa);
}

.programs-cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.programs-cta-title {
    font-size: 2.5rem;
    color: var(--text-dark, #333);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.programs-cta-description {
    font-size: 1.25rem;
    color: var(--text-light, #666);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    font-family: 'Open Sans', sans-serif;
}

.programs-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.programs-cta-actions .btn {
    min-width: 180px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .programs-index-hero {
        padding: 6rem 0 4rem;
        min-height: 50vh;
    }

    .programs-index-hero-title {
        font-size: 2.5rem;
    }

    .programs-index-hero-description {
        font-size: 1.1rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 2rem auto 0;
    }

    .programs-impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .programs-cta-title {
        font-size: 2rem;
    }

    .programs-cta-description {
        font-size: 1.1rem;
    }

    .programs-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .programs-cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .programs-index-hero-title {
        font-size: 2rem;
    }

    .programs-index-hero-description {
        font-size: 1rem;
    }

    .program-index-card .card-content {
        padding: 2rem 1.5rem;
    }

    .programs-impact-stats {
        grid-template-columns: 1fr;
    }

    .programs-cta-title {
        font-size: 1.8rem;
    }

    .programs-cta-actions .btn {
        min-width: auto;
        width: 100%;
    }
}

/* ============================================================
   Social Inclusion Program Page (Uses existing program styles)
   ============================================================ */

/* The social inclusion page uses the same CSS classes as other program pages
   Make sure these are already in your styles.css from earlier program pages */

/* Social inclusion-specific color accent */
.social-inclusion-accent {
    color: var(--secondary-green, #27ae60);
}

/* Add green accent to social inclusion elements */
.program-card.social-inclusion-feature {
    border-top: 4px solid var(--secondary-green, #27ae60);
}

.social-inclusion-feature .goal-icon,
.social-inclusion-feature .program-card-title {
    color: var(--secondary-green, #27ae60);
}

/* Inclusion focus area cards */
.inclusion-focus-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.inclusion-focus-card:hover {
    transform: translateY(-5px);
}

.inclusion-focus-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-green, #27ae60);
}

.inclusion-focus-title {
    font-size: 1.3rem;
    color: var(--text-dark, #333);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.inclusion-focus-description {
    color: var(--text-light, #666);
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

/* Success story styling for social inclusion */
.inclusion-success-story {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1) 0%, rgba(46, 204, 113, 0.05) 100%);
    border-radius: 12px;
    padding: 2rem;
    margin: 1rem 0;
}

.inclusion-quote {
    font-style: italic;
    color: var(--text-dark, #333);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1rem;
}

.inclusion-quote-author {
    display: block;
    font-weight: 600;
    color: var(--secondary-green, #27ae60);
    font-family: 'Montserrat', sans-serif;
    margin-top: 1rem;
}

.inclusion-quote-role {
    display: block;
    color: var(--text-light, #666);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* ============================================================
   Donate Page Styles
   ============================================================ */

/* Donation Hero */
.donate-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/images/get-involved/donate-hero.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 8rem 0 6rem;
    text-align: center;
    margin-top: 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.donate-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.donate-hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.donate-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    font-family: 'Open Sans', sans-serif;
}

/* Donation Form Container */
.donation-section {
    padding: 5rem 0;
}

.donation-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    padding: 3rem;
}

.contact-form-title {
    font-size: 2.5rem;
    color: var(--text-dark, #333);
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Form Sections */
.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--light-gray, #e9ecef);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.5rem;
    color: var(--primary-green, #2c5530);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Donation Amount Selection */
.donation-amounts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.donation-amount {
    position: relative;
}

.donation-amount-input {
    display: none;
}

.donation-amount-label {
    display: block;
    padding: 1rem 0.5rem;
    background: var(--light-gray, #f8f9fa);
    border: 2px solid var(--light-gray, #e9ecef);
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.donation-amount-input:checked + .donation-amount-label {
    background: var(--primary-green, #2c5530);
    color: #fff;
    border-color: var(--primary-green, #2c5530);
}

.donation-amount-label:hover {
    border-color: var(--primary-green, #2c5530);
    transform: translateY(-2px);
}

/* Custom Amount */
.donation-custom-amount {
    margin: 1.5rem 0;
}

/* Donation Summary */
.donation-summary {
    background: linear-gradient(135deg, rgba(44, 85, 48, 0.1) 0%, rgba(44, 85, 48, 0.05) 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.donation-amount-display {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green, #2c5530);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}

.donation-impact {
    font-size: 1.2rem;
    color: var(--text-light, #666);
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark, #333);
    font-family: 'Montserrat', sans-serif;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-gray, #e9ecef);
    border-radius: 6px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green, #2c5530);
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px;
    padding-right: 2.5rem;
}

.form-check {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.form-check-input {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

.form-check-label {
    color: var(--text-light, #666);
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
}

/* Payment Form Styling */
#cardNumber {
    letter-spacing: 0.1em;
}

#expiryDate, #cvv {
    text-align: center;
}

/* Form Messages */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    font-family: 'Open Sans', sans-serif;
}

.form-message.info {
    background: rgba(52, 152, 219, 0.1);
    border-left: 4px solid var(--urban-blue, #3498db);
    color: var(--text-dark, #333);
}

/* Form Actions */
.form-actions {
    margin-top: 2rem;
}

.form-actions.center {
    text-align: center;
}

/* Security Badge */
.security-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    color: var(--text-light, #666);
    font-size: 0.9rem;
    font-family: 'Open Sans', sans-serif;
}

.security-icon {
    color: var(--primary-green, #2c5530);
    font-size: 1.2rem;
}

/* Impact Calculator */
.impact-calculator-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.impact-calculator-card {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.impact-calculator-card .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green, #2c5530);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
}

.impact-calculator-card .stat-label {
    font-size: 0.9rem;
    color: var(--text-light, #666);
    line-height: 1.4;
}

/* Other Ways to Give */
.other-ways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.other-way-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.other-way-card:hover {
    transform: translateY(-5px);
}

.other-way-icon {
    font-size: 2.5rem;
    color: var(--primary-green, #2c5530);
    margin-bottom: 1rem;
}

.other-way-title {
    font-size: 1.5rem;
    color: var(--text-dark, #333);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.other-way-description {
    color: var(--text-light, #666);
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

/* Transparency Section */
.transparency-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.transparency-card {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.transparency-card .value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green, #2c5530);
}

.transparency-card .value-title {
    font-size: 1.5rem;
    color: var(--text-dark, #333);
    margin-bottom: 0.75rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.transparency-card .value-description {
    color: var(--text-light, #666);
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .donate-hero {
        padding: 6rem 0 4rem;
        min-height: 50vh;
    }

    .donate-hero-title {
        font-size: 2.5rem;
    }

    .donate-hero-description {
        font-size: 1.1rem;
    }

    .donation-form-container {
        padding: 2rem;
        margin: 0 1rem;
    }

    .contact-form-title {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .donation-amounts {
        grid-template-columns: repeat(3, 1fr);
    }

    .donation-amount-display {
        font-size: 2.5rem;
    }

    .other-ways-grid {
        grid-template-columns: 1fr;
    }

    .transparency-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .donate-hero-title {
        font-size: 2rem;
    }

    .donate-hero-description {
        font-size: 1rem;
    }

    .donation-form-container {
        padding: 1.5rem;
    }

    .donation-amounts {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-title {
        font-size: 1.8rem;
    }

    .form-section-title {
        font-size: 1.3rem;
    }

    .transparency-stats {
        grid-template-columns: 1fr;
    }
}

/* Contact Page Specific Styles */

/* Contact Hero */
.contact-hero {
    background: linear-gradient(rgba(44, 85, 48, 0.8), rgba(44, 85, 48, 0.9)), url('../assets/images/contact/contact-hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 20px;
    text-align: center;
    margin-top: 70px;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-hero-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
}

.contact-info h2 {
    color: var(--dark-gray);
    margin-bottom: 30px;
    font-size: 2rem;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-green);
}

.contact-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.5rem;
}

.contact-details h4 {
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--medium-gray);
    margin-bottom: 5px;
    line-height: 1.5;
}

/* Office Hours */
.office-hours {
    margin-bottom: 30px;
}

.office-hours h4 {
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

/* Social Contact */
.social-contact h4 {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.social-contact .social-links {
    display: flex;
    gap: 15px;
}

.social-contact .social-link {
    width: 45px;
    height: 45px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-contact .social-link:hover {
    background: var(--secondary-green);
    transform: translateY(-3px);
}

/* Contact Form */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-form-title {
    color: var(--dark-gray);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

/* Form Styles */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-gray);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Open Sans', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.1);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23333' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
    padding-right: 40px;
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-actions {
    margin-top: 30px;
}

/* Form Status */
.form-status {
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Map Section */
.map-section {
    background: var(--light-gray);
}

.map-container {
    margin-top: 30px;
}

.map-embed {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-instructions {
    margin-top: 30px;
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

.map-instructions h4 {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.map-instructions p {
    color: var(--medium-gray);
    margin-bottom: 15px;
    line-height: 1.6;
}

/* FAQ Section */
.faq-list {
    margin-top: 40px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-answer {
    background: #f9f9f9;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 20px;
        margin-top: 60px;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-description {
        font-size: 1.1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form-container {
        padding: 25px;
    }
    
    .contact-method {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 1.8rem;
    }
    
    .contact-form-container {
        padding: 20px;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-icon {
        margin-bottom: 10px;
    }
}

