footer {
  background: linear-gradient(135deg, #B76E79 0%, #8F4F5A 100%);
  color: #000; /* الكتابة بالأسود */
  text-align: center;
  padding: 30px 20px;
  font-family: 'Tajawal', sans-serif;
  border-top: 3px solid #E9C9CE; /* الإطار كما كان */
}

footer a {
  color: #000; /* الروابط بالأسود */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #333; /* عند المرور تصبح أغمق */
}

footer .social-icons {
  margin-top: 15px;
}

footer .social-icons i {
  color: #000; /* الأيقونات بالأسود */
  font-size: 22px;
  margin: 0 10px;
  transition: transform 0.3s ease, color 0.3s ease;
}

footer .social-icons i:hover {
  color: #333;
  transform: scale(1.2);
}