/* لجنة الأمل للعودة الطوعية - أنماط مشتركة (مستوحاة من المرجع) */
.text-primary { color: var(--primary-color) !important; }
.bg-primary { background-color: var(--primary-color) !important; }
:root {
    --primary-color: #1a5f4a;
    --primary-dark: #134736;
    --primary-light: #2d7a5f;
    --primary-lighter: #e8f2ee;
    --secondary-color: #d4a84b;
    --secondary-light: #e8c67a;
    --accent-color: #c0392b;
    --dark-color: #333;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --scale: 0.9;
}

html {
    font-size: 90%;
}

* {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Tajawal', sans-serif;
    background-color: var(--light-color);
    color: var(--dark-color);
    position: relative;
}

.container, .container-fluid {
    max-width: 100%;
    width: 90%;
    margin: 0 auto;
}

/* ========== Ticker ========== */
.ticker-wrap {
    background: var(--primary-color);
    color: white;
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    z-index: 100;
}

/* الصفحة الرئيسية: الشريط ثابت أعلى الصفحة والهيدر أسفله (بدون تداخل) */
.page-home .ticker-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.page-home .navbar.navbar-hero {
    top: 44px;
    transition: top 0.3s ease;
}

/* عند التمرير: إخفاء الشريط ورفع الهيدر لأعلى الشاشة */
body.page-home.ticker-hidden .ticker-wrap {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

body.page-home.ticker-hidden .navbar.navbar-hero {
    top: 0;
}

body.page-home {
    padding-top: 44px;
}

.ticker-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to left, var(--primary-color), transparent);
    z-index: 2;
    pointer-events: none;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: ticker-scroll 35s linear infinite;
}

.ticker {
    display: flex;
    width: max-content;
    flex-shrink: 0;
}

.ticker-item {
    padding: 0 3rem;
    white-space: nowrap;
    font-weight: 500;
    font-size: 0.95rem;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== Navbar ========== */
.navbar {
    width: 100%;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
    padding: 6px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(12px);
}

/* مؤقت: إخفاء رابط المركز الإعلامي من الهيدر في كل الصفحات */
.navbar .nav-item:has(a[href="media.html"]) {
    display: none !important;
}

/* الصفحة الرئيسية: هيدر شفاف عند الأعلى، زجاجي (Glassmorphism) عند التمرير */
.page-home .navbar.navbar-hero:not(.scrolled) {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.page-home .navbar.navbar-hero:not(.scrolled) .nav-link {
    color: rgba(255, 255, 255, 0.95);
}

.page-home .navbar.navbar-hero:not(.scrolled) .nav-link:hover,
.page-home .navbar.navbar-hero:not(.scrolled) .nav-link.active {
    color: #fff;
}

.page-home .navbar.navbar-hero:not(.scrolled) .brand-tagline {
    color: rgba(255, 255, 255, 0.85);
}

.page-home .navbar.navbar-hero:not(.scrolled) .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.9);
}

.page-home .navbar.navbar-hero:not(.scrolled) .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.page-home .navbar.navbar-hero:not(.scrolled) .btn-custom {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: none;
}

.page-home .navbar.navbar-hero:not(.scrolled) .btn-custom:hover {
    background: #fff;
    color: var(--primary-dark);
}

.page-home .navbar.navbar-hero:not(.scrolled) .btn-outline-custom {
    border-color: rgba(255, 255, 255, 0.9);
    color: #fff;
}

.page-home .navbar.navbar-hero:not(.scrolled) .btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: #fff;
}

.page-home .navbar.navbar-hero:not(.scrolled) .btn-gold {
    background: rgba(212, 168, 75, 0.9);
    color: #1a1a1a;
}

.page-home .navbar.navbar-hero:not(.scrolled) .btn-gold:hover {
    background: rgba(232, 198, 123, 0.95);
    color: #1a1a1a;
}

.navbar.scrolled {
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(14px);
}

/* شعار أنيق: الاسم مميز واللوغو يساره (في RTL) */
.navbar-brand {
    padding: 0;
    margin: 0;
    gap: 0.6rem;
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
}

.navbar-brand .brand-logo,
.navbar-brand img {
    height: 52px;
    width: auto;
    max-height: 52px;
    object-fit: contain;
    flex-shrink: 0;
    transition: height 0.3s ease, filter 0.3s ease;
}

.navbar.scrolled .navbar-brand .brand-logo,
.navbar.scrolled .navbar-brand img {
    height: 38px;
    max-height: 38px;
}

.page-home .navbar.navbar-hero:not(.scrolled) .navbar-brand .brand-logo,
.page-home .navbar.navbar-hero:not(.scrolled) .navbar-brand img {
    height: 56px !important;
    max-height: 56px !important;
}

.navbar .brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark-color);
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-wrap: balance;
}

/* الرئيسية: الهيدر فوق الهيرو يكون شفافاً، فنحتاج نصاً أبيض واضحاً */
.page-home .navbar.navbar-hero:not(.scrolled) .brand-name {
    color: rgba(255, 255, 255, 0.98);
}

@media (max-width: 576px) {
    .navbar .brand-name {
        font-size: 1.05rem;
    }
    .navbar-brand .brand-logo,
    .navbar-brand img {
        height: 40px;
        max-height: 40px;
    }
}

.nav-link {
    font-weight: 600;
    margin: 0 8px;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

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

/* منع التفاف عناصر الهيدر في سطر واحد */
#mainNavbar .navbar-collapse .navbar-nav {
    flex-wrap: nowrap;
    justify-content: center;
    margin: 0 auto;
}
#mainNavbar .navbar-nav .nav-item {
    white-space: nowrap;
}
#mainNavbar .navbar-nav .nav-link {
    white-space: nowrap;
}

/* زر primary بلون الموقع (أخضر) */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}
.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}

/* أزرار CTA */
.btn-custom {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 95, 74, 0.35);
    font-size: 1rem;
}

.btn-custom:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 95, 74, 0.4);
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 10px 24px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 95, 74, 0.25);
}

.btn-gold {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: #333;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 168, 75, 0.35);
}

.btn-gold:hover {
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 168, 75, 0.45);
}

/* ========== Hero Section — من العتمة إلى الإشراق ========== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
    background-color: var(--primary-dark);
    background-image: url('https://images.unsplash.com/photo-1547471080-7cc2caa01a7e?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* تدرج من أخضر داكن (أعلى) إلى ذهبي شفاف (أسفل) — إشراق الشعار */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(19, 71, 54, 0.92) 0%,
        rgba(26, 95, 74, 0.75) 35%,
        rgba(26, 95, 74, 0.4) 65%,
        rgba(212, 168, 75, 0.25) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    max-width: 640px;
}

/* الشعار في الهيرو: طفو + إضاءة دائرية (Glow) */
.hero-logo-wrap {
    position: relative;
    flex: 0 0 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-glow {
    position: absolute;
    width: 180%;
    height: 180%;
    max-width: 420px;
    max-height: 420px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(212, 168, 75, 0.2) 0%,
        rgba(212, 168, 75, 0.08) 40%,
        transparent 70%
    );
    pointer-events: none;
    animation: hero-glow-pulse 4s ease-in-out infinite;
}

@keyframes hero-glow-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.05); }
}

.hero-logo {
    position: relative;
    z-index: 2;
    animation: hero-logo-float 5s ease-in-out infinite;
}

@keyframes hero-logo-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.hero-logo img {
    width: 100%;
    max-width: 340px;
    filter: drop-shadow(0 8px 28px rgba(0, 0, 0, 0.35));
}

/* تيبوغرافيا الهيرو: Display heading + ظل نصي خفيف */
.hero-section h1 {
    font-size: clamp(2rem, 4.2vw, 3.4rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25), 0 1px 3px rgba(0, 0, 0, 0.15);
}

.hero-section .hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 32px;
    line-height: 1.5;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
}

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

/* أزرار الهيرو: Pill-shaped + نبض لزر التسجيل */
.btn-hero-primary {
    background: rgba(255, 255, 255, 0.98);
    color: var(--primary-color) !important;
    border: none;
    padding: 14px 36px;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: btn-hero-pulse 2.5s ease-in-out infinite;
}

.btn-hero-primary:hover {
    background: #fff;
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

@keyframes btn-hero-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 4px 28px rgba(255, 255, 255, 0.35); }
}

.btn-hero-donate {
    background: transparent;
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.9);
    padding: 14px 36px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-hero-donate:hover {
    background: rgba(212, 168, 75, 0.35);
    color: #fff !important;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: -50px;
    right: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%23f8f9fa"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.47,89.67-39.8c40.92-19,84.73-46,130.83-49.67c36.26-2.85,70.9,9.42,98.6,31.56c31.77,25.39,62.32,62,103.63,73c40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84c30.2,8.66,59,6.17,87.09-7.5c22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%23f8f9fa"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46c59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23f8f9fa"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    animation: float 18s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; }
}

/* تداخل الإحصائيات مع الهيرو (Overlap) */
.stats-overlap {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.stats-overlap .stats-card {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .hero-content { flex-direction: column-reverse; text-align: center; }
    .hero-logo-wrap { flex: 0 0 auto; margin-bottom: 30px; }
    .hero-logo img { max-width: 260px; }
    .hero-logo { flex: none; }
    .hero-buttons { justify-content: center; }
    .hero-section h1 { font-size: 2.4rem; }
    .hero-section .hero-subtitle { font-size: 1.2rem; }
    .stats-overlap { margin-top: -60px; }
}

@media (max-width: 768px) {
    .hero-buttons { flex-direction: column; gap: 12px; }
    .hero-section h1 { font-size: 1.9rem; }
    .hero-section .hero-subtitle { font-size: 1.05rem; }
    .stats-overlap { margin-top: -50px; }
}

@media (max-width: 576px) {
    .btn-custom, .btn-outline-custom, .btn-gold { padding: 10px 20px; font-size: 0.95rem; }
    .hero-section h1 { font-size: 1.6rem; }
    .hero-section .hero-subtitle { font-size: 1rem; }
    .btn-hero-primary, .btn-hero-donate { padding: 12px 28px; font-size: 1rem; }
    .stats-overlap { margin-top: -40px; }
}

/* ========== Sections ========== */
.section {
    padding: 80px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 48px;
    font-weight: 700;
    font-size: 2rem;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    bottom: -14px;
    right: 0;
}

/* عناوين الأقسام في المنتصف */
.section-title-center {
    display: block;
    text-align: center;
}
.section-title-center::after {
    right: 50%;
    margin-right: -25px;
}

/* تحسين عنوان القسم + النص المختصر (بنفس أسلوب form-header) */
.section-title:has(+ .text-muted) {
    color: var(--primary-dark);
    font-weight: 800;
    margin: 0 0 0.6rem;
    font-size: 2rem;
    letter-spacing: -0.02em;
    line-height: 1.35;
    display: block;
}

.section-title:has(+ .text-muted)::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    margin: 0.5rem auto 0;
    border-radius: 2px;
    position: relative;
    right: auto;
    bottom: auto;
}

.section-title + .text-muted {
    color: #555;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
    max-width: 32em;
    margin-right: auto;
    margin-left: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-subtitle {
    color: #666;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ========== Cards ========== */
.card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
}

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

.card-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.feature-box {
    text-align: center;
    padding: 28px 20px;
    border-radius: 12px;
    background: white;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(26, 95, 74, 0.12);
}

/* ========== Stats Section ========== */
.stats-section {
    background-color: white;
    padding: 80px 0;
    position: relative;
}

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

.stats-card {
    background: white;
    border-radius: 12px;
    padding: 36px 24px;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 8px 28px rgba(26, 95, 74, 0.08);
    border: 1px solid var(--primary-lighter);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(26, 95, 74, 0.12);
}

.stats-card:hover::before {
    transform: scaleX(1);
}

.stats-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    line-height: 1;
    font-feature-settings: "tnum";
    font-variant-numeric: tabular-nums;
}

.stats-number .symbol {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    opacity: 0.85;
}

.stats-number .small-text {
    font-size: 1.1rem;
    align-self: flex-end;
    margin-bottom: 0.4rem;
}

.stats-label {
    color: var(--dark-color);
    font-size: 1.15rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-section { padding: 60px 0; }
    .stats-number { font-size: 2.2rem; }
}

/* ========== Route cards (مسارات العودة) ========== */
.route-card {
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    background: white;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
}

.route-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(26, 95, 74, 0.12);
    border-color: var(--primary-lighter);
}

.route-card .route-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

/* ========== Quick links (فئات أولوية) ========== */
.quick-link-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    padding: 24px 20px;
    background: white;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #eee;
}

.quick-link-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(26, 95, 74, 0.12);
    color: var(--primary-color);
    border-color: var(--primary-lighter);
}

.quick-link-card .card-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
}

/* ========== Contact form ========== */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.form-control {
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 95, 74, 0.15);
}

/* شريط التنسيق: خلفية بيضاء كاملة، وهامش سفلي لترك مساحة للموجة المزخرفة دون تغطية النص */
/* شريط التنسيق تم إزالته من التصميم حالياً */

/* قسم تفاصيل الخبر: مسافة واضحة بين الزر والموجة/الفوتر، وعدم قص الزر */
.section-news-detail {
    padding-bottom: 4rem;
    margin-bottom: 80px;
    overflow: visible;
}

/* ========== Footer ========== */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 50px 0 20px;
    position: relative;
    z-index: 1;
}

footer::before {
    content: '';
    position: absolute;
    top: -50px;
    right: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" opacity=".25" fill="%231a5f4a"></path><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.47,89.67-39.8c40.92-19,84.73-46,130.83-49.67c36.26-2.85,70.9,9.42,98.6,31.56c31.77,25.39,62.32,62,103.63,73c40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84c30.2,8.66,59,6.17,87.09-7.5c22.43-10.89,48-26.93,60.65-49.24V0Z" opacity=".5" fill="%231a5f4a"></path><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46c59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%231a5f4a"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
}

.footer-links h5 {
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
}

.footer-links h5::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: white;
    bottom: -8px;
    right: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-right: 6px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    margin-left: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* أيقونات التواصل في قسم تواصل معنا (خلفية فاتحة) */
#contact .social-icons a {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}
#contact .social-icons a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* ========== Back to top ========== */
.back-to-top {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 95, 74, 0.4);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-3px);
}

/* ========== Accordion (FAQ) ========== */
.accordion-button:not(.collapsed) {
    background-color: var(--primary-lighter);
    color: var(--primary-color);
    font-weight: 600;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(26, 95, 74, 0.25);
}

/* ========== Page hero (داخلي) ========== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: visible;
}

.page-hero .container {
    overflow: visible;
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.page-hero-sm {
    padding: 100px 0 48px;
}

.page-hero-sm h1 {
    font-size: clamp(1.15rem, 3.5vw, 1.75rem);
    font-weight: 700;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    margin-top: 12px;
}

/* مسار التنقل داخل الهيرو (خلفية داكنة) */
.page-hero .breadcrumb {
    background: transparent;
    padding: 0;
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.page-hero .breadcrumb-item a:hover {
    color: #fff;
    text-decoration: underline;
}

.page-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.95);
}

.page-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* ========== Alerts ========== */
.alert-accent {
    background: rgba(192, 57, 43, 0.1);
    border: 1px solid rgba(192, 57, 43, 0.3);
    color: #a93226;
    border-radius: 8px;
}

/* ========== Table ========== */
.table-responsive {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.table thead th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border: none;
    padding: 14px 16px;
}

.table tbody tr:hover {
    background: var(--primary-lighter);
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-title { font-size: 1.6rem; }
}

/* ========== Message Cards (قسم الرؤية والرعاية) ========== */
.message-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-color: #f0f0f0 !important;
}

.message-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(26, 95, 74, 0.08) !important;
    border-color: var(--primary-lighter) !important;
}

.message-card blockquote {
    line-height: 1.8;
    font-style: italic;
    font-weight: 500;
}

.avatar-placeholder {
    margin-left: 1rem !important;
    margin-right: 0 !important;
}

.bg-primary-lighter {
    background-color: var(--primary-lighter);
}

.text-gold {
    color: var(--secondary-color) !important;
}

.border-gold {
    border-color: var(--secondary-color) !important;
}

/* ========== About Section Customizations ========== */

/* صندوق البيان التأسيسي */
.doc-box {
    background: var(--primary-lighter);
    border: 1px solid rgba(26, 95, 74, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.doc-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 95, 74, 0.1);
}
.doc-bg-icon {
    font-size: 16rem;
    color: #ffffff;
    opacity: 0.6;
    top: -50px;
    left: -40px;
    line-height: 1;
    pointer-events: none;
    transform: rotate(-15deg);
}
.bg-gold {
    background-color: var(--secondary-color) !important;
}

/* نافذة البيان التأسيسي الكامل */
.foundation-modal {
    border: none;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(26, 95, 74, 0.2);
    overflow: hidden;
}
.foundation-modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a5f4a 100%);
    color: #fff;
    border-bottom: none;
    padding: 1.25rem 1.5rem;
}
.foundation-modal-header .modal-title {
    color: #fff;
    font-size:1.25rem;
}
.foundation-modal-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.foundation-modal-body {
    padding: 1.75rem 1.5rem;
    max-height: 65vh;
    overflow-y: auto;
    font-size: 1.05rem;
    line-height: 1.85;
    color: #2c3e2e;
}
/* مقدمة البيان */
.foundation-intro {
    text-align: center;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, rgba(26, 95, 74, 0.06) 0%, transparent 100%);
    border-radius: 12px;
    border: 1px solid rgba(26, 95, 74, 0.1);
}
.foundation-doctitle {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
    letter-spacing: 0.02em;
}
.foundation-subtitle {
    font-size: 0.9rem;
    color: #5a6b5e;
    margin-bottom: 0;
}
.foundation-bismillah {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    letter-spacing: 0.03em;
}
.foundation-lead {
    margin-bottom: 1.25rem;
    color: #374239;
    text-align: justify;
}
.foundation-title-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}
/* فقرات وعناوين */
.foundation-p {
    margin-bottom: 1rem;
    color: #374239;
    text-align: justify;
}
.foundation-h {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.6rem;
    padding-right: 0.75rem;
    border-right: 3px solid var(--secondary-color);
    display: inline-block;
}
/* قوائم */
.foundation-list {
    margin-bottom: 1.25rem;
    padding-right: 1.25rem;
    color: #374239;
}
.foundation-list li {
    margin-bottom: 0.4rem;
    padding-right: 0.5rem;
}
.foundation-list-dots li {
    list-style: none;
    position: relative;
}
.foundation-list-dots li::before {
    content: "▪";
    color: var(--primary-color);
    font-size: 0.85em;
    position: absolute;
    right: -1rem;
}
.foundation-list-num {
    counter-reset: item;
    list-style: none;
    padding-right: 0;
}
.foundation-list-num li {
    counter-increment: item;
    position: relative;
    padding-right: 1.75rem;
}
.foundation-list-num li::before {
    content: counter(item) ".";
    position: absolute;
    right: 0;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95em;
}
/* ختام */
.foundation-closing {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.05rem;
}
/* التوقيع */
.foundation-signature {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(26, 95, 74, 0.15);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}
.foundation-signature-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.02em;
}
.foundation-signature-title {
    font-size: 0.95rem;
    color: #5a6b5e;
    font-weight: 500;
}
.foundation-modal-body::-webkit-scrollbar {
    width: 8px;
}
.foundation-modal-body::-webkit-scrollbar-track {
    background: #f0f4f2;
    border-radius: 4px;
}
.foundation-modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-lighter);
    border-radius: 4px;
}
.foundation-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
.foundation-modal-footer {
    background: #f8faf9;
    border-top: 1px solid rgba(26, 95, 74, 0.08);
    padding: 1rem 1.5rem;
}
.foundation-modal .btn-close-white {
    filter: brightness(0) invert(1);
}

/* بطاقات الهيكل التنظيمي (الرئيسية) */
.org-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 15px;
    text-align: center;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    height: 100%;
}
.org-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(26, 95, 74, 0.08);
    border-color: var(--primary-lighter);
}
.org-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: var(--primary-lighter);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 16px;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* تمييز بطاقة رئيس اللجنة */
.org-card.president {
    border-color: rgba(212, 168, 75, 0.3);
    background: linear-gradient(to bottom, #fff, #fffdf8);
}
.org-card.president .org-avatar {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: #fff;
    box-shadow: 0 5px 15px rgba(212, 168, 75, 0.3);
}

/* بطاقات اللجان المتخصصة (الصغيرة) */
.org-card.mini {
    padding: 18px 10px;
    border-radius: 12px;
}
.org-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: var(--light-color);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
}
.org-card.mini:hover .org-icon {
    background: var(--primary-color);
    color: #fff;
}
.fs-sm {
    font-size: 0.9rem;
}

/* ========== Program Section Customizations ========== */

/* قائمة الشروط */
.condition-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #eaeaea;
}
.condition-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.condition-list li i {
    margin-left: 12px;
    margin-top: 2px;
}
.condition-list li span {
    font-weight: 500;
    color: #444;
}

/* خطوات التسجيل العمودية (Timeline) */
.step-vertical {
    position: relative;
    padding-right: 15px;
}
.step-vertical::before {
    content: '';
    position: absolute;
    top: 10px;
    bottom: 20px;
    right: 28px;
    width: 2px;
    background-color: var(--primary-lighter);
    z-index: 1;
}
.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}
.step-item:last-child {
    margin-bottom: 0;
}
.step-marker {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 0 0 5px #fff;
    margin-left: 15px;
}
.step-content {
    padding-top: 4px;
}

/* بطاقات الفئات ذات الأولوية */
.priority-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.priority-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    border-color: rgba(26, 95, 74, 0.2);
}
.p-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto;
    transition: transform 0.3s ease;
}
.priority-card:hover .p-icon {
    transform: scale(1.1) rotate(5deg);
}

/* ========== Donations ========== */

/* بطاقة الدعوة للتبرع الرئيسية */
.donation-cta-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border: 1px solid rgba(212, 168, 75, 0.4);
}
.donation-bg-shape {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 168, 75, 0.15) 0%, rgba(212, 168, 75, 0) 70%);
    top: -50px;
    right: -50px;
    border-radius: 50%;
    pointer-events: none;
}

/* بطاقات كبار الداعمين (VIP Cards) */
.donor-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 35px 20px 25px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    overflow: hidden;
}
.donor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--secondary-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.donor-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(212, 168, 75, 0.15);
    border-color: rgba(212, 168, 75, 0.4);
}
.donor-card:hover::before {
    opacity: 1;
}
.donor-medal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--secondary-color);
    opacity: 0.8;
}
.donor-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, #f8f9fa, #eef1f0);
    border: 2px solid var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.donor-card:hover .donor-avatar {
    background: var(--primary-lighter);
    color: var(--primary-dark);
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

/* ========== Transparency Page Customizations ========== */

.max-w-700 {
    max-width: 700px;
}

/* الديباجة */
.bylaws-preamble {
    background: linear-gradient(135deg, rgba(26, 95, 74, 0.08) 0%, rgba(232, 242, 238, 0.9) 100%);
    padding: 1.5rem 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(26, 95, 74, 0.12);
    border-right: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(26, 95, 74, 0.06);
}
.bylaws-preamble-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}
.bylaws-preamble-title i {
    opacity: 0.9;
}
.bylaws-preamble-text {
    font-size: 1rem;
    line-height: 1.9;
    color: #3d4a40;
    margin-bottom: 0;
}

/* جسم اللائحة داخل الأكورديون */
.bylaws-body {
    padding: 1.5rem 1.75rem;
    background: linear-gradient(180deg, #fdfdfd 0%, #f8faf9 100%);
    font-size: 1rem;
    line-height: 1.85;
    color: #374239;
}
.bylaws-article {
    padding: 1.25rem 0;
    border-bottom: 1px dashed rgba(26, 95, 74, 0.12);
}
.bylaws-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.bylaws-article:first-child {
    padding-top: 0;
}
/* عناوين المواد */
.bylaws-art-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.75rem 0;
    padding: 0.5rem 1rem 0.5rem 0;
    border-right: 4px solid var(--secondary-color);
    display: inline-block;
    background: rgba(212, 168, 75, 0.08);
    border-radius: 0 8px 8px 0;
}
.bylaws-intro {
    font-size: 0.98rem;
    color: #4a5a50;
    margin-bottom: 1rem;
    font-style: normal;
}
.bylaws-lead {
    font-size: 1rem;
    color: #3d4a40;
    margin-bottom: 0.6rem;
    font-weight: 500;
}
.bylaws-p {
    font-size: 1rem;
    color: #374239;
    margin-bottom: 1rem;
    text-align: justify;
}
.bylaws-p:last-child {
    margin-bottom: 0;
}
/* قائمة التعاريف (مصطلح: تعريف) */
.bylaws-def-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
}
.bylaws-def-list li {
    padding: 0.6rem 1rem 0.6rem 0;
    margin-bottom: 0.5rem;
    padding-right: 1.25rem;
    border-right: 3px solid var(--primary-lighter);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0 8px 8px 0;
    transition: background 0.2s ease;
}
.bylaws-def-list li:hover {
    background: rgba(232, 242, 238, 0.5);
}
.bylaws-def-list li strong {
    color: var(--primary-dark);
    margin-left: 0.35rem;
}
/* قائمة مرقمة */
.bylaws-num-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    counter-reset: bylaws-num;
}
.bylaws-num-list li {
    counter-increment: bylaws-num;
    position: relative;
    padding: 0.5rem 2.5rem 0.5rem 0;
    margin-bottom: 0.5rem;
}
.bylaws-num-list li::before {
    content: counter(bylaws-num);
    position: absolute;
    right: 0;
    top: 0.35rem;
    width: 1.75rem;
    height: 1.75rem;
    background: var(--primary-lighter);
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bylaws-num-list li:last-child {
    margin-bottom: 0;
}
/* قائمة بسيطة (نقط أو شرطات) */
.bylaws-simple-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}
.bylaws-simple-list li {
    padding: 0.4rem 1.5rem 0.4rem 0;
    margin-bottom: 0.35rem;
    position: relative;
}
.bylaws-simple-list li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.8;
}
.bylaws-simple-list li:last-child {
    margin-bottom: 0;
}

/* Accordion Styling */
.accordion-custom .accordion-item {
    background-color: #fff;
    border-color: #f0f0f0;
}
.accordion-custom .accordion-button {
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
    color: var(--primary-dark);
    background-color: #fff;
}
.accordion-custom .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: var(--primary-lighter);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}
.accordion-custom .accordion-button::after {
    margin-right: auto;
    margin-left: 0;
}
.accordion-custom .accordion-body {
    padding: 1.5rem;
    background-color: #fdfdfd;
}

/* Report Cards */
.report-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(26, 95, 74, 0.1) !important;
    border-color: var(--primary-light) !important;
}
.report-icon {
    transition: transform 0.3s ease;
}
.report-card:hover .report-icon {
    transform: scale(1.1);
}

/* بانر بوابة الشكاوى: أيقونة الدرع في الزاوية البعيدة عن الزر */
.complaints-banner-icon {
    position: absolute;
    top: 0;
    start: 0;
    font-size: 10rem;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
    padding: 1rem;
}
[dir="rtl"] .complaints-banner-icon {
    right: 0;
    left: auto;
}
[dir="ltr"] .complaints-banner-icon {
    left: 0;
    right: auto;
}

/* ========== Media Center Customizations ========== */

/* بطاقات الأخبار (News Cards) */
.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(26, 95, 74, 0.1) !important;
}
.news-img-wrap {
    height: 220px;
    overflow: hidden;
}
.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card:hover .news-img {
    transform: scale(1.08);
}
.news-card .card-title {
    line-height: 1.5;
    color: var(--primary-dark);
}

/* مكتبة الوسائط (Gallery) */
.gallery-item {
    transition: box-shadow 0.3s ease;
    cursor: pointer;
}
.gallery-item img {
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.play-btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover .play-btn {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(212, 168, 75, 0.8) !important;
}
.bg-gradient-dark {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
}

/* بطاقة المتحدث الرسمي */
.bg-primary-dark {
    background-color: var(--primary-dark);
}
.border-light {
    border-color: #fff !important;
}
.spokesperson-card-icon {
    font-size: 12rem;
    opacity: 0.2;
    bottom: -60px;
    right: -50px;
    z-index: 0;
    pointer-events: none;
}
[dir="rtl"] .spokesperson-card-icon {
    right: auto;
    left: -50px;
}
