/* ===== Footer ===== */
.footer {
  background: var(--black-soft);
  border-top: 2px solid var(--orange);
  padding: 2rem 1.5rem 0;
  margin-top: 0;
}

.footer-container {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Footer Brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  height: 110px;
  width: auto;
  display: block;
}

.footer-description {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
}

/* Social Links */
.footer-socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--orange);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 166, 35, 0.3);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Footer Kolommen */
.footer h4 {
  color: var(--orange);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  letter-spacing: 0.5px;
}

.footer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer ul li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-links ul li a,
.footer-contact ul li a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
  color: var(--orange);
}

.footer-contact ul li span:first-child {
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
  padding: 0.25rem 0;
}

.footer-bottom-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-description {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer {
    padding: 3rem 1.5rem 0;
  }
}
