/*
Theme Name: Hamlat Sanad Charity Landing (Bilingual)
Theme URI: https://example.com
Author: حملة السند الخيرية
Description: قالب صفحة هبوط لحملة السند الخيرية (رمضانية) مع إبراز دعوات التبرع، قسم المناشدات، ودعم لغتين (عربي/إنجليزي).
Version: 2.0.0
Text Domain: sanad-landing
*/

:root {
    /* Ramadan palette (calm + humanitarian) */
    --primary-color: #0B3D2E;     /* deep emerald */
    --secondary-color: #0F6B4F;   /* teal green */
    --accent-color: #D4AF37;      /* warm gold */
    --bg-light: #F6F5EF;          /* warm off-white */
    --text-dark: #12322A;
    --text-light: #6c757d;
    --white: #ffffff;
    --gradient-overlay: linear-gradient(135deg, rgba(11, 61, 46, 0.92) 0%, rgba(9, 24, 48, 0.82) 100%);
    --ramadan-sky: radial-gradient(circle at 30% 20%, rgba(212,175,55,0.14) 0, rgba(212,175,55,0) 45%),
                   radial-gradient(circle at 70% 30%, rgba(255,255,255,0.12) 0, rgba(255,255,255,0) 50%),
                   radial-gradient(circle at 20% 80%, rgba(15,107,79,0.18) 0, rgba(15,107,79,0) 55%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Direction switching (Arabic/English) */
body[data-lang="en"] { direction: ltr; }
body[data-lang="ar"] { direction: rtl; }

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 80px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.32);
}

.btn-primary:hover {
    background-color: rgba(212, 175, 55, 0.92);
    transform: translateY(-2px);
}

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

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

.btn-outline-dark {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

/* Language visibility */
.lang-ar, .lang-en { display: inline; }
body[data-lang="ar"] .lang-en { display: none; }
body[data-lang="en"] .lang-ar { display: none; }

/* Header */
.main-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 50;
    background: rgba(17, 24, 39, 0.3);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f9fafb;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.header-brand i {
    color: var(--accent-color);
    font-size: 1.4rem;
}

.lang-switch {
    display: flex;
    gap: 6px;
    align-items: center;
}

.lang-btn {
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(249,250,251,0.4);
    background: transparent;
    color: #e5e7eb;
    font-size: 0.8rem;
    cursor: pointer;
}

.lang-btn.active {
    background: #f9fafb;
    color: #111827;
    border-color: #f9fafb;
}

.header-actions .btn-header-donate {
    background: var(--accent-color);
    color: var(--white);
    padding: 8px 22px;
    border-radius: 999px;
    font-size: 0.95rem;
    border: none;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.45);
}

.header-actions .btn-header-donate:hover {
    background: rgba(212, 175, 55, 0.92);
    transform: translateY(-1px);
}

/* Status bar (archive banner) */
.campaign-status-bar {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 49;
    background: rgba(17, 24, 39, 0.45);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.92);
}

.campaign-status-bar .bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 20px;
    font-size: 0.92rem;
}

.campaign-status-bar a {
    color: var(--accent-color);
    font-weight: 800;
}

.campaign-status-bar a:hover {
    text-decoration: underline;
}

/* Hero Section */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: no-repeat center center/cover;
    background-color: #0b1220;
    color: var(--white);
    text-align: center;
    padding-top: 120px;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

#hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ramadan-sky);
    opacity: 0.9;
    pointer-events: none;
    animation: sanadSkyShift 16s ease-in-out infinite alternate;
}

@keyframes sanadSkyShift {
    0% { transform: translate3d(0,0,0) scale(1); filter: saturate(1); }
    100% { transform: translate3d(0,-10px,0) scale(1.02); filter: saturate(1.08); }
}

.ramadan-glow-dots {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
    background-image:
        radial-gradient(rgba(255,255,255,0.55) 1px, transparent 1px),
        radial-gradient(rgba(212,175,55,0.35) 1px, transparent 1px);
    background-size: 120px 120px, 180px 180px;
    background-position: 0 0, 30px 40px;
    animation: dotsMove 14s linear infinite;
}

@keyframes dotsMove {
    0% { background-position: 0 0, 30px 40px; }
    100% { background-position: 120px 240px, -150px 120px; }
}

.ramadan-ornaments {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
    opacity: 0.95;
}

.ramadan-ornaments .crescent {
    position: absolute;
    top: 90px;
    right: 40px;
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 0 16px rgba(212,175,55,0.45));
    animation: floatSoft 5.5s ease-in-out infinite;
}

body[data-lang="en"] .ramadan-ornaments .crescent { right: auto; left: 40px; }

.ramadan-ornaments .lantern {
    position: absolute;
    top: 70px;
    left: 40px;
    width: 90px;
    height: 170px;
    filter: drop-shadow(0 0 16px rgba(212,175,55,0.35));
    animation: floatSoft 6.2s ease-in-out infinite;
}

body[data-lang="en"] .ramadan-ornaments .lantern { left: auto; right: 40px; }

@keyframes floatSoft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-desc {
    font-size: 1.1rem;
    margin-bottom: 2.3rem;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    min-width: 180px;
}

.goal-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 15px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
}

.goal-box i {
    color: var(--accent-color);
    margin-left: 8px;
}

body[data-lang="en"] .goal-box i { margin-left: 0; margin-right: 8px; }

/* About Section */
#about {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    color: var(--text-dark);
}

.about-icon-visual {
    background-color: var(--bg-light);
    border-radius: 20px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Why Us Section */
#why {
    background-color: var(--bg-light);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.card {
    background: var(--white);
    padding: 26px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--accent-color);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.07);
}

.card-icon {
    font-size: 2.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

/* Vision Mission Values */
#vmv {
    background: var(--primary-color);
    color: var(--white);
}

#vmv .section-title {
    color: var(--white);
}

#vmv .section-title::after {
    background-color: var(--white);
}

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.vmv-block h3 {
    font-size: 1.7rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.vmv-block p {
    font-size: 0.98rem;
}

.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
}

.value-tag {
    background: rgba(255,255,255,0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
}

/* Goals Section */
#goals {
    background-color: var(--white);
}

.goals-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: flex-start;
}

.main-goal {
    flex: 1;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    border-right: 5px solid var(--accent-color);
}

.sub-goals {
    flex: 2;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 0.98rem;
}

.goal-icon {
    min-width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    font-size: 1.1rem;
}

/* Target Groups */
#targets {
    background-color: var(--bg-light);
}

.targets-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.target-item {
    background: var(--white);
    width: 200px;
    padding: 25px;
    border-radius: 50% 50% 20px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    border-bottom: 3px solid var(--primary-color);
}

.target-item:hover {
    transform: scale(1.05);
}

.target-icon {
    font-size: 2.7rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.target-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.target-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Programs */
#programs {
    background-color: var(--white);
}

.program-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.program-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.program-header {
    background: var(--primary-color);
    padding: 15px;
    color: var(--white);
    text-align: center;
}

.program-header i {
    font-size: 2rem;
}

.program-body {
    padding: 20px;
    text-align: center;
}

.program-body h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

/* How it works */
#how {
    background-color: var(--bg-light);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 4rem;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ddd;
    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    padding: 0 10px;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Governance */
#governance {
    background-color: var(--primary-color);
    color: var(--white);
}

#governance .section-title {
    color: var(--white);
}

.gov-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.gov-item i {
    font-size: 2.7rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

/* Donate Section */
#donate {
    background: radial-gradient(circle at top, #eef4ff 0, #f8fafc 45%, #ffffff 100%);
}

#donate .donate-intro {
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: var(--text-dark);
    font-size: 1.02rem;
}

.donate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.donate-card {
    background: var(--white);
    border-radius: 18px;
    padding: 24px 20px;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.06);
    border: 1px solid #e5e7eb;
    text-align: center;
}

.donate-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.donate-card-icon i {
    font-size: 1.6rem;
    color: var(--accent-color);
}

.donate-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.donate-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0.7rem;
}

.donate-main-cta {
    text-align: center;
    margin-top: 1rem;
}

.donate-main-cta .btn-primary {
    padding: 14px 40px;
    font-size: 1.1rem;
}

/* CTA */
#cta {
    background: no-repeat center center/cover;
    background-color: #0b1220;
    position: relative;
    color: var(--white);
    padding: 110px 0;
    text-align: center;
}

#cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 61, 46, 0.88);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Floating Donate Button */
.floating-donate-btn {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 60;
    background: var(--accent-color);
    color: #fff;
    padding: 12px 20px;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    font-weight: 800;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.floating-donate-btn i {
    font-size: 1.1rem;
}

.floating-donate-btn:hover {
    background: rgba(212, 175, 55, 0.92);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #111827;
    color: #9ca3af;
    padding: 50px 0 20px;
    text-align: center;
}

.footer-social {
    margin: 20px 0;
}

.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: #1f2933;
    color: var(--white);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 5px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--accent-color);
}

footer p {
    font-size: 0.92rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .about-grid { grid-template-columns: 1fr; }
    .steps-container { flex-direction: column; gap: 30px; }
    .steps-container::before { display: none; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.4rem; }
    .section-title { font-size: 2rem; }
    .cards-grid, .vmv-grid, .gov-grid, .donate-grid { grid-template-columns: 1fr; }
    .goals-container { flex-direction: column; }
    .main-header .header-inner {
        padding-inline: 12px;
        flex-wrap: wrap;
        row-gap: 8px;
    }
    .floating-donate-btn {
        left: 50%;
        transform: translateX(-50%);
        bottom: 18px;
    }
}


/* Background audio prompt */
#sanad-bg-audio {
    display: none;
}

.audio-prompt {
    position: fixed;
    left: 1.25rem;
    bottom: 1.25rem;
    z-index: 2100;
    display: none;
}

.audio-prompt.visible {
    display: block;
}

.audio-prompt-btn {
    border: none;
    border-radius: 999px;
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    background: rgba(15, 23, 42, 0.95);
    color: #f9fafb;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.audio-prompt-btn:hover {
    transform: translateY(-1px);
}


/* Allocations (percentages) */
#allocations {
    background: linear-gradient(180deg, #ffffff 0, var(--bg-light) 100%);
}

.allocations-wrap {
    max-width: 900px;
    margin: 0 auto;
}

.allocations-list {
    margin-top: 2.2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.allocation-item {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.allocation-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.allocation-head .pct {
    color: var(--accent-color);
    font-weight: 900;
}

.allocation-bar {
    height: 10px;
    background: rgba(15, 23, 42, 0.08);
    border-radius: 999px;
    overflow: hidden;
}

.allocation-fill {
    height: 100%;
    width: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(212,175,55,0.85), rgba(212,175,55,1));
    box-shadow: 0 0 18px rgba(212,175,55,0.35);
    transition: width 1.2s ease;
}

.allocations-list.in-view .allocation-fill {
    width: calc(var(--pct, 0) * 1%);
}


/* Appeals section */
#appeals {
    background: radial-gradient(circle at top, rgba(212,175,55,0.10) 0, rgba(212,175,55,0) 50%),
                linear-gradient(180deg, var(--bg-light) 0, #ffffff 100%);
}

.appeals-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    margin-top: 2.5rem;
    align-items: start;
}

.appeal-card {
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
    position: relative;
    overflow: hidden;
}

.appeal-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: radial-gradient(circle at 30% 20%, rgba(212,175,55,0.18) 0, rgba(212,175,55,0) 60%);
    pointer-events: none;
}

.appeal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.35);
    color: var(--primary-color);
    font-weight: 900;
    margin-bottom: 14px;
}

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

.appeal-card h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.appeal-card p {
    color: rgba(18, 50, 42, 0.85);
    font-size: 1.02rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.appeal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.appeal-video {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.10);
    background: rgba(0,0,0,0.12);
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}

.appeal-video .ratio {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.appeal-video iframe,
.appeal-video video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}


/* Archive section */
#archive {
    background: #0b1220;
    color: #e5e7eb;
}

#archive .section-title {
    color: #ffffff;
}

#archive .section-title::after {
    background-color: var(--accent-color);
}

.archive-card {
    max-width: 900px;
    margin: 2.3rem auto 0;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 22px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 18px;
    align-items: center;
}

.archive-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(212,175,55,0.14);
    border: 1px solid rgba(212,175,55,0.32);
    color: #fff;
    font-weight: 900;
    margin-bottom: 12px;
}

.archive-card p {
    color: rgba(229, 231, 235, 0.85);
}

.archive-card .btn {
    white-space: nowrap;
}


/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    #hero::after,
    .ramadan-ornaments .crescent,
    .ramadan-ornaments .lantern,
    .ramadan-glow-dots {
        animation: none !important;
    }
    .allocation-fill {
        transition: none !important;
    }
}


@media (max-width: 992px) {
    .campaign-status-bar { top: 58px; }
    .appeals-grid { grid-template-columns: 1fr; }
    .archive-card { grid-template-columns: 1fr; }
    .ramadan-ornaments .crescent { top: 86px; width: 92px; height: 92px; }
    .ramadan-ornaments .lantern { top: 70px; width: 70px; height: 140px; }
}

/* Payment icons row */
.payment-icons{
    display:flex;
    gap:12px;
    align-items:center;
    margin-top: 10px;
    flex-wrap: wrap;
}
.payment-icons i{
    font-size: 30px;
    color: rgba(255,255,255,0.92);
    opacity: .95;
    filter: drop-shadow(0 10px 22px rgba(0,0,0,0.25));
}

/* Archive small stats */
.archive-stats{
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}
.archive-stat{
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(0,0,0,0.14);
    border: 1px solid rgba(255,255,255,0.10);
}
.archive-stat strong{
    display:block;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 2px;
    color: #fff;
}
.archive-stat span{
    display:block;
    font-size: 12px;
    color: rgba(229, 231, 235, 0.85);
}

/* Contact modal */
body.modal-open{overflow:hidden}
.sanad-modal-overlay{
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    background: rgba(0,0,0,0.55);
    z-index: 9999;
    padding: 16px;
}
.sanad-modal-overlay.open{display:grid}
.sanad-modal{
    width: min(720px, 100%);
    border-radius: 20px;
    background: rgba(15, 22, 20, 0.96);
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 30px 90px rgba(0,0,0,0.6);
    padding: 18px;
    position: relative;
}
.sanad-modal-close{
    position:absolute;
    top: 12px;
    inset-inline-end: 12px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    color: #fff;
    cursor: pointer;
}
.sanad-modal-title{
    margin: 8px 0 6px;
    font-weight: 900;
    color: #fff;
}
.sanad-modal-subtitle{
    margin: 0 0 12px;
    color: rgba(229,231,235,0.85);
    line-height: 1.7;
}
.sanad-modal-form label{
    display:block;
    color: rgba(229,231,235,0.85);
    margin-top: 10px;
}
.sanad-modal-form input,
.sanad-modal-form textarea{
    width: 100%;
    margin-top: 6px;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.05);
    color: #fff;
    outline: none;
}
.sanad-form-row{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
@media (max-width: 720px){
    .archive-card{grid-template-columns:1fr}
    .archive-stats{grid-template-columns:1fr}
    .sanad-form-row{grid-template-columns:1fr}
}
.sanad-modal-actions{
    display:flex;
    gap: 10px;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-top: 12px;
}
