/* ==========================================
   EKHDEM BRAND DESIGN SYSTEM
   Color Palette: Egyptian Flag Colors (Red, Black, White, Yellow)
   ========================================== */

:root {
    /* Egyptian Flag Colors */
    --brand-red: #CE1126;
    --brand-red-dark: #A00E1E;
    --brand-red-light: #E01730;
    --brand-black: #000000;
    --brand-black-soft: #1a1a1a;
    --brand-yellow: #C09300;
    --brand-yellow-dark: #9A7700;
    --brand-yellow-light: #D4A726;
    --brand-white: #FFFFFF;
    
    /* Supporting Colors */
    --success-green: #10b981;
    --warning-amber: #f59e0b;
    --error-red: #CE1126;
    
    /* Neutral Palette */
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    
    /* Egyptian Flag Gradients */
    --gradient-primary: linear-gradient(135deg, #CE1126 0%, #000000 100%);
    --gradient-accent: linear-gradient(135deg, #C09300 0%, #D4A726 100%);
    --gradient-hero: linear-gradient(135deg, #000000 0%, #CE1126 50%, #A00E1E 100%);
    --gradient-egypt: linear-gradient(to bottom, #CE1126 0%, #CE1126 33%, #FFFFFF 33%, #FFFFFF 66%, #000000 66%, #000000 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
}

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--neutral-700);
    background-color: var(--neutral-50);
    line-height: 1.6;
}

/* RTL Support */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .navbar-nav {
    margin-right: 0 !important;
    margin-left: auto !important;
}

/* ==========================================
   NAVBAR STYLES
   ========================================== */

.navbar {
    padding: 0.75rem 0;
    backdrop-filter: blur(10px);
    background-color: transparent !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-brand {
    font-size: 1.5rem;
    transition: transform 0.2s ease;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: var(--neutral-600) !important;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--brand-red) !important;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero-section {
    background: var(--gradient-hero);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)" /></svg>');
    opacity: 0.5;
}

.hero-overlay {
    position: relative;
    z-index: 1;
}

.hero-search-form .form-control {
    font-size: 1rem;
    border-radius: var(--radius-full) 0 0 var(--radius-full);
}

.hero-search-form .btn {
    border-radius: 0 var(--radius-full) var(--radius-full) 0;
    font-weight: 600;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Hero Emotional Elements */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title-impact {
    font-size: 3.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-subtitle-emotional {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.impact-stats-mini {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.stat-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
}

.stat-mini strong {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brand-yellow);
    text-shadow: 0 2px 10px rgba(192, 147, 0, 0.4);
}

.stat-mini span {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.6s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out 0.3s both;
}

/* ==========================================
   SERVICE CHIPS (HORIZONTAL SCROLL)
   ========================================== */

.chip-scroll-container {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--neutral-300) transparent;
}

.chip-scroll-container::-webkit-scrollbar {
    height: 6px;
}

.chip-scroll-container::-webkit-scrollbar-thumb {
    background: var(--neutral-300);
    border-radius: var(--radius-full);
}

.service-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: white;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-full);
    color: var(--neutral-700);
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.service-chip:hover {
    border-color: var(--brand-red);
    color: var(--brand-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.service-chip.active {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: white;
}

/* ==========================================
   FILTERS SIDEBAR
   ========================================== */

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

.filters-header {
    padding: 1.25rem;
    background: var(--neutral-50);
    border-bottom: 1px solid var(--neutral-200);
}

.filters-body {
    padding: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-control, .form-select {
    border-radius: var(--radius-md);
    border: 1.5px solid var(--neutral-200);
    padding: 0.625rem 0.875rem;
    transition: all 0.2s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(206, 17, 38, 0.1);
}

/* ==========================================
   OPPORTUNITY CARDS
   ========================================== */

.results-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.25rem;
}

.opportunity-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    border: 1px solid var(--neutral-100);
}

.opportunity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(206, 17, 38, 0.15);
    border-color: var(--brand-yellow);
}

.card-body-modern {
    padding: 1.5rem;
}

.card-title-modern {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--neutral-800);
    line-height: 1.4;
}

.safety-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--success-green);
    color: white;
    border-radius: var(--radius-full);
    font-size: 1rem;
}

.org-info {
    display: flex;
    align-items: center;
    color: var(--neutral-600);
    font-size: 0.9rem;
}

.location-info {
    display: flex;
    align-items: center;
    color: var(--neutral-500);
    font-size: 0.875rem;
}

.meta-info {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--neutral-600);
    font-size: 0.875rem;
}

.meta-item i {
    color: var(--brand-red);
}

.skills-wrapper {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.skill-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(192, 147, 0, 0.1);
    color: var(--brand-black);
    border: 1px solid rgba(192, 147, 0, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
}

/* No Results Card */
.no-results-card {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    padding: 3rem 2rem;
}

/* ==========================================
   INFO PAGE STYLES
   ========================================== */

.info-hero-section {
    position: relative;
    background-image: url('/static/images/info-hero-image.jpg');
    background-size: cover;
    background-position: center;
    padding: 3rem 0;
}

.info-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(206, 17, 38, 0.6) 100%);
    z-index: 1;
}

.info-hero-section .container {
    position: relative;
    z-index: 2;
}

/* Egypt Impact Statistics Section */
.egypt-impact-section {
    position: relative;
    background-image: url('/static/images/impact-volunteers-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 2rem;
    margin-left: -50vw;
    margin-right: -50vw;
    left: 50%;
    right: 50%;
    width: 100vw;
    border-radius: 0;
}

.egypt-impact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(206, 17, 38, 0.85) 0%, rgba(160, 14, 30, 0.9) 100%);
    z-index: 1;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--neutral-800);
}

/* Category Cards */
.category-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-100);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-yellow);
}

.category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    font-size: 1.75rem;
    color: white;
}

.category-icon.healthcare { background: linear-gradient(135deg, #CE1126 0%, #000000 100%); }
.category-icon.education { background: linear-gradient(135deg, #C09300 0%, #D4A726 100%); }
.category-icon.food { background: linear-gradient(135deg, #CE1126 0%, #C09300 100%); }
.category-icon.emergency { background: linear-gradient(135deg, #000000 0%, #CE1126 100%); }
.category-icon.environment { background: linear-gradient(135deg, #C09300 0%, #000000 100%); }
.category-icon.community { background: linear-gradient(135deg, #CE1126 0%, #D4A726 100%); }

/* Stat Cards */
.stat-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    border: 1px solid var(--neutral-100);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(206, 17, 38, 0.12);
    border-color: var(--brand-yellow);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 0.5rem;
}

.stat-source {
    font-size: 0.8rem;
    color: var(--neutral-500);
}

/* News Cards */
.news-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--neutral-100);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-red);
}

.news-body {
    padding: 1.75rem;
}

.news-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--neutral-800);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.news-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    color: var(--neutral-500);
}

.news-summary {
    font-size: 0.9rem;
    color: var(--neutral-600);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--brand-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.2s ease;
}

.news-link:hover {
    gap: 0.75rem;
    color: var(--brand-red-dark);
}

/* Quote Cards */
.quote-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--neutral-100);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-yellow);
}

.quote-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.quote-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--neutral-800);
    font-style: italic;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.quote-text-ar {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--neutral-800);
    font-style: italic;
    margin-bottom: 0.75rem;
    font-weight: 500;
    direction: rtl;
    text-align: right;
}

.quote-author {
    font-size: 0.9rem;
    color: var(--brand-red);
    font-weight: 600;
    margin-bottom: 0;
}

.quote-divider {
    border: 0;
    height: 2px;
    background: linear-gradient(to right, var(--brand-red), var(--brand-yellow));
    margin: 1.25rem 0;
    opacity: 0.3;
}

/* About Data Card */
.about-data-card {
    background: linear-gradient(135deg, rgba(206, 17, 38, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--brand-red-light);
}

.about-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-red);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.no-news-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--brand-red);
    border-color: var(--brand-red);
}

.btn-primary:hover {
    background: var(--brand-red-dark);
    border-color: var(--brand-red-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-outline-secondary {
    border-color: var(--neutral-300);
    color: var(--neutral-600);
}

.btn-outline-secondary:hover {
    background: var(--neutral-100);
    border-color: var(--neutral-400);
    color: var(--neutral-700);
}

.rounded-pill {
    border-radius: var(--radius-full) !important;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    background: var(--gradient-hero);
}

.footer a {
    transition: transform 0.2s ease;
    display: inline-block;
}

.footer a:hover {
    transform: translateY(-3px);
}

/* ==========================================
   RESPONSIVE & MOBILE
   ========================================== */

@media (max-width: 991px) {
    .filters-card {
        position: relative !important;
        top: 0 !important;
    }
    
    .hero-section {
        padding: 2rem 0 !important;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .service-chip {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .opportunity-card {
        margin-bottom: 1rem;
    }
    
    .hero-title-impact {
        font-size: 2.25rem;
    }
    
    .impact-stats-mini {
        gap: 1.5rem;
    }
    
    .stat-mini strong {
        font-size: 1.5rem;
    }
}

/* ==========================================
   EMOTIONAL IMPACT CTA SECTION
   ========================================== */

.impact-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, 
        rgba(206, 17, 38, 0.03) 0%, 
        rgba(192, 147, 0, 0.03) 100%);
}

.impact-cta-card {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 60px rgba(206, 17, 38, 0.15);
    border: 2px solid transparent;
    background-image: linear-gradient(white, white), 
                      linear-gradient(135deg, var(--brand-red) 0%, var(--brand-yellow) 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 8px 20px rgba(192, 147, 0, 0.3);
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--neutral-800);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--neutral-600);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.btn-cta-primary {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 700;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(206, 17, 38, 0.25);
    text-decoration: none;
    display: inline-block;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(206, 17, 38, 0.35);
    color: white;
}

.btn-cta-secondary {
    background: transparent;
    border: 2px solid var(--brand-yellow);
    color: var(--brand-black);
    font-weight: 700;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-full);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta-secondary:hover {
    background: var(--brand-yellow);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(192, 147, 0, 0.25);
}

@media (max-width: 991px) {
    .impact-cta-card {
        padding: 2rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}

/* Utility Classes */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* ==========================================
   IMPACT STATISTICS HOVER EFFECTS
   ========================================== */
.impact-stat-card {
    cursor: default;
}

.impact-stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--brand-red) !important;
    box-shadow: 0 20px 40px rgba(206, 17, 38, 0.15) !important;
}

.impact-stat-card:hover .stat-value {
    transform: scale(1.05);
}

/* Quotes Section with Background Image */
.quotes-section-bg {
    position: relative;
    background-image: url('/static/images/quotes-bg-new.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 4rem 0;
    margin-left: -50vw;
    margin-right: -50vw;
    left: 50%;
    right: 50%;
    width: 100vw;
    position: relative;
}

.quotes-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(206, 17, 38, 0.9) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.quotes-section-bg .quote-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.quotes-header-image {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.quotes-header-image img {
    border: 4px solid rgba(255, 255, 255, 0.3);
}

/* News Header Section - Elegant style without background image */
.news-header-section {
    position: relative;
    background: linear-gradient(135deg, var(--brand-red) 0%, rgba(206, 17, 38, 0.85) 100%);
    padding: 4rem 2rem;
    margin-bottom: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(206, 17, 38, 0.2);
}

/* Humanitarian Quote Banner (Info Page) */
.humanitarian-quote-banner {
    background: linear-gradient(135deg, rgba(206, 17, 38, 0.1) 0%, rgba(192, 147, 0, 0.1) 100%);
    border-left: 4px solid var(--brand-red);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    text-align: center;
}

.humanitarian-quote-banner .quote-text-en {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--neutral-800);
    font-style: italic;
}

.humanitarian-quote-banner .quote-text-ar {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--neutral-700);
    font-style: italic;
    direction: rtl;
}

/* Humanitarian quote banner for news section - Elegant card style */
.humanitarian-quote-banner-light {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 2rem 2.5rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.humanitarian-quote-banner-light .quote-text-en {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.humanitarian-quote-banner-light .quote-text-ar {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    font-style: italic;
    direction: rtl;
    line-height: 1.8;
}

/* ==========================================
   DONATION CATEGORY BACKGROUNDS
   ========================================== */

/* Emergency Category Background */
.emergency-section-bg {
    position: relative;
    background-image: url('/static/images/emergency-header.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.emergency-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 150, 136, 0.45) 0%, rgba(0, 121, 107, 0.45) 100%);
    z-index: 1;
}

.emergency-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

/* Food Category Background */
.food-section-bg {
    position: relative;
    background-image: url('/static/images/food-header.webp');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.food-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 127, 80, 0.45) 0%, rgba(255, 99, 71, 0.45) 100%);
    z-index: 1;
}

.food-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

/* Education Category Background */
.education-section-bg {
    position: relative;
    background-image: url('/static/images/education-header.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.education-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(41, 128, 185, 0.45) 0%, rgba(52, 152, 219, 0.45) 100%);
    z-index: 1;
}

.education-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

/* Children Category Background */
.children-section-bg {
    position: relative;
    background-image: url('/static/images/children-header.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.children-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 64, 122, 0.45) 0%, rgba(219, 48, 105, 0.45) 100%);
    z-index: 1;
}

.children-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}
