/* ==========================================================================
   CTA-SECTION.CSS — Verhuislifthuren.eu
   Mid-page + einde CTA section
   ========================================================================== */

/* ---------- Basis CTA section ---------- */
.cta-section {
  padding: var(--space-2xl) 0;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: var(--space-sm);
}

.cta-section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- CTA knoppen ---------- */
.cta-section-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

@media (min-width: 480px) {
  .cta-section-buttons {
    flex-direction: row;
    justify-content: center;
    gap: var(--space-md);
  }
}

.cta-section-buttons .btn {
  padding: 14px 28px;
  font-size: 1rem;
  min-width: 220px;
}

/* ---------- Trust elementen ---------- */
.cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md) var(--space-lg);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.cta-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cta-trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* ---------- Mid-page variant (subtiel) ---------- */
.cta-section--mid {
  background-color: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* ---------- Einde variant (prominent) ---------- */
.cta-section--end {
  background-color: var(--color-secondary-dark);
  color: #fff;
  padding: var(--space-3xl) 0;
}

.cta-section--end h2 {
  color: #fff;
}

.cta-section--end .cta-section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.cta-section--end .cta-trust {
  color: rgba(255, 255, 255, 0.7);
}

.cta-section--end .cta-trust-item svg {
  color: var(--color-primary-light);
}
