footer {
  background: #1e293b;
  padding: clamp(30px, 5vh, 40px) 0;
  margin-top: 0;
  color: var(--text-medium);
}

footer h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  margin-bottom: var(--spacing-md);
  color: var(--text-medium);
}

footer a {
  color: #94a3b8;
  text-decoration: none;
  line-height: 1.6;
  font-size: clamp(0.9rem, 2vw, 1rem);
  transition: all var(--transition-fast);
}

footer a:hover {
  color: var(--secondary-blue);
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: var(--spacing-xs);
}

footer p {
  line-height: 1.6;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.footer-grid,
footer .container > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: clamp(25px, 5vw, 40px);
}

.footer-credentials {
  margin-top: 15px;
}

.footer-hours {
  margin-top: 20px;
}

.footer-copyright,
footer .container > div[style*="text-align: center"] {
  text-align: center;
  padding-top: 20px;
}
