/* =============================================
   MPS Projecten — contact.css
   ============================================= */
 
/* ── HERO — gesplitst wit/rood ── */
.ct-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 380px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
 
.ct-hero-left {
  background: var(--white);
  padding: 5rem 3rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
 
.ct-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.25rem;
}
 
.ct-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
}
 
.ct-eyebrow span {
  font-size: 11px;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: .1em;
}
 
.ct-h1 {
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 1.25rem;
}
 
.ct-h1 em { font-style: italic; color: var(--red); }
 
.ct-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 380px;
}
 
/* HERO RECHTS — rood */
.ct-hero-right {
  background: var(--red);
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
 
.ct-hero-right::before {
  content: '';
  position: absolute;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,.07);
  bottom: -80px; right: -80px;
  pointer-events: none;
}
 
.ct-cards { display: flex; flex-direction: column; gap: 10px; position: relative; }
 
.ct-card {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background .2s;
  text-decoration: none;
  color: inherit;
}
 
.ct-card:hover { background: rgba(255,255,255,.2); }
.ct-card-static:hover { background: rgba(255,255,255,.12); cursor: default; }
 
.ct-ico {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.ct-ico svg { width: 16px; height: 16px; }
 
.ct-lbl {
  font-size: 9px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 2px;
}
 
.ct-val {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
 
/* ── MAIN GRID ── */
.ct-main-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}
 
/* ── FORMULIER ── */
.ct-form-wrap {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
}
 
.ct-form-header {
  margin-bottom: 1.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
 
.ct-form-header h2 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -.03em;
  margin-bottom: .3rem;
}
 
.ct-form-header p {
  font-size: 13px;
  color: var(--muted);
}
 
.ct-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
 
.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
 
.ct-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
 
.ct-field label {
  font-size: 11px;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .06em;
}
 
.ct-field input,
.ct-field textarea {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--dark);
  background: var(--gray);
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  padding: 11px 14px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  resize: vertical;
  width: 100%;
}
 
.ct-field input:focus,
.ct-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,23,26,.07);
}
 
.ct-field input::placeholder,
.ct-field textarea::placeholder {
  color: var(--dim);
}
 
.ct-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: var(--r-pill);
  padding: 12px 26px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
  align-self: flex-start;
  margin-top: .25rem;
}
 
.ct-submit svg { width: 14px; height: 14px; }
.ct-submit:hover { background: var(--red); transform: translateY(-2px); }
 
.ct-privacy {
  font-size: 11px;
  color: var(--dim);
  line-height: 1.6;
}
 
/* SUCCESS / ERROR */
.ct-success {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}
 
.ct-success-icon {
  width: 32px; height: 32px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
}
 
.ct-success-title {
  font-size: 14px;
  font-weight: 700;
  color: #166534;
  margin-bottom: 2px;
}
 
.ct-success-sub {
  font-size: 13px;
  color: #166534;
  opacity: .8;
}
 
.ct-error {
  background: var(--red-bg);
  border: 1.5px solid var(--red-border);
  border-radius: var(--r-md);
  padding: 1rem 1.25rem;
  font-size: 13px;
  color: var(--red);
  margin-bottom: 1.5rem;
}
 
.ct-error a { color: var(--red); font-weight: 700; }
 
/* ── SIDEBAR ── */
.ct-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 90px;
}
 
.ct-stijn-card {
  background: var(--dark-2);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
 
.ct-stijn-foto {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--red);
  flex-shrink: 0;
}
 
.ct-stijn-foto img {
  width: 100%; height: 100%;
  object-fit: cover;
}
 
.ct-stijn-naam {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
 
.ct-stijn-rol {
  font-size: 11px;
  color: rgba(255,255,255,.4);
  margin-bottom: 5px;
}
 
.ct-stijn-quote {
  font-size: 12px;
  font-style: italic;
  color: rgba(255,255,255,.55);
  line-height: 1.6;
}
 
.ct-beschikbaar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
 
.ct-beschikbaar-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(34,197,94,.2);
}
 
.ct-beschikbaar-txt {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}
 
.ct-beschikbaar-sub {
  font-size: 11px;
  color: var(--dim);
}
 
/* MAP */
.ct-map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
 
.ct-map-wrap iframe {
  display: block;
}
 
.ct-map-label {
  background: var(--white);
  padding: .75rem 1rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
}
 
.ct-map-label svg { width: 14px; height: 14px; flex-shrink: 0; }
 
/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .ct-hero {
    grid-template-columns: 1fr;
  }
  .ct-hero-right {
    padding: 2.5rem 2rem;
  }
  .ct-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .ct-main-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .ct-sidebar { position: static; }
}
 
@media (max-width: 600px) {
  .ct-hero-left { padding: 3rem 1.5rem 2.5rem; }
  .ct-form-row { grid-template-columns: 1fr; }
  .ct-cards { grid-template-columns: 1fr; }
  .ct-form-wrap { padding: 1.5rem; }
}
 
/* CTA wit op contact pagina */
.ct-cta-white {
  background: var(--white) !important;
}
.ct-cta-white .cta-badge {
  background: var(--dark);
  color: rgba(255,255,255,.75);
}
.ct-cta-white .cta-h2 {
  color: var(--dark);
}
.ct-cta-white .cta-h2 em {
  color: var(--red);
}
.ct-cta-white .cta-sub {
  color: var(--muted);
}
.ct-cta-white .btn-cta {
  background: var(--red);
  color: #fff;
}
.ct-cta-white .btn-cta:hover {
  background: var(--red-hover);
}