Javan Print, [10.06.25 16:30]
footer {
  background-color: #f8f8f8;
  padding: 2rem 1rem;
  font-family: "Vazirmatn", sans-serif;
  font-size: 14px;
  color: #333;
  direction: rtl;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.footer-nav ul li a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav ul li a:hover {
  color: #e63946;
}

address {
  text-align: center;
  font-style: normal;
  line-height: 1.8;
  margin-bottom: 1rem;
}

footer p {
  text-align: center;
  color: #777;
}

/* 📱 ریسپانسیو برای موبایل */
@media (max-width: 600px) {
  .footer-nav ul {
    flex-direction: column;
    align-items: center;
  }

  address {
    font-size: 13px;
  }
}