/* =====================================================
   WEBSITE BRAND COLORS (CENTRALIZED THEME SYSTEM)
   Change these values to rebrand the complete website.
   ===================================================== */
:root {
    --primary-color: #004a84;
    --secondary-color: #f97316;

    /* Supporting colors */
    --primary-dark: #003660;
    --primary-light: #e6f0f8;
    --secondary-light: #fff1e6;

    /* General colors */
    --white: #ffffff;
    --black: #111111;
    --text-color: #222222;
    --muted-text: #666666;
    --border-color: #e2e8f0;
    --light-background: #f4f8fb;

    /* Fonts & Radii */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 8px;

    /* Shadows */
    --shadow-subtle: 0 4px 15px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 6px 20px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 12px 28px rgba(0, 0, 0, 0.12);

    /* Unified Spacing System */
    --section-padding-y: 72px;
    --section-padding-y-tablet: 56px;
    --section-padding-y-mobile: 42px;
    --section-padding-y-small: 34px;
    --container-padding-x: 40px;
    --container-padding-x-tablet: 28px;
    --container-padding-x-mobile: 20px;
    --container-padding-x-small: 16px;
    --section-header-mb: 36px;
    --section-header-mb-mobile: 22px;
}

/* Base Reset & Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input {
    font-family: inherit;
    border: none;
    outline: none;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--container-padding-x, 40px);
}

.section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.25;
}

.section-title span {
    color: var(--secondary-color);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--section-header-mb, 36px);
}

.view-all-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.view-all-link:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 14px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text-color);
    padding: 6px 2px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 3px;
    white-space: nowrap;
}

.nav-link.active {
    color: var(--primary-color);
    font-weight: 700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.btn-donate {
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 22px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
    transition: all 0.3s ease;
}

.btn-donate:hover {
    filter: brightness(0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

.mobile-toggle {
    display: none;
    background: none;
    font-size: 1.6rem;
    color: var(--text-color);
    cursor: pointer;
}

.mobile-nav-drawer {
    display: none;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

.mobile-nav-drawer.active {
    display: flex;
}

/* =====================================================
   GLOBAL DECORATIVE DOT SCATTER ACCENTS
   ===================================================== */
.bg-dots-scatter {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

.dots-top-right {
    top: 20px;
    right: 25px;
}

.dots-top-left {
    top: 20px;
    left: 25px;
}

.dots-bottom-left {
    bottom: 25px;
    left: 30px;
}

.dots-bottom-right {
    bottom: 25px;
    right: 30px;
}

/* Aesthetic Watermark & Vector Art Accents */
.bg-deco-art {
    position: absolute;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.deco-leaf-top-right {
    top: -10px;
    right: -10px;
    width: 250px;
    height: 250px;
    opacity: 0.9;
    transform: rotate(10deg);
}

.deco-leaf-top-left {
    top: 0px;
    left: -20px;
    width: 230px;
    height: 230px;
    opacity: 0.85;
    transform: scaleX(-1) rotate(15deg);
}

.deco-children-top-left {
    top: 10px;
    left: 20px;
    width: 180px;
    height: 180px;
    opacity: 0.85;
}

.deco-children-events {
    bottom: 15px;
    right: 25px;
    width: 190px;
    height: 190px;
    opacity: 0.85;
}

.deco-children-bottom-left {
    bottom: 15px;
    left: 25px;
    width: 210px;
    height: 210px;
    opacity: 0.85;
}

.deco-children-bottom-right {
    bottom: 15px;
    right: 30px;
    width: 210px;
    height: 210px;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .deco-children-top-left {
        width: 130px;
        height: 130px;
        top: 8px;
        left: 10px;
        opacity: 0.65;
    }
    .deco-children-events {
        width: 140px;
        height: 140px;
        bottom: 10px;
        right: 15px;
        opacity: 0.65;
    }
}

.deco-contour-corner {
    bottom: 0;
    right: 10px;
    width: 260px;
    height: 130px;
    opacity: 0.75;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 540px;
    overflow: hidden;
    background-color: #f4f8fb;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

.hero-gradient-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(247, 250, 248, 0.78) 0%,
            rgba(247, 250, 248, 0.60) 40%,
            rgba(247, 250, 248, 0.20) 70%,
            rgba(247, 250, 248, 0) 95%);
}

.hero-content-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 5;
}

.hero-content {
    max-width: 580px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-title span.orange {
    color: var(--secondary-color);
}

.hero-description {
    font-size: 1.1rem;
    color: #111827;
    margin-bottom: 32px;
    max-width: 540px;
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 14px rgba(0, 74, 132, 0.28);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 74, 132, 0.38);
}

.btn-primary .btn-icon-circle {
    width: 26px;
    height: 26px;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.btn-secondary-outline .btn-icon-circle {
    width: 26px;
    height: 26px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.btn-secondary-outline {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary-outline:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.hero-image-wrapper img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

/* =====================================================
   STATISTICS BAR
   ===================================================== */
.stats-section {
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.stats-card {
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 10px 30px rgba(0, 74, 132, 0.35);
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon {
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.stat-icon.icon-lightgreen {
    color: #60a5fa;
}

.stat-icon.icon-orange {
    color: #f97316;
}

.stat-icon.icon-gold {
    color: #facc15;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
}

.stat-label {
    font-size: 0.82rem;
    opacity: 0.92;
    font-weight: 500;
    color: var(--white);
    line-height: 1.25;
}

/* =====================================================
   WHO WE ARE SECTION
   ===================================================== */
.who-we-are-section {
    padding: var(--section-padding-y, 72px) 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.who-container-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

/* Left Video Card (50% Width) */
.who-video-wrapper {
    position: relative;
    width: 100%;
}

.dot-pattern-bottom-left {
    position: absolute;
    bottom: -16px;
    left: -16px;
    width: 90px;
    height: 90px;
    background-image: radial-gradient(#F26522 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    z-index: 1;
    opacity: 0.5;
}

.who-video-card {
    position: relative;
    display: block;
    text-decoration: none;
    cursor: pointer;
    border-radius: 18px;
    overflow: hidden;
    height: 380px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #000;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-video-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.15);
}

.who-video-card.playing {
    cursor: default;
    transform: none !important;
}

.who-video-card.playing .who-play-btn,
.who-video-card.playing .who-video-poster {
    display: none !important;
}

.who-video-card:hover .who-play-btn {
    transform: translateX(-50%) scale(1.12);
    box-shadow: 0 6px 22px rgba(242, 101, 34, 0.45);
}

.who-video-element,
.who-video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.who-video-card:hover .who-video-poster {
    transform: scale(1.03);
}

.who-embed-container {
    width: 100%;
    height: 100%;
}

.who-embed-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
}

.who-play-btn {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 5;
}

.who-play-btn:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(242, 101, 34, 0.35);
}

.play-icon-triangle {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 17px solid var(--secondary-color);
    margin-left: 4px;
}

/* Right Content Block (50% Width) */
.who-right-block {
    display: flex;
    flex-direction: column;
    gap: 28px;
    justify-content: center;
}

.who-text-content {
    min-width: 0;
}

.who-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.who-heading {
    font-size: 2.35rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.2;
    margin-bottom: 16px;
}

.text-orange {
    color: var(--secondary-color);
}

.who-text-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.who-text-block p {
    font-size: 0.96rem;
    color: var(--muted-text);
    line-height: 1.6;
}

/* Long Extended Action Strip (All in single line) */
.who-actions-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding-top: 6px;
    flex-wrap: nowrap;
}

.btn-know-story {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 74, 132, 0.25);
    flex-shrink: 0;
}

.btn-know-story:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-circle-arrow {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1.5px solid var(--white);
    background: transparent;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.who-strip-divider {
    width: 1.5px;
    height: 32px;
    background-color: #e2e8f0;
    flex-shrink: 0;
}

.who-badges-strip {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
    flex-shrink: 0;
}

.who-badge-item {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
}

.badge-icon-circle {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.bg-green-light {
    background-color: #e6f0f8;
    color: var(--primary-color);
}

.bg-orange-light {
    background-color: #ffedd5;
    color: var(--secondary-color);
}

.bg-emerald-light {
    background-color: #dcfce7;
    color: #10b981;
}

.badge-text {
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--text-color);
    line-height: 1.2;
    white-space: nowrap;
}

/* =====================================================
   OUR AREAS OF IMPACT
   ===================================================== */
.impact-section {
    padding: var(--section-padding-y, 72px) 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.impact-section-header {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.impact-section-header .section-tag {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.impact-section-header .section-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1.25;
    margin: 0;
}

.impact-section-header .section-title span.orange {
    color: var(--secondary-color);
}

.impact-slider-wrapper {
    width: 100%;
    position: relative;
}

.impact-cards-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    width: 100%;
    padding: 8px 2px 18px;
}

.impact-card {
    background-color: var(--white);
    border-radius: 18px;
    padding: 34px 20px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1.5px solid var(--border-color);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    position: relative;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(0, 74, 132, 0.1);
    border-color: rgba(0, 74, 132, 0.28);
}

.impact-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.impact-card:hover .impact-icon-box {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.08);
}

.impact-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 12px;
}

.impact-desc {
    font-size: 0.88rem;
    color: var(--muted-text);
    line-height: 1.55;
    margin-bottom: 22px;
    flex-grow: 1;
}

.impact-link {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-top: auto;
}

.impact-link i {
    font-size: 1rem;
    transition: transform 0.25s ease;
}

.impact-card:hover .impact-link {
    color: var(--secondary-color);
}

.impact-card:hover .impact-link i {
    transform: translateX(4px);
}

/* =====================================================
   FEATURED INITIATIVES
   ===================================================== */
.initiatives-section {
    padding: var(--section-padding-y, 72px) 0;
    background-color: var(--white);
}

.initiatives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.initiative-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 260px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.initiative-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.initiative-card:hover img {
    transform: scale(1.04);
}

.initiative-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.45) 65%, rgba(0, 0, 0, 0.92) 100%);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.initiative-content-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    width: 100%;
}

.initiative-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.35rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.initiative-icon.icon-green {
    color: var(--primary-color);
}

.initiative-icon.icon-orange {
    color: var(--secondary-color);
}

.initiative-icon.icon-purple {
    color: #8b5cf6;
}

.initiative-text-col {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.initiative-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
    line-height: 1.2;
}

.initiative-desc {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
    line-height: 1.3;
}

.initiative-link {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.initiative-link:hover {
    transform: translateX(4px);
}

/* =====================================================
   MOMENTS OF CHANGE (GALLERY 4-AT-A-TIME AUTO-SLIDER)
   ===================================================== */
.gallery-section {
    padding: var(--section-padding-y, 72px) 0;
    background-color: var(--white);
    position: relative;
}

.btn-view-gallery-modal {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.25s ease, transform 0.25s ease;
    padding: 6px 12px;
    border-radius: 8px;
}

.btn-view-gallery-modal:hover {
    color: var(--secondary-color);
    transform: translateX(3px);
}

.gallery-carousel-wrapper {
    position: relative;
    width: 100%;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.gallery-carousel-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 18px;
    padding: 6px 2px;
}

.gallery-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.gallery-card {
    flex: 0 0 calc((100% - 60px) / 4);
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background: #f1f5f9;
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: transform 0.45s ease;
}

.gallery-card:hover img {
    transform: scale(1.07);
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    color: var(--primary-color);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
}

.gallery-nav-btn.prev {
    left: -18px;
}

.gallery-nav-btn.next {
    right: -18px;
}

.gallery-nav-btn:hover {
    background: var(--secondary-color);
    color: #ffffff;
    border-color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(242, 101, 34, 0.35);
}

.gallery-dots-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.gallery-dots-indicator .gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dots-indicator .gallery-dot.active {
    width: 24px;
    background: var(--secondary-color);
}

/* =====================================================
   8. IMPACT STORIES SECTION (REAL STORIES. REAL PEOPLE. REAL CHANGE.)
   ===================================================== */
.stories-section {
    padding: var(--section-padding-y, 72px) 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.stories-header-center {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 24px;
}

.stories-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.stories-badge-line {
    width: 28px;
    height: 2px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.stories-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stories-badge-text {
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.stories-main-title {
    font-size: 1.85rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.stories-main-title span.orange {
    color: var(--secondary-color);
}

.stories-subtitle {
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.5;
}

.stories-subtitle strong.brand-green {
    color: var(--primary-color);
    font-weight: 700;
}

/* Bento Grid Composition - Big Square Featured Card + Spacious Right Column */
.stories-bento-grid {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 20px;
    align-items: stretch;
    margin-bottom: 20px;
}

/* Left Featured Story Card (Big Bold Square 460x460) */
.story-card-featured {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    width: 100%;
    max-width: 460px;
    height: 460px;
    min-height: 460px;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px 26px 26px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.story-featured-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    z-index: 1;
    transition: transform 0.4s ease;
}

.story-card-featured:hover .story-featured-bg-img {
    transform: scale(1.03);
}

.story-featured-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.05) 30%, rgba(0, 0, 0, 0.65) 60%, rgba(0, 0, 0, 0.94) 100%);
    z-index: 2;
}

/* Category Badge (Green Pill with Orange Quote or Icon) */
.story-category-pill {
    position: relative;
    z-index: 3;
    align-self: flex-start;
    background-color: rgba(0, 74, 132, 0.92);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.story-cat-quote-icon {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--secondary-color);
    line-height: 1;
}

.story-cat-text {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    text-transform: capitalize;
}

/* Play Buttons */
.story-play-btn {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
    border: 2px solid rgba(255, 255, 255, 0.85);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    transition: all 0.25s ease;
}

.story-play-btn-large {
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    font-size: 1.65rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.story-play-btn:hover {
    background-color: var(--secondary-color);
    border-color: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

.story-featured-info {
    position: relative;
    z-index: 3;
    color: var(--white);
}

.story-featured-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2px;
    line-height: 1.2;
}

.story-featured-meta {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 3px;
}

.story-featured-location {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.88);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 8px;
}

.story-featured-location i {
    color: var(--secondary-color);
    font-size: 0.84rem;
}

.story-featured-quote {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.45;
    font-style: normal;
}

.quote-mark.green {
    color: #60a5fa;
    font-weight: 900;
    font-size: 1.05rem;
}

/* Right Column (Height 460px matching left square card) */
.stories-right-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
    height: 460px;
    justify-content: space-between;
}

.stories-top-two-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* Supporting Story Card (Rohit & Sunita) */
.story-supporting-card {
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid #edf2f7;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    height: 221px;
    justify-content: space-between;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.story-supporting-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.story-card-top-media {
    position: relative;
    width: 100%;
    height: 132px;
    overflow: hidden;
}

.story-supporting-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.story-supporting-card:hover .story-supporting-img {
    transform: scale(1.04);
}

.story-category-pill-compact {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 3;
    background-color: rgba(0, 74, 132, 0.92);
    backdrop-filter: blur(6px);
    border-radius: 6px;
    padding: 4px 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.story-cat-icon {
    color: var(--white);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.story-play-btn-small {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    font-size: 1.15rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.story-card-bottom-info {
    padding: 12px 16px;
    background-color: var(--white);
}

.story-supp-name {
    font-size: 0.96rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2px;
    line-height: 1.2;
}

.story-supp-meta {
    font-size: 0.72rem;
    color: #64748b;
    margin-bottom: 2px;
}

.story-supp-location {
    font-size: 0.7rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 3px;
}

.story-supp-location i {
    color: var(--secondary-color);
    font-size: 0.76rem;
}

/* Bottom Split Horizontal Card (Arvind Kumar) */
.story-split-horizontal-card {
    background-color: var(--white);
    border-radius: 16px;
    border: 1px solid #edf2f7;
    overflow: hidden;
    display: grid;
    grid-template-columns: 280px 1fr;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
    height: 221px;
    min-height: 221px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.story-split-horizontal-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.story-split-media {
    position: relative;
    width: 100%;
    height: 221px;
    min-height: 221px;
    overflow: hidden;
}

.story-split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.story-split-horizontal-card:hover .story-split-img {
    transform: scale(1.04);
}

.story-split-content {
    padding: 18px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
}

.story-split-quote {
    font-size: 0.74rem;
    color: #334155;
    line-height: 1.35;
    margin-top: 6px;
}

/* Dots Indicator */
.stories-carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 22px;
}

.story-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-dot.active {
    width: 20px;
    border-radius: 4px;
    background-color: var(--primary-dark);
}

/* Stories CTA Banner - Compact */
.stories-cta-banner {
    position: relative;
    background-color: #f0f7fc;
    border-radius: 12px;
    padding: 16px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid #cce3f5;
    overflow: hidden;
}

.stories-cta-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    z-index: 2;
}

.stories-cta-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: #cce3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stories-cta-heading {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2px;
    line-height: 1.2;
}

.stories-cta-desc {
    font-size: 0.78rem;
    color: #475569;
    line-height: 1.35;
}

.stories-cta-action {
    flex-shrink: 0;
    z-index: 2;
}

.btn-stories-view-all {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 0.82rem;
    padding: 9px 18px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(0, 74, 132, 0.25);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-stories-view-all:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-stories-arrow-circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.2px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.stories-cta-leaf-deco {
    position: absolute;
    right: -10px;
    bottom: -15px;
    pointer-events: none;
}

/* =====================================================
   9. UPCOMING EVENTS & STAY CONNECTED (50% - 50% GRID)
   ===================================================== */
.events-newsletter-section {
    padding: var(--section-padding-y, 72px) 0;
    background-color: var(--white);
}

.events-newsletter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.events-col {
    border-right: 1px solid #e2e8f0;
    padding-right: 48px;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.event-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 4px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: auto;
    box-shadow: none;
}

.event-date-box {
    border: 1.5px solid var(--primary-color);
    border-radius: 8px;
    padding: 6px 12px;
    text-align: center;
    min-width: 48px;
    background-color: var(--white);
    flex-shrink: 0;
}

.event-date-number {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
}

.event-date-month {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
}

.event-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.event-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 3px;
    line-height: 1.3;
}

.event-location {
    font-size: 0.78rem;
    color: var(--muted-text);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

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

.btn-event {
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 6px;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 74, 132, 0.2);
}

.btn-event:hover {
    background: var(--primary-dark);
}

/* Newsletter Column */
.newsletter-col {
    padding-left: 0;
}

.newsletter-wrapper {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.newsletter-desc {
    font-size: 0.92rem;
    color: var(--muted-text);
    line-height: 1.5;
}

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

.newsletter-input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.88rem;
    outline: none;
    background: #ffffff;
    transition: border-color 0.2s ease;
}

.newsletter-input:focus {
    border-color: var(--primary-color);
}

.btn-subscribe {
    background: var(--secondary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 11px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: none;
    box-shadow: 0 3px 8px rgba(242, 101, 34, 0.2);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease;
}

.btn-subscribe:hover {
    background: #d85215;
}

.btn-subscribe-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

.social-icons-row {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    background: var(--secondary-color);
}

/* =====================================================
   10. DONOR TESTIMONIALS SECTION (4 CARDS CAROUSEL)
   ===================================================== */
.donor-testimonials-section {
    position: relative;
    padding: 72px 0 60px;
    background-color: var(--white);
    overflow: hidden;
}

.donor-bg-quote-mark {
    position: absolute;
    top: 25px;
    left: 45px;
    font-size: 140px;
    line-height: 1;
    font-family: Georgia, 'Times New Roman', serif;
    color: #f1f5f9;
    font-weight: 900;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    opacity: 0.85;
}

.donor-testimonials-container {
    position: relative;
    z-index: 2;
}

/* Header */
.donor-header-center {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.donor-badge-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.donor-badge-line {
    width: 38px;
    height: 1.5px;
    background-color: var(--secondary-color);
}

.donor-badge-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.donor-badge-text {
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #0f172a;
    text-transform: uppercase;
}

.donor-main-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 14px;
    text-align: center;
}

.donor-main-title .orange {
    color: var(--secondary-color);
}

.donor-main-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.donor-main-subtitle strong {
    color: #0f172a;
}

/* Carousel Layout */
.donor-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    margin-bottom: 24px;
}

.donor-arrow-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: #004a84;
    color: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 74, 132, 0.25);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
}

.donor-arrow-btn:hover {
    background: var(--secondary-color);
    transform: scale(1.08);
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.35);
}

.donor-cards-slider {
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 8px 4px 16px;
}

.donor-cards-slider::-webkit-scrollbar {
    display: none;
}

.donor-cards-track {
    display: flex;
    gap: 20px;
    width: 100%;
}

/* Voice Card */
.donor-voice-card {
    flex: 1 1 0;
    min-width: 255px;
    background: var(--white);
    border-radius: 18px;
    border: 1px solid #edf2f7;
    padding: 24px 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.donor-voice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 74, 132, 0.08);
    border-color: rgba(0, 74, 132, 0.22);
}

.donor-voice-quote-icon {
    font-size: 2.2rem;
    line-height: 1;
    color: var(--secondary-color);
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: 900;
    margin-bottom: 12px;
}

.donor-voice-text {
    font-size: 0.88rem;
    color: #334155;
    line-height: 1.58;
    margin-bottom: 20px;
    font-weight: 400;
    flex-grow: 1;
}

.donor-voice-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
}

.donor-voice-author {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.donor-voice-avatar {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f8fafc;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.donor-voice-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.donor-voice-name {
    font-size: 0.94rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.donor-voice-role {
    font-size: 0.74rem;
    color: #64748b;
    line-height: 1.2;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.donor-voice-location {
    font-size: 0.72rem;
    color: #94a3b8;
    font-style: italic;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.donor-voice-badge {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #f0fdf4;
    color: #16a34a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.02rem;
    flex-shrink: 0;
}

.donor-voice-card:nth-child(2) .donor-voice-badge {
    background: #eff6ff;
    color: #2563eb;
}

.donor-voice-card:nth-child(3) .donor-voice-badge {
    background: #fffbeb;
    color: #d97706;
}

.donor-voice-card:nth-child(4) .donor-voice-badge {
    background: #fdf2f8;
    color: #db2777;
}

.donor-pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.donor-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.25s ease;
}

.donor-dot.active {
    width: 18px;
    border-radius: 10px;
    background: #004a84;
}

/* =====================================================
   11. JOIN THE MOVEMENT (CURVED CTA BANNER)
   ===================================================== */
.join-movement-section {
    padding: 10px 0 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.join-orange-strip-fullwidth {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 125px;
    pointer-events: none;
    z-index: 1;
}

.join-orange-strip-fullwidth svg,
.join-orange-wave-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.join-movement-wrapper {
    position: relative;
    max-width: 1360px;
    margin: 0 auto;
    border-radius: 32px 32px 0 0;
    overflow: hidden;
    z-index: 2;
}

.join-movement-card {
    position: relative;
    background: linear-gradient(180deg, #004a84 0%, #003e6f 65%, #003660 100%);
    padding: 56px 40px 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px 32px 0 0;
    min-height: 270px;
}

.join-deco-left {
    position: absolute;
    left: 24px;
    bottom: -6px;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    opacity: 0.9;
}

.join-deco-right {
    position: absolute;
    right: 24px;
    bottom: -6px;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    opacity: 0.9;
}

.join-wave-divider {
    width: 100%;
    height: 90px;
    margin-top: -3px;
    line-height: 0;
    display: block;
    background: transparent;
}

.join-wave-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

.join-movement-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 620px;
    margin: 0 auto;
}

.join-movement-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.join-movement-desc {
    font-size: 0.98rem;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 26px;
    font-weight: 400;
}

.join-movement-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-join-donate {
    background-color: var(--secondary-color);
    color: var(--white);
    font-weight: 700;
    font-size: 0.96rem;
    padding: 13px 28px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 18px rgba(249, 115, 22, 0.4);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-join-donate:hover {
    transform: translateY(-2px);
    background-color: #ea580c;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.5);
}

.btn-join-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.btn-join-volunteer {
    background-color: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.75);
    font-weight: 700;
    font-size: 0.96rem;
    padding: 12px 26px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-join-volunteer:hover {
    background-color: rgba(255, 255, 255, 0.14);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-join-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* =====================================================
   11. CTA BANNER SECTION
   ===================================================== */
.cta-banner-section {
    padding: var(--section-padding-y, 72px) 0;
    position: relative;
    background: linear-gradient(rgba(0, 74, 132, 0.90), rgba(0, 54, 96, 0.90)), url('assets/cta-bg.png') no-repeat center center / cover;
    color: var(--white);
    overflow: hidden;
}

.cta-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 30px;
    align-items: center;
}

.cta-text-wrapper {
    max-width: 500px;
}

.cta-heading {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 10px;
    color: var(--white);
}

.cta-subtext {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.4;
}

.cta-cards-flex {
    display: flex;
    gap: 16px;
    width: 100%;
}

.cta-action-card {
    background: var(--white);
    color: var(--text-color);
    border-radius: 8px;
    padding: 16px 20px;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.cta-card-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cta-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-card-icon svg {
    display: block;
}

.cta-card-info {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.cta-card-label {
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 500;
}

.cta-card-title {
    font-size: 1.05rem;
    font-weight: 800;
}

.cta-card-title.volunteer,
.cta-card-title.partner {
    color: var(--primary-color);
}

.cta-card-title.support {
    color: var(--secondary-color);
}

.cta-arrow {
    font-size: 1.15rem;
    color: #1e293b;
    margin-left: auto;
    transition: transform 0.2s ease;
}

.cta-action-card:hover .cta-arrow {
    transform: translateX(4px);
}

/* =====================================================
   12. OUR PARTNERS IN CHANGE SECTION
   ===================================================== */
.partners-section {
    padding: 30px 0 68px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.partners-header-center {
    text-align: center;
    margin-bottom: 30px;
}

.partners-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1.25;
}

.partners-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1260px;
    margin: 0 auto 24px;
    padding: 0 10px;
}

.partner-arrow-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1.5px solid #e2e8f0;
    color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.25s ease;
    z-index: 5;
    flex-shrink: 0;
}

.partner-arrow-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    transform: scale(1.06);
    box-shadow: 0 6px 18px rgba(0, 74, 132, 0.2);
}

.partners-slider-wrapper {
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 4px;
}

.partners-slider-wrapper::-webkit-scrollbar {
    display: none;
}

.partner-cards-track {
    display: flex;
    gap: 18px;
    width: max-content;
    align-items: center;
}

.partner-card-box {
    background: #ffffff;
    border: 1px solid #edf2f7;
    border-radius: 16px;
    padding: 16px 20px;
    height: 96px;
    width: 215px;
    min-width: 215px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
}

.partner-card-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 74, 132, 0.08);
    border-color: rgba(0, 74, 132, 0.25);
}

.partner-card-box .partner-img {
    max-height: 56px;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.partner-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
}

.partner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.partner-dot.active {
    width: 26px;
    border-radius: 6px;
    background-color: var(--secondary-color);
}

/* =====================================================
   LATEST NEWS & UPDATES SECTION (STANDALONE FULL WIDTH)
   ===================================================== */
.news-section {
    padding: var(--section-padding-y, 72px) 0;
    background-color: var(--white);
}

.news-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 10px;
}

.news-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.news-card-img {
    height: 200px;
    overflow: hidden;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-img img {
    transform: scale(1.05);
}

.news-card-body {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.news-date {
    font-size: 0.8rem;
    color: var(--muted-text);
    margin-bottom: 8px;
    font-weight: 600;
}

.news-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 16px;
    line-height: 1.4;
}

.news-link {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: var(--section-padding-y, 72px) 0 30px;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 30px;
    margin-bottom: 50px;
}

.footer-brand-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
    display: block;
}

.footer-brand-desc {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 20px;
    line-height: 1.5;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--white);
}

.footer-links-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list a {
    font-size: 0.85rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-links-list a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 0.85rem;
    opacity: 0.85;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-item i {
    font-size: 1rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.footer-contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-contact-item a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    opacity: 0.75;
}

.footer-legal-links {
    display: flex;
    gap: 20px;
}

/* =====================================================
   RESPONSIVE DESIGN (TABLET & MOBILE)
   Scoped ONLY to mobile/tablet breakpoints.
   Desktop layout is 100% preserved.
   ===================================================== */

/* Extra items visibility on desktop vs mobile */
.gallery-item-extra {
    display: none;
}

.carousel-dots-indicator {
    display: none;
}

/* -----------------------------------------------------
   TABLET BREAKPOINT (max-width: 1140px)
   ----------------------------------------------------- */
@media (max-width: 1140px) {

    .container,
    .tri-container {
        padding: 0 24px;
    }

    .desktop-nav,
    .header-container>.btn-donate {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .who-container-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stats-card {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stories-bento-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stories-right-column {
        height: auto;
    }

    .story-card-featured {
        height: 360px;
        min-height: 360px;
    }

    .stories-cta-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .stories-cta-action {
        align-self: flex-start;
    }

    .events-newsletter-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .events-col {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 32px;
    }

    .donor-cards-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .donor-cta-banner {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .donor-cta-actions {
        justify-content: flex-start;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .news-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .impact-cards-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

/* -----------------------------------------------------
   MOBILE BREAKPOINT (max-width: 767px)
   Matches mobile reference screenshot precisely.
   ----------------------------------------------------- */
@media (max-width: 767px) {

    html,
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
    }

    section {
        overflow-x: clip;
        max-width: 100%;
        width: 100%;
    }

    /* 1. Header (Mobile) */
    .site-header {
        padding: 12px 0;
        background: var(--white);
        border-bottom: 1px solid var(--border-color);
        position: sticky;
        top: 0;
        z-index: 100;
    }

    .header-container {
        padding: 0 var(--container-padding-x-mobile, 20px);
    }

    .logo img {
        height: 34px;
        width: auto;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        background: none;
        border: none;
        color: var(--text-color);
        cursor: pointer;
        padding: 4px;
    }

    .container,
    .tri-container {
        padding: 0 var(--container-padding-x-mobile, 20px) !important;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .section-header,
    .impact-section-header,
    .stories-header-center,
    .donor-header-center,
    .initiatives-section .section-header,
    .gallery-section .section-header,
    .events-newsletter-section .section-header,
    .partners-section .section-header,
    .news-section .section-header {
        margin-bottom: var(--section-header-mb-mobile, 20px) !important;
    }

    /* 2. Hero Section (Mobile) */
    .hero-section {
        height: auto;
        min-height: unset;
        padding: 24px 0 20px;
        position: relative;
        background-color: #f4f8fb;
        overflow: hidden;
    }

    .hero-bg-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        opacity: 0.95;
    }

    .hero-img-full {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 85% 25%;
    }

    .hero-gradient-layer {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,
                rgba(255, 255, 255, 0.95) 0%,
                rgba(255, 255, 255, 0.75) 15%,
                rgba(255, 255, 255, 0.10) 35%,
                rgba(0, 0, 0, 0.35) 55%,
                rgba(0, 0, 0, 0.75) 75%,
                rgba(0, 0, 0, 0.90) 100%);
    }

    .hero-content-wrapper {
        position: relative;
        z-index: 2;
        top: unset;
        left: unset;
        right: unset;
        transform: unset;
        padding: 0 !important;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.95rem;
        font-weight: 900;
        line-height: 1.18;
        color: #0f172a;
        margin-bottom: 180px;
        /* Space for the photo of teacher & children */
        letter-spacing: -0.5px;
    }

    .hero-title span.orange {
        color: #f97316;
    }

    .hero-description {
        font-size: 0.88rem;
        color: #ffffff;
        line-height: 1.45;
        margin-bottom: 18px;
        max-width: 100%;
        text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
    }

    .hero-cta-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        background-color: var(--primary-color);
        color: var(--white);
        font-weight: 700;
        font-size: 0.95rem;
        padding: 13px 20px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
        border: none;
        box-shadow: 0 4px 12px rgba(0, 74, 132, 0.3);
    }

    .btn-primary .btn-icon-circle {
        width: 26px;
        height: 26px;
        border: 2px solid var(--white);
        border-radius: 50%;
        background: transparent;
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
    }

    .btn-secondary-outline {
        width: 100%;
        background-color: var(--white);
        color: var(--primary-color);
        font-weight: 700;
        font-size: 0.95rem;
        padding: 13px 20px;
        border-radius: 8px;
        border: 1.5px solid var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
    }

    .btn-secondary-outline .btn-icon-circle {
        width: 26px;
        height: 26px;
        border: 2px solid var(--primary-color);
        border-radius: 50%;
        background: transparent;
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
    }

    /* 3. Statistics Section (Mobile) */
    .stats-section {
        padding: 0;
        margin: 0;
        background-color: var(--primary-color);
    }

    .stats-card {
        background: transparent;
        padding: 22px 14px;
        border-radius: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 12px;
        box-shadow: none;
    }

    .stat-item {
        border-right: none;
        padding: 0;
        gap: 10px;
    }

    .stat-icon {
        font-size: 1.65rem;
        flex-shrink: 0;
    }

    .stat-icon.icon-lightgreen {
        color: #60a5fa;
    }

    .stat-icon.icon-orange {
        color: #f97316;
    }

    .stat-icon.icon-gold {
        color: #facc15;
    }

    .stat-info {
        display: flex;
        flex-direction: column;
    }

    .stat-number {
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--white);
        line-height: 1.1;
    }

    .stat-label {
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.88);
        line-height: 1.2;
    }

    /* 4. Who We Are Section (Mobile) */
    .who-we-are-section {
        padding: var(--section-padding-y-mobile, 42px) 0;
        background-color: var(--white);
    }

    .who-container-layout {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .who-right-block {
        display: flex;
        flex-direction: column;
        gap: 14px;
        order: 1;
    }

    .who-tag {
        font-size: 0.78rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 4px;
        text-transform: none;
        letter-spacing: normal;
    }

    .who-heading {
        font-size: 1.75rem;
        font-weight: 900;
        line-height: 1.18;
        color: #0f172a;
        margin-bottom: 8px;
        letter-spacing: -0.5px;
    }

    .who-heading span.text-orange {
        color: #f97316;
    }

    .who-text-block p {
        font-size: 0.88rem;
        color: #4b5563;
        line-height: 1.45;
        margin-bottom: 0;
    }

    .who-text-block p:nth-child(n+2) {
        display: none;
    }

    .who-top-row {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .who-children-blend-wrapper {
        display: none;
    }

    .who-video-wrapper {
        order: 2;
        width: 100%;
        margin-top: 2px;
    }

    .who-video-card {
        height: 185px;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    }

    .dot-pattern-bottom-left {
        display: none;
    }

    .who-actions-strip {
        order: 3;
        display: flex;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        padding-top: 0;
    }

    .who-strip-divider {
        display: none;
    }

    .who-badges-strip {
        order: 1;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        padding: 4px 8px;
    }

    .who-badge-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
        flex: 1;
    }

    .badge-icon-circle {
        width: 42px;
        height: 42px;
        min-width: 42px;
        border-radius: 50%;
        font-size: 1.15rem;
    }

    .badge-text {
        font-size: 0.7rem;
        font-weight: 700;
        color: #1f2937;
        text-align: center;
        line-height: 1.25;
    }

    .btn-know-story {
        order: 2;
        width: 100%;
        background-color: var(--primary-color);
        color: var(--white);
        font-weight: 700;
        font-size: 0.95rem;
        padding: 13px 20px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-decoration: none;
        box-shadow: 0 4px 14px rgba(0, 74, 132, 0.25);
    }

    .btn-know-story .btn-circle-arrow {
        width: 26px;
        height: 26px;
        border: 2px solid var(--white);
        background: transparent;
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
    }

    /* 5. Areas of Impact (Mobile) */
    .impact-section {
        padding: var(--section-padding-y-mobile, 42px) 0;
        background-color: var(--white);
    }

    .impact-section-header {
        margin-bottom: 18px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .impact-section-header .section-tag {
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 1.5px;
        color: var(--secondary-color);
        margin-bottom: 6px;
        display: block;
    }

    .impact-section-header .section-title {
        font-size: 1.55rem;
        font-weight: 800;
        text-align: center;
        width: 100%;
        color: var(--black);
    }

    .impact-section-header .section-title span.orange {
        color: var(--secondary-color);
    }

    .impact-nav-arrows {
        display: none;
    }

    .impact-slider-wrapper {
        overflow: visible;
    }

    .impact-cards-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        overflow: visible;
        padding: 0;
    }

    .impact-card {
        padding: 22px 14px 18px;
        border-radius: 14px;
        background: var(--white);
        border: 1px solid var(--border-color);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-height: auto;
    }

    .impact-card:nth-child(5) {
        grid-column: span 2;
        max-width: 280px;
        margin: 0 auto;
        width: 100%;
    }

    .impact-icon-box {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        font-size: 1.45rem;
        margin-bottom: 12px;
    }

    .impact-title {
        font-size: 0.94rem;
        font-weight: 700;
        color: var(--black);
        line-height: 1.25;
        margin-bottom: 6px;
    }

    .impact-desc {
        font-size: 0.78rem;
        color: var(--muted-text);
        line-height: 1.45;
        margin-bottom: 14px;
        padding: 0 2px;
    }

    .impact-link {
        font-size: 0.8rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        margin-top: auto;
    }

    /* 6. Featured Initiatives (Mobile) */
    .initiatives-section {
        padding: var(--section-padding-y-mobile, 42px) 0;
        background-color: var(--white);
    }

    .initiatives-section .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 14px;
    }

    .initiatives-section .section-title {
        font-size: 1.45rem;
        font-weight: 800;
        color: #0f172a;
    }

    .initiatives-section .section-title span.orange {
        color: #f97316;
    }

    .initiatives-section .view-all-link {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--primary-color);
        display: inline-flex;
        align-items: center;
        gap: 3px;
    }

    .initiatives-grid {
        display: block;
    }

    .initiative-card {
        height: 255px;
        border-radius: 14px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        margin-bottom: 0;
    }

    .initiative-card:nth-child(n+2) {
        display: none;
    }

    .initiative-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .initiative-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg,
                rgba(0, 0, 0, 0.02) 0%,
                rgba(0, 0, 0, 0.35) 45%,
                rgba(0, 0, 0, 0.92) 85%);
        padding: 18px 16px;
        display: flex;
        align-items: flex-end;
    }

    .initiative-content-row {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .initiative-icon {
        width: 32px;
        height: 32px;
        min-width: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
        margin-top: 2px;
    }

    .initiative-icon.icon-green {
        background-color: #e6f0f8;
        color: var(--primary-color);
    }

    .initiative-title {
        font-size: 1.15rem;
        font-weight: 800;
        color: var(--white);
        line-height: 1.2;
        margin-bottom: 2px;
    }

    .initiative-desc {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.95);
        line-height: 1.35;
        margin-bottom: 6px;
    }

    .initiative-link {
        font-size: 0.76rem;
        font-weight: 700;
        color: var(--white);
        display: inline-flex;
        align-items: center;
        gap: 4px;
        text-decoration: none;
    }

    .carousel-dots-indicator {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 6px;
        margin-top: 14px;
    }

    .carousel-dots-indicator .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background-color: #cbd5e1;
        display: inline-block;
        transition: all 0.25s ease;
    }

    .carousel-dots-indicator .dot.active {
        background-color: var(--primary-color);
        width: 7px;
        border-radius: 50%;
    }

    /* 7. Moments of Change (Gallery Mobile) */
    .gallery-section {
        padding: var(--section-padding-y-mobile, 42px) 0;
        background-color: #f8fafc;
    }

    .gallery-section .section-header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 8px;
    }

    .gallery-section .section-title {
        font-size: 1.45rem;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 4px;
    }

    .gallery-section .section-title span.orange {
        color: #f97316;
    }

    .gallery-section p {
        font-size: 0.78rem;
        color: #64748b;
        line-height: 1.35;
        margin-bottom: 12px;
    }

    .gallery-section .view-all-link {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--primary-color);
        display: inline-flex;
        align-items: center;
        gap: 3px;
        white-space: nowrap;
        margin-top: 4px;
    }

    .gallery-carousel-viewport {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .gallery-carousel-viewport::-webkit-scrollbar {
        display: none;
    }

    .gallery-card {
        scroll-snap-align: start;
        flex: 0 0 calc((100% - 10px) / 2);
        height: 130px;
    }

    /* 8. Impact Stories (Mobile) */
    .stories-section {
        padding: var(--section-padding-y-mobile, 42px) 0;
        background-color: var(--white);
    }

    .stories-section .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 14px;
    }

    /* 8. Impact Stories Section (Mobile) */
    .stories-section {
        padding: var(--section-padding-y-mobile, 42px) 0;
    }

    .stories-header-center {
        margin-bottom: 18px;
    }

    .stories-main-title {
        font-size: 1.4rem;
        line-height: 1.25;
        margin-bottom: 6px;
    }

    .stories-subtitle {
        font-size: 0.8rem;
        line-height: 1.45;
    }

    .stories-bento-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 18px;
    }

    .story-card-featured {
        height: 310px;
        min-height: 310px;
        padding: 14px 16px 16px;
    }

    .story-featured-name {
        font-size: 1.15rem;
    }

    .story-featured-meta,
    .story-featured-location {
        font-size: 0.72rem;
    }

    .story-featured-quote {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .stories-top-two-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .story-supporting-card {
        height: 180px;
    }

    .story-card-top-media {
        height: 110px;
    }

    .story-split-horizontal-card {
        grid-template-columns: 1fr;
        height: auto;
        min-height: unset;
    }

    .story-split-media {
        height: 150px;
        min-height: 150px;
    }

    .stories-carousel-dots {
        margin-bottom: 18px;
    }

    .stories-cta-banner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 16px 14px;
        gap: 14px;
    }

    .stories-cta-left {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .stories-cta-icon-box {
        margin: 0 auto;
        width: 38px;
        height: 38px;
    }

    .stories-cta-heading {
        font-size: 0.98rem;
    }

    .stories-cta-desc {
        font-size: 0.76rem;
    }

    .btn-stories-view-all {
        width: 100%;
        justify-content: center;
        padding: 9px 14px;
        font-size: 0.8rem;
    }

    /* 9. Upcoming Events & Stay Connected (Mobile) */
    .events-newsletter-section {
        padding: var(--section-padding-y-mobile, 42px) 0;
        background-color: var(--white);
    }

    .events-newsletter-grid {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .events-col {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 28px;
    }

    .events-newsletter-section .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 14px;
    }

    .events-newsletter-section .section-title {
        font-size: 1.45rem;
        font-weight: 800;
        color: #0f172a;
    }

    .events-newsletter-section .section-title span.orange {
        color: #f97316;
    }

    .events-newsletter-section .view-all-link {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--primary-color);
        display: inline-flex;
        align-items: center;
        gap: 3px;
    }

    /* Upcoming Events */
    .events-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
        height: auto !important;
        min-height: unset !important;
    }

    .event-card {
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        padding: 12px 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        background: var(--white);
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    }

    .event-date-box {
        width: 44px;
        min-width: 44px;
        height: 50px;
        border: 1.5px solid var(--primary-color);
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: var(--white);
    }

    .event-date-number {
        font-size: 1.15rem;
        font-weight: 800;
        line-height: 1;
        color: #0f172a;
    }

    .event-date-month {
        font-size: 0.65rem;
        font-weight: 800;
        color: var(--primary-color);
    }

    .event-details {
        flex: 1;
        min-width: 0;
    }

    .event-title {
        font-size: 0.85rem;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 3px;
        line-height: 1.25;
    }

    .event-desc {
        display: none;
    }

    .event-location {
        font-size: 0.72rem;
        color: #64748b;
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .event-location i {
        color: #f97316;
    }

    .btn-event {
        padding: 7px 12px;
        font-size: 0.72rem;
        font-weight: 700;
        border-radius: 6px;
        background-color: var(--primary-color);
        color: var(--white);
        white-space: nowrap;
        text-decoration: none;
        border: none;
    }

    /* Stay Connected (Newsletter) */
    .newsletter-wrapper {
        height: auto;
        min-height: unset;
        border-left: none;
        padding-left: 0;
    }

    .newsletter-desc {
        font-size: 0.78rem;
        color: #64748b;
        line-height: 1.35;
        margin-bottom: 14px;
    }

    .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 16px;
    }

    .newsletter-input {
        width: 100%;
        padding: 11px 14px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        font-size: 0.85rem;
        background: var(--white);
        outline: none;
    }

    .btn-subscribe {
        width: 100%;
        padding: 12px;
        border-radius: 8px;
        font-size: 0.9rem;
        font-weight: 800;
        background-color: #f97316;
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border: none;
        box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
        cursor: pointer;
        text-transform: none;
        letter-spacing: normal;
    }

    .btn-subscribe-icon {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background-color: var(--white);
        color: #f97316;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.78rem;
    }

    .social-icons-row {
        display: flex;
        justify-content: center;
        gap: 14px;
        margin-top: 18px;
    }

    .social-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #0f172a;
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.05rem;
        text-decoration: none;
    }

    /* 10. Donor Testimonials Section (Mobile) */
    .donor-testimonials-section {
        padding: var(--section-padding-y-mobile, 42px) 0;
        background-color: var(--white);
    }

    .donor-header-center {
        margin-bottom: 20px;
    }

    .donor-section-tag {
        font-size: 0.78rem;
        letter-spacing: 1.5px;
        margin-bottom: 6px;
    }

    .donor-main-title {
        font-size: 1.55rem;
        font-weight: 800;
        color: var(--black);
        line-height: 1.25;
    }

    .donor-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 24px;
    }

    .donor-card {
        padding: 22px 18px;
        border-radius: 14px;
        gap: 16px;
        align-items: flex-start;
    }

    .donor-avatar {
        width: 60px;
        height: 60px;
        min-width: 60px;
    }

    .donor-quote-text {
        font-size: 0.88rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .donor-name {
        font-size: 0.94rem;
    }

    .donor-role {
        font-size: 0.78rem;
    }

    .donor-card-quote-deco {
        font-size: 3.8rem;
        bottom: 6px;
        right: 14px;
    }

    /* 11. Join the Movement (Mobile) */
    .join-movement-section {
        padding: 10px 0 36px;
        background-color: var(--white);
    }

    .join-movement-card {
        padding: 36px 20px 42px;
        border-radius: 20px;
        min-height: auto;
    }

    .join-deco-left,
    .join-deco-right {
        display: none;
    }

    .join-movement-title {
        font-size: 1.65rem;
        margin-bottom: 10px;
    }

    .join-movement-desc {
        font-size: 0.88rem;
        margin-bottom: 22px;
    }

    .join-movement-btns {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .btn-join-donate,
    .btn-join-volunteer {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.92rem;
    }

    /* 12. Our Partners (Mobile) */
    .partners-section {
        padding: 24px 0 42px;
        background-color: var(--white);
    }

    .partners-header-center {
        margin-bottom: 20px;
    }

    .partners-main-title {
        font-size: 1.55rem;
    }

    .partners-carousel-container {
        padding: 0;
        gap: 0;
    }

    .partner-arrow-btn {
        display: none;
    }

    .partners-slider-wrapper {
        padding: 6px 0;
    }

    .partner-cards-track {
        gap: 12px;
    }

    .partner-card-box {
        width: 160px;
        min-width: 160px;
        height: 80px;
        padding: 10px 14px;
        border-radius: 12px;
    }

    .partner-card-box .partner-img {
        max-height: 44px;
    }

    /* 13. CTA Banner Section (Mobile) */
    .cta-banner-section {
        padding: var(--section-padding-y-mobile, 42px) 0;
        background-color: #002340;
        margin: 0;
    }

    .cta-grid {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .cta-heading {
        font-size: 1.45rem;
        font-weight: 900;
        line-height: 1.25;
        color: var(--white);
        margin-bottom: 8px;
    }

    .cta-subtext {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .cta-cards-flex {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .cta-action-card {
        background: var(--white);
        border-radius: 10px;
        padding: 12px 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .cta-card-left {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .cta-card-icon {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #e6f0f8;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .cta-card-icon svg {
        width: 22px;
        height: 22px;
    }

    .cta-action-card:nth-child(3) .cta-card-icon {
        background: #ffedd5;
    }

    .cta-card-info {
        display: flex;
        flex-direction: column;
    }

    .cta-card-label {
        font-size: 0.72rem;
        color: #64748b;
        line-height: 1.2;
    }

    .cta-card-title {
        font-size: 0.88rem;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.2;
    }

    .cta-arrow {
        font-size: 1.05rem;
        color: var(--primary-color);
        margin-left: auto;
    }

    .partner-logo-card {
        flex: 0 0 170px;
        min-width: 170px;
        height: 84px;
        background: var(--white);
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 6px 10px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
        scroll-snap-align: start;
    }

    .partner-logo-card:nth-child(n+6) {
        display: flex;
    }

    .partner-logo-card img {
        max-height: 68px;
        max-width: 92%;
        width: 100%;
        height: 100%;
        object-fit: contain !important;
        display: block;
        margin: 0 auto;
    }

    /* 11. Latest News & Updates (Mobile) */
    .news-section {
        padding: var(--section-padding-y-mobile, 42px) 0;
        background-color: var(--white);
    }

    .news-section .section-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 14px;
    }

    .news-section .section-title {
        font-size: 1.45rem;
        font-weight: 800;
        color: #0f172a;
    }

    .news-section .section-title span.orange {
        color: #f97316;
    }

    .news-section .view-all-link {
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--primary-color);
        display: inline-flex;
        align-items: center;
        gap: 3px;
    }

    .news-cards-grid {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .news-card {
        background: var(--white);
        border: 1px solid #e2e8f0;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .news-card-img {
        height: 135px;
        width: 100%;
    }

    .news-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .news-card-body {
        padding: 12px 14px;
    }

    .news-date {
        font-size: 0.72rem;
        color: #64748b;
        margin-bottom: 4px;
    }

    .news-title {
        font-size: 0.88rem;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    .news-link {
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--primary-color);
        display: inline-flex;
        align-items: center;
        gap: 3px;
        text-decoration: none;
    }

    /* 12. Footer (Mobile) */
    .site-footer {
        padding: var(--section-padding-y-mobile, 42px) 0 24px;
        background-color: #002340;
    }

    .footer-top-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-bottom: 24px;
    }

    .footer-brand-logo {
        height: 38px;
        margin-bottom: 12px;
    }

    .footer-brand-desc {
        font-size: 0.8rem;
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.45;
        margin-bottom: 16px;
    }

    .site-footer .social-icons-row {
        justify-content: flex-start;
        gap: 12px;
        margin-bottom: 16px;
    }

    .site-footer .social-btn {
        background: rgba(255, 255, 255, 0.12);
        color: var(--white);
    }

    .footer-accordion-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding-bottom: 12px;
    }

    .footer-accordion-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        padding: 6px 0;
    }

    .footer-accordion-header .footer-title {
        font-size: 0.92rem;
        font-weight: 700;
        color: var(--white);
        margin-bottom: 0;
    }

    .footer-accordion-content {
        display: none;
        padding-top: 10px;
    }

    .footer-accordion-content.active {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .footer-links-list li a {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .contact-item {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.8);
    }

    .footer-bottom-bar {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        font-size: 0.72rem;
        color: rgba(255, 255, 255, 0.65);
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* -----------------------------------------------------
   EXTRA SMALL MOBILE (max-width: 380px)
   ----------------------------------------------------- */
@media (max-width: 380px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.62rem;
    }

    .impact-title {
        font-size: 0.7rem;
    }

    .impact-desc {
        font-size: 0.52rem;
    }
}

/* =====================================================
   BIG VIDEO MODAL LIGHTBOX
   ===================================================== */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 25, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    background: #0f172a;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(242, 101, 34, 0.15);
    overflow: hidden;
    z-index: 2;
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.25s ease;
}

.video-modal-close:hover {
    background: #F26522;
    transform: rotate(90deg) scale(1.08);
}

.video-modal-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
    background: #000000;
}

.video-modal-iframe-wrapper iframe,
.video-modal-iframe-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #090e1a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 12px;
}

.video-modal-title {
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 600;
}

.btn-modal-yt {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ff0000;
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
}

.btn-modal-yt:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 600px) {
    .video-modal-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* =====================================================
   FULL GALLERY LIGHTBOX MODAL
   ===================================================== */
.full-gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.full-gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.full-gallery-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 25, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.full-gallery-content {
    position: relative;
    width: 100%;
    max-width: 1100px;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    z-index: 2;
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}

.full-gallery-modal.active .full-gallery-content {
    transform: scale(1);
}

.full-gallery-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.gallery-badge-pill {
    display: inline-block;
    background: rgba(242, 101, 34, 0.12);
    color: var(--secondary-color);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 4px;
}

.full-gallery-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.full-gallery-count {
    font-size: 0.82rem;
    color: #64748b;
    margin-top: 2px;
    display: block;
}

.full-gallery-close {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e2e8f0;
    border: none;
    color: #334155;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.full-gallery-close:hover {
    background: var(--secondary-color);
    color: #ffffff;
    transform: rotate(90deg) scale(1.08);
}

.full-gallery-body {
    overflow-y: auto;
    padding: 24px 28px 32px;
    max-height: calc(90vh - 100px);
}

.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.modal-gallery-item {
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    background: #f1f5f9;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modal-gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.modal-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: transform 0.4s ease;
}

.modal-gallery-item:hover img {
    transform: scale(1.06);
}

.modal-gallery-item-wide {
    grid-column: span 2;
}

@media (max-width: 992px) {
    .gallery-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }

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

@media (max-width: 600px) {
    .gallery-card {
        flex: 0 0 calc((100% - 10px) / 2);
        height: 140px;
    }

    .gallery-nav-btn {
        display: none;
    }

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

    .modal-gallery-item-wide {
        grid-column: span 1;
    }
}