/* ===================== الفوتر المتدرج والفخم ===================== */
footer {
  position: relative;
  padding: 60px 20px;
  text-align: center;
  color: #064e3b; /* كل النصوص أخضر غامق */
  background: linear-gradient(
    to bottom,
    #ffffff 0%,    /* أبيض قوي من فوق */
    #f0f9f4 40%,  /* أخضر فاتح جدًا */
    #c1e3c7 70%,  /* أخضر متوسط */
    #2f8f64 100%  /* أخضر غامق من تحت */
  );
  overflow: hidden;
}

/* خط فاصل فخم أعلى الفوتر */
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 80%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(47, 143, 100, 0.5),
    transparent
  );
  transform: translateX(-50%);
}

/* إضاءة متحركة في الخلفية */
footer::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.25), transparent 70%);
  animation: footerGlow 20s linear infinite;
  z-index: 0;
}

@keyframes footerGlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* جميع النصوص والروابط داخل الفوتر */
footer *, 
footer a {
  color: #064e3b !important; /* أخضر غامق */
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
  z-index: 1; /* فوق الانيميشن */
}

footer a:hover {
  color: #2f8f64; /* أخضر أفتح عند المرور */
  transform: translateY(-2px);
}