/* ===== Footer ===== */
.site-footer {
  background: linear-gradient(135deg, #5f0144, #9b357d);
  color: #ccc;
  text-align: center;
  padding: 50px 20px 20px;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
}

/* Animation effect */
.site-footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05), transparent 70%);
  animation: footerGlow 8s infinite linear;
  z-index: 0;
}

@keyframes footerGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Titles */
.footer-col h4 {
  color: #fff;
  margin-bottom: 18px;
  font-size: 17px;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: #e8dc04;
  margin: 8px auto 0;
}

/* Lists */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: #e8dc04;
}

.footer-col ul li a {
  color: #e8dc04;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
}

.footer-col ul li a:hover {
  color: #8f4c04;
}

/* Logo */
.footer-logo img {
  max-width: 240px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

/* Social Icons */
.socials {
  margin-top: 15px;
}

.socials a {
  display: inline-block;
  margin: 0 8px;
  font-size: 20px;
  color: #e8dc04;
  transition: color 0.3s, transform 0.3s;
}

.socials a:hover {
  color: #8f4c04;
  transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #888;
  margin-top: 40px;
  font-size: 13px;
  color: #eee;
  position: relative;
  z-index: 1;
}

/* دعم الاتجاهين */
.site-footer[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

.site-footer[dir="ltr"] {
  direction: ltr;
  text-align: left;
}

/* لو استخدمنا الكلاس بدل dir */
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}


/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-logo img {
    margin: 0 auto 25px;
  }
}
