/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

body.donation-modal-open {
    overflow: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== NAVIGATION ==================== */
.navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(245, 250, 255, 0.80) 100%), 
                url('images/navbar.png') center/cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #2c5aa0;
}

.logo-icon {
    font-size: 28px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #2c5aa0;
}

.donate-link {
    background: linear-gradient(135deg, #2c5aa0, #1e7e34);
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: transform 0.3s;
}

.donate-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

/* ==================== HERO SECTION ==================== */
.hero-header {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.95) 0%, rgba(30, 126, 52, 0.95) 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto 50px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-tagline {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 10px;
    opacity: 0.95;
}

.hero-subtitle {
    font-size: 16px;
    opacity: 0.85;
    margin-bottom: 30px;
}

.cta-btn-primary, .cta-btn-secondary {
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin: 0 10px 0 0;
    text-decoration: none;
    display: inline-block;
}

.cta-btn-primary {
    background: white;
    color: #2c5aa0;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    position: relative;
    z-index: 2;
    width: 100%;
    margin-top: 50px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 60px 20px;
    background: white;
    margin: 20px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #1e7e34);
    border-radius: 2px;
}

/* ==================== MISSION SECTION ==================== */
.mission-section {
    background: linear-gradient(135deg, #f0f5fa 0%, #f0faf5 100%);
}

.mission-text {
    font-size: 18px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 15px;
    color: #2c5aa0;
    font-weight: 500;
}

.mission-subtitle {
    text-align: center;
    font-size: 16px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* ==================== PROGRAMS SECTION ==================== */
.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-card {
    background: white;
    border: 1px solid #e8e8e8;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.15);
    border-color: #2c5aa0;
}

.card-icon {
    font-size: 50px;
    margin-bottom: 15px;
    display: block;
}

.program-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.program-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #2c5aa0, #1e7e34);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* ==================== IMPACT SECTION ==================== */
.impact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 45%, #eef6f1 100%);
}

.impact-intro {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 1.08rem;
    line-height: 1.8;
    color: #5f6b67;
}

.impact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 40px;
    align-items: start;
}

.impact-story {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(44, 90, 160, 0.08);
    border-radius: 20px;
    padding: 38px;
    box-shadow: 0 20px 45px rgba(23, 44, 35, 0.08);
}

.impact-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1e7e34;
}

.impact-story h3 {
    margin-bottom: 18px;
    font-size: 2rem;
    line-height: 1.2;
    color: #1f2a24;
}

.impact-story > p {
    margin-bottom: 28px;
    color: #5f6b67;
    line-height: 1.8;
}

.impact-points {
    display: grid;
    gap: 16px;
}

.impact-point {
    padding: 18px 20px;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.06), rgba(30, 126, 52, 0.08));
    border-radius: 14px;
}

.impact-point strong {
    display: block;
    margin-bottom: 6px;
    color: #1f2a24;
    font-size: 1rem;
}

.impact-point p {
    margin: 0;
    color: #5f6b67;
    line-height: 1.7;
}

.impact-grid {
    display: grid;
    gap: 18px;
}

.impact-item {
    padding: 26px 28px;
    background: white;
    border-radius: 18px;
    border: 1px solid rgba(44, 90, 160, 0.08);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.impact-item-primary {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e7e34 100%);
    border-color: transparent;
}

.impact-item-primary .impact-kicker,
.impact-item-primary .impact-label {
    color: rgba(255, 255, 255, 0.9);
}

.impact-item-primary .impact-counter {
    background: none;
    -webkit-text-fill-color: white;
    color: white;
}

.impact-counter {
    font-size: 3.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2c5aa0, #1e7e34);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.impact-kicker {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5f6b67;
}

.impact-label {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 900px) {
    .impact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .impact-story {
        padding: 28px 22px;
    }

    .impact-story h3 {
        font-size: 1.6rem;
    }

    .impact-item {
        padding: 22px;
    }

    .impact-counter {
        font-size: 2.6rem;
    }
}

/* ==================== GALLERY SECTION ==================== */
.gallery-section {
    background: #f8f9fa;
}

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

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* ==================== TRANSPARENCY SECTION ==================== */
.transparency-section {
    background: linear-gradient(135deg, #f0f5fa 0%, #f0faf5 100%);
}

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

.value-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #1e7e34;
    transition: all 0.3s;
}

.value-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.value-icon {
    font-size: 32px;
    color: #1e7e34;
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
}

.value-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.value-item p {
    color: #666;
    font-size: 14px;
}

/* ==================== DONATE SECTION ==================== */
.donate-section {
    background: linear-gradient(135deg, #244f8f 0%, #2d7d71 52%, #1f7a43 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.donate-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.14), transparent 28%),
        radial-gradient(circle at 80% 75%, rgba(255, 255, 255, 0.1), transparent 24%);
    pointer-events: none;
}

.donate-section .container {
    position: relative;
    z-index: 1;
}

.donate-section .section-title {
    color: white;
}

.donate-section .section-title::after {
    background: rgba(255, 255, 255, 0.5);
}

.donate-description {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 780px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.92);
}

.donate-trust-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 42px;
}

.donate-trust-row span {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

.donate-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 36px;
}

.donation-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.24);
    padding: 32px 30px;
    border-radius: 22px;
    text-align: left;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    min-height: 100%;
    box-shadow: 0 18px 40px rgba(12, 31, 24, 0.14);
}

.donation-card:hover,
.donation-card.featured {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.11));
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.2);
}

.donation-card.featured {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.55);
}

.donation-tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
}

.donation-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.15;
}

.donation-card p {
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.9);
}

.donation-note {
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    font-weight: 600;
}

.donate-btn {
    background: white;
    color: #2c5aa0;
    border: none;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.98rem;
    cursor: pointer;
    transition: all 0.3s;
}

.donate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.donate-btn:focus-visible,
.donation-modal-close:focus-visible,
.donation-modal-btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.65);
    outline-offset: 3px;
}

.donate-affirmation {
    text-align: center;
    margin-top: 0;
    margin-bottom: 34px;
    font-size: 1.08rem;
    font-style: italic;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}

.donation-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
    z-index: 1000;
}

.donation-modal.is-open {
    display: flex;
}

.donation-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 20, 32, 0.6);
    backdrop-filter: blur(6px);
}

.donation-modal-dialog {
    position: relative;
    width: min(100%, 560px);
    max-height: min(92vh, 820px);
    margin: auto;
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f8f6 100%);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
    color: #20312c;
    overflow-y: auto;
    z-index: 1;
}

.donation-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 999px;
    background: rgba(36, 79, 143, 0.08);
    color: #244f8f;
    font-size: 1.5rem;
    cursor: pointer;
}

.donation-modal-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(36, 79, 143, 0.08);
    color: #244f8f;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.donation-modal-dialog h3 {
    margin-bottom: 12px;
    font-size: 2rem;
    line-height: 1.15;
}

.donation-modal-text {
    margin: 0 0 24px;
    color: #5e6b66;
    line-height: 1.75;
}

.donation-method-toggle {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(36, 79, 143, 0.08);
    max-width: 100%;
}

.donation-method-btn {
    min-height: 40px;
    padding: 10px 18px;
    border: none;
    border-radius: 999px;
    background: transparent;
    color: #55706a;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.donation-method-btn.is-active {
    background: white;
    color: #244f8f;
    box-shadow: 0 10px 18px rgba(36, 79, 143, 0.12);
}

.donation-method-panel {
    margin-bottom: 22px;
}

.donation-method-panel[hidden] {
    display: none !important;
}

.donation-modal-qr {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.donation-modal-qr-image {
    width: min(100%, 220px);
    border-radius: 18px;
    padding: 10px;
    background: white;
    box-shadow: 0 14px 28px rgba(27, 39, 35, 0.12);
}

.donation-modal-upi {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 22px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(36, 79, 143, 0.06);
}

.donation-modal-upi-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5e6b66;
}

.donation-modal-upi strong {
    font-size: 1.05rem;
    word-break: break-all;
}

.donation-bank-details {
    display: grid;
    gap: 12px;
}

.donation-bank-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(36, 79, 143, 0.06);
}

.donation-bank-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5e6b66;
}

.donation-bank-row strong {
    font-size: 1.02rem;
    word-break: break-word;
}

.donation-modal-actions {
    display: grid;
    gap: 12px;
}

.donation-modal-btn[hidden] {
    display: none !important;
}

.donation-modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    border: none;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.donation-modal-btn:hover {
    transform: translateY(-1px);
}

.donation-modal-btn-primary {
    background: linear-gradient(135deg, #244f8f 0%, #1f7a43 100%);
    color: white;
    box-shadow: 0 12px 24px rgba(36, 79, 143, 0.2);
}

.donation-modal-btn-secondary {
    background: white;
    color: #244f8f;
    border: 1px solid rgba(36, 79, 143, 0.16);
}

.donation-modal-feedback {
    min-height: 24px;
    margin: 14px 0 0;
    font-size: 0.94rem;
    color: #2d7d71;
}

.monthly-support-contact {
    display: none;
    margin-top: 16px;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(36, 79, 143, 0.06);
}

.monthly-support-heading {
    margin: 0 0 8px;
    font-weight: 700;
    color: #244f8f;
}

.monthly-support-contact p {
    margin: 0 0 6px;
    color: #4f5e58;
}

.monthly-support-contact p:last-child {
    margin-bottom: 0;
}

.monthly-support-contact a {
    color: #244f8f;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 760px) {
    .donate-options {
        grid-template-columns: 1fr;
    }

    .donation-card,
    .donation-card.featured {
        transform: none;
    }

    .donation-modal-dialog {
        width: min(100%, 100vw - 20px);
        max-height: calc(100vh - 20px);
        padding: 24px 18px 20px;
        border-radius: 20px;
    }

    .donation-modal-dialog h3 {
        font-size: 1.7rem;
    }

    .donation-method-toggle {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        border-radius: 18px;
    }

    .donation-method-btn {
        width: 100%;
        min-height: 44px;
    }

    .donation-modal-actions {
        grid-template-columns: 1fr;
    }

    .donation-modal-btn {
        width: 100%;
    }

    .donation-bank-row,
    .donation-modal-upi {
        padding: 14px 14px;
    }
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.contact-intro {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
    color: #5f6b67;
    line-height: 1.8;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    min-height: 100%;
    padding: 34px 28px;
    border-radius: 22px;
    text-align: center;
    border: 1px solid rgba(44, 90, 160, 0.1);
    background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
    box-shadow: 0 18px 36px rgba(25, 44, 36, 0.06);
}

.contact-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1), rgba(30, 126, 52, 0.12));
    font-size: 28px;
    display: block;
}

.contact-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #5f6b67;
}

.contact-link {
    color: #2c5aa0;
    text-decoration: none;
    font-size: 1.65rem;
    font-weight: 700;
    line-height: 1.3;
    word-break: break-word;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-copy {
    margin: 0;
    color: #5f6b67;
    line-height: 1.75;
}

.contact-cta {
    text-align: center;
    font-size: 1rem;
    color: #5f6b67;
}

@media (max-width: 760px) {
    .contact-item {
        padding: 28px 22px;
    }

    .contact-link {
        font-size: 1.3rem;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 50px 20px 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #2c5aa0;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #2c5aa0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #1e7e34;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.footer-bottom p {
    color: #999;
    font-size: 13px;
    margin: 5px 0;
}

.disclaimer {
    font-size: 12px !important;
    color: #777 !important;
}

/* ==================== OUR STORY SECTION ==================== */
.our-story-section {
    background: white;
}

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

.story-intro {
    text-align: center;
    font-size: 18px;
    color: #2c5aa0;
    margin-bottom: 40px;
    font-weight: 500;
    line-height: 1.8;
}

.story-subsections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.story-box {
    background: linear-gradient(135deg, #f0f5fa 0%, #f0faf5 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #2c5aa0;
    transition: all 0.3s;
}

.story-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.15);
}

.story-box h3 {
    font-size: 20px;
    color: #2c5aa0;
    margin-bottom: 15px;
    font-weight: 700;
}

.story-box p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

.story-detail {
    background: linear-gradient(135deg, #f0faf5 0%, #f0f5fa 100%);
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid rgba(30, 126, 52, 0.1);
}

.story-detail h3 {
    font-size: 22px;
    color: #1e7e34;
    margin-bottom: 15px;
    font-weight: 700;
}

.story-detail p {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 15px;
}

.story-detail p:last-child {
    margin-bottom: 0;
}

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

.method-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e8e8e8;
    text-align: center;
    transition: all 0.3s;
}

.method-item:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.method-item h4 {
    font-size: 18px;
    color: #2c5aa0;
    margin-bottom: 10px;
    font-weight: 700;
}

.method-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ==================== WHY TRUST SECTION ==================== */
.why-trust-section {
    background: linear-gradient(135deg, #f0f5fa 0%, #f0faf5 100%);
}

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

.trust-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #2c5aa0;
    transition: all 0.3s;
}

.trust-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(44, 90, 160, 0.2);
}

.trust-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2c5aa0, #1e7e34);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}

.trust-item h4 {
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}

.trust-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ==================== TESTIMONIALS SECTION ==================== */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, white 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #2c5aa0;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.15);
}

.testimonial-stars {
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 16px;
    color: #333;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 14px;
    color: #2c5aa0;
    font-weight: 700;
    margin: 0;
}

/* ==================== AWARDS SECTION ==================== */
.awards-section {
    background: white;
}

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

.award-item {
    background: linear-gradient(135deg, #f0f5fa 0%, #f0faf5 100%);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(44, 90, 160, 0.1);
    transition: all 0.3s;
}

.award-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(44, 90, 160, 0.2);
    border-color: #2c5aa0;
}

.award-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 15px;
}

.award-item h4 {
    font-size: 18px;
    color: #2c5aa0;
    margin-bottom: 10px;
    font-weight: 700;
}

.award-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* ==================== NEWSLETTER ==================== */
.newsletter-form {
    display: flex;
    gap: 8px;
    margin-top: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    padding: 10px 20px;
    background: white;
    color: #2c5aa0;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.newsletter-btn:disabled {
    opacity: 0.7;
    cursor: wait;
    transform: none;
    box-shadow: none;
}

.newsletter-feedback {
    min-height: 22px;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.5;
}

.newsletter-feedback.is-error {
    color: #ffb4b4;
}

.newsletter-feedback.is-success {
    color: #bff7c8;
}

.contact-footer a {
    text-decoration: none;
    transition: color 0.3s;
}

.contact-footer a:hover {
    color: #2c5aa0;
}

/* ==================== RESPONSIVE STORY SECTIONS ==================== */
@media (max-width: 768px) {
    .story-subsections {
        grid-template-columns: 1fr;
    }

    .work-methods {
        grid-template-columns: 1fr;
    }

    .trust-grid,
    .testimonials-grid,
    .awards-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input,
    .newsletter-btn {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .cta-btn-primary, .cta-btn-secondary {
        padding: 12px 24px;
        font-size: 14px;
        margin: 5px;
        display: block;
        width: 100%;
        margin-top: 10px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .programs-grid,
    .values-grid,
    .donate-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-stats {
        gap: 15px;
    }

    .stat-item {
        padding: 15px;
    }

    .stat-number {
        font-size: 28px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .gallery-grid img {
        height: 180px;
    }

    .footer-content {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-header {
        padding: 50px 15px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .nav-logo {
        font-size: 16px;
    }

    .logo-icon {
        font-size: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nav-link {
        display: block;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .programs-grid,
    .values-grid {
        gap: 15px;
    }
}

/* ==================== DONOR DETAILS FORM ==================== */
.donor-form-section {
    margin-top: 20px;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
}

.donor-form-divider {
    text-align: center;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.donor-form-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.donor-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.donor-input {
    width: 100%;
    padding: 10px 14px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
    background: #f8f9fa;
    outline: none;
    transition: border-color 0.2s;
    resize: none;
}

.donor-input:focus { border-color: #2c5aa0; background: #fff; }
.donor-input-full { width: 100%; }
.donor-textarea { resize: vertical; min-height: 60px; }

.donor-submit-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #2c5aa0, #1e7e34);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 4px;
}

.donor-submit-btn:hover { opacity: 0.9; }
.donor-submit-btn:disabled { opacity: 0.55; cursor: not-allowed; }

.donor-form-note {
    font-size: 13px;
    text-align: center;
    min-height: 20px;
    color: #1e7e34;
}

.donor-form-note.error { color: #dc2626; }

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