.footer {
  background: linear-gradient(to right, #1f2937, #111827); /* خاکستری تیره مدرن */
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* لینک‌ها */
.footer-link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #60a5fa; /* آبی روشن */
}

/* آیکن شبکه اجتماعی */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #374151; /* رنگ دکمه تیره */
  color: white;
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.5rem;
}

.social-icon:hover {
  background-color: #60a5fa;
  transform: scale(1.1);
}

