/* Get in touch pagina — navy blauwe stijl, zelfde als de rest van de site */

.getintouch-page {
  background: #001966;
  min-height: 100vh;
}

.getintouch-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10rem 4rem 6rem;
}

.getintouch-hero__inner {
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
}

.getintouch-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(5rem, 10vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.5rem;
}

.getintouch-hero__intro {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  margin-bottom: 3.5rem;
  max-width: 46ch;
}

.contact-form__botcheck {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form__row {
  margin-bottom: 1.8rem;
}

.contact-form__row label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.7rem;
}

.contact-form__row input,
.contact-form__row textarea {
  width: 100%;
  font-family: 'Barlow', sans-serif;
  font-size: 1.05rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  border-radius: 12px;
  padding: 1.05rem 1.25rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.contact-form__row input::placeholder,
.contact-form__row textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.contact-form__row input:focus,
.contact-form__row textarea:focus {
  outline: none;
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.contact-form__row textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form__submit {
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #001966;
  background: #fff;
  border: 2px solid #fff;
  border-radius: 3rem;
  padding: 1.1rem 3rem;
  cursor: pointer;
  transition: all var(--ease);
  margin-top: 0.5rem;
}

.contact-form__submit:hover {
  background: transparent;
  color: #fff;
}

.contact-form__submit:disabled {
  opacity: 0.5;
  cursor: default;
  background: #fff;
  color: #001966;
}

.contact-form__status {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  line-height: 1.6;
}

.contact-form__status--success { color: #8fe3ac; }
.contact-form__status--error { color: #ff9d92; }

.getintouch-hero__back {
  display: inline-block;
  margin-top: 3rem;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease;
}

.getintouch-hero__back:hover { color: #fff; }

@media (max-width: 900px) {
  .getintouch-hero { padding: 7rem 1.5rem 4rem; }
  .getintouch-hero__intro { max-width: none; }
}
