/* ============================================
   CONTACT PAGINA
   ============================================ */

.contact-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 60%, #1e2a1e 100%);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.contact-hero::before {
  content: "";
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(143,208,108,0.1);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.contact-hero::after {
  content: "";
  position: absolute;
  width: 900px; height: 900px;
  border-radius: 50%;
  border: 1px solid rgba(143,208,108,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}


.contact-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}

.contact-titel {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.5px;
  border-bottom: none;
  padding-bottom: 0;
}
.contact-titel strong { font-weight: 700; }

.contact-intro {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  max-width: 460px;
  margin: 0 auto;
}

.contact-body {
  padding: 80px 60px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-form {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 48px 44px;
  border: 1px solid var(--card-border);
  box-shadow: 0 2px 16px var(--shadow-soft);
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.form-content.verborgen {
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  position: absolute;
}

.form-titel { font-size: 22px; font-weight: 700; color: var(--text-dark); }

.form-rij {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-groep {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-groep label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-medium);
  letter-spacing: 0.3px;
}

.form-groep input,
.form-groep select,
.form-groep textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1.5px solid var(--border-light);
  background: transparent;
  font-size: 15px;
  color: var(--text-dark);
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
  appearance: none;
}

.form-groep input:focus,
.form-groep select:focus,
.form-groep textarea:focus { border-bottom-color: var(--primary); }

.form-groep select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.form-groep textarea {
  resize: none;
  min-height: 120px;
  line-height: 1.6;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--text-dark);
  border: none;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
  font-family: inherit;
}

.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.form-melding {
  display: none;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}

.form-melding.succes {
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid rgba(143,208,108,0.3);
}

.form-melding.fout {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

/* Bevestiging animatie */
.bevestiging {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  animation: bevestigingIn 0.5s ease both;
  width: 100%;
}

.bevestiging.zichtbaar { display: flex; }

@keyframes bevestigingIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cirkel-wrap {
  position: relative;
  width: 120px; height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(143,208,108,0.2);
  animation: ringUit 1.2s ease both;
}

.ring-1 { width: 120px; height: 120px; animation-delay: 0.3s; }
.ring-2 { width: 160px; height: 160px; animation-delay: 0.5s; border-color: rgba(143,208,108,0.12); }
.ring-3 { width: 200px; height: 200px; animation-delay: 0.7s; border-color: rgba(143,208,108,0.07); }

@keyframes ringUit {
  from { opacity: 0; transform: scale(0.6); }
  to   { opacity: 1; transform: scale(1); }
}

.check-cirkel {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: cirkelIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes cirkelIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.vinkje { width: 36px; height: 36px; }

.vinkje-pad {
  stroke: var(--primary-dark);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: vinkjeIn 0.5s ease 0.4s both;
}

@keyframes vinkjeIn { to { stroke-dashoffset: 0; } }

.bevestiging-titel { font-size: 22px; font-weight: 700; color: var(--text-dark); }

.bevestiging-tekst {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-light);
  max-width: 360px;
}

.bevestiging-terug {
  font-size: 13px;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2px;
  transition: color 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  font-family: inherit;
}

.bevestiging-terug:hover { color: var(--text-dark); }

/* Contact info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 8px;
}

.contact-info-intro { font-size: 16px; line-height: 1.75; color: var(--text-light); }

.contact-item { display: flex; flex-direction: column; gap: 6px; }

.contact-item-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primary-dark);
}

.contact-item-waarde {
  font-size: 16px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-item-waarde:hover { color: var(--primary-dark); }

.contact-socials { display: flex; gap: 16px; margin-top: 4px; }

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg-lighter);
  color: var(--text-medium);
  text-decoration: none;
  font-size: 18px;
  transition: background 0.2s, color 0.2s;
}

.social-link:hover {
  background: var(--primary-light);
  color: var(--primary-dark);
}

.contact-divider { height: 1px; background: var(--card-border); }

@media (max-width: 768px) {
  .contact-hero { padding: 60px 24px; }
  .contact-body { grid-template-columns: 1fr; padding: 60px 24px; gap: 48px; }
  .form-rij { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
}