/* FOOTER */
footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--card-border);
  padding: 3rem 5% 2rem;
  text-align: center;
  transition: background 0.4s;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-social {
  display: flex;
  gap: 0.9rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s;
}

.social-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}