/* ==========================================================================
   FOOTER.CSS — OranjeLift.nl
   ========================================================================== */

.site-footer {
  position: relative;
  color: #fff;
  padding: var(--space-xl) 0 var(--space-sm);
}

.site-footer__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.site-footer__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(20, 22, 26, 0.89) 0%,
    rgba(20, 22, 26, 0.82) 50%,
    rgba(20, 22, 26, 0.87) 100%
  );
  backdrop-filter: blur(2px);
}

.site-footer > .container {
  position: relative;
  z-index: 1;
}

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

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

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

/* ---------- Footer kolommen ---------- */
.footer-col h3 {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

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

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

.site-footer .footer-col a:hover {
  color: var(--color-primary);
}

/* ---------- Bedrijfsinfo ---------- */
.footer-brand {
  display: inline-block;
  margin-bottom: var(--space-sm);
  text-decoration: none;
}

.footer-brand img {
  height: 48px;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  .footer-brand img {
    height: 56px;
  }
}

.footer-brand-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

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

.footer-contact-list a,
.footer-contact-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.25rem 0;
  position: relative;
}

.footer-contact-list span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.3s ease;
}

.footer-contact-list a:hover::after {
  width: 100%;
}

.footer-contact-list svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

.footer-contact-list a:hover svg {
  opacity: 1;
}

/* ---------- Link lijsten ---------- */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.footer-links a {
  padding: 0.375rem 0;
  min-height: 24px;
  position: relative;
  display: inline-block;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 0;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

/* ---------- Review badge in footer ---------- */
.footer-review-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding: 0.625rem var(--space-md);
  background: rgba(255, 128, 0, 0.1);
  border: 1px solid rgba(255, 128, 0, 0.3);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.footer-review-badge:hover {
  background: rgba(255, 128, 0, 0.15);
  border-color: rgba(255, 128, 0, 0.4);
  transform: translateY(-2px);
}

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

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

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

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

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

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

.site-footer .footer-bottom p.footer-legal {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 100%;
  margin: 4px auto;
  text-align: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
  transition: color 0.25s ease;
}

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

.footer-legal span {
  margin: 0 0.375rem;
  color: rgba(255, 255, 255, 0.75);
}
