/* Footer styles */

footer {
  background: var(--neo-surface);
  border-top: 1px solid var(--glass-border);
  padding: 60px 24px 24px;
  margin-top: 60px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: var(--neo-text);
}

.footer-section p,
.footer-section a {
  color: var(--neo-text-muted);
  line-height: 1.8;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color .2s ease;
}

.footer-section a:hover {
  color: var(--neo-primary);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--neo-text-muted);
  font-size: 0.9rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--neo-bg);
  border-radius: 50%;
  color: var(--neo-text);
  text-decoration: none;
  box-shadow: 4px 4px 8px var(--neo-shadow-dark), -4px -4px 8px var(--neo-shadow-light);
  transition: all .2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  color: var(--neo-primary);
}
