/* ==========================================================================
   ELITEPRESSLINE FOOTER
   ========================================================================== */

.ep-footer {
  background-color: var(--ep-text-primary);
  color: rgba(255, 255, 255, 0.7);
}

/* Footer Widgets */
.ep-footer__widgets {
  padding: var(--ep-space-16) 0 var(--ep-space-10);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ep-footer__col {
  min-width: 0;
}

.ep-footer-widget__title {
  font-family: var(--ep-font-heading);
  font-size: var(--ep-text-base);
  font-weight: var(--ep-weight-bold);
  color: #ffffff;
  margin-bottom: var(--ep-space-5);
  letter-spacing: var(--ep-tracking-wide);
  text-transform: uppercase;
}

.ep-footer-widget {
  margin-bottom: var(--ep-space-6);
}

.ep-footer-widget a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--ep-transition-fast);
}

.ep-footer-widget a:hover {
  color: var(--ep-accent);
}

.ep-footer-widget ul {
  display: flex;
  flex-direction: column;
  gap: var(--ep-space-3);
}

.ep-footer-widget p {
  font-size: var(--ep-text-sm);
  line-height: var(--ep-leading-relaxed);
  color: rgba(255, 255, 255, 0.5);
}

/* Footer Bottom Bar */
.ep-footer__bottom {
  padding: var(--ep-space-6) 0;
}

.ep-footer__copyright {
  font-size: var(--ep-text-sm);
  color: rgba(255, 255, 255, 0.6); /* Increased contrast for WCAG AA */
}

/* Footer Nav */
.ep-footer__menu {
  display: flex;
  align-items: center;
  gap: var(--ep-space-6);
  flex-wrap: wrap;
}

.ep-footer__menu li a {
  font-size: var(--ep-text-sm);
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--ep-transition-fast);
}

.ep-footer__menu li a:hover {
  color: var(--ep-accent);
}

/* Social Links */
.ep-footer__social {
  display: flex;
  align-items: center;
  gap: var(--ep-space-3);
}

.ep-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--ep-radius-full);
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--ep-transition-fast);
}

.ep-footer__social-link:hover {
  background-color: var(--ep-accent);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .ep-footer__widgets .ep-grid--3 {
    grid-template-columns: 1fr;
  }

  .ep-footer__bottom .ep-flex--between {
    flex-direction: column;
    text-align: center;
    gap: var(--ep-space-4);
  }

  .ep-footer__menu {
    justify-content: center;
  }

  .ep-footer__social {
    justify-content: center;
  }
}
