/**
 * CommunityHub - Society & People Templates
 * Unique Design System with Warm, Friendly Aesthetics
 */

/* ==================== CSS Variables ==================== */
:root {
    /* Warm Community Colors */
    --primary: #7c3aed;
    --primary-light: #a78bfa;
    --primary-dark: #5b21b6;
    --secondary: #10b981;
    --secondary-light: #34d399;
    --accent: #f59e0b;
    --accent-light: #fbbf24;

    /* Neutrals */
    --dark: #1f2937;
    --dark-light: #374151;
    --gray: #6b7280;
    --gray-light: #9ca3af;
    --light: #f3f4f6;
    --lighter: #f9fafb;
    --white: #ffffff;

    /* Gradients */
    --gradient-warm: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
    --gradient-hope: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    --gradient-sunset: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Plus Jakarta Sans', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-width: 1200px;

    /* Effects */
    --shadow-soft: 0 4px 20px rgba(124, 58, 237, 0.1);
    --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 60px rgba(124, 58, 237, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== Section Divider ==================== */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--white);
}

.section-divider__line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb);
}

.section-divider__line--right {
    background: linear-gradient(90deg, #e5e7eb, transparent);
}

.section-divider__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    border-radius: 50%;
    margin: 0 16px;
    color: white;
    font-size: 0.9rem;
}

/* ==================== Reset & Base ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f3f4f6;
}

::-webkit-scrollbar-thumb {
    background: #9ca3af;
    border-radius: 6px;
    border: 2px solid #f3f4f6;
}

::-webkit-scrollbar-thumb:hover {
    background: #6b7280;
}

/* Firefox */
* {
    scrollbar-width: auto;
    scrollbar-color: #9ca3af #f3f4f6;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul { list-style: none; }

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ==================== Utilities ==================== */
.text-gradient {
    background: var(--gradient-hope);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== Buttons ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn--primary {
    background: white;
    color: #1f2937;
    border: 2px solid transparent;
    border-radius: 12px;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #3b82f6, #10b981);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.btn--primary:hover {
    background-image: linear-gradient(#f8fafc, #f8fafc), linear-gradient(135deg, #3b82f6, #10b981);
}

/* Hero button - glass + gradient border */
.btn--hero {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    color: var(--white);
    border: none;
    position: relative;
}

.btn--hero::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.btn--hero:hover {
    background: rgba(255,255,255,0.2);
}

.btn--outline {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    color: var(--white);
    border: none;
    position: relative;
}

.btn--outline::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 2px;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.btn--outline:hover {
    background: rgba(255,255,255,0.2);
}

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

.btn--white:hover {
    background: var(--lighter);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn--outline-dark {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--dark);
}

.btn--ghost {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn--lg {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn--sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn--block {
    width: 100%;
}

/* ==================== Header ==================== */
.header {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    padding: 12px 24px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 8px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    padding-right: 16px;
    border-right: 1px solid rgba(255,255,255,0.2);
    margin-right: 8px;
    flex-shrink: 0;
}

.nav__logo i {
    color: var(--primary);
}

.nav__menu {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

/* Hide mobile badge on desktop */
.nav__badge {
    display: none;
}

.nav__link {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.3s;
}

.nav__link:hover,
.nav__link.active {
    background: rgba(255,255,255,0.15);
    color: white;
}

/* Dropdown Menu */
.nav__dropdown {
    position: relative;
    display: flex;
    align-items: center;
}

.nav__link--dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.95rem;
}

.nav__link--dropdown i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.nav__dropdown:hover .nav__link--dropdown i {
    transform: rotate(180deg);
}

.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 280px;
    background: rgba(35, 35, 35, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 0;
    padding-top: 22px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    list-style: none;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.nav__dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.nav__dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav__dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.nav__dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

/* ==================== Hero styles moved to line ~1417 ==================== */

/* Hero Right - Visual */
.hero__right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hope);
    padding: 60px;
}

.hero__visual {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.hero__card--main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero__card--main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
}

.hero__card-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--accent);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hero__card-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.hero__card-overlay p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Floating Cards */
.hero__floating {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

.hero__floating i {
    font-size: 1.5rem;
    color: var(--primary);
}

.hero__floating-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--dark);
}

.hero__floating-label {
    font-size: 0.8rem;
    color: var(--gray);
}

.hero__floating--stats {
    top: 80px;
    left: -40px;
    animation-delay: 0s;
}

.hero__floating--members {
    bottom: 60px;
    right: -40px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(0); }
}

/* ==================== Bottom Bar Stats ==================== */
.bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
    padding: 32px 0;
    z-index: 5;
}

.bottom-bar__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.bottom-bar__item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bottom-bar__number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.bottom-bar__label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.3;
}

.bottom-bar__divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

.bottom-bar--standalone {
    position: relative;
    background: var(--dark);
    padding: 60px 0;
}

/* ==================== Section Headers ==================== */
.section__header {
    margin-bottom: 60px;
}

.section__header--center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section__title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.section__subtitle {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ==================== Causes Masonry Grid ==================== */
.causes {
    padding: var(--section-padding);
    background: var(--white);
}

.causes__masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 16px;
}

.cause-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.cause-card--tall {
    grid-row: span 2;
}

.cause-card--wide {
    grid-column: span 2;
}

.cause-card__image {
    position: absolute;
    inset: 0;
}

.cause-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cause-card:hover .cause-card__image img {
}

.cause-card__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    color: var(--white);
    transition: var(--transition);
}

.cause-card:hover .cause-card__content {
    background: linear-gradient(to top, rgba(16, 185, 129, 0.9) 0%, rgba(16, 185, 129, 0.5) 50%, transparent 100%);
}

.cause-card__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: var(--radius-md);
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.cause-card__content h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.cause-card__content p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 12px;
}

.cause-card__count {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

/* ==================== Templates Showcase ==================== */
.templates-showcase {
    padding: var(--section-padding);
}

.templates-showcase .section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.templates__carousel {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
}

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

.template-card:hover {
}

.template-card--featured {
    grid-row: span 1;
}

.template-card__preview {
    position: relative;
    overflow: hidden;
}

.template-card__preview img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.template-card--featured .template-card__preview img {
    height: 300px;
}

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

.template-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.template-card__badge--new {
    background: var(--secondary);
}

.template-card__actions {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: var(--transition);
}

.template-card:hover .template-card__actions {
    opacity: 1;
}

.template-card__info {
    padding: 24px;
}

.template-card__category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.template-card__info h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.template-card__info p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.template-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.template-card__price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.template-card__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray);
    font-size: 0.9rem;
}

.template-card__rating i {
    color: var(--accent);
}

/* ==================== Features Bento Grid ==================== */
.features {
    padding: var(--section-padding);
    background: var(--white);
}

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

.bento-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    transition: var(--transition);
}

.bento-card:hover {
}

.bento-card--large {
    grid-column: span 2;
    grid-row: span 2;
    padding: 40px;
}

.bento-card--wide {
    grid-column: span 2;
}

.bento-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hope);
    border-radius: var(--radius-md);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.bento-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.bento-card p {
    color: var(--gray);
    line-height: 1.7;
}

.bento-card--large h3 {
    font-size: 1.6rem;
}

.bento-card__visual {
    margin-top: 30px;
}

/* Donation Widget */
.donation-widget {
    background: var(--lighter);
    border-radius: var(--radius-md);
    padding: 24px;
}

.donation-widget__progress {
    height: 12px;
    background: var(--light);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: 16px;
}

.donation-widget__bar {
    height: 100%;
    background: var(--gradient-hope);
    border-radius: var(--radius-full);
    transition: width 1s ease;
}

.donation-widget__stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.donation-widget__stats span:first-child {
    font-weight: 700;
    color: var(--secondary);
}

.donation-widget__stats span:last-child {
    color: var(--gray);
}

/* Devices */
.bento-card__devices {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    font-size: 2rem;
    color: var(--primary-light);
}

/* ==================== Success Stories ==================== */
.stories {
    padding: var(--section-padding);
}

.stories__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
}

.story-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.story-card:hover {
}

.story-card--highlight {
    background: var(--gradient-hope);
    color: var(--white);
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.story-card__quote {
    font-size: 2.5rem;
    opacity: 0.5;
    margin-bottom: 20px;
}

.story-card__content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
    flex-grow: 1;
}

.story-card--highlight .story-card__content {
    font-size: 1.25rem;
}

.story-card__result {
    margin-bottom: 30px;
}

.story-card__metric {
    display: block;
    font-size: 3rem;
    font-weight: 800;
}

.story-card__metric-label {
    font-size: 0.95rem;
    opacity: 0.8;
}

.story-card__author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.story-card__author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.story-card--highlight .story-card__author img {
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.story-card__author h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.story-card--highlight .story-card__author h4 {
    color: var(--white);
}

.story-card__author span {
    font-size: 0.85rem;
    color: var(--gray);
}

.story-card--highlight .story-card__author span {
    color: rgba(255, 255, 255, 0.7);
}

/* ==================== Pricing ==================== */
.pricing {
    padding: var(--section-padding);
    background: var(--white);
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.pricing-card:hover {
}

.pricing-card--popular {
    background: var(--gradient-hope);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card--popular:hover {
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-card__header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.pricing-card--popular .pricing-card__header h3 {
    color: var(--white);
}

.pricing-card__header p {
    color: var(--gray);
    font-size: 0.95rem;
}

.pricing-card--popular .pricing-card__header p {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card__price {
    padding: 30px 0;
    border-bottom: 1px solid var(--light);
    margin-bottom: 30px;
}

.pricing-card--popular .pricing-card__price {
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card__amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
}

.pricing-card--popular .pricing-card__amount {
    color: var(--white);
}

.pricing-card__period {
    display: block;
    font-size: 0.95rem;
    color: var(--gray);
    margin-top: 8px;
}

.pricing-card--popular .pricing-card__period {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card__features {
    text-align: left;
    margin-bottom: 30px;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--light);
}

.pricing-card--popular .pricing-card__features li {
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

.pricing-card__features i {
    color: var(--secondary);
    font-size: 1rem;
}

.pricing-card--popular .pricing-card__features i {
    color: var(--accent);
}

/* ==================== CTA Section ==================== */
.cta {
    padding: 80px 0;
    background: var(--gradient-hope);
}

.cta__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta__text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.cta__text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
}

.cta__actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ==================== Footer ==================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer__brand .nav__logo {
    color: var(--white);
    margin-bottom: 20px;
}

.footer__brand p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    transition: var(--transition);
}

.footer__social a:hover {
    background: var(--primary);
}

.footer__links h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer__links ul li {
    margin-bottom: 14px;
}

.footer__links a {
    color: var(--gray-light);
}

.footer__links a:hover {
    color: var(--white);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

.footer__legal {
    display: flex;
    gap: 30px;
}

.footer__legal a {
    color: var(--gray-light);
    font-size: 0.95rem;
}

.footer__legal a:hover {
    color: var(--white);
}

/* ==================== New Hero with Background ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #1f2937;
}

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

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero__description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.hero__trust {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.hero__trust-item i {
    color: var(--accent);
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.hero__scroll a {
    display: block;
}

/* Mouse scroll indicator */
.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 13px;
    position: relative;
}

.mouse__ball {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    animation: scroll-ball 2s infinite;
}

@keyframes scroll-ball {
    0%, 100% {
        opacity: 1;
        top: 8px;
    }
    50% {
        opacity: 0.3;
        top: 20px;
    }
}

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

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__images {
    position: relative;
}

.about__image--main {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about__image--main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about__image--secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 5px solid var(--white);
}

.about__image--secondary img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.about__badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--gradient-hope);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
}

.about__badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}

.about__badge-text {
    font-size: 0.85rem;
    opacity: 0.9;
}

.about__text {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about__features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.about__feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--lighter);
    border-radius: var(--radius-md);
}

.about__feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hope);
    color: var(--white);
    font-size: 1.25rem;
    border-radius: var(--radius-sm);
}

.about__feature h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.about__feature p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* ==================== Programs Section ==================== */
.programs {
    padding: var(--section-padding);
    background: var(--white);
}

.programs__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.programs__side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.program-card:hover {
}

.program-card--featured {
    display: flex;
    flex-direction: column;
}

.program-card--small {
    background: var(--white);
    border: 1px solid var(--light);
}

.program-card--small .program-card__content {
    padding: 20px;
}

.program-card--small .program-card__icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    margin-bottom: 12px;
}

.program-card--small h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.program-card--small p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 12px;
}

.program-card__image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.program-card--featured .program-card__image {
    height: 280px;
}

.program-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-card__image img {
}

.program-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.program-card__content {
    padding: 24px;
}

.program-card--featured .program-card__content {
    padding: 20px;
}

.program-card__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hope);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.program-card__content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.program-card--featured .program-card__content h3 {
    font-size: 1.5rem;
}

.program-card__content p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.program-card__stats {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--light);
    border-bottom: 1px solid var(--light);
    margin-bottom: 16px;
}

.program-card__stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.program-card__stat-label {
    font-size: 0.8rem;
    color: var(--gray);
}

.program-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

.program-card__link:hover {
}

/* ==================== Get Involved Section (Combined) ==================== */
.get-involved {
    padding: var(--section-padding);
    background: var(--white);
}

.get-involved__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.get-involved__donate {
}

.donate-box {
    background: linear-gradient(135deg, #f0fdf4 0%, #eff6ff 100%);
    border-radius: 24px;
    padding: 36px;
    text-align: center;
    border: 2px solid rgba(16, 185, 129, 0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.donate-box__header {
    margin-bottom: 20px;
}

.donate-box__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hope);
    border-radius: 14px;
    font-size: 1.4rem;
    color: white;
}

.donate-box__header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.donate-box__header p {
    color: var(--gray);
    font-size: 0.95rem;
}

.donate-box__amount {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    line-height: 1;
}

.donate-box__impact {
    color: var(--gray);
    font-size: 1rem;
    margin-bottom: 20px;
    min-height: 24px;
}

.donate-box__range {
    width: 100%;
    height: 8px;
    border-radius: 10px;
    background: #e5e7eb;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-bottom: 10px;
    cursor: pointer;
    outline: none;
}

.donate-box__range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    margin-top: -9px;
}

.donate-box__range::-webkit-slider-thumb:hover {
}

.donate-box__range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.donate-box__labels {
    display: flex;
    justify-content: space-between;
    color: #9ca3af;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.donate-box__custom {
    margin-bottom: 20px;
}

.donate-box__custom input {
    width: 100%;
    padding: 12px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-family: var(--font-primary);
    font-size: 1rem;
    text-align: center;
    background: white;
    transition: all 0.3s;
}

.donate-box__custom input:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.donate-box__custom input::placeholder {
    color: #9ca3af;
}

.donate-box__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 28px;
    background: white;
    color: #1f2937;
    border: 2px solid transparent;
    border-radius: 50px;
    background-image: linear-gradient(white, white), linear-gradient(135deg, #3b82f6, #10b981);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    font-family: var(--font-primary);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.donate-box__btn:hover {
    background-image: linear-gradient(#f8fafc, #f8fafc), linear-gradient(135deg, #3b82f6, #10b981);
}

.donate-box__trust {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.donate-box__trust span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--gray);
}

.donate-box__trust i {
    color: #10b981;
}

/* Involve Cards (Ways to Help) */
.get-involved__ways {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.involve-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    flex: 1;
}

.involve-card__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 12px;
    font-size: 1.2rem;
    color: #10b981;
}

.involve-card__content {
    flex: 1;
}

.involve-card__content h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.involve-card__content p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.4;
}

.involve-card__link {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    color: var(--gray);
    font-size: 0.85rem;
}

.section__badge--light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

/* ==================== Stories Section (Updated) ==================== */
.stories {
    padding: var(--section-padding);
    background: var(--white);
}

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

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

.story-card:hover {
}

.story-card__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.story-card__quote {
    color: var(--primary-light);
    font-size: 2.5rem;
    margin-bottom: 16px;
    opacity: 0.5;
}

.story-card__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark);
    flex: 1;
    margin-bottom: 24px;
    font-style: italic;
}

.story-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 20px;
    border-top: 1px solid var(--light);
}

.story-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-hope);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.story-card__author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.story-card__author-info span {
    font-size: 0.85rem;
    color: var(--gray);
}

.story-card__tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 16px;
    align-self: flex-start;
}

.stories__cta {
    text-align: center;
    margin-top: 24px;
}

/* ==================== Events Section ==================== */
.events {
    padding: var(--section-padding);
    background: var(--white);
}

.events .section__header {
    text-align: center;
    margin-bottom: 24px;
}

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

.events__cta {
    text-align: center;
    margin-top: 24px;
}

.event-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    text-align: center;
}

.event-card:hover {
}

.event-card__date {
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hope);
    border-radius: var(--radius-md);
    color: var(--white);
    margin: 0 auto 20px;
}

.event-card__day {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.event-card__month {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
}

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

.event-card__type {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.event-card__content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.event-card__content p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.event-card__meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--gray);
}

.event-card__meta span {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.event-card__meta i {
    color: #10b981;
}

/* ==================== Partners Section ==================== */
.partners {
    padding: 60px 0;
    background: var(--white);
}

.partners__grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.partner-logo {
    font-size: 3rem;
    color: var(--gray-light);
    opacity: 0.6;
}

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

.how-it-works__cta {
    text-align: center;
    margin-top: 40px;
}

/* ==================== Events Page - Beautiful Timeline ==================== */
.events-timeline {
    padding: 80px 24px 100px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    position: relative;
}

.events-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-light), var(--secondary-light), var(--primary-light));
    transform: translateX(-50%);
    border-radius: 3px;
}

.events-month {
    margin-bottom: 60px;
    position: relative;
}

.events-month:last-child {
    margin-bottom: 0;
}

.events-month__header {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.events-month__label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-hope);
    padding: 14px 32px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.events-month__name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
}

.events-month__year {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.events-month__line {
    display: none;
}

.events-month__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
}

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

.event-item:nth-child(even) {
    flex-direction: row-reverse;
}

.event-item__date {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.event-item:nth-child(odd) .event-item__date {
    align-items: flex-end;
    padding-right: 50px;
}

.event-item:nth-child(even) .event-item__date {
    align-items: flex-start;
    padding-left: 50px;
}

.event-item__day {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-hope);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-item__weekday {
    display: block;
    font-size: 1rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 6px;
}

/* Timeline dot in center */
.event-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 4px solid var(--primary);
    border-radius: 50%;
    z-index: 3;
    box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.15);
}

.event-item__card {
    flex: 1;
    background: var(--white);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.08);
}

/* Arrow pointing to timeline */
.event-item:nth-child(odd) .event-item__card::before {
    content: '';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    border: 12px solid transparent;
    border-left-color: var(--white);
}

.event-item:nth-child(even) .event-item__card::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    border: 12px solid transparent;
    border-right-color: var(--white);
}

.event-item__badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.event-item__badge--fundraiser {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #b45309;
}

.event-item__badge--community {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #047857;
}

.event-item__badge--virtual {
    background: linear-gradient(135deg, #ede9fe, #ddd6fe);
    color: #6d28d9;
}

.event-item__badge--workshop {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1d4ed8;
}

.event-item__card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.event-item__card p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.event-item__details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
    padding: 16px 0;
    border-top: 1px solid var(--light);
    border-bottom: 1px solid var(--light);
}

.event-item__details span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--dark-light);
    font-weight: 500;
}

.event-item__details i {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    color: var(--secondary);
    border-radius: 8px;
    font-size: 0.85rem;
}

.event-item__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gradient-hope);
    color: var(--white);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.event-item__btn i {
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .events-timeline::before {
        left: 30px;
    }

    .event-item,
    .event-item:nth-child(odd),
    .event-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 70px;
    }

    .event-item::before {
        left: 30px;
        top: 30px;
        transform: translate(-50%, 0);
    }

    .event-item__date,
    .event-item:nth-child(odd) .event-item__date,
    .event-item:nth-child(even) .event-item__date {
        align-items: flex-start;
        padding: 0 0 16px 0;
    }

    .event-item__day {
        font-size: 2.5rem;
    }

    .event-item__card {
        width: 100%;
    }

    .event-item:nth-child(odd) .event-item__card::before,
    .event-item:nth-child(even) .event-item__card::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .events-timeline {
        padding: 60px 16px 80px;
    }

    .events-timeline::before {
        left: 20px;
    }

    .event-item,
    .event-item:nth-child(odd),
    .event-item:nth-child(even) {
        padding-left: 50px;
    }

    .event-item::before {
        left: 20px;
        width: 16px;
        height: 16px;
    }

    .events-month__label {
        padding: 12px 24px;
    }

    .events-month__name {
        font-size: 1.2rem;
    }

    .event-item__card {
        padding: 24px;
    }

    .event-item__card h3 {
        font-size: 1.25rem;
    }

    .event-item__details {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==================== About Page ==================== */
.about-mission {
    padding: 100px 24px;
    background: var(--white);
}

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

.about-mission__content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-mission__values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.about-mission__value {
    text-align: center;
    padding: 24px 16px;
    background: var(--light);
    border-radius: 12px;
}

.about-mission__value i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.about-mission__value h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.about-mission__value p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.about-mission__image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Timeline */
.about-history {
    padding: 100px 24px;
    background: var(--light);
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 3px;
}

.timeline__item {
    position: relative;
    padding-bottom: 40px;
}

.timeline__item:last-child {
    padding-bottom: 0;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: -46px;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary);
}

.timeline__year {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.timeline__content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.timeline__content p {
    color: var(--gray);
    line-height: 1.7;
}

/* Team Section */
.about-team {
    padding: 100px 24px;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.team-card__image {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.team-card__content h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.team-card__content span {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.team-card__content p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 8px;
}

/* About Stats */
.about-stats {
    padding: 80px 24px;
    background: var(--dark);
}

.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.about-stats__number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-stats__label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

@media (max-width: 992px) {
    .about-mission__grid {
        grid-template-columns: 1fr;
    }

    .about-mission__values {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

@media (max-width: 576px) {
    .about-mission__values {
        grid-template-columns: 1fr;
    }

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

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

    .about-stats__number {
        font-size: 2.5rem;
    }
}

/* ==================== Legal Pages ==================== */
.page-hero--small {
    min-height: 40vh;
    padding: 140px 24px 60px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.page-hero--small .page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero--small .page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero--small .page-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.page-hero--small .container {
    position: relative;
    z-index: 1;
}

.page-hero--small .page-hero__content {
    text-align: center;
}

.page-hero--small .page-hero__title {
    color: var(--white);
    font-size: 2.5rem;
}

.page-hero--small .page-hero__subtitle {
    color: var(--gray-light);
}

.legal-content {
    padding: 60px 24px 80px;
    background: var(--white);
}

.legal-content__wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 40px 0 16px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content li {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 8px;
}

/* Financial Reports Page */
.reports-intro {
    padding: 24px;
    background: var(--lighter);
    border-radius: var(--radius-md);
    margin-bottom: 40px;
}

.reports-intro p {
    margin: 0;
    font-size: 1.1rem;
}

.allocation-grid {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin: 32px 0 48px;
}

.allocation-item {
    text-align: center;
    padding: 24px 32px;
    background: var(--lighter);
    border-radius: var(--radius-md);
}

.allocation-item__percent {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.allocation-item__label {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 8px;
}

.reports-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0 48px;
}

.report-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--lighter);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
}

.report-card:hover {
    background: var(--light);
}

.report-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 12px;
    color: var(--primary);
    font-size: 1.2rem;
}

.report-card__content {
    flex: 1;
}

.report-card__content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.report-card__content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

.report-card__download {
    color: var(--primary);
    font-size: 1.1rem;
}

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

.rating-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--lighter);
    border-radius: var(--radius-md);
}

.rating-card__stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.rating-card__badge {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.rating-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.rating-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

@media (max-width: 768px) {
    .ratings-grid {
        grid-template-columns: 1fr;
    }

    .allocation-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* ==================== Newsletter Section ==================== */
.newsletter {
    padding: 80px 0;
    background: var(--dark);
}

.newsletter__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.newsletter__text h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 8px;
}

.newsletter__text p {
    color: var(--gray-light);
    font-size: 1.05rem;
}

.newsletter__form {
    flex-shrink: 0;
}

.newsletter__input-group {
    display: flex;
    gap: 12px;
}

.newsletter__input-group input {
    padding: 16px 24px;
    border: none;
    border-radius: var(--radius-full);
    font-size: 1rem;
    width: 300px;
    outline: none;
}

.newsletter__privacy {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--gray-light);
}

.newsletter__privacy i {
    color: var(--secondary);
    margin-right: 6px;
}

/* ==================== Footer Contact ==================== */
.footer__contact ul {
    list-style: none;
}

.footer__contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--gray-light);
}

.footer__contact ul li i {
    color: var(--primary-light);
    margin-top: 4px;
}

.footer__certifications {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__certifications span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gray-light);
}

.footer__certifications i {
    color: var(--accent);
}

/* Footer Newsletter */
.footer__newsletter {
    margin-top: 16px;
}

.footer__newsletter h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.footer__newsletter-input {
    display: flex;
    gap: 0;
    border-radius: var(--radius-full);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
}

.footer__newsletter-input input {
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
}

.footer__newsletter-input input::placeholder {
    color: var(--gray-light);
}

.footer__newsletter-input button {
    padding: 10px 16px;
    border: none;
    background: var(--primary);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.footer__newsletter-input button:hover {
    background: var(--primary-dark);
}

/* ==================== CTA Block ==================== */
.cta-section {
    padding: 80px 24px;
    background: var(--lighter);
}

.cta-block {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.cta-block__content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.cta-block__content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 24px;
}

.cta-block__benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.cta-block__benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 500;
}

.cta-block__benefits span i {
    color: var(--secondary);
}

/* ==================== Animations ==================== */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ==================== Responsive ==================== */
@media (max-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about__images {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .program-card--featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .donate__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .story-card--highlight {
        grid-column: span 2;
        grid-row: span 1;
    }

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

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

    .newsletter__content {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .header {
        width: calc(100% - 32px);
        left: 16px;
        right: 16px;
        transform: none;
    }

    .nav__menu {
        position: absolute;
        top: calc(100% + 12px);
        right: -16px;
        left: auto;
        width: calc(100vw - 32px);
        max-height: 0;
        overflow: hidden;
        background: rgba(35, 35, 35, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 0;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        border-radius: 16px;
        transition: max-height 0.35s ease, padding 0.35s ease, opacity 0.35s ease;
        opacity: 0;
        z-index: 1000;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav__menu.active {
        max-height: 80vh;
        padding: 20px 24px;
        overflow-y: auto;
        opacity: 1;
    }

    .nav__list {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    .nav__list > li {
        width: 100%;
    }

    .nav__link {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1rem;
        padding: 14px 16px;
        border-radius: 10px;
        display: block;
        width: 100%;
    }

    .nav__link:hover,
    .nav__link.active {
        color: white;
        background: rgba(255, 255, 255, 0.1);
    }

    /* Mobile Badge in Header (after logo) */
    .nav__badge {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 6px 12px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.7rem;
        font-weight: 600;
        border: 1px solid rgba(255, 255, 255, 0.15);
        flex: 1;
        justify-content: center;
        margin: 0 8px;
    }

    .nav__badge i {
        color: var(--accent);
        font-size: 0.65rem;
    }

    /* Hide hero badge on mobile */
    .hero__badge {
        display: none;
    }

    /* Mobile Dropdown */
    .nav__dropdown {
        flex-direction: column;
        align-items: stretch;
    }

    .nav__dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 10px;
        border: none;
        margin-top: 4px;
        margin-left: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }

    .nav__dropdown.active .nav__dropdown-menu {
        max-height: 500px;
        padding: 8px;
    }

    .nav__dropdown-menu li a {
        padding: 12px 16px;
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.7);
        border-radius: 8px;
    }

    .nav__dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .nav__dropdown-divider {
        background: rgba(255, 255, 255, 0.1);
        margin: 6px 8px;
    }

    .nav__link--dropdown i {
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .nav__dropdown.active .nav__link--dropdown i {
        transform: rotate(180deg);
    }

    .nav__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
    }

    .nav__toggle:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .nav__actions .btn {
        display: none;
    }

    .hero__content {
        padding-top: 80px;
    }

    .hero__title {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .hero__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
    }

    .hero__buttons .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .hero__trust {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        margin-bottom: 20px;
    }

    .hero__trust-item {
        font-size: 0.75rem;
        gap: 4px;
    }

    .hero__trust-item i {
        font-size: 0.7rem;
    }

    /* Bottom Bar responsive */
    .bottom-bar {
        padding: 24px 0;
    }

    .bottom-bar__grid {
        flex-wrap: wrap;
        gap: 24px 40px;
        justify-content: center;
    }

    .bottom-bar__item {
        flex: 0 0 auto;
        justify-content: center;
    }

    .bottom-bar__divider {
        display: none;
    }

    .bottom-bar__number {
        font-size: 2rem;
    }

    .bottom-bar__label {
        font-size: 0.8rem;
    }

    .section__title {
        font-size: 2rem;
    }

    /* About section - center button */
    .about__content {
        text-align: center;
    }

    .about__features {
        text-align: left;
    }

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

    .program-card--featured {
        grid-column: span 1;
    }

    .get-involved__grid {
        grid-template-columns: 1fr;
    }

    .get-involved__donate {
        position: static;
    }

    .involve-card:hover {
        /* no transform */
    }

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

    .story-card--highlight {
        grid-column: span 1;
    }

    .events .section__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

    .event-card {
        padding: 24px;
    }

    .event-card__date {
        width: 70px;
        height: 70px;
    }

    .newsletter__input-group {
        flex-direction: column;
    }

    .newsletter__input-group input {
        width: 100%;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer__brand {
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__links {
        text-align: center;
    }

    .footer__contact {
        text-align: center;
    }

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

    .footer__newsletter {
        text-align: center;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

/* ==================== Author Badge ==================== */
.author-badge {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 0.8rem;
}

.author-badge:hover {
    text-decoration: none;
}

.author-badge__label {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--gray-light);
    border-radius: 4px 0 0 4px;
}

.author-badge__name {
    padding: 6px 12px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: 0 4px 4px 0;
}

/* ==================== Inner Pages ==================== */

/* Solid Header for inner pages */
.header--solid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 24px;
    z-index: 1000;
    border-radius: 0;
    transform: none;
}

.header--solid .nav {
    max-width: 1200px;
    margin: 0 auto;
}

/* Page Hero */
.page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 24px 120px;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.page-hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.page-hero__subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.page-hero--short {
    min-height: 50vh;
    padding: 140px 24px 80px;
}

/* Pages Section */
.pages-section {
    padding: 80px 24px;
    background: #f8fafc;
}

.pages-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-card);
}

.page-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 12px;
    font-size: 1.4rem;
    color: var(--primary);
}

.page-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.page-card p {
    font-size: 0.85rem;
    color: var(--gray);
}

@media (max-width: 992px) {
    .pages-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .pages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 24px;
    background: var(--white);
}

/* Contact Info Row - Compact horizontal layout */
.contact-info-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 48px;
    padding: 32px;
    background: #f8fafc;
    border-radius: 16px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info-item__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    color: var(--white);
    font-size: 1.1rem;
}

.contact-info-item__content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-info-item__content p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
}

/* Contact Form Centered */
.contact-form-centered {
    max-width: 100%;
    margin: 0 auto;
}

/* Partner Contact Wrapper */
.partner-contact-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.partner-contact-bar {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 24px;
}

.partner-contact-bar__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 10px;
    font-size: 1.1rem;
    color: var(--primary);
}

.partner-contact-bar__content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--gray);
}

.partner-contact-bar__content strong {
    color: var(--dark);
}

.partner-contact-bar__content a {
    color: var(--primary);
    text-decoration: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    color: var(--dark);
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-info__items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info__icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hope);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1.1rem;
}

.contact-info__item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.contact-info__item p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

.contact-info--grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-info--single {
    display: flex;
    align-items: flex-start;
}

.contact-info--single .contact-card {
    width: auto;
}

.contact-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.contact-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 12px;
    font-size: 1.4rem;
    color: var(--primary);
}

.contact-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--gray);
    line-height: 1.6;
}

.contact-card__social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.contact-card__social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    color: var(--gray);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
}

.contact-form-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 40px;
}

.contact-form-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-form-card > p {
    color: var(--gray);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn--full {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
}

/* Map Section */
.map-section {
    padding: 0 24px 80px;
    background: var(--white);
}

.map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
    display: block;
}

/* Inner Pages Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .page-hero {
        min-height: 35vh;
        padding: 100px 20px 40px;
    }

    .page-hero__title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }

    .page-hero__subtitle {
        font-size: 0.95rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 24px;
    }
}

/* ==================== Program Detail Pages ==================== */
.program-detail {
    padding: 80px 24px;
    background: var(--white);
}

.program-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.program-detail__content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
}

.program-detail__content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 16px;
}

.program-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.program-stat {
    text-align: center;
    padding: 24px 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-card);
}

.program-stat__number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-hope);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}

.program-stat__label {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.3;
}

.program-detail__image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.program-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Program Features */
.program-features {
    padding: 80px 24px;
    background: #f8fafc;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-card);
}

.feature-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 16px;
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Program CTA */
.program-cta {
    padding: 80px 24px;
    background: var(--white);
    text-align: center;
}

.program-cta__content {
    max-width: 600px;
    margin: 0 auto;
}

.program-cta__content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.program-cta__content p {
    color: var(--gray);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.program-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Program Pages Responsive */
@media (max-width: 992px) {
    .program-detail__grid {
        grid-template-columns: 1fr;
    }

    .program-detail__image {
        order: -1;
    }

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

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

@media (max-width: 768px) {
    .program-detail__content h2 {
        font-size: 1.75rem;
        text-align: center;
    }

    .program-detail__content p {
        text-align: center;
    }

    .program-detail__content .btn {
        display: block;
        text-align: center;
    }

    .program-stats {
        grid-template-columns: 1fr 1fr;
    }

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

    .program-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ==================== Donate Page ==================== */
.donate-section {
    padding: 80px 24px;
    background: var(--white);
}

.donate-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.ways-to-give h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--dark);
}

.ways-to-give__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.donate-form-card {
    background: #f8fafc;
    border-radius: 24px;
    padding: 40px;
}

.donate-form-card h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.donate-form-card > p {
    color: var(--gray);
    margin-bottom: 24px;
}

.donate-type-toggle {
    display: flex;
    background: #e5e7eb;
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 24px;
}

.donate-type {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.donate-type.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.donate-amounts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

.donate-amount {
    padding: 16px;
    border: 2px solid #e5e7eb;
    background: var(--white);
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

.donate-amount.active {
    border-color: var(--primary);
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
}

.donate-impact {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 12px;
    margin-bottom: 24px;
    color: var(--primary);
    font-weight: 500;
}

.donate-secure {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--gray);
}

.donate-secure span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.donate-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.donate-info-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
}

.donate-info-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.impact-list {
    list-style: none;
}

.impact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    color: var(--gray);
}

.impact-list li:last-child {
    border-bottom: none;
}

.impact-amount {
    font-weight: 700;
    color: var(--primary);
    min-width: 50px;
}

.trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--white);
    border-radius: 10px;
    font-size: 0.9rem;
    color: var(--dark);
}

.trust-badge i {
    color: var(--primary);
}

.other-ways {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.other-way {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--white);
    border-radius: 10px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s;
}

.other-way:hover {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary);
}

.other-way i {
    color: var(--primary);
}

/* ==================== Volunteer Page ==================== */
.volunteer-section {
    padding: 80px 24px;
    background: var(--white);
}

.volunteer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.volunteer-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-card);
}

.volunteer-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 16px;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.volunteer-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.volunteer-card > p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.volunteer-card__meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.volunteer-card__meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gray);
}

.volunteer-card__meta i {
    color: var(--primary);
}

.volunteer-card__details {
    list-style: none;
    margin-bottom: 24px;
}

.volunteer-card__details li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.volunteer-card__details i {
    color: var(--primary);
    width: 16px;
}

.volunteer-form-section {
    padding: 80px 24px;
    background: var(--white);
}

.volunteer-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.volunteer-form-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 16px;
}

.volunteer-form-info > p {
    color: var(--gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.volunteer-benefits {
    background: var(--lighter);
    border-radius: 16px;
    padding: 24px;
}

.volunteer-benefits h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.volunteer-benefits ul {
    list-style: none;
}

.volunteer-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray);
}

.volunteer-benefits i {
    color: var(--primary);
}

.volunteer-form-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e5e7eb;
    box-shadow: var(--shadow-card);
}

.volunteer-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

/* ==================== Fundraise Page ==================== */
.fundraise-section {
    padding: 80px 24px;
    background: var(--white);
}

.fundraise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.fundraise-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
}

.fundraise-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 20px;
    font-size: 1.75rem;
    color: var(--primary);
}

.fundraise-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.fundraise-card p {
    color: var(--gray);
    line-height: 1.6;
}

.how-it-works {
    padding: 80px 24px;
    background: #f8fafc;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card {
    text-align: center;
    padding: 32px 24px;
}

.step-card__number {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.fundraise-cta {
    text-align: center;
    margin-top: 48px;
}

.fundraise-form-section {
    padding: 80px 24px;
    background: var(--white);
}

/* ==================== Partner Page ==================== */
.partner-section {
    padding: 80px 24px;
    background: var(--white);
}

.partners-logos {
    padding: 80px 24px;
    background: #f8fafc;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: var(--white);
    border-radius: 12px;
    color: var(--gray);
    font-weight: 500;
}

/* ==================== Additional Responsive ==================== */
@media (max-width: 992px) {
    .donate-grid {
        grid-template-columns: 1fr;
    }

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

    .volunteer-form-grid {
        grid-template-columns: 1fr;
    }

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

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

    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .donate-amounts {
        grid-template-columns: repeat(2, 1fr);
    }

    .donate-form-card {
        padding: 24px;
        text-align: center;
    }

    .donate-form-card h2 {
        font-size: 1.5rem;
    }

    .trust-badges {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

    /* Volunteer page */
    .volunteer-content {
        text-align: center;
    }

    .volunteer-content h2 {
        font-size: 1.75rem;
    }

    /* Events page */
    .events-grid {
        grid-template-columns: 1fr;
    }

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

    /* Partner page */
    .partner-content {
        text-align: center;
    }

    /* Reports page */
    .reports-grid {
        grid-template-columns: 1fr;
    }

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

    /* Privacy/Terms pages */
    .legal-content {
        padding: 40px 20px;
    }

    .legal-content h1 {
        font-size: 1.75rem;
        text-align: center;
    }

    .legal-content h2 {
        font-size: 1.25rem;
    }
}

/* ==================== Donate Page New Sections ==================== */
.hero--short {
    min-height: 70vh;
}

.impact-section {
    padding: 80px 24px;
    background: #f8fafc;
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.impact-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-card);
}

.impact-card__amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.impact-card p {
    color: var(--gray);
    line-height: 1.6;
}

.trust-section {
    padding: 32px 0;
    background: var(--white);
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    overflow: hidden;
}

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.trust-item__badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
}

.trust-item__badge--gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.trust-item__badge--blue {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.trust-item__badge--green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.trust-item__badge--purple {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

.trust-item__text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .trust-grid {
        gap: 32px;
        flex-wrap: wrap;
    }

    .trust-item__badge {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }
}

@media (max-width: 992px) {
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
