/* ==========================================================================
   PAGES STYLES
   All page-specific styles combined into one file
   ========================================================================== */

/* ==========================================================================
   COMMON PAGE STYLES
   ========================================================================== */
@import url("variables.css");

/* Page Hero Section (Used on About, Projects, Partners, Contact pages) */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 70px;
}

.page-hero h1 {
    font-size: var(--font-hero);
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.page-hero p {
    font-size: var(--font-md);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

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

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

/* About Section */
.about-section {
    padding: var(--space-section) 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: var(--space-lg);
    font-size: var(--font-md);
    line-height: var(--line-normal);
    text-align: justify;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* Values Section */
.values-section {
    background: var(--light-color);
    padding: var(--space-section) 0;
}

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

.value-card {
    background: var(--white);
    padding: var(--space-xxl) var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover,
.stat-box:hover,
.office-card:hover,
.category-card:hover,
.empowerment-stat:hover,
.component-card:hover,
.reason-card:hover,
.committee-card:hover,
.document-card:hover,
.benefit-card:hover,
.option-card:hover,
.tier-card:hover,
.sponsorship-card:hover,
.opportunity-card:hover,
.highlight-card:hover,
.donor-option:hover,
.report-card:hover,
.resource-card:hover,
.step-card:hover,
.partner-card:hover,
.support-card:hover {
    transform: translateY(var(--hover-translate-lg));
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    color: var(--white);
    font-size: var(--font-xxl);
}

.value-card h3 {
    margin-bottom: var(--space-lg);
    color: var(--dark-color);
}

.value-card p{
    text-align: justify;
    color: var(--text-color);
}

.value-card ul {
    list-style: none;
    text-align: left;
    margin-top: var(--space-lg);
}

.value-card ul li {
    margin-bottom: var(--space-sm);
    padding-left: var(--space-lg);
    position: relative;
}

.value-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Multimedia Section */
.multimedia-section {
    padding: var(--space-section) 0;
}

.video-container {
    margin-bottom: 60px;
}

.video-placeholder {
    height: 400px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.video-placeholder:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../assets/images/Petition%20Session%20Group%20Photo%20(1).jpg') center/cover;
    opacity: 0.5;
}

.video-placeholder i {
    font-size: 5rem;
    margin-bottom: var(--space-lg);
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: var(--transition);
}

.video-placeholder i:hover {
    transform: scale(var(--scale-hover));
}

.video-placeholder p {
    font-size: var(--font-lg);
    position: relative;
    z-index: 1;
}

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

.photo-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: var(--image-height-md);
}

.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.photo-item:hover img {
    transform: scale(var(--scale-image-hover));
}

.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    padding: var(--space-md);
    text-align: center;
    transform: translateY(100%);
    transition: transform var(--transition);
}

.photo-item:hover .photo-caption {
    transform: translateY(0);
}


.team-preview {
    background: var(--light-color);
    padding: var(--space-section) 0;
}

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-round);
    object-fit: cover;
    margin-bottom: var(--space-lg);
    border: 5px solid var(--white);
    box-shadow: var(--shadow);
}

.team-member h3 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-member .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

/* Impact Stats */
.impact-stats {
    padding: var(--space-section) 0;
}

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

.stat-box {
    text-align: center;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-box h3 {
    color: var(--primary-color);
    font-size: var(--font-lg);
    margin-bottom: var(--space-sm);
}

/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

/* Contact Section */
/* ==========================================================================
   CONTACT PAGE STYLES - MODERN RESTRUCTURED
   ========================================================================== */

/* Main Contact Section */
.contact-section {
    padding: 70px 0 60px;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.12fr;
    gap: 36px;
    align-items: stretch;
}

/* Common Contact Cards */
.contact-card {
    background: var(--white, #ffffff);
    border: 1px solid rgba(0, 51, 102, 0.09);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 10px 30px rgba(0, 20, 50, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 16px 36px rgba(0, 20, 50, 0.08);
    border-color: rgba(0, 51, 102, 0.16);
}

.contact-card .card-header {
    margin-bottom: 24px;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    background: rgba(0, 51, 102, 0.08);
    color: var(--primary-color, #003366);
    margin-bottom: 10px;
}

.contact-card .card-header h2 {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--primary-color, #003366);
    margin-bottom: 6px;
    line-height: 1.25;
}

.underline-left {
    width: 48px;
    height: 3.5px;
    background: linear-gradient(to right, var(--primary-color, #003366), var(--secondary-color, #ff6600));
    border-radius: 2px;
    margin: 8px 0 14px 0;
}

.card-lead {
    font-size: 0.94rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* Get in Touch - Channels List */
.contact-channels-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.channel-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: #f8fafc;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.channel-item:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.channel-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.channel-icon.location-icon {
    background: rgba(0, 51, 102, 0.1);
    color: #003366;
}

.channel-icon.phone-icon {
    background: rgba(16, 185, 129, 0.12);
    color: #059669;
}

.channel-icon.email-icon {
    background: rgba(255, 102, 0, 0.12);
    color: #ea580c;
}

.channel-icon.clock-icon {
    background: rgba(124, 58, 237, 0.12);
    color: #7c3aed;
}

.channel-body {
    flex: 1;
}

.channel-body h4 {
    font-size: 0.98rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.channel-body p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 6px 0;
}

.channel-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-color, #003366);
    text-decoration: none;
    transition: color 0.2s ease;
}

.channel-link:hover {
    color: var(--secondary-color, #ff6600);
}

.channel-links-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 11px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.83rem;
    font-weight: 500;
    color: #1e293b;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-chip:hover {
    border-color: var(--primary-color, #003366);
    color: var(--primary-color, #003366);
    background: #f0f7ff;
    transform: translateY(-1px);
}

.contact-chip .chip-label {
    font-size: 0.72rem;
    color: #94a3b8;
    font-weight: 400;
}

.contact-chip:hover .chip-label {
    color: var(--primary-color, #003366);
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 0 0;
    font-size: 0.84rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
    color: #475569;
}

.hours-list strong {
    color: #1e293b;
}

.hours-list .text-muted {
    color: #94a3b8;
}

/* Emergency Alert Box */
.emergency-card {
    display: flex;
    gap: 14px;
    align-items: center;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border: 1.5px solid #fed7aa;
    border-radius: 12px;
    padding: 16px 18px;
    margin-top: 18px;
}

.emergency-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ea580c;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.emergency-content h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #9a3412;
    margin-bottom: 2px;
}

.emergency-content p {
    font-size: 0.8rem;
    color: #c2410c;
    margin: 0 0 6px 0;
    line-height: 1.35;
}

.emergency-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #9a3412;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    transition: color 0.2s;
}

.emergency-phone:hover {
    color: #7c2d12;
    text-decoration: underline;
}

/* Send Us a Message - Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 0;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 6px;
}

.contact-form label i {
    color: var(--primary-color, #003366);
    font-size: 0.8rem;
}

.contact-form label .required {
    color: #dc2626;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    background: #fbfcfe;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.92rem;
    color: #1e293b;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    background: #ffffff;
    border-color: var(--primary-color, #003366);
    box-shadow: 0 0 0 3.5px rgba(0, 51, 102, 0.1);
    outline: none;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    padding-right: 36px;
}

.select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #94a3b8;
    font-size: 0.75rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 110px;
}

.newsletter-check-group {
    margin-top: -4px;
    margin-bottom: 22px;
}

.custom-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.custom-checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-color, #003366);
    cursor: pointer;
}

.checkbox-text {
    font-size: 0.84rem;
    color: #64748b;
    line-height: 1.45;
}

.btn-submit-message {
    width: 100%;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(0, 51, 102, 0.2);
    transition: all 0.25s ease;
}

.btn-submit-message:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 51, 102, 0.28);
}

.form-privacy-note {
    text-align: center;
    font-size: 0.78rem;
    color: #94a3b8;
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ==========================================================================
   FIND US SECTION (Dedicated Map & Location Guide)
   ========================================================================== */
.find-us-section {
    padding: 70px 0;
    background: #ffffff;
    border-top: 1px solid #eef2f6;
    border-bottom: 1px solid #eef2f6;
}

.find-us-section .section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}

.find-us-section .section-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    background: rgba(0, 51, 102, 0.08);
    color: var(--primary-color, #003366);
    margin-bottom: 10px;
}

.find-us-section .section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color, #003366);
    margin-bottom: 8px;
}

.find-us-section .section-header p {
    color: #64748b;
    font-size: 1rem;
}

.find-us-wrapper {
    display: grid;
    grid-template-columns: 3.8fr 8.2fr;
    gap: 28px;
    align-items: stretch;
}

.location-details-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.location-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-color, #003366);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.location-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 2px 0;
}

.location-tag {
    font-size: 0.78rem;
    font-weight: 600;
    color: #ea580c;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-meta-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.meta-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.meta-item i {
    color: var(--primary-color, #003366);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.meta-item strong {
    display: block;
    font-size: 0.88rem;
    color: #1e293b;
    margin-bottom: 2px;
}

.meta-item p {
    font-size: 0.84rem;
    color: #64748b;
    margin: 0;
    line-height: 1.45;
}

.location-actions .btn-directions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 18px;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
}

.map-frame-container {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    min-height: 380px;
    height: 100%;
    background: #e2e8f0;
}

.map-frame-container iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    display: block;
}

/* Responsive Contact Styles */
@media (max-width: 991.98px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .find-us-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .map-frame-container {
        min-height: 320px;
    }
    .map-frame-container iframe {
        min-height: 320px;
    }
}

@media (max-width: 576px) {
    .contact-section,
    .find-us-section {
        padding: 45px 0;
    }
    .contact-card {
        padding: 24px 18px;
        border-radius: 14px;
    }
    .contact-card .card-header h2 {
        font-size: 1.5rem;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .channel-item {
        padding: 12px;
    }
    .channel-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .channel-links-group {
        flex-direction: column;
        align-items: flex-start;
    }
    .contact-chip {
        width: 100%;
    }
    .location-details-card {
        padding: 22px 18px;
    }
    .find-us-section .section-header h2 {
        font-size: 1.7rem;
    }
}


/* Regional Offices */
.regional-offices {
    background: var(--light-color);
    padding: 80px 0;
}

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

.office-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}



.office-card h4 {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    color: var(--dark-color);
}

.office-card h4 i {
    color: var(--primary-color);
}

.office-card p {
    margin-bottom: var(--space-sm);
    color: var(--text-light);
}

.office-card strong {
    color: var(--dark-color);
}

/* FAQ Section */
.contact-faq {
    padding: 80px 0;
}

.faq-grid {
    max-width: 800px;
    margin: var(--space-xxl) auto 0;
}

.faq-item {
    margin-bottom: var(--space-md);
    border: 1px solid var(--gray);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: var(--space-lg);
    background: var(--white);
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: var(--font-base);
    font-weight: 500;
    color: var(--dark-color);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--light-color);
}

.faq-question.active {
    background: var(--light-color);
}

.faq-question i {
    transition: transform var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition), padding var(--transition);
    background: var(--white);
}

.faq-answer.active {
    padding: var(--space-lg);
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Social Connect */
.social-connect {
    background: var(--dark-color);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.social-connect .section-header h2,
.social-connect .section-header p {
    color: var(--white);
}

.social-connect .underline {
    background: var(--white);
}

.social-links-large {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: var(--space-xl, 32px);
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 82px;
    padding: 10px 8px;
    border-radius: 12px;
    color: var(--white, #ffffff);
    text-decoration: none;
    transition: all 0.25s ease;
    font-weight: 600;
    font-size: 0.82rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.social-link i {
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.social-link.facebook { background: #1877f2; }
.social-link.twitter { background: #1da1f2; }
.social-link.instagram { background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d); }
.social-link.linkedin { background: #0077b5; }
.social-link.youtube { background: #ff0000; }
.social-link.whatsapp { background: #25d366; }
.social-link.tiktok { background: #000000; }
.social-link.threads { background: #101010; }
.social-link.telegram { background: #0088cc; }

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

/* ==========================================================================
   PARTNERS PAGE STYLES
   ========================================================================== */

/* Partners Intro */
.partners-intro {
    padding: 80px 0;
    text-align: center;
}

.partners-intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: var(--font-md);
    line-height: var(--line-normal);
}

/* Partners Slider */
.partners-slider-section {
    background: var(--light-color);
    padding: 80px 0;
}

.partners-slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.partners-slider {
    display: flex;
    gap: 40px;
    transition: transform var(--transition-slow);
    padding: var(--space-lg) 0;
}

.partner-logo {
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(var(--hover-translate-lg));
}

.partner-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    margin-bottom: var(--space-lg);
}

.partner-info h4 {
    margin-bottom: 5px;
    font-size: var(--font-md);
}

.partner-info p {
    color: var(--text-light);
    font-size: var(--font-sm);
}

.partners-slider-prev,
.partners-slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: var(--slider-btn-size);
    height: var(--slider-btn-size);
    border-radius: var(--radius-round);
    box-shadow: var(--shadow);
    cursor: pointer;
    font-size: var(--font-md);
    color: var(--dark-color);
    transition: var(--transition);
    z-index: var(--z-slider-controls);
}

.partners-slider-prev:hover,
.partners-slider-next:hover {
    background: var(--primary-color);
    color: var(--white);
}

.partners-slider-prev {
    left: 0;
}

.partners-slider-next {
    right: 0;
}

/* Partners Grid */
.partners-grid-section {
    padding: 80px 0;
}

.partners-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.category-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}



.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-lg);
    margin-bottom: var(--space-lg);
}

.category-card h4 {
    margin-bottom: var(--space-md);
    color: var(--dark-color);
}

.category-partners {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.category-partners span {
    padding: var(--space-sm) var(--space-sm);
    background: var(--light-color);
    border-radius: var(--radius-sm);
    font-size: var(--font-sm);
}

/* Partnership Stories - Fix for broken layout */
.partnership-stories .story-card{
   margin-bottom: var(--space-lg);
}

/* Become a Partner */
.become-partner {
    padding: 80px 0;
}

.partner-cta {
    background: linear-gradient(135deg, var(--dark-color), var(--primary-dark));
    border-radius: var(--radius-xl);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    color: var(--white);
}

.cta-content {
    padding: var(--space-xxl);
}

.cta-content h3 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    font-size: var(--font-xxl);
}

.cta-content p {
    margin-bottom: var(--space-xl);
    opacity: 0.9;
}

.partnership-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.type-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.type-item i,
.cta-content .type-item i {
    color: var(--primary-light);
}

.cta-image,
.partners-slider .cta-image {
    height: 100%;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   PROJECTS PAGE STYLES
   ========================================================================== */

/* Projects Filter */
.projects-filter {
    background: var(--light-color);
    padding: var(--space-xl) 0;
    top: var(--navbar-height);
    z-index: var(--z-navbar);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.filter-btn {
    padding: var(--space-sm) var(--space-xxl);
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

/* All Projects */
.all-projects {
    padding: 80px 0;
}

.all-projects .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.projects-container {
    position: relative;
}

.project-detail {
    display: none;
    animation: fadeIn var(--transition);
}



.project-detail.active,
.tab-content.active,
.education-stories .story-slider .story-item.active,
.location-details.active,
.type-content.active,
.form-step.active,
.success-stories .story-content.active,
.impact-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.project-header {
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid var(--gray-light);
}

.project-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.project-status,
.project-category {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-pill);
    font-size: var(--font-sm);
    font-weight: 500;
}

.project-status.active {
    background: var(--accent-color);
    color: var(--white);
}

.project-status.completed {
    background: var(--secondary-color);
    color: var(--white);
}

.project-status.upcoming {
    background: #FF9800;
    color: var(--white);
}

.project-category {
    background: var(--light-color);
    color: var(--dark-color);
}

.project-location {
    color: var(--text-light);
    font-size: var(--font-base);
    margin-top: var(--space-sm);
}

.project-location i {
    margin-right: var(--space-xs);
    color: var(--primary-color);
}

.project-content {
    margin-bottom: var(--space-xxl);
}

.project-image-large {
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-xl);
}

.project-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.project-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--gray-light);
}

.stat {
    text-align: center;
}

.stat h3 {
    color: var(--primary-color);
    font-size: var(--font-md);
    margin-bottom: 5px;
}

.stat p {
    color: var(--text-light);
    font-size: var(--font-sm);
}

.project-description h3 {
    margin-bottom: var(--space-lg);
    color: var(--dark-color);
}

.project-description h4 {
    margin: var(--space-xxl) 0 var(--space-md);
    color: var(--dark-color);
}

.project-description ul {
    margin-left: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.project-description li {
    margin-bottom: var(--space-sm);
    padding-left: var(--space-sm);
}

.project-progress {
    margin: var(--space-xl) 0;
    padding: var(--space-xxl);
    background: var(--light-color);
    border-radius: var(--radius-lg);
}

.project-progress h4 {
    margin-bottom: var(--space-md);
    font-size: var(--font-base);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-sm);
    font-size: var(--font-sm);
    color: var(--text-light);
}

.project-actions {
    display: flex;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.donate-btn {
    background: linear-gradient(135deg, #ff6b8b, #ff8fab);
}

.share-btn {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.projects-sidebar {
    position: sticky;
    top: 150px;
    height: fit-content;
}

.project-detail h2{
    font-size: var(--font-md);
}

.projects-sidebar h4{
    font-size: var(--font-base);
}

.projects-list {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.project-item {
    display: block;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-color);
}

.project-item:hover,
.project-item.active {
    background: var(--primary-light);
    color: var(--white);
}

.project-item:hover h4,
.project-item.active h4 {
    color: var(--white);
}

.project-item h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
    transition: var(--transition);
}

.project-item p {
    font-size: var(--font-sm);
    opacity: 0.8;
}

 /* Women Empowerment Page Styles */
.empowerment-overview {
    padding: 60px 0;
}

.empowerment-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-top: 40px;
}

.empowerment-stat {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}



.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-lg);
    margin: 0 auto var(--space-md);
}

.empowerment-stat .stat-number {
    font-size: var(--font-xxl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.empowerment-stat .stat-label {
    font-size: var(--font-base);
    font-weight: 600;
    color: var(--dark-color);
}

.empowerment-programs {
    background: var(--light-color);
    padding: 80px 0;
}

.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: 40px;
    justify-content: center;
}

.tab-btn {
    flex: 1;
    min-width: 200px;
    padding: var(--space-lg);
    background: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    transition: var(--transition);
    font-weight: 500;
    color: var(--dark-color);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--secondary-color);
    color: var(--white);
}

.tab-btn i {
    font-size: var(--font-lg);
}

.tab-content {
    display: none;
    animation: fadeIn var(--transition);
}

.tab-content-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tab-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.tab-text h3 {
    margin-bottom: var(--space-lg);
    color: var(--dark-color);
}

.tab-text p {
    margin-bottom: var(--space-xxl);
    line-height: 1.7;
    color: var(--text-light);
}

.program-features {
    margin-bottom: var(--space-xl);
}

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

.feature i {
    color: var(--secondary-color);
}

.program-impact h4 {
    margin-bottom: var(--space-lg);
    color: var(--dark-color);
}

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

.metric {
    text-align: center;
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.metric strong {
    display: block;
    font-size: var(--font-xl);
    color: var(--primary-color);
    margin-bottom: 5px;
}

.metric span {
    font-size: var(--font-xs);
    color: var(--text-light);
}

.empowerment-stories {
    padding: 80px 0;
}

.empowerment-stories .stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: var(--space-xl);
    margin-top: 40px;
}

.empowerment-stories .story-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}


.empowerment-stories .story-card:hover {
    transform: translateY(var(--hover-translate-lg));
}

.education-stories .story-card .story-image {
    height: var(--image-height-sm);
    overflow: hidden;
}

.empowerment-stories .story-card .story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.empowerment-stories .story-card .story-content {
    padding: 25px;
}

.empowerment-stories .story-card .story-content h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.empowerment-stories .story-card .story-business {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: var(--space-md);
    font-size: var(--font-sm);
}

.empowerment-stories .story-card .story-text {
    margin-bottom: var(--space-lg);
    line-height: var(--line-normal);
    color: var(--text-light);
    font-style: italic;
}

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

.stat {
    background: var(--light-color);
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    font-size: var(--font-sm);
}

.stat strong {
    color: var(--primary-color);
}

.empowerment-involvement {
    background: var(--light-color);
    padding: 80px 0;
}

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


/* Education Programs Page Styles */
.program-overview {
    padding: 60px 0;
}

.education-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-top: 40px;
}

.education-stat {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.education-stat .stat-number {
    font-size: var(--font-md);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.education-stat .stat-label {
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--dark-color);
}

.program-components {
    background: var(--light-color);
    padding: 80px 0;
}

.components-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: var(--space-md);
    margin-top: 40px;
}

.component-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center; 
}



.component-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-xl);
    margin-bottom: var(--space-lg);
}

.component-card h3 {
    margin-bottom: var(--space-md);
    color: var(--dark-color);
    font-size: var(--font-md);
}

.component-card p {
    margin-bottom: var(--space-lg);
    color: var(--text-light);
    line-height: var(--line-normal);
    font-size: var(--font-base);
    text-align: left; 
}

.component-card ul {
    list-style: none;
    margin-bottom: var(--space-xxl);
    text-align: left; 
    width: 100%; 
}

.component-card li {
    margin-bottom: var(--space-xs);
    padding-left: var(--space-lg);
    position: relative;
    font-size: var(--font-sm);
}

.component-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.component-impact {
    background: var(--light-color);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: var(--space-lg);
    width: 100%; 
}

.education-stories {
    padding: 80px 0;
}

.education-stories .story-slider {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

 .education-stories .story-slider .story-item {
    display: none;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.education-stories .story-slider .story-item .story-image {
    height: 400px;
    overflow: hidden;
}

.education-stories .story-slider .story-item .story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.education-stories .story-slider .story-item .story-content {
    padding: var(--space-xl);
}

.education-stories .story-slider .story-item .story-content h3 {
    margin-bottom: 10px;
    color: var(--dark-color);
    font-size: 2rem;
    font-weight: 700;
}

.education-stories .story-slider .story-item .story-location {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 30px;
    font-size: var(--font-md);
    position: relative;
    padding-left: 20px;
}

.education-stories .story-slider .story-item .story-location:before {
    content: "—";
    position: absolute;
    left: 0;
}

.education-stories .story-slider .story-item .story-text {
    margin-bottom: 40px;
    line-height: 1.8;
    color: var(--text-color);
    font-size: var(--font-md);
    font-style: italic;
    padding-left: 20px;
    border-left: 3px solid var(--secondary-color);
    background: linear-gradient(90deg, rgba(0, 51, 102, 0.05), transparent);
    padding: 25px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.education-stories .story-slider .story-item .story-text:before,
.success-stories .story-testimonial blockquote:before {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    position: absolute;
    left: 10px;
    top: 10px;
    opacity: 0.5;
}

.education-stories .story-slider .story-item .story-text:after {
    content: '"';
    font-size: 3rem;
    color: var(--secondary-color);
    font-family: 'Playfair Display', serif;
    position: absolute;
    right: 10px;
    bottom: 10px;
    opacity: 0.5;
}

.education-stories .story-slider .story-item .story-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid var(--gray-light);
}

.education-stories .story-slider .story-item .story-details span {
    display: flex;
    flex-direction: column;
    font-size: var(--font-base);
}

.education-stories .story-slider .story-item .story-details strong {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 5px;
    font-size: var(--font-md);
}

.education-stories .story-slider .story-item .story-details span:not(:has(strong)) {
    color: var(--text-light);
    font-style: italic;
}

.education-stories .story-slider .story-item .slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
}

.education-stories .story-slider .story-item .slider-controls button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: var(--radius-round);
    color: var(--primary-color);
    font-size: var(--font-lg);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.education-stories .story-slider .story-item .slider-controls button:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.program-locations {
    background: var(--light-color);
    padding: 80px 0;
}

.locations-map {
    max-width: 1000px;
    margin: 40px auto 0;
}

.map-visual {
    position: relative;
    height: 400px;
    background: #e8f4f8;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,30 Q40,20 60,30 T100,30" stroke="%23003366" fill="none" stroke-width="0.5"/><path d="M15,50 Q35,40 55,50 T95,50" stroke="%23003366" fill="none" stroke-width="0.5"/><path d="M10,70 Q30,60 50,70 T90,70" stroke="%23003366" fill="none" stroke-width="0.5"/></svg>');
    background-size: cover;
    overflow: visible;
}


.county-spot {
    position: absolute;
    cursor: pointer;
    transition: var(--transition);
}

.county-spot .spot {
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: var(--radius-round);
    border: 3px solid var(--white);
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.county-spot.active .spot {
    background: var(--primary-color);
    transform: scale(1.3);
}

.county-name {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    padding: var(--space-sm) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--font-xs);
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow);
    opacity: 0;
    transition: opacity var(--transition);
}

.county-spot:hover .county-name {
    opacity: 1;
}

.location-details {
    display: none;
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.location-details h4 {
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
}

.location-details p {
    margin-bottom: var(--space-sm);
    color: var(--text-light);
}

.get-involved-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    border-radius: var(--radius-lg);
    margin: 60px 0;
}

.get-involved-cta h2 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.get-involved-cta p {
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    font-size: var(--font-md);
    opacity: 0.9;
}

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

.partner-hero h1 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.why-partner {
    padding: 80px 0;
}

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

.reason-card {
    background: var(--white);
    padding: 40px var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}



.reason-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xxl);
    color: var(--white);
    font-size: var(--font-xxl);
}

.reason-card h3 {
    margin-bottom: var(--space-md);
    color: var(--dark-color);
}

.partner-types {
    background: var(--light-color);
    padding: 80px 0;
}

.types-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.type-tab {
    padding: var(--space-md) var(--space-xl);
    background: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: var(--radius-pill);
    color: var(--secondary-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.type-tab:hover,
.type-tab.active {
    background: var(--secondary-color);
    color: var(--white);
}

.type-content {
    display: none;
    animation: fadeIn var(--transition);
}

.type-details {
    background: var(--white);
    padding: var(--space-xxl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.type-features {
    list-style: none;
}

.type-features li {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xxl);
    position: relative;
}

.type-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.partnership-process {
    padding: 80px 0;
}

.process-timeline {
    position: relative;
    max-width: 800px;
    margin: var(--space-xxl) auto 0;
}

.process-timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary-color);
    transform: translateX(-50%);
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-lg);
    font-weight: 600;
    margin: 0 var(--space-xl);
    z-index: 1;
}

.step-content {
    flex: 1;
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.step-content h4 {
    margin-bottom: var(--space-md);
    color: var(--dark-color);
}

.testimonials {
    background: var(--light-color);
    padding: 80px 0;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: var(--space-xxl) auto 0;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform var(--transition-slow);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 var(--space-lg);
    box-sizing: border-box;
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-xxl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    text-align: center;
}

.testimonial-text {
    font-size: var(--font-md);
    line-height: var(--line-normal);
    color: var(--text-color);
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-company {
    color: var(--text-light);
    font-size: var(--font-sm);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.slider-btn {
    width: var(--slider-btn-size);
    height: var(--slider-btn-size);
    background: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: var(--radius-round);
    color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.partnership-form {
    padding: 80px 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: var(--space-xxl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.form-step {
    display: none;
    animation: fadeIn var(--transition);
}

.step-header {
    text-align: center;
    margin-bottom: 40px;
}

.step-indicator {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.step-dot {
    width: 30px;
    height: 30px;
    border: 2px solid var(--secondary-color);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--secondary-color);
}

.step-dot.active {
    background: var(--secondary-color);
    color: var(--white);
}

.form-group {
    margin-bottom: var(--space-xxl);
}

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

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--input-padding);
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: var(--font-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.radio-option {
    flex: 1;
    min-width: 200px;
}

.radio-option label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    padding: var(--space-md);
    border: 2px solid var(--gray);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.radio-option input:checked + label {
    border-color: var(--secondary-color);
    background: var(--light-color);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

/* FAQ styles are defined in Contact page section - reusing for consistency */
/* Board page */
.board-section, .advisory-section, .committees-section, .reports-section {
    padding: 60px 0;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.board-member {
    display: flex;
    gap: var(--space-xl);
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.board-image {
    flex: 0 0 150px;
}

.board-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.board-content {
    flex: 1;
}

.board-position {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: var(--space-md);
    font-size: var(--font-md);
}

.board-bio {
    margin-bottom: var(--space-lg);
    line-height: 1.7;
    color: var(--text-light);
}

.board-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.expertise-tag {
    background: var(--light-color);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-pill);
    font-size: var(--font-xs);
    color: var(--primary-color);
}

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

.advisor-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.advisor-card h4 {
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
    font-size: var(--font-md);
}

.advisor-card ul {
    list-style: none;
}

.advisor-card li {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--gray-light);
}

.advisor-card li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

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

.committee-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}



.committee-icon {
    width: 70px;
    height: 70px;
    background: var(--light-color);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    color: var(--primary-color);
    font-size: var(--font-xl);
}

.committee-card h4 {
    margin-bottom: var(--space-md);
    color: var(--dark-color);
}

.committee-card p {
    margin-bottom: var(--space-sm);
    font-size: var(--font-sm);
    color: var(--text-light);
}

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

.document-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}



.document-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: var(--space-lg);
}

.document-card h4 {
    margin-bottom: var(--space-md);
    color: var(--dark-color);
}

.document-card p {
    margin-bottom: var(--space-lg);
    color: var(--text-light);
    line-height: var(--line-normal);
}

.document-card .btn-secondary {
    padding: var(--space-xs) var(--space-lg);
    font-size: var(--font-sm);
}

/* Corporate Partners Page CSS */
.corporate-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
}

.corporate-hero h1 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.benefits-section {
    padding: 80px 0;
}

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

.benefit-card {
    background: var(--white);
    padding: 40px var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(var(--hover-translate-lg));
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xxl);
    color: var(--white);
    font-size: var(--font-xxl);
}

.benefit-card h3 {
    margin-bottom: var(--space-md);
    color: var(--dark-color);
}

.partnership-tiers {
    background: var(--light-color);
    padding: 80px 0;
}

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

.tier-card {
    background: var(--white);
    padding: 40px var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
}



.tier-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.tier-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: var(--space-xs) var(--space-xxl);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: var(--font-sm);
}

.tier-name {
    font-size: var(--font-lg);
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
    font-weight: 600;
}

.tier-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: var(--space-xl);
}

.tier-features {
    list-style: none;
    text-align: left;
    margin-bottom: var(--space-xl);
}

.tier-features li {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xxl);
    position: relative;
}

.tier-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.current-partners {
    padding: 80px 0;
}

.partners-slider {
    position: relative;
    overflow: hidden;
    margin-top: var(--space-xxl);
}

.partners-track {
    display: flex;
    gap: 40px;
    animation: scroll 30s linear infinite;
    padding: var(--space-lg) 0;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 8)); }
}

.partner-logo {
    flex: 0 0 250px;
    height: 150px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    padding: var(--space-xl);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partners-slider:hover .partners-track {
    animation-play-state: paused;
}


.stories-tabs {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.story-tab {
    padding: var(--space-md) var(--space-xxl);
    background: var(--white);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-pill);
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.story-tab:hover,
.story-tab.active {
    background: var(--primary-color);
    color: var(--white);
}


/* ==========================================================================
   ANNUAL REPORTS PAGE - LEADERSHIP MESSAGES 
   ========================================================================== */
/* Success Stories Section - Leadership Messages Specific */

/* Container for both cards */
.success-stories .story-card-container {
    display: grid;
    grid-template-columns: 1fr; 
    gap: var(--space-xl);
    margin-bottom: 40px;
}

.success-stories .story-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow: hidden;
    max-width: 100%;
    height: 100%; 
}

.success-stories .story-card.testimonial-card {
    background: var(--light-color);
    border-left: 4px solid var(--primary-color);
}

.success-stories .story-testimonial {
    flex: 1; /* Allow testimonial to take available space */
    display: flex;
    flex-direction: column;
}

.success-stories .story-testimonial blockquote {
    font-size: var(--font-md);
    line-height: var(--line-normal);
    color: var(--text-color);
    margin-bottom: var(--space-xl);
    font-style: italic;
    position: relative;
    padding-left: var(--space-lg);
    flex: 1; /* Take remaining space */
}

.success-stories .story-testimonial blockquote:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: var(--font-xxl);
    color: var(--primary-color);
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.success-stories .story-testimonial cite {
    font-weight: 600;
    color: var(--primary-color);
    display: block;
    text-align: right;
    font-style: normal;
    margin-top: auto; /* Push to bottom */
    padding-top: var(--space-md);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}


.success-stories .story-card.details-card {
    background: var(--white);
    border-top: 4px solid var(--secondary-color);
}

.success-stories .story-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.success-stories .story-details h4 {
    color: var(--dark-color);
    margin-bottom: var(--space-md);
    font-size: var(--font-md);
    border-bottom: 2px solid var(--gray-light);
    padding-bottom: var(--space-sm);
}

.success-stories .story-details p {
    color: var(--text-light);
    margin-bottom: var(--space-md);
    line-height: var(--line-normal);
    flex: 1; 
}

.success-stories .story-details ul {
    list-style: none;
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.success-stories .story-details li {
    margin-bottom: var(--space-sm);
    padding-left: var(--space-md);
    position: relative;
    color: var(--text-light);
    line-height: var(--line-normal);
    word-break: break-word;
}

.success-stories .story-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Impact stats grid - for testimonial card */
.success-stories .story-impact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-light);
    max-width: 100%;
    overflow: hidden;
}

.success-stories .impact-item {
    text-align: center;
    padding: var(--space-md);
    background: var(--light-color);
    border-radius: var(--radius-md);
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.success-stories .impact-number {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
    line-height: 1;
    word-break: break-word;
}

.success-stories .impact-label {
    font-size: var(--font-xs);
    color: var(--text-light);
    line-height: 1.2;
    word-break: break-word;
}


.engagement-options {
    padding: 80px 0;
}

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

.option-card {
    background: var(--white);
    padding: 40px var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
}

.option-card:hover {
    transform: translateY(var(--hover-translate-lg));
}

.option-icon {
    width: 70px;
    height: 70px;
    background: var(--light-color);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xxl);
    color: var(--accent-color);
    font-size: var(--font-xl);
}

.option-card h4 {
    margin-bottom: var(--space-md);
    color: var(--dark-color);
}

.option-card p {
    color: var(--text-light);
    line-height: var(--line-normal);
    margin-bottom: var(--space-xxl);
}

.next-steps {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    border-radius: var(--space-sm);
    margin-bottom: var(--space-md);
}

.next-steps h2 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.steps-container {
    max-width: 800px;
    margin: var(--space-xxl) auto 0;
}

.step {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    margin-bottom: 40px;
    text-align: left;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-lg);
    font-weight: 600;
}

.step-content h4 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.step-content p {
    opacity: 0.9;
    line-height: var(--line-normal);
}

.become-donor {
    padding: 80px 0;
    text-align: center;
}

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

.donor-option {
    background: var(--white);
    padding: 40px var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.donor-option:hover {
    border-color: var(--secondary-color);
}

.donor-option h4 {
    color: var(--dark-color);
    margin-bottom: var(--space-md);
}

.donor-option p {
    color: var(--text-light);
    margin-bottom: var(--space-xxl);
    line-height: var(--line-normal);
}

/* impact page */
.impact-overview, .program-impact-section, .geographic-impact, .stories-section, .reports-section {
    padding: 60px 0;
}

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

.impact-stat-large {
    background: var(--white);
    padding: 40px var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--secondary-color);
}

.impact-stat-large:hover {
    transform: translateY(var(--hover-translate-lg));
}

.impact-stat-large .stat-number {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.impact-stat-large .stat-label {
    font-size: var(--font-md);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--dark-color);
}

.impact-stat-large p {
    color: var(--text-light);
    font-size: var(--font-sm);
    line-height: var(--line-normal);
}

.impact-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.impact-tab {
    flex: 1;
    min-width: 200px;
    padding: var(--space-lg);
    background: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.impact-tab:hover {
    transform: translateY(-5px);
}

.impact-tab.active {
    background: var(--primary-color);
    color: var(--white);
}

.impact-tab i {
    font-size: var(--font-lg);
}

.impact-tab-content {
    display: none;
    animation: fadeIn var(--transition);
}

.tab-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.tab-content-text h3 {
    margin-bottom: var(--space-lg);
    color: var(--dark-color);
}

.tab-content-text p {
    margin-bottom: var(--space-xxl);
    line-height: 1.7;
    color: var(--text-light);
}

.impact-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.metric-item {
    text-align: center;
    padding: var(--space-lg);
    background: var(--light-color);
    border-radius: var(--radius-lg);
}

.metric-number {
    font-size: var(--font-xxl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.metric-label {
    font-size: var(--font-sm);
    color: var(--text-light);
}

.tab-content-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.county-impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
    margin-top: 40px;
}

.county-impact-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
}

.county-impact-card h4 {
    color: var(--primary-color);
    margin-bottom: var(--space-lg);
    font-size: var(--font-md);
}

.county-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.county-stat {
    text-align: center;
    padding: var(--space-md);
    background: var(--light-color);
    border-radius: var(--radius-md);
    font-size: var(--font-xs);
}

.county-stat strong {
    display: block;
    font-size: var(--font-md);
    color: var(--primary-color);
    margin-bottom: 5px;
}

.county-stat span {
    font-size: var(--font-xs);
    color: var(--text-light);
}

.stories-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
    margin-top: 40px;
}

.story-card {
    display: flex;
    gap: var(--space-xl);
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.story-image {
    flex: 0 0 150px;
}

.story-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.story-card .story-content {
    flex: 1;
}

.story-location {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: var(--space-md);
    font-size: var(--font-sm);
}

.story-quote {
    font-style: italic;
    margin-bottom: var(--space-lg);
    line-height: var(--line-normal);
    color: var(--text-light);
}

.story-impact {
    display: flex;
    gap: var(--space-lg);
    font-size: var(--font-xs);
    color: var(--text-light);
}

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

.report-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}



.report-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: var(--space-lg);
}

.report-card h4 {
    margin-bottom: var(--space-md);
    color: var(--dark-color);
}

.report-card p {
    margin-bottom: var(--space-xxl);
    color: var(--text-light);
    line-height: var(--line-normal);
}

.report-card .btn-primary {
    padding: var(--space-sm) var(--space-xxl);
    font-size: var(--font-sm);
}

.report-card .btn-primary i {
    font-size: var(--font-base);
    margin-right: var(--space-xs);
    margin-bottom: 0;
}

.download-section {
    margin-top: 40px;
    text-align: center;
}

.report-contact-text {
    margin-top: 15px;
    font-size: 0.9em;
    color: #666;
}

/* NGO & CSO Partners Page CSS */
.ngo-hero h1 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.partnership-model {
    padding: 80px 0;
}

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

.step-card {
    background: var(--white);
    padding: 40px var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
}

.step-card:hover {
    transform: translateY(var(--hover-translate-lg));
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--font-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--light-color);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xxl);
    color: var(--secondary-color);
    font-size: var(--font-xxl);
}

.step-card h3 {
    margin-bottom: var(--space-md);
    color: var(--dark-color);
}

.partners-grid {
    background: var(--light-color);
    padding: 80px 0;
}

.partner-filter {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--space-sm) var(--space-xxl);
    background: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: var(--radius-pill);
    color: var(--secondary-color);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    color: var(--white);
}

.partners-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.partner-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Partners Grid Layout Fix */
.partner-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: var(--space-md);
}

.partner-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-xl);
    font-weight: 700;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
}

.partner-info {
    width: 100%;
}

.partner-info h3 {
    margin-bottom: 5px;
    font-size: var(--font-md);
}

.partner-type {
    display: inline-block;
    background: var(--light-color);
    color: var(--primary-color);
    padding: var(--space-xxs) var(--space-sm);
    border-radius: var(--radius-pill);
    font-size: var(--font-xs);
    font-weight: 600;
}

.partner-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.partner-details {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(0,0,0,0.1);
}

.focus-areas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

.focus-tag {
    background: rgba(0, 51, 102, 0.1);
    color: var(--primary-color);
    padding: var(--space-xxs) var(--space-sm);
    border-radius: var(--radius-pill);
    font-size: var(--font-xs);
    font-weight: 500;
}

.collaboration-impact {
    padding: 80px 0;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-top: 40px;
    justify-items: center;
}

.impact-stat {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary-color);
    max-width: 250px; 
    width: 100%;
}

.impact-number {
    font-size: var(--font-md);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.impact-label {
    font-size: var(--font-base);
    color: var(--dark-color);
    font-weight: 500;
}

.success-stories {
    background: var(--light-color);
    padding: 80px 0;
}

.stories-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-xl);
    margin-top: 40px;
    justify-items: center; /* Center grid items */
}

/* Stories container consolidates multiple story display patterns */
.stories-container .story-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xxl);
    width: 100%;
    max-width: 700px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.stories-container .story-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-xl);
    margin-bottom: var(--space-lg);
}

.stories-container .story-text-content {
    width: 100%;
}

.stories-container .story-text-content h4 {
    margin-bottom: var(--space-sm);
    color: var(--dark-color);
    font-size: var(--font-lg);
    line-height: 1.3;
}

.stories-container .story-partner {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--space-xl);
    font-size: var(--font-base);
}

.stories-container .story-content {
    margin-bottom: var(--space-xl);
    line-height: var(--line-normal);
    color: var(--text-light);
    text-align: center;
    padding: 0 var(--space-lg);
}

/* Center the impact stats */
.stories-container .story-impact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--gray-light);
    width: 100%;
    flex-wrap: wrap;
}

.stories-container .impact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-md);
    background: var(--light-color);
    border-radius: var(--radius-md);
    min-width: 100px;
    flex: 1;
    max-width: 150px;
}

.stories-container .impact-number-sm {
    font-size: var(--font-lg);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.stories-container .impact-label-sm {
    font-size: var(--font-xs);
    color: var(--text-light);
    line-height: 1.2;
}

.join-network {
    padding: 80px 0;
    text-align: center;
}

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

.benefit-card {
    background: var(--white);
    padding: 40px var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--secondary-color);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--light-color);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xxl);
    color: var(--primary-color);
    font-size: var(--font-xl);
}

.benefit-card h4 {
    color: var(--dark-color);
    margin-bottom: var(--space-md);
}

.benefit-card p {
    color: var(--text-light);
    line-height: var(--line-normal);
}

/* Health & Wellness Page Styles */
.health-overview {
    padding: 60px 0;
}

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

.highlight-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--accent-color);
}



.highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), #FF6B6B);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-xl);
    margin: 0 auto var(--space-lg);
}

.highlight-card h4 {
    margin-bottom: var(--space-md);
    color: var(--dark-color);
}

.highlight-card p {
    color: var(--text-light);
    line-height: var(--line-normal);
}

.health-programs {
    background: var(--light-color);
    padding: 80px 0;
}

.programs-accordion {
    max-width: 1000px;
    margin: 40px auto 0;
}

.accordion-item {
    margin-bottom: var(--space-md);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-header {
    width: 100%;
    padding: var(--space-xxl) var(--space-xl);
    background: var(--white);
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--dark-color);
    transition: var(--transition);
}

.accordion-header:hover {
    background: #fff5f5;
}

.accordion-header.active {
    background: var(--accent-color);
    color: var(--white);
}

.accordion-header i:first-child {
    margin-right: var(--space-md);
    font-size: var(--font-lg);
}

.accordion-header i:last-child {
    transition: transform var(--transition);
}

.accordion-header.active i:last-child {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
    background: var(--white);
}

.accordion-item.active .accordion-content {
    max-height: 1000px;
}

.accordion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: var(--space-xl);
}

.accordion-text h4 {
    margin-bottom: var(--space-lg);
    color: var(--dark-color);
}

.accordion-text p {
    margin-bottom: var(--space-xxl);
    line-height: 1.7;
    color: var(--text-light);
}

.program-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.program-stats .stat {
    text-align: center;
    padding: var(--space-lg);
    background: var(--light-color);
    border-radius: var(--radius-lg);
}

.program-stats strong {
    display: block;
    font-size: var(--font-xl);
    color: var(--accent-color);
    margin-bottom: 5px;
}

.program-stats span {
    font-size: var(--font-xs);
    color: var(--text-light);
}

.services-list h5 {
    margin-bottom: var(--space-md);
    color: var(--dark-color);
}

.services-list ul {
    list-style: none;
}

.services-list li {
    margin-bottom: var(--space-sm);
    padding-left: var(--space-lg);
    position: relative;
}

.services-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.accordion-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.health-impact {
    padding: 80px 0;
}

.impact-timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

.impact-timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent-color);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 100px;
    background: var(--accent-color);
    color: var(--white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-pill);
    text-align: center;
    font-weight: 600;
    margin: 0 var(--space-xl);
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.timeline-content h4 {
    margin-bottom: var(--space-sm);
    color: var(--dark-color);
}

.timeline-content p {
    margin-bottom: var(--space-md);
    color: var(--text-light);
    line-height: var(--line-normal);
}

.impact-stats {
    display: flex;
    gap: var(--space-lg);
    font-size: var(--font-sm);
    color: var(--text-light);
}

.health-resources {
    background: var(--light-color);
    padding: 80px 0;
}

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

.resource-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}



.resource-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color), #FF6B6B);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-xl);
    margin: 0 auto var(--space-lg);
}

.resource-card h4 {
    margin-bottom: var(--space-md);
    color: var(--dark-color);
}

.resource-card p {
    margin-bottom: var(--space-xxl);
    color: var(--text-light);
    line-height: var(--line-normal);
}

.resource-card .btn-secondary {
    padding: var(--space-sm) var(--space-xxl);
    font-size: var(--font-sm);
}

.support-health {
    background: linear-gradient(135deg, var(--accent-color), #8B0000);
    color: var(--white);
    padding: 80px 0;
    border-radius: var(--radius-lg);
    margin: 60px 0;
}

.support-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.support-health h2 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.support-health p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: var(--font-md);
    opacity: 0.9;
}

.donation-options {
    display: flex;
    flex-direction: column;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xs);
}

.quick-amounts {
    order: 1;
}

.program-selection {
    order: 2;
}

.donation-frequency {
    order: 3;
}

.donation-option {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.donation-option h4 {
    color: var(--white);
    margin-bottom: var(--space-md);
    font-size: var(--font-xxl);
}

.donation-option p {
    margin-bottom: var(--space-xxl);
    opacity: 0.9;
    font-size: var(--font-sm);
}

.btn-donate {
    background: var(--white);
    color: var(--accent-color);
    border: none;
    padding: var(--space-sm) var(--space-xxl);
    border-radius: var(--radius-pill);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-donate:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
}

.donation-option .btn-secondary {
    width: 100%;
    text-align: center;
}

/* Get Involved Page Specific Styles */
.ways-to-support {
    padding: 60px 0;
}

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

.support-card {
    background: var(--white);
    padding: 40px var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.support-card:hover {
    transform: translateY(var(--hover-translate-lg));
}

.support-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: var(--font-xxl);
    margin: 0 auto var(--space-xxl);
}

.support-card h3 {
    margin-bottom: var(--space-md);
    color: var(--dark-color);
    font-size: var(--font-lg);
}

.support-card p {
    margin-bottom: var(--space-xxl);
    color: var(--text-light);
    line-height: var(--line-normal);
    font-size: var(--font-base);
}

/* Donation Section */
.donation-section, .sponsorship-section, .volunteer-section, .impact-calculator {
    padding: 80px 0;
}

.donation-section {
    background: var(--light-color);
}

.donation-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.quick-amounts, .program-selection, .donation-frequency {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow);
}

.quick-amounts h4, .program-selection h4, .donation-frequency h4 {
    margin-bottom: var(--space-xxl);
    color: var(--dark-color);
    font-size: var(--font-lg);
}

.amount-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.amount-btn {
    flex: 1;
    min-width: 80px;
    padding: var(--space-md);
    background: var(--light-color);
    border: 2px solid var(--gray);
    border-radius: var(--radius-md);
    font-weight: 600;
    color: var(--dark-color);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: var(--font-base);
}

.amount-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.amount-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.custom-amount label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 500;
    color: var(--dark-color);
}

.amount-input {
    display: flex;
    align-items: center;
    border: 2px solid var(--gray);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.amount-input span {
    padding: var(--space-md);
    background: var(--light-color);
    font-weight: 600;
    color: var(--dark-color);
}

.amount-input input {
    flex: 1;
    padding: var(--space-md);
    border: none;
    font-size: var(--font-md);
    font-weight: 600;
    color: var(--dark-color);
    font-family: inherit;
}

.amount-input input:focus {
    outline: none;
}

.program-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.program-option {
    display: flex;
    align-items: center;
    padding: var(--space-md);
    border: 2px solid var(--gray);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.program-option:hover {
    border-color: var(--primary-color);
}

.program-option input {
    margin-right: var(--space-md);
}

.program-label {
    display: flex;
    flex-direction: column;
}

.program-label strong {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.program-label small {
    color: var(--text-light);
    font-size: var(--font-sm);
}

.frequency-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
}


.frequency-option {
    flex: 1;
    min-width: 120px;
    display: flex;
    align-items: center;
    padding: var(--space-md);
    border: 2px solid var(--gray);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

.frequency-option input {
    margin-right: var(--space-sm);
}

.frequency-option:hover {
    border-color: var(--primary-color);
}

.donation-summary {
    order: 4;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.summary-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-color);
}

.summary-card h4 {
    margin-bottom: var(--space-xxl);
    color: var(--dark-color);
    text-align: center;
    font-size: var(--font-lg);
}

.summary-details {
    margin-bottom: var(--space-xl);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: var(--font-base);
}

.summary-item.total {
    border-bottom: none;
    font-size: var(--font-md);
    margin-top: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 2px solid var(--gray-light);
}

.summary-item.total strong {
    color: var(--primary-color);
    font-size: var(--font-lg);
}

.btn-donate-now {
    width: 100%;
    padding: var(--space-md);
    font-size: var(--font-md);
    margin-bottom: var(--space-lg);
}

.secure-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    color: var(--text-light);
    font-size: var(--font-sm);
}

.tax-info {
    background: var(--light-color);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    font-size: var(--font-xs);
    color: var(--text-light);
    line-height: 1.5;
}

/* Sponsorship Section */
.sponsorship-section {
    background: var(--light-color);
}

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

.sponsorship-card {
    background: var(--white);
    padding: 40px var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.sponsorship-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-pill);
    font-size: var(--font-xs);
    font-weight: 600;
}

.sponsorship-level {
    margin-bottom: var(--space-xl);
}

.sponsorship-level h4 {
    margin-bottom: var(--space-sm);
    color: var(--dark-color);
    font-size: var(--font-lg);
}

.sponsorship-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.sponsorship-benefits {
    list-style: none;
    margin-bottom: var(--space-xl);
    text-align: left;
    padding: 0;
}

.sponsorship-benefits li {
    margin-bottom: var(--space-sm);
    padding-left: var(--space-xxl);
    position: relative;
    color: var(--text-light);
    line-height: 1.5;
}

.sponsorship-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.sponsorship-card .btn-primary {
    width: 100%;
    padding: var(--space-md);
}

.sponsorship-process {
    margin-top: 60px;
    padding: 40px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.sponsorship-process h4 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-color);
    font-size: var(--font-lg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    text-align: center;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: var(--icon-lg);
    height: var(--icon-lg);
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-lg);
    font-weight: 600;
    margin: 0 auto;
    order: 1; 
}

.step h5 {
    margin-top: var(--space-xl);
    color: var(--dark-color);
    font-size: var(--font-md);
    order: 2; 
}

.step p {
    margin: 0;
    color: var(--text-light);
    font-size: var(--font-sm);
    line-height: 1.5;
    order: 3; /* Ensure paragraph comes last */
}

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

.opportunity-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.opportunity-card h4 {
    margin-bottom: var(--space-md);
    color: var(--dark-color);
    font-size: var(--font-lg);
}

.opportunity-card p {
    margin-bottom: var(--space-lg);
    color: var(--text-light);
    line-height: var(--line-normal);
    font-size: var(--font-base);
}

.opportunity-card ul {
    list-style: none;
    margin-bottom: var(--space-xxl);
    padding: 0;
}

.opportunity-card li {
    margin-bottom: var(--space-xs);
    padding-left: var(--space-lg);
    position: relative;
    color: var(--text-light);
    line-height: 1.5;
}

.opportunity-card li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.opportunity-card .btn-secondary {
    width: 100%;
    text-align: center;
    display: block;
    text-decoration: none;
}

.volunteer-application {
    background: var(--light-color);
    padding: 40px;
    border-radius: var(--radius-lg);
    margin-top: 40px;
}

.volunteer-application h4 {
    margin-bottom: var(--space-xl);
    color: var(--dark-color);
    text-align: center;
    font-size: var(--font-lg);
}

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

.form-group {
    margin-bottom: var(--space-xxl);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 500;
    color: var(--dark-color);
    font-size: var(--font-sm);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: var(--input-padding);
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: var(--font-base);
    box-sizing: border-box;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-weight: normal;
    cursor: pointer;
    margin-bottom: 0;
}

.volunteer-application .btn-primary {
    width: 100%;
    padding: var(--space-md);
    font-size: var(--font-md);
}

/* Impact Calculator */
.impact-calculator {
    background: var(--light-color);
}

.calculator-container {
    max-width: 800px;
    margin: 40px auto 0;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.calculator-input {
    margin-bottom: 40px;
}

.calculator-input label {
    display: block;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: var(--space-sm);
    font-size: var(--font-md);
}

.amount-slider {
    margin: var(--space-xl) 0;
}

.amount-slider input {
    width: 100%;
    height: 10px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--gray);
    border-radius: var(--radius-sm);
    outline: none;
}

.amount-slider input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    border-radius: var(--radius-round);
    cursor: pointer;
}

.slider-value {
    text-align: center;
    margin-top: var(--space-md);
    font-size: var(--font-xxl);
    font-weight: 700;
    color: var(--primary-color);
}

.frequency-select {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.frequency-select label {
    font-weight: 500;
    color: var(--dark-color);
}

.frequency-select select {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: var(--font-base);
    background: var(--white);
}

.calculator-results h4 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--dark-color);
    font-size: var(--font-lg);
}

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

.impact-item {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-xxl);
    background: var(--light-color);
    border-radius: var(--radius-lg);
}

.impact-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.impact-text {
    display: flex;
    flex-direction: column;
}

.impact-text strong {
    font-size: var(--font-xxl);
    color: var(--primary-color);
    margin-bottom: 5px;
}

.impact-text span {
    color: var(--text-light);
    font-size: var(--font-sm);
}

/* Contact Support */
.contact-support {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white);
    padding: 60px 40px;
    text-align: center;
    border-radius: var(--radius-lg);
    margin: 60px 0;
}

.contact-content h3 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    font-size: var(--font-xxl);
}

.contact-content p {
    max-width: 600px;
    margin: 0 auto var(--space-xl);
    opacity: 0.9;
    font-size: var(--font-md);
    line-height: var(--line-normal);
}

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

.contact-options .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: var(--space-md) var(--space-xl);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.contact-options .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Additional styles for team page */
.leadership-section, .program-team-section, .field-team-section {
    padding: 60px 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.leader-card {
    display: flex;
    gap: var(--space-xl);
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.leader-image {
    flex: 0 0 200px;
}

.leader-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.leader-content {
    flex: 1;
}

.leader-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: var(--space-md);
    font-size: var(--font-md);
}

.leader-bio {
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.leader-contact p {
    margin-bottom: 5px;
    font-size: var(--font-sm);
    color: var(--text-light);
}

.leader-contact i {
    margin-right: var(--space-sm);
    color: var(--primary-color);
}

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

.team-member {
    text-align: center;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(var(--hover-translate-lg));
}

.team-member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-round);
    overflow: hidden;
    border: 3px solid var(--secondary-color);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h4 {
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-member .position {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: var(--space-sm);
    font-size: var(--font-sm);
}

.team-member p {
    font-size: var(--font-sm);
    color: var(--text-light);
    line-height: 1.5;
}

.county-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.county-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary-color);
}

.county-card h4 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
    font-size: var(--font-md);
}

.county-card p {
    margin-bottom: var(--space-xs);
    font-size: var(--font-sm);
}

.join-team-section {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    border-radius: var(--radius-lg);
    margin: 60px 0;
}

.join-team-section h2 {
    color: var(--white);
}

.join-team-content {
    max-width: 600px;
    margin: 0 auto;
}

.join-team-section .btn-primary,
.join-team-section .btn-secondary {
    margin: var(--space-lg) var(--space-sm) 0;
}