/* ==========================================================================
   FOOTER.CSS — Verhuislifthuren.eu
   ========================================================================== */

.site-footer {
  background-color: var(--color-secondary-dark);
  color: #fff;
  padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* ---------- Footer kolommen ---------- */
.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-md);
}

.footer-col p,
.footer-col a {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.footer-col a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #fff;
}

/* ---------- Bedrijfsinfo ---------- */
.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.footer-brand-sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-md);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-contact-list svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* ---------- Link lijsten ---------- */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  padding: 2px 0;
}

/* ---------- Review badge in footer ---------- */
.footer-review-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding: var(--space-sm) var(--space-md);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.footer-review-badge:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.footer-review-stars {
  color: var(--color-stars);
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.footer-review-text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- Social links ---------- */
.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background-color 0.2s ease;
}

.footer-social a:hover {
  background-color: var(--color-primary);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

/* ---------- Footer bottom ---------- */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: var(--space-lg);
  text-align: center;
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

.footer-legal span {
  margin: 0 var(--space-sm);
}
