/* ============ متغيرات التصميم ============ */
:root {
  --primary: #227ab8;
  --primary-dark: #0f172a;
  --primary-light: #2d8ed3;
  --gold: #3db65a;
  --gold-light: #4ed172;
  --dark: #0f172a;
  --gray-900: #1f2937;
  --gray-700: #4b5563;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --radius: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 6px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.14);
  --font: 'Cairo', 'Segoe UI', Tahoma, Arial, sans-serif;
  --dir-mult: 1;
}
[dir="ltr"] { --dir-mult: -1; }

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.7;
  text-align: start;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

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

.section { padding: var(--section-padding, 80px) 0; }
.section-alt { background: var(--section-alt-bg, var(--gray-50)); }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 50px;
}
.section-head .eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .5px;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}
.section-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  color: var(--primary-dark);
  margin-bottom: 14px;
}
.section-head p { color: var(--gray-500); font-size: 16px; }

/* ============ الأزرار ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; border: 2px solid var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary-dark); }
.btn-block { background: var(--primary); color: var(--white); width: 100%; justify-content: center; padding: 15px; border-radius: 8px; }
.btn-block:hover { background: var(--primary-dark); }
.btn-outline-block { background: var(--white); color: var(--primary); border: 1.5px solid var(--gray-300); width: 100%; justify-content: center; padding: 13.5px; border-radius: 8px; }
.btn-outline-block:hover { border-color: var(--primary); background: rgba(13,110,94,.06); }
.project-actions { display: flex; gap: 8px; }
.project-actions .btn { flex: 1; }
.btn-sm { padding: 9px 18px; font-size: 13px; border-radius: 8px; background: var(--primary); color: var(--white); }
.btn-sm:hover { background: var(--primary-dark); }

/* ============ الهيدر العلوي ============ */
.topbar {
  background: var(--primary-dark);
  color: #d9ece8;
  font-size: 13px;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding-top: 8px; padding-bottom: 8px; flex-wrap: wrap; gap: 8px; }
.topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-info span { display: inline-flex; align-items: center; gap: 6px; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; font-size: 12px; }
.topbar-social a:hover { background: var(--gold); color: var(--dark); }
.lang-switcher {
  position: relative; margin-inline-start: 8px; padding-inline-start: 10px;
  border-inline-start: 1px solid rgba(255,255,255,.2);
}
.lang-switcher summary {
  display: flex; align-items: center; gap: 4px; cursor: pointer; list-style: none;
  padding: 5px 10px; border-radius: 6px; font-size: 11px; font-weight: 800;
  color: rgba(255,255,255,.85); letter-spacing: .5px; background: rgba(255,255,255,.08);
}
.lang-switcher summary::-webkit-details-marker { display: none; }
.lang-switcher summary::after { content: '▾'; font-size: 9px; transition: transform .2s; }
.lang-switcher[open] summary::after { transform: rotate(180deg); }
.lang-switcher summary:hover { background: rgba(255,255,255,.16); }
.lang-dropdown-menu {
  position: absolute; top: calc(100% + 6px); inset-inline-end: 0; z-index: 200;
  background: var(--white); border-radius: 8px; box-shadow: var(--shadow-lg);
  overflow: hidden; min-width: 60px; display: flex; flex-direction: column;
}
.lang-dropdown-menu a { padding: 9px 14px; font-size: 12px; font-weight: 700; color: var(--gray-700); text-align: center; }
.lang-dropdown-menu a:hover { background: var(--gray-50); color: var(--primary); }

header.main-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--primary-dark); }
.logo img.logo-img { height: var(--logo-height, 46px); width: auto; }
.logo .logo-mark {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 20px;
}
.logo small { display: block; font-size: 11px; color: var(--gray-500); font-weight: 500; }
.footer-about .logo img.logo-img { height: calc(var(--logo-height, 46px) + 6px); }

nav.main-nav ul { display: flex; align-items: center; gap: 8px; }
nav.main-nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--gray-700);
  border-radius: 8px;
  transition: all .2s;
}
nav.main-nav a:hover, nav.main-nav a.active { color: var(--primary); background: rgba(13,110,94,.08); }

.nav-has-mega { position: relative; }
.nav-mega {
  position: absolute; top: 100%; inset-inline-start: 0; z-index: 200;
  background: var(--white); border-radius: 10px; box-shadow: var(--shadow-lg);
  padding: 8px; min-width: 170px; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s, transform .18s, visibility .18s;
}
.nav-has-mega:hover .nav-mega, .nav-has-mega:focus-within .nav-mega {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-mega a { padding: 10px 14px; font-size: 14px; font-weight: 600; color: var(--gray-700); border-radius: 6px; }
.nav-mega a:hover { background: var(--gray-50); color: var(--primary); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.menu-toggle { display: none; background: none; font-size: 26px; color: var(--primary-dark); }

@media (max-width: 960px) {
  .menu-toggle { display: block; }
  nav.main-nav {
    position: fixed; inset-block: 0; inset-inline-start: 0; inset-inline-end: auto; width: 280px; height: 100vh;
    background: var(--white); box-shadow: var(--shadow-lg);
    padding: 90px 24px 24px; transform: translateX(calc(100% * var(--dir-mult)));
    transition: transform .3s ease; z-index: 99;
  }
  nav.main-nav.open { transform: translateX(0); }
  nav.main-nav ul { flex-direction: column; gap: 4px; }
  .topbar-info span:nth-child(2) { display: none; }
}

/* ============ الهيرو ============ */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  min-height: clamp(460px, 72vh, 660px);
  width: 100%;
  border-radius: var(--banner-radius, 0px);
  border-bottom: var(--banner-border-width, 0px) solid var(--banner-border-color, transparent);
}

.hero-track {
  display: flex;
  position: absolute; inset: 0;
  transform: translateX(calc(var(--dir-mult, 1) * var(--hero-index, 0) * 100%));
  transition: transform .6s ease;
}

.hero-slide {
  position: relative; flex: 0 0 100%; width: 100%;
  min-height: clamp(460px, 72vh, 660px);
  display: flex; align-items: center;
}

.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--primary-dark), var(--primary) 60%, var(--primary-light));
  background-size: var(--banner-fit, cover);
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,20,35,.82) 0%, rgba(10,20,35,.6) 45%, rgba(10,20,35,.3) 100%);
}

.hero-slide-inner {
  position: relative; z-index: 2; max-width: 640px;
  margin-left: calc((100% - 640px) * var(--hero-pos, 85) / 100);
}
.hero-slide-inner.hero-align-right { text-align: right; }
.hero-slide-inner.hero-align-left { text-align: left; }
.hero-slide-inner.hero-align-right .hero-actions { justify-content: right; }
.hero-slide-inner.hero-align-left .hero-actions { justify-content: left; }
.hero-slide-inner.hero-align-right .hero-badge { margin-inline: auto 0; }
.hero-slide-inner.hero-align-left .hero-badge { margin-inline: 0 auto; }
.hero-slide-inner.hero-align-right p { margin-inline: auto 0; }
.hero-slide-inner.hero-align-left p { margin-inline: 0 auto; }
.hero-slide-inner.hero-align-center { text-align: center; }
.hero-slide-inner.hero-align-center .hero-actions { justify-content: center; }
.hero-slide-inner.hero-align-center .hero-badge,
.hero-slide-inner.hero-align-center p { margin-inline: auto; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); padding: 8px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 700; margin-bottom: 22px; color: var(--gold-light);
}
.hero h1 { font-size: clamp(30px, 4.5vw, 48px); font-weight: 800; line-height: 1.3; margin-bottom: 18px; }
.hero h1 span { color: var(--gold-light); }
.hero p { font-size: 17px; color: #e3f0ec; max-width: 520px; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-dots {
  position: absolute; z-index: 3; inset-inline-start: 50%; bottom: 24px;
  transform: translateX(calc(var(--dir-mult, 1) * -50%));
  display: flex; gap: 8px;
}

.hero-arrow {
  position: absolute; top: 50%; z-index: 3; transform: translateY(-50%);
  background: transparent; border: none; box-shadow: none; color: rgba(255,255,255,.65);
  font-size: 42px; line-height: 1; cursor: pointer; padding: 10px; transition: color .2s;
}
.hero-arrow:hover { color: #fff; }
.hero-arrow-prev { inset-inline-start: 14px; }
.hero-arrow-next { inset-inline-end: 14px; }

@media (max-width: 900px) {
  .hero, .hero-slide, .hero-track { min-height: 520px; }
  .hero-overlay { background: linear-gradient(180deg, rgba(10,20,35,.55) 0%, rgba(10,20,35,.85) 75%); }
  .hero-slide-inner { max-width: 100%; margin-left: 0; }
  .hero-arrow { font-size: 30px; padding: 6px; }
}
.hero-dots { display: flex; gap: 8px; margin-bottom: 26px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.3); cursor: pointer; transition: all .2s; }
.hero-dot.active { background: var(--gold-light); width: 26px; border-radius: 50px; }

/* ============ شريط الثقة / الشركاء ============ */
.trust-bar { background: var(--gray-50); border-bottom: 1px solid var(--gray-100); padding: 22px 0; }
.trust-bar .container { display: flex; justify-content: space-around; flex-wrap: wrap; gap: 18px; text-align: center; }
.trust-bar .trust-item { font-size: 13px; color: var(--gray-500); font-weight: 700; display: flex; align-items: center; gap: 8px; }
.trust-bar .trust-item b { color: var(--primary-dark); }

/* ============ بطاقات الإحصائيات ============ */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 40px; position: relative; z-index: 5;
}
.stat-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 26px 20px; text-align: center;
}
.stat-card .icon { font-size: 30px; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; }
.stat-card .icon img { width: 42px; height: 42px; object-fit: cover; border-radius: 10px; }
.stat-card strong { display: block; font-size: 28px; color: var(--primary-dark); font-weight: 800; }
.stat-card span { color: var(--gray-500); font-size: 13px; }
@media (max-width: 800px) { .stats-strip { grid-template-columns: repeat(2, 1fr); margin-top: 30px; } }

/* ============ عن الجمعية ============ */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.about-visual {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 20px; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center;
  font-size: 120px; color: rgba(255,255,255,.9); position: relative; overflow: hidden;
}
.about-visual::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 70% 20%, rgba(201,162,39,.4), transparent 50%); }
.about-list { display: grid; gap: 16px; margin-top: 24px; }
.about-list li { display: flex; gap: 14px; align-items: flex-start; }
.about-list .chk {
  width: 30px; height: 30px; min-width: 30px; border-radius: 50%;
  background: rgba(13,110,94,.1); color: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 800;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

/* ============ المجالات / البرامج ============ */
.programs-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.program-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 30px 24px; box-shadow: var(--shadow-sm); transition: all .25s;
}
.program-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.program-card .icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(13,110,94,.1); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px;
}
.program-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--gray-900); }
.program-card p { font-size: 14px; color: var(--gray-500); margin-bottom: 14px; }
.program-card .more { font-size: 13px; font-weight: 700; color: var(--primary); }
@media (max-width: 1000px) { .programs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .programs-grid { grid-template-columns: 1fr; } }

/* ============ المشاريع ============ */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.project-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: all .25s;
}
.project-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.project-cover {
  height: 220px; display: flex; align-items: center; justify-content: center; font-size: 56px; color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  position: relative; transition: transform .15s ease-out; will-change: transform;
}
.project-cover .tag {
  position: absolute; top: 14px; inset-inline-start: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(4px);
  color: var(--primary-dark); font-size: 12px; font-weight: 700; padding: 7px 14px 7px 10px; border-radius: 50px;
  box-shadow: var(--shadow-sm);
}
.project-body { padding: 20px; }
.project-body h3 { font-size: 17px; margin-bottom: 8px; }
.project-desc {
  font-size: 13px; color: var(--gray-500); margin-bottom: 14px; line-height: 1.7;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.price-box {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--gray-50); border-radius: 10px; padding: 14px 16px; margin-bottom: 16px;
}
.price-box .price-label-text { font-size: 13px; color: var(--gray-500); font-weight: 600; }
.price-box .price-amount { font-size: 22px; font-weight: 800; color: var(--gold); }
.btn-donate { background: var(--gold); color: var(--white); width: 100%; justify-content: center; padding: 13.5px; border-radius: 8px; }
.btn-donate:hover { background: var(--gold-light); }
.btn-viewmore { background: var(--primary); color: var(--white); width: 100%; justify-content: center; padding: 13.5px; border-radius: 8px; }
.btn-viewmore:hover { background: var(--primary-dark); }
@media (max-width: 1000px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .projects-grid { grid-template-columns: 1fr; } }

/* ============ صفحة تفاصيل المشروع الموسّعة ============ */
.project-detail-top { display: flex; gap: 40px; align-items: flex-start; margin-bottom: 10px; }
.project-detail-image { flex: 0 0 300px; }
.project-detail-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.project-detail-icon {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius); font-size: 70px; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
}
.project-detail-content { flex: 1; min-width: 0; }
.project-detail-content h1 { font-size: 28px; margin: 14px 0 12px; color: var(--gray-900); }
.project-detail-content p { color: var(--gray-500); font-size: 15px; line-height: 1.9; }
@media (max-width: 760px) {
  .project-detail-top { flex-direction: column; }
  .project-detail-image { flex-basis: auto; width: 100%; }
}

.detail-block { margin: 30px 0; padding-top: 22px; border-top: 1px solid var(--gray-100); }
.detail-block h3 { font-size: 17px; color: var(--primary-dark); margin-bottom: 12px; }
.detail-block p { color: var(--gray-700); font-size: 15px; line-height: 1.9; }
.detail-list { padding-inline-start: 20px; display: grid; gap: 8px; }
.detail-list li { color: var(--gray-700); font-size: 15px; line-height: 1.7; }

.budget-table { width: 100%; border-collapse: collapse; margin-top: 6px; min-width: 480px; }
.budget-table th { background: linear-gradient(120deg, var(--primary), var(--gold)); color: #fff; font-size: 13px; font-weight: 700; padding: 12px 14px; text-align: center; }
.budget-table th:first-child { border-start-start-radius: 10px; border-end-start-radius: 10px; }
.budget-table th:last-child { border-start-end-radius: 10px; border-end-end-radius: 10px; }
.budget-table td { padding: 12px 14px; text-align: center; font-size: 14px; color: var(--gray-700); border-bottom: 1px solid var(--gray-100); }
.budget-table td:first-child { text-align: start; font-weight: 700; color: var(--gray-900); }

.detail-summary-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.summary-card {
  display: flex; align-items: flex-start; gap: 14px; background: var(--gray-50);
  border-radius: var(--radius); padding: 18px 20px;
}
.summary-card .summary-icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: 10px; background: rgba(34,122,184,.1);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.summary-card h4 { font-size: 14px; margin-bottom: 4px; color: var(--gray-900); }
.summary-card p { font-size: 13px; color: var(--gray-500); }
@media (max-width: 600px) { .detail-summary-cards { grid-template-columns: 1fr; } }

/* ============ نداء التبرع (CTA) ============ */
.cta-band {
  background: linear-gradient(120deg, var(--gold), var(--gold-light));
  border-radius: 24px; padding: 50px; text-align: center; color: var(--dark);
  position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(24px, 3.5vw, 32px); margin-bottom: 12px; }
.cta-band p { max-width: 560px; margin: 0 auto 26px; color: #4a3c08; }
.cta-band .btn-primary { background: var(--dark); color: var(--white); }
.cta-band .btn-primary:hover { background: var(--primary-dark); }

/* ============ بلوكات مخصصة جاهزة (صورة+نص / اقتباس) ============ */
.custom-block-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.custom-block-split.reverse { grid-template-columns: 1.1fr 1fr; }
.custom-block-split.reverse .custom-block-media { order: 2; }
.custom-block-split.reverse .custom-block-text { order: 1; }
.custom-block-media { border-radius: var(--radius, 16px); overflow: hidden; box-shadow: var(--shadow-md); }
.custom-block-img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.custom-block-text .eyebrow { display: block; margin-bottom: 10px; }
.custom-block-text h2 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 14px; }
.custom-block-text p { color: var(--gray-500); margin-bottom: 20px; line-height: 1.9; }
@media (max-width: 900px) {
  .custom-block-split, .custom-block-split.reverse { grid-template-columns: 1fr; }
  .custom-block-split.reverse .custom-block-media, .custom-block-split.reverse .custom-block-text { order: unset; }
}

.custom-block-quote { max-width: 720px; margin: 0 auto; text-align: center; }
.custom-block-quote .quote-mark { font-size: 70px; line-height: 1; color: var(--gold); font-family: Georgia, serif; display: block; margin-bottom: 6px; }
.custom-block-quote .quote-text { font-size: clamp(18px, 2.4vw, 24px); color: var(--gray-900); line-height: 1.8; margin-bottom: 18px; }
.custom-block-quote .quote-author { display: block; font-size: 16px; color: var(--primary); }
.custom-block-quote .quote-role { display: block; font-size: 13px; color: var(--gray-500); margin-top: 4px; }

/* ============ نموذج التبرع ============ */
.donate-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.donate-amounts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 18px 0 24px; }
.amount-btn {
  padding: 16px 10px; border-radius: 10px; border: 2px solid var(--gray-100);
  background: var(--white); font-weight: 800; font-size: 16px; color: var(--gray-900); transition: all .2s;
}
.amount-btn.active, .amount-btn:hover { border-color: var(--primary); background: rgba(13,110,94,.06); color: var(--primary-dark); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--gray-700); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px; border-radius: 8px; border: 1.5px solid var(--gray-300);
  font-family: inherit; font-size: 14px; background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.phone-input-group { display: flex; gap: 8px; }
.phone-input-group .phone-code-select { flex: 0 0 108px; width: 108px; padding-inline: 8px; }
.phone-input-group input { flex: 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.donate-info-card {
  background: var(--primary-dark); color: var(--white); border-radius: var(--radius);
  padding: 32px; position: sticky; top: 100px;
}
.donate-info-card h3 { color: var(--gold-light); margin-bottom: 16px; font-size: 19px; }
.donate-info-card ul { display: grid; gap: 14px; margin-bottom: 20px; }
.donate-info-card li { display: flex; gap: 10px; font-size: 14px; color: #dcece7; align-items: flex-start; }
.pay-methods { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.pay-methods span { background: rgba(255,255,255,.12); padding: 8px 14px; border-radius: 8px; font-size: 12px; }
@media (max-width: 900px) { .donate-wrap { grid-template-columns: 1fr; } .donate-info-card { position: static; } }

/* ============ كفالة الأيتام ============ */
.orphans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.orphan-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); transition: all .25s; padding: 26px 22px; text-align: center;
}
.orphan-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.orphan-avatar-wrap { position: relative; width: 96px; height: 96px; margin: 0 auto 16px; }
.orphan-avatar {
  width: 100%; height: 100%; border-radius: 50%; overflow: hidden;
  background: var(--gray-100) center/cover no-repeat;
  display: flex; align-items: center; justify-content: center; font-size: 38px; color: var(--gray-500);
  transition: transform .15s ease-out; will-change: transform;
}
.orphan-badge {
  position: absolute; bottom: -2px; inset-inline-end: -10px; background: var(--gold); color: #fff;
  font-size: 10px; font-weight: 800; padding: 4px 10px; border-radius: 50px; white-space: nowrap; box-shadow: var(--shadow-sm);
}
.orphan-badge-needed { background: #dc2626; }
.orphan-body h3 { font-size: 16px; margin-bottom: 2px; }
.orphan-age { font-size: 12px; color: var(--gray-500); font-weight: 600; }
.orphan-body p { font-size: 13px; color: var(--gray-500); margin: 12px 0; line-height: 1.7; text-align: start; }
.orphan-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--gray-100); }
.orphan-price { font-size: 11px; color: var(--gray-500); text-align: start; }
.orphan-price strong { display: block; color: var(--primary-dark); font-size: 15px; font-weight: 800; }
.orphan-footer .btn { padding: 9px 16px; font-size: 12.5px; white-space: nowrap; }
@media (max-width: 1000px) { .orphans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .orphans-grid { grid-template-columns: 1fr; } }

/* ============ صفحة كفالة الأيتام (هيرو) ============ */
.kafala-hero {
  position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(135deg, #0a2e1c, #123822) center/cover;
  padding-bottom: 40px;
}
.kafala-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,30,20,.55) 0%, rgba(10,30,20,.75) 70%, rgba(10,30,20,.92) 100%);
}
.kafala-hero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; text-align: center; padding: 90px 20px 50px; }
.kafala-hero-inner .hero-badge {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.12);
  padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 700; margin-bottom: 22px; color: var(--gold-light);
}
.kafala-hero-inner h1 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; line-height: 1.5; margin-bottom: 18px; }
.kafala-hero-inner h1 .gold { color: var(--gold-light); }
.kafala-hero-inner p { font-size: 15px; color: #d8e6de; line-height: 1.9; margin-bottom: 30px; }
.kafala-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.kafala-hero-stats {
  position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 22px 10px;
  max-width: 920px; margin: 0 auto;
}
.kafala-stat { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.kafala-stat .k-icon { font-size: 20px; margin-bottom: 4px; }
.kafala-stat strong { font-size: 24px; font-weight: 800; color: var(--primary-dark); }
.kafala-stat span { font-size: 12px; color: var(--gray-500); }
@media (max-width: 700px) { .kafala-hero-stats { grid-template-columns: repeat(2, 1fr); } }

/* ============ خطط الكفالة ============ */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.plan-card {
  position: relative; background: var(--white); border: 1.5px solid var(--gray-100); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); text-align: center;
}
.plan-featured { border-color: var(--gold); box-shadow: var(--shadow-lg); transform: scale(1.03); }
.plan-badge {
  position: absolute; top: -14px; inset-inline-start: 50%; transform: translateX(50%);
  background: var(--gold); color: #fff; font-size: 12px; font-weight: 800; padding: 6px 16px; border-radius: 50px;
}
.plan-card h3 { font-size: 18px; margin-bottom: 10px; }
.plan-price { font-size: 34px; font-weight: 800; color: var(--primary-dark); margin-bottom: 22px; }
.plan-price span { display: block; font-size: 13px; font-weight: 600; color: var(--gray-500); margin-top: 2px; }
.plan-features { text-align: start; display: grid; gap: 12px; margin-bottom: 26px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--gray-700); }
@media (max-width: 900px) { .plans-grid { grid-template-columns: 1fr; } .plan-featured { transform: none; } }

/* ============ كيف تكفل يتيماً (خطوات) ============ */
.how-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.how-step { text-align: center; }
.how-step-num {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 50%; background: var(--primary); color: #fff; font-size: 18px; font-weight: 800; margin-bottom: 16px;
}
.how-step h4 { font-size: 15px; margin-bottom: 8px; }
.how-step p { font-size: 13px; color: var(--gray-500); line-height: 1.7; }
@media (max-width: 900px) { .how-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .how-steps { grid-template-columns: 1fr; } }

/* ============ أرقام تتحدث (شريط أخضر) ============ */
.kafala-stats2 { background: linear-gradient(120deg, #123822, #1d5936); color: #fff; padding: var(--section-padding, 80px) 0; }
.kafala-stats2 .section-head h2 { color: #fff; }
.kafala-stats2 .section-head p { color: #cfe8de; }
.kafala-stats2-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 20px; }
.kafala-stat2 {
  background: rgba(255,255,255,.08); border-radius: var(--radius); padding: 26px 16px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.kafala-stat2 .k2-icon { font-size: 24px; }
.kafala-stat2 strong { font-size: 26px; font-weight: 800; color: var(--gold-light); }
.kafala-stat2 span { font-size: 12px; color: #cfe8de; }
@media (max-width: 700px) { .kafala-stats2-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ لماذا الكفالة ============ */
.why-kafala-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; }
.why-kafala-grid h2 { font-size: 28px; color: var(--primary-dark); margin: 10px 0 8px; }
.why-kafala-grid .why-subtitle { font-weight: 700; color: var(--gray-900); margin-bottom: 14px; }
.why-kafala-grid > div > p { color: var(--gray-500); margin-bottom: 20px; }
.why-kafala-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-md); }
@media (max-width: 900px) { .why-kafala-grid { grid-template-columns: 1fr; } }

.kafelni-btn {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 18px; border-radius: 50px; background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: #fff; font-weight: 800; font-size: 13px; overflow: visible;
}
.kafelni-btn .pulse-ring {
  position: absolute; inset: -3px; border-radius: 50px; border: 2px solid rgba(255,75,43,.5);
  animation: kafelniPulse 2s infinite;
}
@keyframes kafelniPulse {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(1.08); opacity: 0; }
  100% { transform: scale(1.1); opacity: 0; }
}

/* ============ الفيديوهات ============ */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.video-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.video-embed { position: relative; width: 100%; aspect-ratio: 16/9; background: var(--gray-900); cursor: pointer; overflow: hidden; transition: transform .15s ease-out; will-change: transform; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.video-embed:hover img { transform: scale(1.05); }
.video-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.92); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  box-shadow: var(--shadow-lg); transition: all .2s;
}
.video-embed:hover .video-play-btn { background: var(--gold); color: var(--dark); transform: translate(-50%, -50%) scale(1.08); }
.video-body { padding: 18px 20px; }
.video-body h3 { font-size: 16px; margin-bottom: 8px; }
.video-body p { font-size: 13px; color: var(--gray-500); }
@media (max-width: 1000px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .video-grid { grid-template-columns: 1fr; } }

/* ============ الأخبار ============ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.news-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all .25s; }
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.news-cover { height: 150px; background: linear-gradient(135deg, var(--gray-900), var(--primary-dark)); display: flex; align-items: center; justify-content: center; font-size: 46px; color: var(--gold-light); transition: transform .15s ease-out; will-change: transform; }
.news-body { padding: 20px; }
.news-date { font-size: 12px; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.news-body h3 { font-size: 16px; margin-bottom: 10px; }
.news-body p { font-size: 13px; color: var(--gray-500); }
@media (max-width: 1000px) { .news-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .news-grid { grid-template-columns: 1fr; } }

/* ============ الشهادات ============ */
.testimonial-card {
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 30px; text-align: center; max-width: 720px; margin: 0 auto;
}
.testimonial-card .quote-mark { font-size: 40px; color: var(--gold); font-weight: 800; }
.testimonial-card p { font-size: 17px; color: var(--gray-700); margin: 10px 0 20px; }
.testimonial-card strong { color: var(--primary-dark); }

/* ============ النشرة البريدية ============ */
.newsletter { background: var(--primary-dark); color: var(--white); padding: 50px 0; }
.newsletter .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.newsletter h3 { font-size: 20px; margin-bottom: 6px; }
.newsletter p { color: #cfe8e1; font-size: 14px; }
.newsletter form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter input { padding: 13px 18px; border-radius: 50px; border: none; min-width: 260px; font-family: inherit; }

/* ============ الفوتر ============ */
footer.main-footer { background: var(--dark); color: #b9c7c4; padding: 70px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer-grid h4 { color: var(--white); font-size: 16px; margin-bottom: 20px; }
.footer-grid ul { display: grid; gap: 12px; }
.footer-grid ul a:hover { color: var(--gold-light); }
.footer-about p { font-size: 14px; margin: 16px 0; color: #a3b3af; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { background: var(--gold); color: var(--dark); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-col h4 { font-size: calc(16px * var(--footer-col-scale, 1)); margin-bottom: calc(20px * var(--footer-col-scale, 1)); }
.footer-col ul { gap: calc(12px * var(--footer-col-scale, 1)); }
.footer-col ul a, .footer-col .footer-contact li { font-size: calc(14px * var(--footer-col-scale, 1)); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; text-align: center; font-size: 13px; color: #8ba09b; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============ صفحات داخلية - رأس الصفحة ============ */
.page-hero {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  color: var(--white); padding: 60px 0; text-align: center;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 10px; }
.breadcrumb { font-size: 14px; color: #cfe8e1; }
.breadcrumb a { color: var(--gold-light); font-weight: 700; }

/* ============ نموذج تواصل ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-cards { display: grid; gap: 16px; }
.contact-info-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); padding: 22px; display: flex; gap: 16px; align-items: flex-start; box-shadow: var(--shadow-sm); }
.contact-info-card .icon { width: 48px; height: 48px; min-width: 48px; border-radius: 12px; background: rgba(13,110,94,.1); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.contact-info-card h4 { margin-bottom: 4px; }
.contact-info-card p { color: var(--gray-500); font-size: 14px; }
.map-box { margin-top: 20px; border-radius: var(--radius); overflow: hidden; height: 220px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; color: var(--gray-500); font-size: 14px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============ صفحة تواصل معنا (هيرو) ============ */
.contact-hero { text-align: center; padding: 70px 0 50px; background: var(--gray-50); }
.contact-hero .btn-outline { border-color: var(--primary); color: var(--primary); }
.contact-hero .btn-outline:hover { background: var(--primary); color: var(--white); }
.contact-hero-badge { background: rgba(13,110,94,.08); color: var(--primary); margin-bottom: 20px; }
.contact-hero h1 { font-size: clamp(26px, 4vw, 36px); color: var(--primary-dark); margin-bottom: 14px; }
.contact-hero h1 span { color: var(--gold); }
.contact-hero > .container > p { max-width: 600px; margin: 0 auto 22px; color: var(--gray-500); font-size: 15px; line-height: 1.8; }
.contact-hero-pills { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 26px; }
.contact-pill {
  display: inline-flex; align-items: center; gap: 6px; background: var(--white); border: 1px solid var(--gray-100);
  padding: 8px 16px; border-radius: 50px; font-size: 12.5px; font-weight: 700; color: var(--gray-700); box-shadow: var(--shadow-sm);
}
.contact-hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.contact-stats2 { background: linear-gradient(120deg, #123822, #1d5936); padding: 34px 0; }
.contact-stats2-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 700px) { .contact-stats2-grid { grid-template-columns: repeat(2, 1fr); } }

.card-plain h2, .direct-contact-card h2 { font-size: 22px; margin-bottom: 8px; }
.card-plain { color: var(--primary-dark); }
.direct-contact-card {
  background: linear-gradient(160deg, #123822, #0f2c1c); color: #fff; border-radius: var(--radius);
  padding: 34px 28px; box-shadow: var(--shadow-md);
}
.direct-contact-card h2 { color: #fff; }
.direct-contact-card > p { color: #cfe8de; font-size: 14px; margin-bottom: 24px; }
.direct-contact-list { display: grid; gap: 18px; margin-bottom: 24px; }
.direct-contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.direct-contact-list .dc-icon {
  width: 38px; height: 38px; min-width: 38px; border-radius: 10px; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; color: var(--gold-light);
}
.direct-contact-list h4 { font-size: 13px; color: #cfe8de; margin-bottom: 2px; font-weight: 600; }
.direct-contact-list p { font-size: 14px; font-weight: 700; }
.direct-contact-chat {
  display: flex; align-items: center; gap: 14px; background: rgba(255,255,255,.1); border-radius: 12px;
  padding: 16px 18px; color: #fff; transition: background .2s;
}
.direct-contact-chat:hover { background: rgba(255,255,255,.18); }
.direct-contact-chat strong { display: block; font-size: 14px; }
.direct-contact-chat small { display: block; font-size: 12px; color: #cfe8de; margin-top: 2px; }

.find-us-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.find-us-card {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius); box-shadow: var(--shadow-sm);
  padding: 22px 16px; text-align: center; transition: all .2s; color: inherit;
}
.find-us-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.find-us-card .fu-icon {
  width: 42px; height: 42px; margin: 0 auto 12px; border-radius: 10px; background: rgba(13,110,94,.1); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.find-us-card h4 { font-size: 14px; margin-bottom: 4px; }
.find-us-card p { font-size: 12px; color: var(--gray-500); }
@media (max-width: 900px) { .find-us-grid { grid-template-columns: repeat(2, 1fr); } }

.map-section { background: linear-gradient(120deg, var(--primary-dark), var(--primary)); color: #fff; padding: 40px 0 0; text-align: center; }
.map-section h2 { font-size: 22px; margin-bottom: 8px; }
.map-section p { color: #cfe8de; font-size: 14px; margin-bottom: 30px; }
.map-embed { width: 100%; height: 380px; border: 0; display: block; }
.map-embed-placeholder { background: var(--gray-100); display: flex; align-items: center; justify-content: center; }
.map-embed-placeholder a { color: var(--primary); font-weight: 700; font-size: 15px; }

/* ============ صفحة عن الجمعية - القيم ============ */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { text-align: center; padding: 30px 20px; border-radius: var(--radius); background: var(--white); border: 1px solid var(--gray-100); box-shadow: var(--shadow-sm); }
.value-card .icon { font-size: 34px; margin-bottom: 14px; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  text-align: center; background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 28px 18px; box-shadow: var(--shadow-sm); transition: all .25s;
}
.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.team-avatar {
  width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--white);
}
.team-card h4 { font-size: 15px; margin-bottom: 6px; }
.team-card span { font-size: 13px; color: var(--gray-500); }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ صفحة عن الجمعية - القصة ============ */
.about-story-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.about-images-stack { position: relative; }
.about-img-main { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.about-img-main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.about-img-tag {
  position: absolute; top: 14px; inset-inline-start: 14px; background: rgba(255,255,255,.95);
  color: var(--primary-dark); font-size: 12px; font-weight: 700; padding: 7px 14px; border-radius: 50px; box-shadow: var(--shadow-sm);
  max-width: calc(100% - 28px);
}
.about-img-secondary {
  position: relative; width: 62%; margin: -50px 0 0 auto; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 4px solid var(--white);
}
[dir="rtl"] .about-img-secondary { margin: -50px auto 0 0; }
.about-img-secondary img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.about-img-caption {
  position: absolute; top: 10px; inset-inline-start: 10px; background: var(--gold); color: #fff;
  font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 50px; z-index: 2;
}
.about-story-title { font-size: clamp(24px, 3vw, 30px); color: var(--primary-dark); line-height: 1.5; margin: 10px 0 16px; }
.about-story-title .gold-line { display: block; color: var(--gold); }
.about-stat-boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.about-stat-box {
  text-align: center; background: var(--gray-50); border-radius: var(--radius); padding: 18px 10px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.about-stat-box .icon { font-size: 20px; }
.about-stat-box strong { font-size: 20px; font-weight: 800; color: var(--primary-dark); }
.about-stat-box span { font-size: 11px; color: var(--gray-500); }
@media (max-width: 900px) {
  .about-story-grid { grid-template-columns: 1fr; }
  .about-images-stack { margin-bottom: 40px; }
}

.value-card-featured { background: rgba(34,122,184,.06); border-color: var(--primary); }
.value-card-featured .icon { color: var(--primary); }
.value-card-featured h3 { color: var(--primary-dark); }
.value-card-featured p { color: var(--primary-dark) !important; opacity: .75; }

.about-dark-stats { background: var(--primary-dark); padding: 50px 0; }
.about-dark-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.about-dark-stat { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.about-dark-stat .icon { font-size: 24px; }
.about-dark-stat strong { font-size: 28px; font-weight: 800; color: var(--gold-light); }
.about-dark-stat span { font-size: 12px; color: #cbd5e1; }
@media (max-width: 700px) { .about-dark-stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ تايم لاين ============ */
.timeline { position: relative; padding-inline-start: 30px; border-inline-start: 3px solid var(--gray-100); display: grid; gap: 34px; }
.timeline-item { position: relative; }
.timeline-item::before { content: ""; position: absolute; inset-inline-start: -39px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--gold); border: 3px solid var(--white); box-shadow: 0 0 0 3px var(--gold); }
.timeline-item strong { color: var(--primary-dark); display: block; margin-bottom: 4px; }
.timeline-item span.year { color: var(--gold); font-weight: 800; font-size: 13px; }

/* ============ عدّاد فرعي / شريط تبرع سريع ============ */
.quick-donate-bar { position: fixed; bottom: 18px; inset-inline-end: 18px; z-index: 90; }
.quick-donate-bar a {
  display: flex; align-items: center; gap: 8px; background: var(--gold); color: var(--dark);
  padding: 14px 22px; border-radius: 50px; font-weight: 800; box-shadow: var(--shadow-lg);
}
.quick-donate-bar a:hover { background: var(--gold-light); }

.back-to-top {
  position: fixed; bottom: 18px; inset-inline-start: 18px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%; border: none;
  background: var(--primary); color: #fff; font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity .25s, transform .25s, background .2s;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); }

/* ============ الشريط الجانبي لفلاتر المشاريع ============ */
.projects-layout { display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: start; }
.filter-sidebar {
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 22px; position: sticky; top: 100px;
}
.filter-group { margin-bottom: 26px; }
.filter-group:last-child { margin-bottom: 0; }
.project-status-section { margin-bottom: 40px; }
.project-status-section:last-child { margin-bottom: 0; }
.project-status-heading {
  font-size: 19px; font-weight: 800; color: var(--primary-dark);
  margin-bottom: 18px; padding-bottom: 12px; border-bottom: 2px solid var(--gray-100);
}
.filter-group h4 { font-size: 14px; margin-bottom: 12px; color: var(--primary-dark); }
.filter-checkbox {
  display: flex; align-items: center; gap: 9px; padding: 8px 0;
  font-size: 14px; color: var(--gray-700); cursor: pointer; user-select: none;
}
.filter-checkbox input { width: 18px; height: 18px; accent-color: var(--primary); cursor: pointer; flex-shrink: 0; }
.filter-checkbox:hover { color: var(--primary); }
.status-flag {
  position: absolute; top: 14px; inset-inline-end: 14px; width: fit-content; height: fit-content;
  font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 50px; color: #fff;
}
.status-flag-urgent { background: #dc2626; }
@media (max-width: 900px) {
  .projects-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .filter-group { display: inline-block; margin-inline-end: 20px; vertical-align: top; }
}

/* عام */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.two-col-text { columns: 2; column-gap: 40px; }
@media (max-width: 800px) { .two-col-text { columns: 1; } }

@media (max-width: 1000px) {
  .stats-strip, .about-grid { gap: 16px; }
}

/* ============ صفحة حسابنا البنكي ============ */
.bank-transfer-intro { text-align: center; color: var(--gray-500); font-size: 15px; max-width: 620px; margin: 0 auto 34px; line-height: 1.9; }
.bank-fields-grid { display: grid; gap: 14px; margin-bottom: 30px; }
.bank-field-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius);
  padding: 16px 18px; box-shadow: var(--shadow-sm); transition: box-shadow .2s;
}
.bank-field-card:hover { box-shadow: var(--shadow-md); }
.bank-field-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  color: #fff; display: flex; align-items: center; justify-content: center;
}
.bank-field-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.bank-field-label { font-size: 11.5px; font-weight: 800; letter-spacing: .4px; color: var(--primary); text-transform: uppercase; }
.bank-field-value { font-size: 15px; font-weight: 700; color: var(--gray-900); word-break: break-all; }
.bank-copy-btn {
  width: 40px; height: 40px; min-width: 40px; border-radius: 10px;
  background: var(--gray-50); border: 1px solid var(--gray-100); color: var(--gray-700);
  display: flex; align-items: center; justify-content: center; transition: all .2s;
}
.bank-copy-btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.bank-copy-btn .copy-icon-done { display: none; }
.bank-copy-btn.copied { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.bank-copy-btn.copied .copy-icon-default { display: none; }
.bank-copy-btn.copied .copy-icon-done { display: flex; }

.bank-info-card {
  border: 2px dashed var(--gray-300); border-radius: var(--radius); padding: 26px 24px; margin-bottom: 26px;
}
.bank-info-card h3 { font-size: 17px; color: var(--primary-dark); margin-bottom: 16px; }
.bank-info-rows { display: grid; gap: 12px; }
.bank-info-row { display: flex; align-items: center; justify-content: space-between; gap: 14px; font-size: 14px; padding: 10px 0; border-bottom: 1px solid var(--gray-100); }
.bank-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.bank-info-row span { color: var(--gray-500); }
.bank-info-row strong { color: var(--gray-900); text-align: end; }

.bank-transfer-note { text-align: center; color: var(--gray-500); font-size: 14px; max-width: 560px; margin: 0 auto; line-height: 1.8; }
@media (max-width: 560px) {
  .bank-field-card { flex-wrap: wrap; }
  .bank-info-row { flex-direction: column; align-items: flex-start; gap: 4px; }
  .bank-info-row strong { text-align: start; }
}

/* ============ صفحة التطوع الجديدة ============ */
.vol-carousel-wrap { position: relative; max-width: 820px; margin: 0 auto; padding: 20px 70px 60px; }
.vol-carousel-track { position: relative; height: 260px; }
.vol-carousel-card {
  position: absolute; top: 50%; left: 50%; width: 260px; padding: 34px 26px;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md);
  text-align: center; cursor: pointer; transition: transform .45s ease, opacity .45s ease, filter .45s ease, box-shadow .45s ease;
  transform: translate(-50%, -50%) scale(.8); opacity: 0; filter: blur(2px); z-index: 1; pointer-events: none;
}
.vol-carousel-card .icon {
  width: 60px; height: 60px; margin: 0 auto 16px; border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--gold)); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.vol-carousel-card h3 { font-size: 17px; margin-bottom: 8px; color: var(--gray-900); }
.vol-carousel-card p { font-size: 13.5px; color: var(--gray-500); line-height: 1.7; }
.vol-carousel-card.active {
  transform: translate(-50%, -50%) scale(1); opacity: 1; filter: none; z-index: 3;
  box-shadow: var(--shadow-lg); pointer-events: auto; cursor: default;
}
.vol-carousel-card.prev, .vol-carousel-card.next {
  opacity: .55; filter: blur(1px); z-index: 2; pointer-events: auto;
}
.vol-carousel-card.prev { transform: translate(calc(-50% + var(--dir-mult, 1) * 220px), -50%) scale(.82); }
.vol-carousel-card.next { transform: translate(calc(-50% + var(--dir-mult, 1) * -220px), -50%) scale(.82); }
.vol-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 44px; height: 44px; border-radius: 50%; background: var(--white); border: 1px solid var(--gray-100);
  color: var(--primary-dark); font-size: 22px; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); cursor: pointer; transition: all .2s;
}
.vol-carousel-arrow:hover { background: var(--primary); color: #fff; }
.vol-carousel-prev { left: 0; }
.vol-carousel-next { right: 0; }
.vol-carousel-dots { position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; }
.vol-carousel-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--gray-300); cursor: pointer; transition: all .2s; }
.vol-carousel-dot.active { background: var(--gold); width: 24px; border-radius: 50px; }
@media (max-width: 640px) {
  .vol-carousel-wrap { padding: 20px 46px 56px; }
  .vol-carousel-card { width: 200px; padding: 26px 18px; }
  .vol-carousel-card.prev { transform: translate(calc(-50% + var(--dir-mult, 1) * 150px), -50%) scale(.8); }
  .vol-carousel-card.next { transform: translate(calc(-50% + var(--dir-mult, 1) * -150px), -50%) scale(.8); }
  .vol-carousel-arrow { width: 36px; height: 36px; font-size: 18px; }
}
.vol-form-wrapper {
  max-width: 950px; margin: 0 auto; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); overflow: hidden; display: grid; grid-template-columns: 320px 1fr;
}
.vol-form-side { background: var(--primary-dark); color: #fff; padding: 44px 32px; }
.vol-form-side .icon { font-size: 36px; color: var(--gold-light); margin-bottom: 18px; }
.vol-form-side h3 { font-size: 21px; font-weight: 800; margin-bottom: 12px; line-height: 1.5; }
.vol-form-side p { color: #cfe8de; font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.vol-form-side ul { display: grid; gap: 12px; }
.vol-form-side ul li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: #dcece7; }
.vol-form-side ul li .chk { color: var(--gold-light); font-weight: 800; }
.vol-form-body { padding: 40px; }
@media (max-width: 800px) { .vol-form-wrapper { grid-template-columns: 1fr; } }

.vol-success-modal {
  display: none; position: fixed; inset: 0; background: rgba(15,23,42,.6); z-index: 300;
  align-items: center; justify-content: center; padding: 20px;
}
.vol-success-modal.active { display: flex; }
.vol-success-box { background: var(--white); border-radius: var(--radius); max-width: 440px; width: 100%; padding: 40px 30px; text-align: center; box-shadow: var(--shadow-lg); }
.vol-success-icon {
  width: 76px; height: 76px; margin: 0 auto 20px; border-radius: 50%; background: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 32px; color: var(--dark);
}
.vol-success-box h3 { font-size: 20px; font-weight: 800; color: var(--primary-dark); margin-bottom: 10px; }
.vol-success-box p { color: var(--gray-500); font-size: 14.5px; line-height: 1.8; margin-bottom: 22px; }

/* ============ تقرير المشروع المنجز ============ */
.report-hero { position: relative; height: 420px; overflow: hidden; }
.report-hero[style] { background-size: cover; background-position: center; }
.report-hero-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px; background: linear-gradient(to top, rgba(10,20,15,.88) 0%, rgba(10,20,15,.5) 55%, rgba(10,20,15,.15) 100%);
}
.report-badge {
  display: inline-flex; align-items: center; gap: 6px; background: var(--gold); color: var(--dark);
  font-size: 13px; font-weight: 800; padding: 6px 16px; border-radius: 50px; margin-bottom: 16px; width: fit-content;
}
.report-hero-overlay h1 { color: #fff; font-size: clamp(24px, 4vw, 40px); font-weight: 900; margin: 0 0 10px; line-height: 1.3; }
.report-hero-overlay p { color: rgba(255,255,255,.88); font-size: 15px; margin: 0; }
@media (max-width: 700px) { .report-hero { height: 300px; } .report-hero-overlay { padding: 22px; } }

.report-layout { display: grid; grid-template-columns: 1fr 340px; gap: 32px; max-width: 1200px; margin: 44px auto; padding: 0 20px 60px; }
@media (max-width: 900px) { .report-layout { grid-template-columns: 1fr; } }

.report-main section { margin-bottom: 36px; }
.report-main section:last-child { margin-bottom: 0; }
.report-main h2 {
  font-size: 19px; font-weight: 800; color: var(--primary-dark);
  border-inline-start: 4px solid var(--gold); padding-inline-start: 12px; margin-bottom: 16px;
}
.report-main p { font-size: 15.5px; line-height: 2; color: var(--gray-700); }

.report-partner-badge {
  display: inline-flex; align-items: center; gap: 8px; background: var(--gray-50); color: var(--primary);
  padding: 7px 16px; border-radius: 50px; font-size: 13px; font-weight: 700; margin-top: 14px; border: 1px solid var(--gray-100);
}

.report-goals-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.report-goals-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--gray-900); line-height: 1.7; }

.report-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.report-gallery-img { width: 100%; height: 160px; object-fit: cover; border-radius: 10px; cursor: pointer; transition: transform .2s, opacity .2s; display: block; }
.report-gallery-img:hover { transform: scale(1.03); opacity: .92; }
@media (max-width: 600px) { .report-gallery { grid-template-columns: repeat(2, 1fr); } }

.report-video-wrap { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 14px; }
.report-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; border-radius: 14px; }

.report-sidebar { display: flex; flex-direction: column; gap: 22px; }
.report-sidebar-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-md); }
.report-sidebar-card h3 { font-size: 16px; font-weight: 800; color: var(--primary-dark); margin: 0 0 18px; }

.report-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.report-stat-item { background: var(--gray-50); border-radius: 10px; padding: 14px 10px; text-align: center; }
.report-stat-num { font-size: 21px; font-weight: 900; color: var(--gold); font-variant-numeric: tabular-nums; }
.report-stat-label { font-size: 12px; color: var(--gray-500); margin-top: 2px; }

.report-progress { background: var(--gray-100); border-radius: 20px; height: 9px; overflow: hidden; margin-bottom: 18px; }
.report-progress span { display: block; height: 100%; background: var(--gold); border-radius: 20px; }

.report-donate-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%;
  background: var(--gold); color: var(--dark); padding: 13px; border-radius: 10px;
  font-size: 15px; font-weight: 800; transition: background .2s, transform .2s;
}
.report-donate-btn:hover { background: var(--gold-light); transform: translateY(-2px); }

.report-info-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.report-info-list li { font-size: 13.5px; color: var(--gray-700); line-height: 1.6; }

.report-share-buttons { display: flex; gap: 8px; flex-wrap: wrap; }
.report-share-btn {
  flex: 1; min-width: 80px; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px; border-radius: 10px; font-size: 12.5px; font-weight: 700; color: #fff; transition: opacity .2s;
}
.report-share-btn:hover { opacity: .85; }
.report-share-whatsapp { background: #25D366; }
.report-share-facebook { background: #1877F2; }
.report-share-twitter { background: #14171A; }

.report-lightbox {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 300;
  align-items: center; justify-content: center;
}
.report-lightbox.active { display: flex; }
.report-lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 10px; object-fit: contain; }
.report-lightbox-close {
  position: absolute; top: 20px; inset-inline-end: 20px; color: #fff; font-size: 30px;
  cursor: pointer; background: none; border: none; line-height: 1;
}

/* ============ الشاشة المنبثقة لتشغيل الفيديو ============ */
.video-modal {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 300;
  align-items: center; justify-content: center; padding: 40px 20px;
}
.video-modal.active { display: flex; }
.video-modal-inner {
  width: 100%; max-width: 960px; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.video-modal-inner iframe { width: 100%; height: 100%; border: 0; display: block; }
.video-modal-close {
  position: absolute; top: 20px; inset-inline-end: 20px; color: #fff; font-size: 34px;
  cursor: pointer; background: none; border: none; line-height: 1;
}
@media (max-width: 700px) { .video-modal { padding: 16px; } }
