/* ==================== FOOTER.CSS ==================== */
.footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}
.footer-col h4 {
  color: white;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  color: #cbd5e1;
  margin-bottom: 10px;
  text-decoration: none;
}
.footer-col a:hover {
  color: #60a5fa;
}
.social-icons a {
  font-size: 1.6rem;
  margin-right: 15px;
  color: #cbd5e1;
}
.social-icons a:hover {
  color: #60a5fa;
}

/* ==================== PARTNER LOGOS + COPYRIGHT ==================== */
.partner-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  border-top: 1px solid #334155;
  padding-top: 30px;
}
.copyright {
  color: #64748b;
  font-size: 0.95rem;
  white-space: nowrap;
}
/* Carousel */
.partner-logos {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}
.logos-track {
  display: flex;
  align-items: center;
  gap: 50px;
  animation: scroll-logos 35s linear infinite;
  white-space: nowrap;
}
.logos-track img {
  height: 38px;
  opacity: 0.75;
}
.logos-track:hover {
  animation-play-state: paused;
}
@keyframes scroll-logos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==================== COOKIE BANNER & MODAL (nieuw) ==================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  color: #cbd5e1;
  padding: 20px 0;
  z-index: 10000;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
  border-top: 3px solid #60a5fa;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.cookie-btn.primary {
  background: #60a5fa;
  color: white;
  border: none;
}

.cookie-btn.secondary {
  background: transparent;
  color: #cbd5e1;
  border: 2px solid #64748b;
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

/* Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10001;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #0f172a;
  color: #cbd5e1;
  max-width: 500px;
  width: 90%;
  padding: 30px;
  border-radius: 12px;
}

.cookie-option {
  margin-bottom: 20px;
  padding: 15px;
  background: #1e2937;
  border-radius: 8px;
}

.cookie-option small {
  display: block;
  margin-top: 8px;
  opacity: 0.8;
}

/* Responsive footer + cookie */
@media (max-width: 768px) {
  .partner-section {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .copyright { order: 2; }
  .partner-logos { order: 1; width: 100%; }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}
/* ==================== COOKIE BANNER & MODAL ==================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0f172a;
  color: #cbd5e1;
  padding: 20px 0;
  z-index: 10000;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
  border-top: 3px solid #60a5fa;
  display: none;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.cookie-btn.primary {
  background: #60a5fa;
  color: white;
  border: none;
}

.cookie-btn.secondary {
  background: transparent;
  color: #cbd5e1;
  border: 2px solid #64748b;
}

.cookie-btn:hover {
  transform: translateY(-2px);
}

/* Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10001;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #0f172a;
  color: #cbd5e1;
  max-width: 500px;
  width: 90%;
  padding: 30px;
  border-radius: 12px;
}

.cookie-option {
  margin-bottom: 20px;
  padding: 15px;
  background: #1e2937;
  border-radius: 8px;
}

.cookie-option small {
  display: block;
  margin-top: 8px;
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
}