/* =============================================
   CONTACT HEADER
   ============================================= */
.contact-header {
  padding: 50px 40px 56px;
}

.contact-header__sup {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 16px;
}

.contact-header__title {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  color: #fff;
}

.contact-header p {
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  max-width: 640px;
  margin-top: 24px;
}

/* =============================================
   CONTACT FORM
   ============================================= */
.contact-form-section {
  padding: 0 40px 100px;
}

.contact-form {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row--two {
  flex-direction: row;
  gap: 16px;
}

.form-row--two .form-field {
  flex: 1;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
}

.form-label__opt {
  font-weight: 400;
  color: #444;
}

.form-input {
  width: 100%;
  background: #000;
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 14px 16px;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 15px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: #555;
}

.form-input:focus {
  border-color: #555;
}

.form-select {
  cursor: pointer;
  color: #333;
  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='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-select option {
  background: #0d0d0d;
  color: #fff;
}

.form-select.has-value {
  color: #fff;
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-row--submit {
  padding-top: 8px;
}

.form-submit {
  background: #fff;
  color: #000;
  font-family: 'Plus Jakarta Sans', -apple-system, sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.2s;
  letter-spacing: -0.3px;
}

.form-submit:hover {
  opacity: 0.85;
}

.form-success {
  margin-top: 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .contact-header {
    padding: 50px 24px 56px;
  }

  .contact-form-section {
    padding: 0 24px 100px;
  }
}

@media (max-width: 600px) {
  .contact-header {
    padding: 24px 24px 40px;
  }

  .contact-form-section {
    padding: 0 24px 80px;
  }

  .form-row--two {
    flex-direction: column;
  }
}
