/* Shared footer styles (reused across pages) */

footer {
  background: var(--color-bg, #AFDDE5);
  border-top: 1px solid rgba(15, 164, 175, 0.15);
  padding: 40px clamp(16px, 5vw, 60px) 30px;
  width: 100%;
  box-sizing: border-box;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
  gap: 40px;
  margin-bottom: 30px;
  width: 100%;
}

@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-section {
    text-align: center;
  }

  .footer-section a:hover {
    transform: translateX(0);
  }

  .social-links {
    justify-content: center;
  }
}

.footer-section h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-primary, #0FA4AF);
}

.footer-section p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 12px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: #4b5563;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-section a:hover {
  color: var(--color-primary, #0FA4AF);
  transform: translateX(4px);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(15, 164, 175, 0.15);
  text-align: center;
  color: #9ca3af;
  font-size: 12px;
  line-height: 1.6;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p + p {
  margin-top: 6px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 164, 175, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary, #0FA4AF);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--color-primary, #0FA4AF);
  color: white;
  transform: translateY(-3px);
}
