/* ── FOOTER ──────────────────────────────────── */
.site-footer {
  width: 60vw;
  margin: 100px auto 48px;
  background: rgba(22, 24, 30, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 24px;
  overflow: hidden;
}

/* ── PERFORMANCE: backdrop-filter uit op mobiel ── */
@media (max-width: 768px) {
  .site-footer {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(22, 24, 30, 0.97);
  }
}

/* Footer brand kolom (logo + tagline + adres) */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-top {
  width: 100%;
  padding: 40px 40px 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-logo {
  display: block;
  text-decoration: none;
  margin-bottom: 16px;
}

.footer-logo svg {
  width: 22px;
  height: 22px;
  fill: #2D7DD2;
}

.footer-logo span,
.footer-logo-name {
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
}

.footer-tagline {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  margin-bottom: 12px;
}

.footer-address {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}

.footer-col-title {
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2D7DD2;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Directe <a> tags (zonder ul/li) */
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col a,
.footer-col span,
.footer-col ul li a {
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  line-height: 1;
  padding: 8px 0;
  transition: color 0.18s ease;
}

.footer-col a:hover,
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  width: 100%;
  padding: 24px 48px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copy {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

.footer-legal-link {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.18s ease;
  white-space: nowrap;
}

.footer-legal-link:last-child { text-align: right; }

.footer-legal-link:hover { color: rgba(255,255,255,0.7); }

/* wordmark logo */
.footer-wordmark {
  height: auto;
  width: 180px;
  display: block;
}

/* city text under tagline */
.footer-city {
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}


/* -- SOCIAL ICONS -- */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.footer-social-link:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
}

/* ── MOBILE ────────────────────────────────── */
@media (max-width: 768px) {
  .site-footer {
    width: calc(100% - 48px);
    margin: 0 auto 32px;
    border-radius: 20px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 28px;
  }

  .footer-tagline {
    white-space: normal;
  }

  .footer-bottom {
    padding: 20px 28px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
