/* =========================
   FOOTER
========================= */
.site-footer{
  background:#f7fafc;
  color: #2b3a44;
}

.footer-inner{
  max-width: clamp(1120px, 92vw, 1400px);
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  padding: 40px 20px 22px;
}

.footer-brand{
  background: #f7fafc !important;
  padding: 18px;
}
.footer-logo img{
  display:block;
  height: 110px;             /* pas aan naar jouw logo */
  width: auto;
  margin-bottom: 12px;
}
.footer-blurb{ margin: 0; color:#455969; }

.footer-title{
  font-size: 1rem;
  font-weight: 800;
  color: var(--mussan-primary);
  margin: 6px 0 10px;
}

.footer-links,
.footer-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-links a{
  text-decoration: none;
  color: #2b3a44;
  padding: 8px 10px;
  border-radius: 10px;
  display: inline-block;
  border: 1px solid transparent;
  transition: background .18s ease, border-color .18s ease, transform .12s ease;
}
.footer-links a:hover{
  background: #ffffff;
  border-color: #e6edf2;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0,0,0,.05);
}

.footer-list i{
  margin-right: 8px;
  opacity: .8;
}
.footer-list a{ color:#2b3a44; text-decoration: none; }
.footer-list a:hover{ text-decoration: underline; }

/* Bottom bar */
.footer-bottom{
  border-top: 1px solid #031023;
  background: #031023;
  color: white;
  margin-top: 24px;
}
.footer-bottom-inner{
  max-width: clamp(1120px, 92vw, 1400px);
  padding: 12px 20px 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom a{
  color: white;
  font-weight: 700;
  text-decoration: none;
}
.footer-bottom a:hover{
  color: rgb(230, 230, 230);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 960px){
  .footer-inner{
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand{ grid-column: 1 / -1; }
}
@media (max-width: 600px){
  .footer-inner{
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner{
    flex-direction: column;
    align-items: flex-start;
  }
}









/* ============================
   CTA BAND – licht thema + huisstijl kleuren
============================ */
.cta-band{
  position:relative; padding: 64px 0;
  /* Lichte achtergrond met subtiele accenten in jouw blauw */
  background:#f7fafc;
  color: #1c2933; /* neutrale tekstkleur op licht */
}

.cta-container{
  max-width: clamp(1120px, 92vw, 1400px);
  display:grid; grid-template-columns: 1.1fr .9fr;
  gap: 28px; align-items: center;
}
@media (max-width: 992px){ .cta-container{ grid-template-columns: 1fr; } }

/* Badge in licht thema */
.cta-badge{
  display:inline-flex; align-items:center; gap:8px;
  background: rgba(26,67,90,.06);
  border: 1px solid rgba(26,67,90,.18);
  color: var(--mussan-primary);
  border-radius: 999px; padding: 6px 12px; font-weight:700;
  margin-bottom: 10px;
}

/* Kop & tekst in huisstijl */
.cta-left h2{
  color: var(--mussan-primary);
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin: 6px 0 8px;
}
.cta-left h2 .accent{ color: var(--mussan-primary); }
.cta-left p{ color: #3b4a54; max-width: 48ch; }

/* Knoppen in jouw blauw */
.cta-actions{ display:flex; gap: 12px; flex-wrap:wrap; margin-top: 10px; }

/* Foto­kaart rechts: lichter overlay + nette rand */
.cta-right .cta-photo{
  position: relative; border-radius: 16px; overflow:hidden;
background: center/cover no-repeat url('/images/overons/hero_1.webp');
  min-height: 280px;
  box-shadow: 0 14px 32px rgba(0,0,0,.15);
  border: 1px solid rgba(26,67,90,.12);
}
.cta-right .photo-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,0) 20%, rgba(0,0,0,.30) 85%);
}

/* Stats in licht ‘glass’ blokjes */
.photo-stats{
  position:absolute; left: 16px; bottom: 16px; display:flex; gap: 12px; flex-wrap:wrap;
}
.photo-stats > div{
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(26,67,90,.18);
  color: #163a4f;
  backdrop-filter: blur(4px);
  border-radius: 12px; padding: 10px 12px; min-width: 150px;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}
.photo-stats strong{ display:block; font-size: 1.25rem; line-height:1; color: var(--mussan-primary); }
.photo-stats span{ display:block; font-size: .88rem; color:#2d3e4b }

/* Subtiele float animatie kan blijven */
@keyframes floaty { 0%,100% { transform:translateY(0) } 50%{ transform: translateY(-4px) } }
.cta-right .cta-photo{ animation: floaty 6s ease-in-out infinite; }

/* Reduce motion respecteren */
@media (prefers-reduced-motion: reduce) {
  .cta-right .cta-photo { animation: none !important; }
}