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

.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 1rem 2rem;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  justify-items: center;
  text-align: center;
  margin-bottom: 2rem;
}

.footer h4 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

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

.footer-links ul li a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: #aaa;
}

.section-divider {
  width: 100%;
  max-width: 1400px;
  height: 1px;
  background-color: var(--accent);
  opacity: 0.2;
  margin: 3rem auto 2rem;
}

.footer-branding {
  text-align: center;
}

.footer-logo {
  width: 160px !important;
  height: auto !important;
  display: inline-block !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
  background: none !important;
}