.contact-section-title {
  box-sizing: border-box;
  height: 25dvh;
  background-color: var(--primary);
  padding-top: 10dvh;
  text-align: center;
}

.contact-section form {
  box-sizing: border-box;
  margin: 0 auto;
  color: var(--white);
  max-width: 800px;
  padding: 50px;
}

.contact-section h1 {
  color: var(--white);
  font-family: "Futura", sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  margin-bottom: 1rem;
}



.contact-input input,
.contact-select select {
  box-sizing: border-box;
  width: 100%;
  height: 6dvh;
  background: #FFF;
  border: 1px solid var(--primary);
  border-radius: 8px;
  color: var(--black);
  padding: 0.8rem 1rem;
  font-family: "Helvetica", sans-serif;
  outline: none;
  transition: border 0.2s ease;
  margin-bottom: 25px;
}

.contact-textarea textarea {
  box-sizing: border-box;

  width: 100%;
  background: #FFF;
  border: 1px solid var(--primary);
  border-radius: 8px;
  color: var(--black);
  padding: 0.8rem 1rem;
  font-family: "Helvetica", sans-serif;
  outline: none;
  transition: border 0.2s ease;
  margin-bottom: 25px;
}

.contact-input input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 1px solid var(--primary);
}

.contact-intro {
  color: var(--primary);
  font-size: 1.3rem;
  margin-top: 0px;
  margin-bottom: 25px;
}

.cta-button {
  width: 100%;
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  background: var(--accent);
  border: none;
  color: var(--white);
  font-family: 'Futura LT Heavy';
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-size: clamp(18px, 1.3vw, 24px);
}

.cta-button:hover {
  background: #d4ae00;
}

.form-message {
  margin-top: 1rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-message.success {
  color: #E9C200;
  opacity: 1;
}

.form-message.error {
  color: #FF4D4D;
  opacity: 1;
}

.hp-wrapper {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}