.site-footer {
  background-color: #020202;
  padding: 4rem 0;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.site-footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-logo {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo svg,
.footer-logo img {
  width: auto;
  height: 24px;
  max-width: 100px;
  object-fit: contain;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  color: var(--text-secondary);
}

.footer-link:hover {
  color: var(--text-primary);
}

.footer-bottom {
  width: 100%;
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.social-link {
  color: var(--text-secondary);
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
}

.social-link:hover {
  color: var(--text-primary);
  transform: translateY(-2px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.footer-email-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-email-link:hover {
  color: var(--text-primary);
  text-decoration: underline;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-contact-info {
    align-items: center;
  }
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.footer-legal-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--text-primary);
  border-bottom-color: var(--text-primary);
}
