/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #d32f2f;
    --dark-blue: #0b2e4f;
    --navy-blue: #0b2e4f;
    --light-gray: #f5f5f5;
    --medium-gray: #666;
    --dark-gray: #333;
    --white: #ffffff;
    --border-radius: 4px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: var(--dark-blue);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #0a2540;
}

[dir="rtl"] .footer-top {
    direction: rtl;
    text-align: right;
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fffefe;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.45) 100%);
    z-index: 1;
}

.hero-image-side {
    display: none;
}

.hero-image-side img {
    display: none;
}

.hero-content-side {
    padding: 80px 60px;
    padding-top: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

.btn-hero-cta {
    background-color: var(--dark-blue);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 25px;
    transition: all 0.3s ease;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.btn-hero-cta:hover {
    background-color: #0a2540;
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(11, 46, 79, 0.3);
}

.hero-image img {
    max-width: 100%;
    max-height: 600px;
    height: auto;
    border-radius: var(--border-radius);
}

/* ========== SAVE LIVES BANNER ========== */
.save-lives-banner {
    background-color: var(--white);
    padding: 40px 20px;
}

.save-lives-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--dark-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 50px 60px;
    gap: 60px;
    position: relative;
    overflow: hidden;
}

/* Subtle diagonal accent on the right */
.save-lives-inner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 40%;
    height: 200%;
    background: rgba(255, 255, 255, 0.03);
    transform: rotate(15deg);
    pointer-events: none;
}

.save-lives-left {
    flex-shrink: 0;
    min-width: 240px;
}

.save-lives-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 8px;
}

.save-lives-accent {
    color: var(--primary-red);
}

.save-lives-tagline {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.save-lives-right {
    flex: 1;
    position: relative;
    z-index: 1;
}

.save-lives-right p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 24px;
}

.btn-save-lives {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.btn-save-lives:hover {
    background-color: #b71c1c;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(211, 47, 47, 0.4);
    transform: translateY(-2px);
}

/* ========== OUR REACH SECTION ========== */
.our-reach-section {
    background-color: var(--white);
    padding: 70px 20px;
    border-bottom: 1px solid #eee;
}

.our-reach-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.our-reach-left {
    display: flex;
    flex-direction: column;
}

.our-reach-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark-gray);
    line-height: 1.2;
    margin-bottom: 24px;
}

.our-reach-desc {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.75;
    margin-bottom: 28px;
}

.btn-our-reach {
    display: inline-block;
    background-color: transparent;
    color: var(--dark-gray);
    padding: 14px 28px;
    border: 2px solid var(--dark-gray);
    border-radius: 0;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    width: fit-content;
}

.btn-our-reach:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    border-color: var(--dark-blue);
}

/* Right side — Our Reach stats panel */
.our-reach-right {
    position: relative;
}

.reach-tabs {
    display: flex;
    gap: 24px;
    margin-bottom: 4px;
}

.reach-tab {
    font-size: 16px;
    font-weight: 600;
    color: var(--medium-gray);
    cursor: pointer;
    padding-bottom: 8px;
    transition: color 0.3s ease;
}

.reach-tab-active {
    color: var(--dark-gray);
    font-weight: 700;
}

.reach-accent {
    width: 80px;
    height: 3px;
    background: var(--primary-red);
    margin-bottom: 30px;
}

.reach-stats {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.reach-stat {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.reach-stat-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    font-size: 16px;
    color: var(--dark-blue);
    flex-shrink: 0;
    margin-top: 4px;
}

.reach-stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reach-stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark-gray);
    line-height: 1.1;
}

.reach-stat-info p {
    font-size: 13px;
    color: var(--medium-gray);
    line-height: 1.5;
    margin: 0;
}

.reach-stat-info p strong {
    color: var(--dark-gray);
}

.reach-footnote {
    font-size: 12px;
    color: var(--medium-gray);
    margin-top: 24px;
    margin-bottom: 20px;
    font-style: italic;
}

.reach-footnote a {
    color: var(--dark-gray);
    text-decoration: underline;
}

.btn-reach-donate {
    display: inline-block;
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 0;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
}

.btn-reach-donate:hover {
    background-color: #0a2540;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(11, 46, 79, 0.35);
}

/* ========== TRUST STRIP ========== */
.trust-strip {
    background-color: var(--white);
    border-bottom: 2px solid #eee;
    padding: 30px 20px;
}

.trust-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 120px;
}

.trust-number {
    font-size: 40px;
    font-weight: 800;
    color: #111111;
    line-height: 1;
}

.trust-label {
    font-size: 12px;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-align: center;
    font-weight: 600;
}

.trust-divider {
    width: 1px;
    height: 55px;
    background-color: #ddd;
    flex-shrink: 0;
}

/* ========== IMPACT SECTION ========== */
.impact-section {
    padding: 60px 20px;
    background-color: var(--light-gray);
}

.impact-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 20px;
    text-align: left;
}

.section-tagline {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.7;
    max-width: 800px;
    margin-bottom: 50px;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.impact-stat {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}

.impact-icon {
    font-size: 32px;
    color: var(--dark-blue);
    margin-bottom: 16px;
}

.impact-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 8px;
}

.impact-text {
    font-size: 13px;
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ========== SPLIT CARDS (Who We Are / What We Do) ========== */
.split-cards-section {
    padding: 70px 20px;
    background-color: var(--white);
}

.split-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    margin-bottom: 60px;
}

.split-card:last-child {
    margin-bottom: 0;
}

.split-card-image {
    overflow: hidden;
}

.split-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.split-card:hover .split-card-image img {
    transform: scale(1.03);
}

.split-card-content {
    padding: 50px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--light-gray);
}

.split-card-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 16px;
}

.split-card-accent {
    width: 50px;
    height: 4px;
    background-color: var(--dark-blue);
    margin-bottom: 20px;
}

.split-card-content p {
    font-size: 15px;
    color: var(--medium-gray);
    line-height: 1.75;
    margin-bottom: 24px;
}

.split-card-link {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-blue);
    text-decoration: none;
    transition: var(--transition);
}

.split-card-link:hover {
    color: #0a2540;
}

/* Reverse layout: text left, image right */
.split-card-reverse {
    direction: rtl;
}

.split-card-reverse > * {
    direction: ltr;
}

/* ========== PROGRAMS SECTION ========== */
.programs-section {
    padding: 70px 20px;
    position: relative;
    background-image:
        linear-gradient(to bottom,
            #ffffff 0%,
            rgba(255, 255, 255, 0.72) 14%,
            rgba(11, 46, 79, 0.72) 46%,
            rgba(11, 46, 79, 0.82) 100%),
        url("../../mother and dua.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.programs-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 14px;
    display: inline-block;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.78);
}

.programs-section .section-tagline {
    color: #17334c;
    background: rgba(255, 255, 255, 0.7);
    display: inline-block;
    padding: 6px 10px;
    margin-bottom: 38px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.program-area-card {
    background: #0b2e4f;
    border-radius: 0;
    overflow: visible;
    box-shadow: 0 10px 24px rgba(11, 46, 79, 0.16);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    position: relative;
    margin-top: 30px;
}

.program-area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(11, 46, 79, 0.26);
}

.program-area-image-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
    z-index: 1;
}

.program-area-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.program-area-icon-badge {
    position: absolute;
    top: -28px;
    right: 20px;
    transform: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0e73c8;
    color: #ffffff;
    display: grid;
    place-items: center;
    border: 4px solid #ffffff;
    font-size: 23px;
    box-shadow: 0 6px 16px rgba(14, 115, 200, 0.35);
    z-index: 2;
}

.program-area-content {
    padding: 26px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: linear-gradient(165deg, #0b2e4f 0%, #103a62 52%, #164874 100%);
    position: relative;
}

.program-area-content::after {
    content: '';
    position: absolute;
    top: -22%;
    right: -18%;
    width: 54%;
    height: 170%;
    background: rgba(255, 255, 255, 0.08);
    transform: rotate(23deg);
    pointer-events: none;
}

.program-area-content h3,
.program-area-content p,
.program-area-stats,
.program-area-learn-more {
    position: relative;
    z-index: 1;
}

.program-area-content h3 {
    font-size: 23px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 12px;
}

.program-area-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 22px;
    max-width: 96%;
}

.program-area-stats {
    display: flex;
    gap: 10px;
    margin-bottom: 26px;
}

.program-area-stat-box {
    flex: 1;
    min-height: 66px;
    background-color: #ffffff;
    border-radius: 6px;
    border: 1px solid rgba(12, 35, 64, 0.16);
    padding: 8px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.program-area-stat-number {
    font-size: 19px;
    line-height: 1.1;
    font-weight: 800;
    color: #0b2e4f;
    margin-bottom: 4px;
}

.program-area-stat-label {
    font-size: 12px;
    color: #36506a;
    line-height: 1.2;
}

.program-area-learn-more {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.2px;
    width: fit-content;
}

.program-area-learn-more span {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #0b2e4f;
    display: grid;
    place-items: center;
    transition: transform 0.25s ease;
}

.program-area-learn-more:hover {
    color: #d8e8f6;
}

.program-area-learn-more:hover span {
    transform: translateX(3px);
}

.program-area-content-simple {
    padding-bottom: 28px;
}

.program-area-content-simple .program-area-learn-more {
    margin-top: 16px;
}

/* ========== EFFICIENCY SECTION ========== */
.efficiency-section {
    padding: 80px 20px;
    position: relative;
    background-image:
        linear-gradient(to bottom,
            rgba(11, 46, 79, 0.82) 0%,
            rgba(11, 46, 79, 0.76) 56%,
            rgba(255, 255, 255, 0.64) 88%,
            #ffffff 100%),
        url("../../mother and dua.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.projects-overlay {
    padding: 24px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.efficiency-left h2 {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.efficiency-left p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 26px;
    line-height: 1.6;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.project-card {
    background: #f7f7f7;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(11, 46, 79, 0.18);
}

.project-card-image {
    position: relative;
    height: 185px;
    overflow: hidden;
}

.project-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.project-card:hover .project-card-image img {
    transform: scale(1.04);
}

.project-card-image-tint::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(179, 24, 37, 0.75);
}

.project-card-body {
    padding: 18px 22px 20px;
    background:
        radial-gradient(circle at 85% 50%, rgba(11, 46, 79, 0.06) 0 20%, transparent 22%) 0 0 / 24px 24px,
        #f6f6f6;
}

.project-card-body h3 {
    font-size: 36px;
    color: #111111;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
}

.project-read-more {
    display: inline-block;
    background-color: var(--dark-blue);
    color: #ffffff;
    padding: 9px 18px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.project-read-more:hover {
    background-color: #0a2540;
    color: #ffffff;
}

/* ========== NEWS SECTION ========== */
.news-section {
    padding: 70px 20px;
    background: linear-gradient(165deg, #0b2e4f 0%, #0a2540 48%, #071c32 100%);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.news-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0;
}

.news-see-more {
    font-size: 15px;
    font-weight: 700;
    color: #64b5f6;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.news-see-more:hover {
    color: #90caf9;
}

/* Layout: featured left + side list right */
.news-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 28px;
    align-items: stretch;
}

/* --- Featured story (left) --- */
.news-featured {
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    min-height: 480px;
}

.news-featured-image {
    position: absolute;
    inset: 0;
}

.news-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.news-featured:hover .news-featured-image img {
    transform: scale(1.04);
}

.news-featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px 28px;
    background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.52) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    width: fit-content;
}

.news-badge i {
    font-size: 7px;
    color: var(--dark-blue);
}

.news-badge-developing {
    background: rgba(11, 46, 79, 0.2);
    padding: 5px 12px;
    border-radius: 2px;
}

.news-featured-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

.news-featured:hover .news-featured-overlay h3 {
    text-decoration: underline;
}

.news-featured-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Side stories list (right) --- */
.news-side-list {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    max-height: 340px;
    position: relative;
}

.news-side-list .news-scroll-inner {
    display: flex;
    flex-direction: column;
    animation: newsScrollUp 16s linear infinite;
}

.news-side-list:hover .news-scroll-inner {
    animation-play-state: paused;
}

@keyframes newsScrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.news-side-item {
    display: grid;
    grid-template-columns: 1fr auto 100px;
    gap: 14px;
    align-items: center;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
}

.news-scroll-inner .news-side-item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.news-side-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.news-side-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.news-side-meta {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.news-side-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin: 0;
    transition: color 0.2s ease;
}

.news-side-item:hover .news-side-text h4 {
    color: #90caf9;
}

.news-side-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-icon-badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--dark-blue);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 12px;
}

.news-icon-badge-alt {
    background: #0b2e4f;
}

.news-side-thumb {
    width: 100px;
    height: 72px;
    overflow: hidden;
    flex-shrink: 0;
}

.news-side-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.news-side-item:hover .news-side-thumb img {
    transform: scale(1.06);
}

/* ========== GET INVOLVED SECTION ========== */
.get-involved {
    padding: 60px 20px;
    background-color: var(--white);
}

.get-involved h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 40px;
}

.involvement-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.involvement-card {
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 0;
}

.involvement-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(11, 46, 79, 0.15);
    color: inherit;
}

.involvement-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.involvement-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.involvement-card:hover .involvement-card-image img {
    transform: scale(1.04);
}

.involvement-card-body {
    padding: 22px 24px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.involvement-card-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.involvement-card-title h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-blue);
    margin: 0;
    line-height: 1.3;
}

.involvement-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--dark-blue);
    color: var(--white);
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
    line-height: 1;
}

.involvement-card:hover .involvement-arrow {
    background: #0a2540;
    transform: translateX(3px);
}

.involvement-card-body p {
    font-size: 14px;
    color: var(--medium-gray);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.involvement-card-accent {
    height: 4px;
    background: var(--dark-blue);
    width: 100%;
    margin-top: auto;
}

.involvement-card:hover .involvement-card-accent {
    background: #0a2540;
}

/* ========== MONTHLY GIVING CTA ========== */
.monthly-cta {
    position: relative;
    overflow: hidden;
    background-image:
        linear-gradient(180deg,
            rgba(6, 24, 42, 0.84) 0%,
            rgba(8, 33, 56, 0.84) 52%,
            rgba(11, 46, 79, 0.92) 100%),
        url("../../happy children.png");
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    padding: 78px 20px 72px;
    text-align: center;
}

.monthly-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.08), transparent 45%),
        linear-gradient(to bottom, rgba(11, 46, 79, 0) 62%, rgba(11, 46, 79, 0.62) 100%);
    pointer-events: none;
}

.monthly-cta-content {
    max-width: 660px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.monthly-cta h2 {
    font-size: 34px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.monthly-cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
}

.btn-give-monthly {
    display: inline-block;
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 14px 38px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-give-monthly:hover {
    background-color: #0a2540;
    color: var(--white);
    box-shadow: 0 4px 18px rgba(11, 46, 79, 0.4);
    transform: translateY(-2px);
}

/* ========== NEWSLETTER SECTION ========== */
.efficiency-info {
    padding: 60px 20px;
    background-color: var(--white);
}

.newsletter-center {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-center h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 12px;
}

.newsletter-center p {
    font-size: 14px;
    color: var(--medium-gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 14px;
}

.newsletter-form button {
    background-color: var(--dark-blue);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background-color: #0a2540;
}

/* ========== FOOTER ========== */
.footer {
    position: relative;
    background-image:
        linear-gradient(to bottom,
            rgba(11, 46, 79, 0.92) 0%,
            rgba(8, 33, 56, 0.96) 50%,
            rgba(6, 25, 43, 0.98) 100%),
        url("../../happy children.png");
    background-size: cover;
    background-position: center 72%;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 34px 20px 20px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: linear-gradient(to bottom, rgba(11, 46, 79, 0.68), rgba(11, 46, 79, 0));
    pointer-events: none;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-section a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-info {
    text-align: right;
}

.footer-info p {
    margin: 4px 0;
}

/* ========== RESPONSIVE DESIGN ========== */

/* Tablet */
@media (max-width: 1024px) {

    /* Hero */
    .hero-content-side {
        padding: 60px 40px;
        max-width: 520px;
    }

    .hero-title {
        font-size: 38px;
    }

    /* Save Lives */
    .save-lives-inner {
        padding: 40px 40px;
        gap: 40px;
    }

    .save-lives-title {
        font-size: 40px;
    }

    /* Our Reach */
    .our-reach-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .our-reach-title {
        font-size: 30px;
    }

    .reach-stat-number {
        font-size: 30px;
    }

    /* Split Cards */
    .split-card-content {
        padding: 36px 40px;
    }

    .split-card-content h2 {
        font-size: 30px;
    }

    /* Trust Strip */
    .trust-stats {
        gap: 32px;
    }

    .trust-number {
        font-size: 34px;
    }

    .trust-divider {
        height: 45px;
    }

    /* Programs */
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .program-area-image-wrap {
        height: 210px;
    }

    .program-area-content h3 {
        font-size: 21px;
    }

    .program-area-content p {
        font-size: 16px;
    }

    /* Projects */
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-card-body h3 {
        font-size: 30px;
    }

    /* News */
    .news-layout {
        grid-template-columns: 1fr;
    }

    .news-featured {
        min-height: 400px;
    }

    .news-side-item {
        grid-template-columns: 1fr auto 90px;
    }

    /* Get Involved */
    .involvement-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .involvement-card-image {
        height: 200px;
    }

    /* Monthly CTA */
    .monthly-cta {
        padding: 60px 20px;
    }

    .monthly-cta h2 {
        font-size: 28px;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    /* Hero Section */
    .hero-section {
        min-height: 70vh;
    }

    .hero-image-side {
        order: -1;
        display: none;
    }

    .hero-content-side {
        padding: 30px 20px;
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .btn-hero-cta {
        padding: 10px 22px;
        font-size: 14px;
    }

    /* Save Lives Banner */
    .save-lives-banner {
        padding: 30px 15px;
    }

    .save-lives-inner {
        flex-direction: column;
        padding: 30px 24px;
        gap: 20px;
        text-align: center;
    }

    .save-lives-left {
        min-width: unset;
    }

    .save-lives-title {
        font-size: 32px;
    }

    .save-lives-tagline {
        font-size: 11px;
    }

    .save-lives-right p {
        font-size: 14px;
    }

    .btn-save-lives {
        padding: 12px 24px;
        font-size: 14px;
    }

    /* Our Reach Section */
    .our-reach-section {
        padding: 50px 15px;
    }

    .our-reach-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .our-reach-title {
        font-size: 24px;
    }

    .our-reach-desc {
        font-size: 14px;
    }

    .btn-our-reach {
        font-size: 12px;
        padding: 12px 22px;
    }

    .reach-stat-number {
        font-size: 28px;
    }

    .reach-tabs {
        gap: 16px;
    }

    .reach-tab {
        font-size: 14px;
    }

    .reach-stat {
        gap: 12px;
    }

    .reach-stat-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .btn-reach-donate {
        padding: 12px 28px;
        font-size: 13px;
    }

    /* Impact Stats */
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* Trust Strip */
    .trust-stats {
        gap: 20px;
    }

    .trust-number {
        font-size: 28px;
    }

    .trust-label {
        font-size: 11px;
    }

    .trust-divider {
        display: none;
    }

    .trust-stat {
        min-width: 100px;
    }

    /* Split Cards */
    .split-cards-section {
        padding: 50px 15px;
    }

    .split-card,
    .split-card-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .split-card-image {
        height: 240px;
    }

    .split-card-content {
        padding: 30px 24px;
    }

    .split-card-content h2 {
        font-size: 26px;
    }

    .split-card-content p {
        font-size: 14px;
    }

    /* Programs */
    .programs-section {
        padding: 50px 15px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .program-area-image-wrap {
        height: 220px;
    }

    .program-area-content {
        padding: 22px 18px 20px;
    }

    .program-area-content h3 {
        font-size: 20px;
    }

    .program-area-content p {
        font-size: 15px;
    }

    .program-area-stats {
        flex-wrap: wrap;
        gap: 8px;
    }

    .program-area-stat-box {
        min-width: calc(50% - 4px);
    }

    /* Projects / Efficiency */
    .efficiency-section {
        padding: 50px 15px;
    }

    .projects-overlay {
        padding: 16px;
    }

    .efficiency-left h2 {
        font-size: 26px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .project-card-image {
        height: 200px;
    }

    .project-card-body h3 {
        font-size: 26px;
    }

    /* News */
    .news-section {
        padding: 50px 15px;
    }

    .news-section h2 {
        font-size: 26px;
    }

    .news-layout {
        grid-template-columns: 1fr;
    }

    .news-featured {
        min-height: 300px;
    }

    .news-featured-overlay {
        padding: 24px 20px 20px;
    }

    .news-featured-overlay h3 {
        font-size: 20px;
    }

    .news-side-item {
        grid-template-columns: 1fr auto 80px;
        gap: 10px;
        padding: 14px 0;
    }

    .news-side-text h4 {
        font-size: 14px;
    }

    .news-side-thumb {
        width: 80px;
        height: 60px;
    }

    /* Get Involved */
    .get-involved {
        padding: 50px 15px;
    }

    .get-involved h2 {
        font-size: 26px;
        margin-bottom: 28px;
    }

    .involvement-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .involvement-card-image {
        height: 200px;
    }

    .involvement-card-body {
        padding: 18px 20px 14px;
    }

    .involvement-card-title h3 {
        font-size: 16px;
    }

    /* Monthly CTA */
    .monthly-cta {
        padding: 50px 15px;
    }

    .monthly-cta h2 {
        font-size: 24px;
    }

    .monthly-cta p {
        font-size: 14px;
    }

    .btn-give-monthly {
        padding: 12px 28px;
        font-size: 14px;
    }

    /* Footer */
    .footer {
        padding: 30px 15px 20px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .footer-info {
        text-align: center;
    }

    /* Newsletter (orphan CSS) */
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
    }
}

@media (max-width: 480px) {

    /* Hero */
    .hero-section {
        min-height: 60vh;
        background-attachment: scroll;
    }

    .hero-content-side {
        padding: 24px 15px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 22px;
    }

    .hero-subtitle {
        font-size: 13px;
    }

    .btn-hero-cta {
        padding: 9px 18px;
        font-size: 13px;
    }

    /* Save Lives */
    .save-lives-banner {
        padding: 20px 10px;
    }

    .save-lives-inner {
        padding: 24px 18px;
        gap: 16px;
    }

    .save-lives-title {
        font-size: 26px;
    }

    .save-lives-tagline {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .save-lives-right p {
        font-size: 13px;
        line-height: 1.6;
    }

    .btn-save-lives {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Our Reach */
    .our-reach-section {
        padding: 36px 10px;
    }

    .our-reach-inner {
        gap: 28px;
    }

    .our-reach-title {
        font-size: 20px;
    }

    .our-reach-desc {
        font-size: 13px;
    }

    .btn-our-reach {
        font-size: 11px;
        padding: 10px 18px;
    }

    .reach-tab {
        font-size: 13px;
    }

    .reach-stat-number {
        font-size: 24px;
    }

    .reach-stat-icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }

    .reach-stat-info p {
        font-size: 12px;
    }

    .reach-footnote {
        font-size: 11px;
    }

    .btn-reach-donate {
        padding: 10px 24px;
        font-size: 12px;
    }

    /* Split Cards */
    .split-cards-section {
        padding: 36px 10px;
    }

    .split-card {
        margin-bottom: 30px;
    }

    .split-card-image {
        height: 200px;
    }

    .split-card-content {
        padding: 24px 18px;
    }

    .split-card-content h2 {
        font-size: 22px;
    }

    .split-card-content p {
        font-size: 13px;
    }

    .split-card-link {
        font-size: 13px;
    }

    /* Impact Stats */
    .impact-stats {
        grid-template-columns: 1fr;
    }

    /* Trust Strip */
    .trust-strip {
        padding: 20px 10px;
    }

    .trust-stats {
        gap: 16px;
    }

    .trust-number {
        font-size: 24px;
    }

    .trust-label {
        font-size: 10px;
    }

    .trust-stat {
        min-width: 80px;
    }

    /* Programs */
    .programs-section {
        padding: 36px 10px;
    }

    .programs-section h2 {
        font-size: 22px;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .program-area-image-wrap {
        height: 200px;
    }

    .program-area-content h3 {
        font-size: 18px;
    }

    .program-area-content p {
        font-size: 14px;
    }

    .program-area-stat-box {
        min-width: 100%;
    }

    .program-area-stat-number {
        font-size: 16px;
    }

    .program-area-stat-label {
        font-size: 11px;
    }

    /* Projects */
    .efficiency-section {
        padding: 36px 10px;
    }

    .efficiency-left h2 {
        font-size: 22px;
    }

    .projects-overlay {
        padding: 12px;
    }

    .project-card-image {
        height: 160px;
    }

    .project-card-body {
        padding: 14px 14px 16px;
    }

    .project-card-body h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .project-read-more {
        font-size: 13px;
        padding: 7px 12px;
    }

    /* News */
    .news-section {
        padding: 36px 10px;
    }

    .news-section h2 {
        font-size: 22px;
    }

    .news-header {
        margin-bottom: 20px;
    }

    .news-featured {
        min-height: 250px;
    }

    .news-featured-overlay {
        padding: 20px 16px 16px;
    }

    .news-featured-overlay h3 {
        font-size: 17px;
    }

    .news-featured-date {
        font-size: 11px;
    }

    .news-side-item {
        grid-template-columns: 1fr auto 60px;
        gap: 8px;
        padding: 12px 0;
    }

    .news-side-meta {
        font-size: 10px;
    }

    .news-side-text h4 {
        font-size: 13px;
    }

    .news-side-thumb {
        width: 60px;
        height: 46px;
    }

    .news-icon-badge {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    /* Get Involved */
    .get-involved {
        padding: 36px 10px;
    }

    .get-involved h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .involvement-card-image {
        height: 180px;
    }

    .involvement-card-body {
        padding: 16px 16px 12px;
    }

    .involvement-card-title h3 {
        font-size: 15px;
    }

    .involvement-card-body p {
        font-size: 13px;
    }

    .involvement-arrow {
        width: 24px;
        height: 24px;
        font-size: 15px;
    }

    /* Monthly CTA */
    .monthly-cta {
        padding: 36px 10px;
    }

    .monthly-cta h2 {
        font-size: 22px;
    }

    .monthly-cta p {
        font-size: 13px;
    }

    .btn-give-monthly {
        padding: 10px 24px;
        font-size: 13px;
    }

    /* Footer */
    .footer {
        padding: 24px 10px 16px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-section h4 {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .footer-section a {
        font-size: 12px;
    }

    .footer-bottom {
        font-size: 11px;
    }

    .footer-links {
        gap: 10px;
    }
}
