/* =========================================================
   Footer Contact & Social Links Enhancement
   ArabIM Exports Pro
========================================================= */

.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.site-footer a:hover {
  color: var(--gold2);
  text-decoration: none;
}

/* Contact items */
.footer-contact-item {
  margin: 7px 0;
  line-height: 1.8;
  color: #dbeafe;
  font-size: 14px;
}

.footer-contact-item a {
  color: #dbeafe;
}

.footer-contact-item a:hover {
  color: var(--gold2);
}

/* Social links */
.footer-contact .socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.footer-contact .socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  background: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
}

.footer-contact .socials a:hover {
  transform: translateY(-2px);
  color: #ffffff;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  border-color: transparent;
}

/* Footer menus */
.site-footer .footer-menu a {
  color: #dbeafe;
}

.site-footer .footer-menu a:hover {
  color: var(--gold2);
  padding-inline-start: 4px;
}

.footer-services .footer-menu li,
.footer-links .footer-menu li {
  margin: 8px 0;
}

/* Better footer spacing */
.footer-contact,
.footer-services,
.footer-links,
.footer-about {
  min-width: 0;
}

.footer-about p {
  color: #dbeafe;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.9;
}

/* Mobile footer improvement */
@media (max-width: 640px) {
  .site-footer {
    text-align: center;
  }

  .site-footer .site-logo,
  .site-footer .custom-logo {
    margin-inline: auto;
  }

  .footer-contact .socials {
    justify-content: center;
  }

  .site-footer .footer-menu a:hover {
    padding-inline-start: 0;
  }
}