@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&family=Cairo:wght@300;400;500;600;700;900&display=swap');

:root {
  --teal:        #0B5563;
  --teal-dark:   #073A45;
  --teal-light:  #1A7A8C;
  --teal-mist:   #E8F4F6;
  --gold:        #C8942A;
  --gold-light:  #F0C050;
  --gold-pale:   #FDF6E3;
  --cream:       #F7F4EF;
  --white:       #FFFFFF;
  --gray-1:      #F2EFE9;
  --gray-2:      #DDD8CF;
  --gray-3:      #A89E92;
  --gray-4:      #6B6259;
  --dark:        #1E1A16;
  --rose:        #C0392B;
  --rose-light:  #FDECEA;
  --green:       #1E6B4A;
  --green-light: #E8F5EE;
  --blue:        #1A4E8C;
  --blue-light:  #E8EFF8;
  --shadow-sm:   0 2px 8px rgba(11,85,99,0.08);
  --shadow-md:   0 6px 24px rgba(11,85,99,0.12);
  --shadow-lg:   0 16px 48px rgba(11,85,99,0.16);
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  36px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Cairo', sans-serif;
  background: var(--cream);
  color: var(--dark);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: 'Tajawal', sans-serif; line-height: 1.3; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--teal-dark);
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; text-decoration: none;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--gold); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--teal-dark);
}
.nav-logo-text {
  color: var(--white);
  font-family: 'Tajawal', sans-serif;
  font-size: 17px; font-weight: 700;
}
.nav-logo-text span {
  color: var(--gold-light); display: block;
  font-size: 11px; font-weight: 400; opacity: 0.8;
}
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: rgba(255,255,255,0.82);
  padding: 8px 14px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
  white-space: nowrap; text-decoration: none;
}
.nav-link:hover,
.nav-link.active { background: rgba(255,255,255,0.1); color: #fff; }
.nav-link.active  { color: var(--gold-light); }
.nav-cta {
  background: var(--gold); color: var(--teal-dark);
  padding: 8px 20px; border-radius: var(--r-sm);
  font-weight: 700; font-size: 14px;
  cursor: pointer; transition: all 0.2s;
  text-decoration: none; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ══════════════════════════════════════════
   HAMBURGER
══════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  cursor: pointer; background: none; border: none; padding: 0;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed; top: 68px; right: 0; left: 0;
  background: var(--teal-dark);
  padding: 16px 24px 24px;
  flex-direction: column; gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 999;
  animation: slideDown 0.25s ease;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { padding: 12px 16px; font-size: 15px; border-radius: var(--r-sm); }
.mobile-menu .nav-cta  { margin-top: 10px; text-align: center; display: block; padding: 12px; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--r-sm);
  font-family: 'Cairo', sans-serif; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.22s;
  border: none; text-align: center; white-space: nowrap;
  text-decoration: none;
}
.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-gold    { background: var(--gold); color: var(--teal-dark); }
.btn-gold:hover    { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-sm  { padding: 8px 18px; font-size: 13px; }
.btn-lg  { padding: 16px 36px; font-size: 16px; border-radius: var(--r-md); }

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
.section    { padding: 80px 0; }
.container  { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.divider    { border: none; border-top: 1px solid var(--gray-2); margin: 0; }
.mt-40      { margin-top: 40px; }
.text-center{ text-align: center; }

.section-header  { text-align: center; margin-bottom: 52px; }
.section-label   {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-mist); color: var(--teal);
  padding: 6px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; margin-bottom: 16px;
}
.section-label i { font-size: 12px; }
.section-title   { font-size: 34px; font-weight: 800; color: var(--teal-dark); margin-bottom: 14px; }
.section-sub     { font-size: 16px; color: var(--gray-4); max-width: 560px; margin: 0 auto; }

/* ══════════════════════════════════════════
   PAGE HERO
══════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal-light) 100%);
  padding: 56px 0; text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { font-size: 36px; font-weight: 900; color: #fff; position: relative; margin-bottom: 10px; }
.page-hero p  { font-size: 16px; color: rgba(255,255,255,0.75); position: relative; }
.page-hero-marriage { background: linear-gradient(135deg, #5C3D1E 0%, var(--gold) 100%); }

/* ══════════════════════════════════════════
   HERO (index)
══════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 55%, #1A7A8C 100%);
  position: relative; overflow: hidden;
  padding: 100px 0 90px; min-height: 92vh;
  display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-geo  { position:absolute; top:-80px; left:-80px; width:450px; height:450px; border-radius:50%; background:radial-gradient(circle,rgba(200,148,42,0.15) 0%,transparent 70%); pointer-events:none; }
.hero-geo2 { position:absolute; bottom:-60px; right:-40px; width:300px; height:300px; border-radius:50%; background:radial-gradient(circle,rgba(255,255,255,0.06) 0%,transparent 70%); }
.hero-content  { position:relative; z-index:1; text-align:center; }
.hero-badge    {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(200,148,42,0.2); border:1px solid rgba(200,148,42,0.4);
  color:var(--gold-light); padding:7px 20px; border-radius:100px;
  font-size:13px; font-weight:600; margin-bottom:28px;
}
.hero-title    { font-size:clamp(32px,5vw,58px); font-weight:900; color:#fff; margin-bottom:20px; line-height:1.2; }
.hero-title span { color: var(--gold-light); }
.hero-subtitle { font-size:18px; color:rgba(255,255,255,0.78); margin-bottom:44px; max-width:600px; margin-inline:auto; }
.hero-btns     { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; margin-bottom:60px; }
.hero-stats    {
  display:flex; justify-content:center;
  background:rgba(255,255,255,0.08); border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--r-lg); backdrop-filter:blur(10px);
  max-width:640px; margin:0 auto; overflow:hidden;
}
.hero-stat       { flex:1; padding:20px 16px; text-align:center; border-left:1px solid rgba(255,255,255,0.1); }
.hero-stat:last-child { border-left: none; }
.hero-stat-num   { font-size:26px; font-weight:800; color:var(--gold-light); font-family:'Tajawal',sans-serif; }
.hero-stat-label { font-size:12px; color:rgba(255,255,255,0.65); margin-top:3px; }

/* ══════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════ */
.hiw { background: var(--white); }
.steps-grid { display:flex; gap:0; align-items:stretch; position:relative; }
.steps-grid::before {
  content:''; position:absolute; top:40px; right:15%; left:15%;
  height:2px; background:linear-gradient(to left,var(--teal-mist),var(--teal-light),var(--teal-mist)); z-index:0;
}
.step       { flex:1; text-align:center; padding:0 24px; position:relative; z-index:1; }
.step-num   {
  width:80px; height:80px; border-radius:50%;
  background:var(--teal-dark); color:#fff;
  font-size:28px; font-weight:800; font-family:'Tajawal',sans-serif;
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 24px;
  border:4px solid var(--white); box-shadow:0 0 0 3px var(--teal),var(--shadow-md);
}
.step-num.gold  { background:var(--gold); box-shadow:0 0 0 3px var(--gold),var(--shadow-md); }
.step-title     { font-size:18px; font-weight:700; color:var(--teal-dark); margin-bottom:10px; }
.step-desc      { font-size:14px; color:var(--gray-4); }

/* ══════════════════════════════════════════
   MODULES
══════════════════════════════════════════ */
.modules { background: var(--cream); }
.modules-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.module-card  {
  border-radius:var(--r-lg); overflow:hidden; box-shadow:var(--shadow-md);
  position:relative; min-height:360px; display:flex; flex-direction:column; justify-content:flex-end;
  cursor:pointer; transition:transform 0.3s, box-shadow 0.3s; text-decoration:none;
}
.module-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.module-bg-social   { background:linear-gradient(160deg,var(--teal-dark) 0%,var(--teal) 60%,#1A9CAD 100%); }
.module-bg-marriage { background:linear-gradient(160deg,#5C3D1E 0%,var(--gold) 60%,#E8B44A 100%); }
.module-pattern   { position:absolute; inset:0; background:url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='8'/%3E%3C/g%3E%3C/svg%3E"); opacity:0.6; }
.module-icon-bg   { position:absolute; top:28px; right:28px; width:64px; height:64px; border-radius:16px; background:rgba(255,255,255,0.15); display:flex; align-items:center; justify-content:center; font-size:28px; color:rgba(255,255,255,0.9); }
.module-content   { position:relative; padding:32px; }
.module-tag       { display:inline-block; background:rgba(255,255,255,0.2); color:rgba(255,255,255,0.9); padding:4px 14px; border-radius:100px; font-size:12px; font-weight:600; margin-bottom:12px; }
.module-title     { font-size:24px; font-weight:800; color:#fff; margin-bottom:10px; }
.module-desc      { font-size:14px; color:rgba(255,255,255,0.78); margin-bottom:22px; line-height:1.6; }
.module-cats      { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:22px; }
.module-cat       { background:rgba(255,255,255,0.15); color:rgba(255,255,255,0.88); padding:4px 12px; border-radius:100px; font-size:12px; }
.module-btn       { display:inline-flex; align-items:center; gap:8px; background:#fff; color:var(--teal-dark); padding:10px 22px; border-radius:var(--r-sm); font-weight:700; font-size:14px; cursor:pointer; transition:all 0.2s; }
.module-btn.gold-btn { color:#5C3D1E; }
.module-btn:hover { transform:translateY(-2px); box-shadow:var(--shadow-sm); }

/* ══════════════════════════════════════════
   STATS
══════════════════════════════════════════ */
.stats      { background:var(--teal-dark); padding:72px 0; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,0.08); border-radius:var(--r-lg); overflow:hidden; }
.stat-item  { padding:40px 24px; text-align:center; background:rgba(255,255,255,0.04); }
.stat-icon  { font-size:28px; color:var(--gold-light); margin-bottom:14px; }
.stat-num   { font-size:42px; font-weight:900; color:#fff; font-family:'Tajawal',sans-serif; line-height:1; }
.stat-label { font-size:14px; color:rgba(255,255,255,0.6); margin-top:8px; }

/* ══════════════════════════════════════════
   CASES
══════════════════════════════════════════ */
.cases-grid  { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.case-card   { background:var(--white); border-radius:var(--r-md); box-shadow:var(--shadow-sm); overflow:hidden; transition:all 0.25s; border:1px solid rgba(0,0,0,0.04); display:flex; flex-direction:column; }
.case-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); }
.case-header { padding:18px 20px 14px; border-bottom:1px solid var(--gray-1); display:flex; align-items:center; justify-content:space-between; }
.case-code   { font-size:12px; font-weight:700; color:var(--teal); font-family:monospace; background:var(--teal-mist); padding:3px 10px; border-radius:6px; }
.urgency-badge  { font-size:11px; font-weight:700; padding:3px 10px; border-radius:100px; }
.urgency-high   { background:var(--rose-light); color:var(--rose); }
.urgency-medium { background:#FFF3E0; color:#E65100; }
.urgency-normal { background:var(--green-light); color:var(--green); }
.case-body   { padding:18px 20px; flex:1; }
.case-meta   { display:flex; align-items:center; gap:16px; margin-bottom:10px; flex-wrap:wrap; }
.case-meta-item { display:flex; align-items:center; gap:6px; font-size:13px; color:var(--gray-4); }
.case-meta-item i { color:var(--teal); font-size:12px; }
.case-cat    { display:inline-block; background:var(--blue-light); color:var(--blue); padding:3px 12px; border-radius:100px; font-size:12px; font-weight:600; margin-bottom:10px; }
.case-desc   { font-size:14px; color:var(--gray-4); line-height:1.6; }
.case-footer { padding:14px 20px; border-top:1px solid var(--gray-1); }

/* ══════════════════════════════════════════
   FILTERS
══════════════════════════════════════════ */
.filters-bar {
  background:var(--white); border-radius:var(--r-md); padding:20px 24px;
  display:flex; gap:14px; align-items:center; flex-wrap:wrap;
  box-shadow:var(--shadow-sm); margin-bottom:32px; border:1px solid var(--gray-2);
}
.filter-label  { font-size:14px; font-weight:700; color:var(--teal-dark); white-space:nowrap; }
.filter-select {
  padding:8px 14px; border:1.5px solid var(--gray-2); border-radius:var(--r-sm);
  font-family:'Cairo',sans-serif; font-size:13px; color:var(--dark);
  background:var(--gray-1); appearance:none; cursor:pointer; transition:border-color 0.2s;
}
.filter-select:focus { outline:none; border-color:var(--teal); }

/* ══════════════════════════════════════════
   CONTRIB / DONORS
══════════════════════════════════════════ */
.contrib-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.contrib-card { background:var(--white); border-radius:var(--r-md); padding:32px; box-shadow:var(--shadow-sm); border:1px solid var(--gray-2); display:flex; flex-direction:column; align-items:flex-start; gap:14px; transition:all 0.25s; }
.contrib-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); border-color:var(--teal-light); }
.contrib-icon { width:56px; height:56px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:22px; }
.contrib-icon.teal  { background:var(--teal-mist); color:var(--teal); }
.contrib-icon.gold  { background:var(--gold-pale); color:var(--gold); }
.contrib-icon.green { background:var(--green-light); color:var(--green); }
.contrib-icon.blue  { background:var(--blue-light); color:var(--blue); }
.contrib-title { font-size:18px; font-weight:700; color:var(--teal-dark); }
.contrib-desc  { font-size:14px; color:var(--gray-4); line-height:1.7; }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.values-grid  { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.value-card   { background:var(--white); border-radius:var(--r-md); padding:28px; box-shadow:var(--shadow-sm); border-right:4px solid var(--teal); display:flex; align-items:flex-start; gap:16px; }
.value-icon   { width:44px; height:44px; background:var(--teal-mist); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:18px; color:var(--teal); flex-shrink:0; }
.value-title  { font-size:17px; font-weight:700; color:var(--teal-dark); margin-bottom:6px; }
.value-desc   { font-size:14px; color:var(--gray-4); }
.about-lead   { background:var(--white); border-radius:var(--r-xl); padding:52px; box-shadow:var(--shadow-md); margin-bottom:40px; display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.about-lead-text h2 { font-size:28px; font-weight:800; color:var(--teal-dark); margin-bottom:18px; }
.about-lead-text p  { font-size:15px; color:var(--gray-4); line-height:1.8; margin-bottom:12px; }
.about-visual { background:linear-gradient(135deg,var(--teal-dark),var(--teal-light)); border-radius:var(--r-lg); padding:40px; text-align:center; color:#fff; }
.about-visual .big-num { font-size:72px; font-weight:900; color:var(--gold-light); font-family:'Tajawal',sans-serif; }
.verify-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.verify-step  { background:var(--white); border-radius:var(--r-md); padding:26px 20px; text-align:center; box-shadow:var(--shadow-sm); border-top:3px solid var(--teal); }
.verify-num   { font-size:11px; font-weight:700; color:var(--teal); letter-spacing:1px; margin-bottom:8px; text-transform:uppercase; }
.verify-title { font-size:15px; font-weight:700; color:var(--teal-dark); margin-bottom:8px; }
.verify-desc  { font-size:13px; color:var(--gray-4); }

/* ══════════════════════════════════════════
   ROLES
══════════════════════════════════════════ */
.roles-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; max-width:860px; margin:0 auto; }
.role-card  { background:var(--white); border-radius:var(--r-xl); padding:44px 32px; box-shadow:var(--shadow-md); text-align:center; cursor:pointer; transition:all 0.3s; border:2px solid transparent; text-decoration:none; display:block; color:inherit; }
.role-card:hover       { border-color:var(--teal); transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.role-card.gold:hover  { border-color:var(--gold); }
.role-card.green:hover { border-color:var(--green); }
.role-icon  { width:80px; height:80px; border-radius:20px; margin:0 auto 22px; display:flex; align-items:center; justify-content:center; font-size:32px; }
.role-icon.teal  { background:var(--teal-mist); color:var(--teal); }
.role-icon.gold  { background:var(--gold-pale); color:var(--gold); }
.role-icon.green { background:var(--green-light); color:var(--green); }
.role-title { font-size:24px; font-weight:800; color:var(--teal-dark); margin-bottom:12px; }
.role-desc  { font-size:14px; color:var(--gray-4); line-height:1.7; margin-bottom:28px; }

/* ══════════════════════════════════════════
   PARTNERS
══════════════════════════════════════════ */
.partner-types { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.partner-type  { background:var(--white); border-radius:var(--r-md); padding:26px 22px; box-shadow:var(--shadow-sm); display:flex; align-items:center; gap:14px; transition:all 0.25s; border:1px solid transparent; cursor:pointer; }
.partner-type:hover { border-color:var(--gold); box-shadow:var(--shadow-md); transform:translateY(-2px); }
.partner-type-icon { width:46px; height:46px; border-radius:12px; background:var(--gold-pale); color:var(--gold); display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.partner-type-name { font-size:15px; font-weight:700; color:var(--teal-dark); }
.partner-type-sub  { font-size:12px; color:var(--gray-3); margin-top:2px; }

/* ══════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════ */
.cta-banner { background:linear-gradient(135deg,var(--teal-dark),var(--teal)); border-radius:var(--r-xl); padding:60px 48px; text-align:center; position:relative; overflow:hidden; }
.cta-banner::before { content:''; position:absolute; top:-50%; right:-10%; width:400px; height:400px; border-radius:50%; background:radial-gradient(circle,rgba(200,148,42,0.15) 0%,transparent 70%); }
.cta-banner h2 { font-size:32px; color:#fff; margin-bottom:12px; position:relative; }
.cta-banner p  { color:rgba(255,255,255,0.72); font-size:16px; margin-bottom:32px; position:relative; }
.cta-btns { display:flex; gap:14px; justify-content:center; flex-wrap:wrap; position:relative; }

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-grid      { display:grid; grid-template-columns:1fr 1.4fr; gap:40px; align-items:start; }
.contact-info-card { background:var(--teal-dark); border-radius:var(--r-lg); padding:40px; color:#fff; }
.contact-info-card h3 { font-size:22px; margin-bottom:8px; }
.contact-info-card p  { color:rgba(255,255,255,0.7); font-size:14px; margin-bottom:32px; }
.contact-item      { display:flex; align-items:flex-start; gap:14px; margin-bottom:22px; }
.contact-item-icon { width:40px; height:40px; background:rgba(255,255,255,0.1); border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:16px; color:var(--gold-light); flex-shrink:0; }
.contact-item-text strong { display:block; font-size:14px; margin-bottom:3px; }
.contact-item-text span   { font-size:13px; color:rgba(255,255,255,0.65); }
.contact-form { background:var(--white); border-radius:var(--r-lg); padding:40px; box-shadow:var(--shadow-md); }
.form-row     { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-group   { margin-bottom:20px; }
.form-group label { display:block; font-size:13px; font-weight:600; color:var(--teal-dark); margin-bottom:7px; }
.form-input, .form-select, .form-textarea {
  width:100%; padding:11px 14px; border:1.5px solid var(--gray-2); border-radius:var(--r-sm);
  font-family:'Cairo',sans-serif; font-size:14px; color:var(--dark);
  background:var(--gray-1); transition:border-color 0.2s; direction:rtl;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { outline:none; border-color:var(--teal); background:#fff; }
.form-textarea { resize:vertical; min-height:110px; }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer { background:var(--dark); color:rgba(255,255,255,0.65); padding:52px 0 28px; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:40px; }
.footer-brand p { font-size:14px; line-height:1.8; margin-top:14px; max-width:280px; }
.footer-col h4  { color:#fff; font-size:15px; font-weight:700; margin-bottom:18px; }
.footer-link    { display:block; font-size:14px; margin-bottom:10px; cursor:pointer; transition:color 0.2s; text-decoration:none; }
.footer-link:hover { color:var(--gold-light); }
.footer-bottom  { border-top:1px solid rgba(255,255,255,0.08); padding-top:24px; display:flex; align-items:center; justify-content:space-between; font-size:13px; }
.footer-logo-text { font-family:'Tajawal',sans-serif; font-size:18px; font-weight:700; color:#fff; }
.footer-logo-text span { color:var(--gold-light); }

/* ══════════════════════════════════════════
   MISC
══════════════════════════════════════════ */
.alert-info { background:var(--teal-mist); border:1px solid var(--teal-light); border-radius:var(--r-sm); padding:14px 18px; font-size:14px; color:var(--teal); display:flex; gap:10px; align-items:flex-start; }
.empty-state { text-align:center; padding:60px 20px; color:var(--gray-3); grid-column:1/-1; }
.empty-state i { font-size:48px; margin-bottom:16px; display:block; }
.empty-state p { font-size:16px; }

/* ══════════════════════════════════════════
   RESPONSIVE — 900px
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .navbar { padding: 0 20px; }
  .container { padding: 0 20px; }
  .section { padding: 52px 0; }
  .section-title { font-size: 26px; }
  .hero { padding: 64px 0; min-height: auto; }
  .modules-grid, .cases-grid, .contrib-grid,
  .roles-grid, .partner-types, .values-grid,
  .about-lead, .contact-grid, .verify-steps,
  .footer-grid { grid-template-columns: 1fr; }
  .steps-grid { flex-direction: column; }
  .steps-grid::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .about-lead { padding: 28px; }
  .cta-banner { padding: 40px 24px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — 600px
══════════════════════════════════════════ */
@media (max-width: 600px) {
  .hero-stats { flex-direction: column; }
  .hero-stat  { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); }
  .hero-stat:first-child { border-top: none; }
  .hero-title { font-size: 28px; }
  .page-hero h1 { font-size: 26px; }
  .section-title { font-size: 22px; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — 400px
══════════════════════════════════════════ */
@media (max-width: 400px) {
  .stats-grid { grid-template-columns: 1fr; }
  .btn-lg { padding: 13px 24px; font-size: 14px; }
}
/* ── NAV CTA DOUBLE ──────────────────────────────── */
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Bouton plein (تبرع بشيء) — garde ton style existant */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: var(--gold);
  color: var(--teal-dark);
  border-radius: var(--r-sm);
  font-weight: 800;
  font-size: 13.5px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  border: 2px solid var(--gold);
}
.nav-cta:hover {
  background: var(--gold-dark, #b8860b);
  border-color: var(--gold-dark, #b8860b);
  transform: translateY(-1px);
}

/* Bouton outline (أنا محتاج) */
.nav-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: var(--r-sm);
  font-weight: 800;
  font-size: 13.5px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-cta-outline:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-1px);
}

/* ── MOBILE MENU ADDITIONS ────────────────────────── */
.mobile-menu-divider {
  height: 1px;
  background: var(--gray-2);
  margin: 8px 0;
}

.mobile-cta,
.mobile-cta-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: var(--r-sm);
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  margin: 4px 0;
  transition: all 0.2s;
}

.mobile-cta {
  background: var(--gold);
  color: var(--teal-dark);
  border: 2px solid var(--gold);
}
.mobile-cta:hover {
  background: var(--gold-dark, #b8860b);
}

.mobile-cta-outline {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.mobile-cta-outline:hover {
  background: var(--teal);
  color: #fff;
}

/* ── Masquer nav-cta-group sur mobile ─────────────── */
@media (max-width: 960px) {
  .nav-cta-group { display: none; }
}

/* ── Case title ─────────────────────────────────────────────── */
.case-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 8px;
  line-height: 1.4;
}

/* ── Need tags ──────────────────────────────────────────────── */
.case-needs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.case-need-tag {
  background: var(--gray-1);
  color: var(--teal-dark);
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid var(--gray-2);
}

/* ── Progress bar ───────────────────────────────────────────── */
.case-progress {
  background: var(--gray-2);
  border-radius: 100px;
  height: 6px;
  margin-top: 14px;
  overflow: hidden;
}
.case-progress-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 0.6s ease;
}
.case-progress-label {
  font-size: 12px;
  color: var(--gray-3);
  margin-top: 5px;
  text-align: right;
}


/* ══════════════════════════════════════════════════════════
   SECTION من نحن
   ══════════════════════════════════════════════════════════ */

.about {
  background: linear-gradient(160deg, #f0f7f9 0%, #ffffff 60%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 107, 122, 0.06) 0%, transparent 70%);
  top: -120px;
  left: -120px;
  pointer-events: none;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.35fr);
  gap: 32px;
  align-items: start;
}

.about-lead {
  font-size: 15.5px;
  line-height: 2.1;
  color: #4a5568;
  margin-bottom: 28px;
  border-right: 3px solid var(--teal);
  padding-right: 16px;
}

.about-bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-bullet {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid #e8ecf0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.about-bullet:hover {
  transform: translateX(-5px);
  box-shadow: 0 6px 24px rgba(26, 107, 122, 0.10);
  border-color: #d7ebf0;
}

.about-bullet > i {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--teal-mist);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}

.about-bullet:hover > i {
  background: var(--teal);
  color: #fff;
}

.about-bullet-title {
  font-weight: 800;
  font-size: 14.5px;
  color: var(--teal-dark);
  margin-bottom: 4px;
}

.about-bullet-text {
  font-size: 13px;
  color: #8a96a3;
  line-height: 1.85;
}

.about-card {
  background: #fff;
  border-radius: 22px;
  border: 1px solid #e8ecf0;
  padding: 30px 26px;
  box-shadow: 0 8px 36px rgba(26, 107, 122, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
  border-radius: 22px 22px 0 0;
}

.about-verse-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #fff3d0, #ffe9a0);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 14px rgba(200, 148, 42, 0.2);
}

.about-verse-text {
  font-weight: 700;
  font-size: 15px;
  line-height: 2.3;
  color: var(--teal-dark);
  margin-bottom: 10px;
  font-style: italic;
  background: linear-gradient(160deg, #f0f7f9, #ffffff);
  border-radius: 12px;
  padding: 14px 16px;
  border: 1px solid var(--teal-mist);
  width: 100%;
}

.about-verse-ref {
  font-size: 12px;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 18px;
  background: var(--gold-pale);
  padding: 4px 16px;
  border-radius: 100px;
  border: 1px solid rgba(200, 148, 42, 0.2);
  letter-spacing: 0.3px;
}

.about-note {
  font-size: 13.5px;
  color: #4a5568;
  line-height: 1.95;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px dashed #e8ecf0;
  font-style: italic;
  text-align: center;
}

.about-mission {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: right;
}

.about-mission-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #4a5568;
  line-height: 1.85;
  background: #f8fafc;
  border-radius: 11px;
  padding: 12px 14px;
  border: 1px solid #f0f2f5;
  transition: background 0.2s ease;
}

.about-mission-item:hover {
  background: var(--teal-mist);
}

.about-mission-item > i {
  color: var(--teal);
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.about-mission-item strong {
  color: var(--teal-dark);
  font-weight: 800;
}

@media (max-width: 860px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-card {
    order: -1;
  }

  .about-lead {
    font-size: 14.5px;
  }
}

@media (max-width: 480px) {
  .about-bullet {
    padding: 13px 14px;
  }

  .about-card {
    padding: 22px 18px;
  }

  .about-verse-text {
    font-size: 13.5px;
  }
}

.module-img-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.module-marriage-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.1), 0 12px 32px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.module-card:hover .module-marriage-img {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 0 0 8px rgba(255,255,255,0.15), 0 18px 44px rgba(0,0,0,0.3);
}

