/**
 * KAWA — Kurdish Association of Washington
 * Main Stylesheet
 */

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

:root {
    --primary: #1a5c2e;
    --primary-dark: #14472a;
    --primary-light: #e8f5e9;
    --accent: #c8102e;
    --accent-dark: #a00d24;
    --highlight: #f5c518;
    --highlight-dark: #d4a812;
    --body-bg: #ffffff;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border: #e0e0e0;
    --footer-bg: #1a1a2e;
    --section-bg: #f8f9fa;
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 2px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 4px 24px rgba(0,0,0,0.12);
    --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: var(--body-bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

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

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

/* ─── Top Bar ─── */
.top-bar {
    background: var(--footer-bg);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left { display: flex; gap: 20px; align-items: center; }

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-item svg { opacity: 0.7; }

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}

.social-icon:hover { color: var(--highlight); }

.lang-switch {
    color: var(--highlight);
    font-weight: 600;
    padding: 4px 12px;
    border: 1px solid var(--highlight);
    border-radius: 4px;
    font-size: 12px;
    transition: all var(--transition);
}

.lang-switch:hover {
    background: var(--highlight);
    color: var(--footer-bg);
}

/* ─── Header ─── */
.site-header {
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    object-fit: cover;
}

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

.logo-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.2;
}

/* Nav */
.nav-list {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-item a {
    display: block;
    padding: 8px 14px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all var(--transition);
}

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

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Flash Messages ─── */
.flash-message {
    padding: 14px 0;
    font-size: 14px;
    transition: all var(--transition);
}

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

.flash-success { background: var(--primary-light); color: #2e7d32; }
.flash-error { background: #fce4ec; color: #c62828; }

.flash-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    opacity: 0.6;
}

/* ─── Buttons ─── */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

.btn-lg { padding: 14px 32px; font-size: 16px; }
.btn-sm { padding: 6px 14px; font-size: 13px; }
.btn-full { width: 100%; }

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }

.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }

.btn-highlight { background: var(--highlight); color: #333; }
.btn-highlight:hover { background: var(--highlight-dark); color: #333; }

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--primary); }

/* ─── Hero ─── */
.hero {
    background: linear-gradient(135deg, var(--primary) 0%, #0d3d1a 100%);
    color: #fff;
    padding: 100px 0 90px;
    text-align: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Sections ─── */
.section { padding: 80px 0; }

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

.section-header h2 {
    font-size: 2rem;
    color: var(--text);
}

.section-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 24px;
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, #0d3d1a 100%);
    color: #fff;
    padding: 60px 0 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

.page-header .page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 12px auto 0;
}

.page-header-sm { padding: 30px 0 20px; text-align: left; }

.back-link { color: rgba(255,255,255,0.8); font-size: 14px; }
.back-link:hover { color: #fff; }

/* ─── Who We Are ─── */
.who-we-are-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.who-text p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--text-light);
}

.who-img {
    width: 100%;
    max-width: 350px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    margin: 0 auto;
    display: block;
}

/* ─── Programs ─── */
.section-programs { background: var(--section-bg); }

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

.program-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.program-icon { margin-bottom: 20px; }

.program-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--text);
}

.program-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ─── Stats ─── */
.section-stats {
    background: var(--primary);
    color: #fff;
    padding: 60px 0;
}

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

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    display: block;
    color: var(--highlight);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    display: block;
    margin-top: 4px;
}

/* ─── News Grid ─── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.news-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.news-card-body { padding: 24px; }

.news-date {
    font-size: 13px;
    color: var(--text-muted);
    display: block;
    margin-bottom: 8px;
}

.news-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card h3 a { color: var(--text); }
.news-card h3 a:hover { color: var(--primary); }

.news-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* ─── CTA Section ─── */
.section-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #0d3d1a 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Newsletter ─── */
.section-newsletter { background: var(--section-bg); padding: 60px 0; }

.newsletter-box {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-box h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.newsletter-box p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,92,46,0.1);
}

/* ─── Content Body ─── */
.content-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
}

.content-body h2 {
    font-size: 1.6rem;
    margin: 32px 0 16px;
    color: var(--text);
}

.content-body h3 {
    font-size: 1.3rem;
    margin: 24px 0 12px;
}

.content-body p { margin-bottom: 16px; }

.content-body ul, .content-body ol {
    margin: 0 0 16px 24px;
}

.content-body li { margin-bottom: 8px; }

.content-body strong { color: var(--text); }

/* ─── Forms ─── */
.form { max-width: 700px; }

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

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

.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,92,46,0.1);
}

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

/* ─── Membership Plans ─── */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.plan-card {
    background: #fff;
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all var(--transition);
}

.plan-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.plan-featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--highlight);
    color: #333;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.plan-name {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.plan-amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
}

.plan-period {
    font-size: 14px;
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
}

.plan-features li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-light);
    border-bottom: 1px solid var(--section-bg);
}

.plan-features li::before {
    content: '✓ ';
    color: var(--primary);
    font-weight: 700;
}

.plan-select-btn { width: 100%; }

/* Plan radio group */
.plan-radio-group { display: flex; flex-direction: column; gap: 8px; }

.plan-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color var(--transition);
}

.plan-radio:hover { border-color: var(--primary); }

.plan-radio input[type="radio"] { accent-color: var(--primary); }

.plan-radio-label { font-size: 14px; }

.membership-form-section {
    max-width: 700px;
    margin: 0 auto;
    padding-top: 40px;
}

.membership-form-section h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    text-align: center;
}

/* ─── Donations ─── */
.donate-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.donate-type-toggle {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    overflow: hidden;
}

.donate-type-btn {
    flex: 1;
    padding: 10px;
    border: none;
    background: #fff;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--transition);
}

.donate-type-btn.active {
    background: var(--primary);
    color: #fff;
}

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

.amount-btn {
    padding: 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    transition: all var(--transition);
}

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

.custom-amount-input {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.custom-amount-input label {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
}

.custom-amount-input input {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 20px;
}

.donate-summary {
    background: var(--primary-light);
    padding: 16px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.1rem;
}

.donate-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
}

/* Impact */
.section-why-donate { background: var(--section-bg); }

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

.impact-card {
    text-align: center;
    padding: 24px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.impact-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

/* ─── Volunteer ─── */
.volunteer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.volunteer-benefits { display: flex; flex-direction: column; gap: 24px; margin-top: 24px; }

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-item h4 { margin-bottom: 4px; }
.benefit-item p { color: var(--text-light); font-size: 0.9rem; }

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 14px;
    transition: border-color var(--transition);
}

.checkbox-label:hover { border-color: var(--primary); }
.checkbox-label input { accent-color: var(--primary); }

/* ─── Events ─── */
.events-list { display: flex; flex-direction: column; gap: 16px; }

.event-card {
    display: flex;
    gap: 24px;
    padding: 24px;
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: box-shadow var(--transition);
}

.event-card:hover { box-shadow: var(--shadow-lg); }

.event-date-badge {
    min-width: 70px;
    text-align: center;
    background: var(--primary);
    color: #fff;
    border-radius: var(--radius);
    padding: 12px 8px;
    align-self: flex-start;
}

.event-month {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-day {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.event-details h3 { margin-bottom: 8px; }
.event-details h3 a { color: var(--text); }
.event-details h3 a:hover { color: var(--primary); }

.event-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 8px;
}

.event-excerpt {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.event-past { opacity: 0.7; }

/* ─── Take Action ─── */
.action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.action-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.action-card:hover { transform: translateY(-4px); }

.action-icon { margin-bottom: 20px; }

.action-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.action-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.social-share-buttons { display: flex; gap: 8px; justify-content: center; }

.campaigns-section { margin-top: 60px; }
.campaigns-section h2 { font-size: 1.8rem; margin-bottom: 24px; }

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

.campaign-card {
    background: #fff;
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}

.campaign-card h3 { margin-bottom: 8px; }
.campaign-card h3 a { color: var(--text); }
.campaign-card p { color: var(--text-light); margin-bottom: 12px; }

.action-donate-cta {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #0d3d1a 100%);
    color: #fff;
    text-align: center;
    padding: 60px 40px;
    border-radius: var(--radius-lg);
}

.action-donate-cta h2 { margin-bottom: 12px; }
.action-donate-cta p { opacity: 0.9; margin-bottom: 24px; }

/* ─── Contact ─── */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-details { margin-bottom: 32px; }

.contact-detail {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.contact-detail h4 { font-size: 14px; margin-bottom: 4px; }
.contact-detail p { font-size: 14px; color: var(--text-light); }
.contact-detail a { color: var(--primary); }

.contact-social {
    display: flex;
    gap: 16px;
    margin: 16px 0 32px;
}

.contact-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text);
    transition: all var(--transition);
}

.contact-social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.contact-map { margin-top: 16px; }

/* ─── Post Single ─── */
.post-single { max-width: 800px; margin: 0 auto; }

.post-header { margin-bottom: 32px; }

.post-header h1 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 16px;
}

.post-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 14px;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-featured-image {
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
}

.post-share {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 16px;
    align-items: center;
}

.share-link {
    padding: 6px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 13px;
    color: var(--text-light);
}

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

/* ─── Search ─── */
.search-form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto 40px;
}

.search-input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 16px;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
}

.search-results { max-width: 700px; margin: 0 auto; }

.search-result {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.search-result h3 { margin-bottom: 8px; }
.search-result p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 4px; }
.search-date { color: var(--text-muted); font-size: 13px; }

/* ─── Pagination ─── */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 40px;
}

.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}

.pagination-link:hover { border-color: var(--primary); color: var(--primary); }
.pagination-link.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ─── No Content ─── */
.no-content {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ─── Footer ─── */
.site-footer {
    background: var(--footer-bg);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius);
}

.footer-logo-name {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.footer-about {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-nonprofit {
    font-size: 12px;
    color: var(--highlight);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--highlight); }

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 14px;
}

.footer-contact svg { flex-shrink: 0; margin-top: 2px; }
.footer-contact a { color: rgba(255,255,255,0.8); }
.footer-contact a:hover { color: var(--highlight); }

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
}

.footer-social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.footer-newsletter {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.footer-newsletter-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 14px;
}

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

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

.footer-newsletter-btn {
    padding: 10px 16px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .who-we-are-grid,
    .donate-wrapper,
    .volunteer-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .programs-grid,
    .action-grid {
        grid-template-columns: 1fr 1fr;
    }

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

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

@media (max-width: 768px) {
    .top-bar-left { display: none; }

    .mobile-menu-toggle { display: flex; }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: var(--shadow-lg);
        z-index: 999;
    }

    .main-nav.open { display: block; }

    .nav-list {
        flex-direction: column;
        padding: 12px;
    }

    .hero { padding: 60px 0; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }

    .section { padding: 50px 0; }
    .page-header { padding: 40px 0 30px; }
    .page-header h1 { font-size: 1.8rem; }

    .programs-grid,
    .news-grid,
    .action-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .plans-grid { grid-template-columns: 1fr; }
    .plan-featured { transform: none; }

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

    .checkbox-group { grid-template-columns: 1fr; }

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

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

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

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

    .hero-buttons { flex-direction: column; align-items: center; }

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

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