/* ============================================================
   FOOTER - Global Styles
   Shared styles for both desktop and mobile footer
   ============================================================ */

/* Footer container adjustments */
.page-footer {
  margin-top: 3rem;
}

/* Container max-width to match header */
.footer-main .container,
.footer-copyright .container,
.footer-main-mobile .container-fluid,
.footer-copyright-mobile .container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Global footer link styles */
.footer-links,
.footer-links-mobile {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-links-mobile li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-links-mobile a {
  color: var(--k-70);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links-mobile a:hover {
  color: var(--era-red);
}

/* Footer headings */
.footer-heading,
.footer-heading-mobile {
  color: var(--era-navy);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Footer tagline */
.footer-tagline,
.footer-tagline-mobile {
  color: var(--k-70);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Contact list styles */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-contact i {
  color: var(--era-red);
  font-size: 1.1rem;
}

.footer-contact a {
  color: var(--k-70);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--era-red);
}

/* Social icons in footer */
.footer-social,
.footer-social-mobile {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social a,
.footer-social-mobile a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--k-10);
  color: var(--era-navy);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.25rem;
}

.footer-social a:hover,
.footer-social-mobile a:hover {
  background: var(--era-red);
  color: var(--k-0);
  transform: translateY(-2px);
}

/* Copyright section styles */
.footer-copyright,
.footer-copyright-mobile {
  padding: 1.5rem 0;
  color: var(--k-0);
}

.copyright-text,
.copyright-text-mobile {
  margin: 0;
  font-size: 0.9rem;
  color: var(--k-0);
}

.footer-legal-links,
.footer-legal-links-mobile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.footer-legal-links a,
.footer-legal-links-mobile a {
  color: var(--k-0);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover,
.footer-legal-links-mobile a:hover {
  color: var(--era-light-blue);
}

.footer-legal-links .separator,
.footer-legal-links-mobile .separator {
  color: var(--k-0);
  opacity: 0.5;
}

/* Logo in footer */
.footer-logo-column img,
.footer-logo-mobile img {
  max-width: 200px;
  height: auto;
}
