/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 3rem 0 1rem;
}

  .footer a, .footer p {
    color: var(--text-light-gray-1);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .footer a:hover {
      color: white;
  }


.footer-section h4 {
    margin-bottom: 1rem;
    font-family: 'SF Pro Display', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'SF Pro Display', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.footer-logo img {
    width: 40px;
    height: 40px;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-contact p, .footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-divider {
    height: 1px;
    background: #334155;
    margin: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}


.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #334155;
  border-radius: var(--button-border-radius);
}

  .social-link:hover {
    background: var(--button-accent);
    transform: translateY(-2px);
  }

  .social-link:focus-visible {
      box-shadow: 0px 0px 5px 0px var(--button-accent);
      outline: none;
  }
