/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo i {
  font-size: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  color: var(--text-light);
  margin-top: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-column h5 {
  font-size: var(--font-sm);
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.footer-column a {
  display: block;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-column a:hover {
  color: var(--text-white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--text-light);
}

.footer-social a {
  color: var(--text-light);
  margin-left: 0.75rem;
}

.footer-social a:hover {
  color: var(--text-white);
}
