.site-footer {
  background: var(--black);
  color: var(--white);
  width: 100%;
}

.footer-main {
  padding: 6rem 0 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.8fr 1.2fr;
  gap: 3rem;
}

.footer-col h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col h4 {
  font-family: var(--font-title);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-email {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.3s ease;
}

.footer-email:hover {
  opacity: 0.8;
}

.footer-contact-persons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-persons p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-contact-persons strong {
  font-weight: 600;
  color: var(--white);
}

.footer-contact-persons a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-contact-persons a:hover {
  opacity: 0.8;
}

.footer-map-col h4 {
  margin-bottom: 16px;
}

.footer-map-container {
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 100%;
}

.footer-map-container iframe {
  display: block;
  width: 100%;
  height: 300px;
}

.footer-separator {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
}

.footer-bottom {
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-copyright p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-legal a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-legal a:hover {
  opacity: 0.8;
}

.footer-divider {
  color: rgba(255, 255, 255, 0.3);
}

.footer-author p {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-author a {
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-author a:hover {
  opacity: 0.8;
}

@media (max-width: 1400px) {
  .footer-main {
    padding: 5rem 0 3rem;
  }

  .footer-grid {
    gap: 3rem;
  }
}

@media (max-width: 998px) {
  .footer-main {
    padding: 4rem 0 3rem;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .footer-about {
    grid-column: 1 / 3;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 16px;
    text-align: left;
    align-items: flex-start;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .footer-main {
    padding: 3rem 0 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-about {
    grid-column: 1 / 2;
  }

  .footer-col h3 {
    font-size: 1.25rem;
  }

  .footer-col h4 {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .footer-col p {
    font-size: 0.875rem;
  }

  .footer-links a {
    font-size: 0.875rem;
  }

  .footer-email {
    font-size: 1rem;
  }

  .footer-map {
    padding: 2.5rem 0;
  }

  .footer-map h4 {
    font-size: 1.125rem;
    margin-bottom: 20px;
  }

  .footer-map-container iframe {
    height: 300px;
  }

  .footer-bottom {
    padding: 1.5rem 0;
  }

  .footer-copyright p,
  .footer-legal a,
  .footer-author p {
    font-size: 0.8125rem;
  }
}