/* Footer */
.footer {
  background-color: var(--footer-bg);
  color: var(--text-inverse);
  padding: 60px 0;
  transition: background-color 0.3s ease;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
  transition: color 0.3s ease;
}

.footer-contact ul {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--footer-text);
  font-size: 14px;
  line-height: 1.5;
}

.footer-contact li:last-child {
  margin-bottom: 0;
}

.footer-contact .contact-icon {
  font-size: 14px;
}
