/* ============================
   FORM PAGE SPECIFIC STYLES
   ============================ */

/* Step completed state (step 1 on form page) */
.step-item.completed .step-number {
  background-color: var(--primary-orange);
  color: #fff;
}

.step-item.completed {
  color: var(--primary-orange);
  font-weight: 700;
}

/* Form Box */
.form-box {
  padding: 40px 45px;
}

.form-title {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 8px;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row.full-width {
  flex-direction: column;
}

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

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

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

.form-field label {
  font-size: 14px;
  font-weight: 600;
  color: #aaa;
  letter-spacing: 0.3px;
}

.form-field input,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.2);
  padding: 10px 0;
  font-size: 16px;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
}

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

.form-field input:focus,
.form-field textarea:focus {
  border-bottom-color: var(--primary-orange);
}

/* Date input styling */
.form-field input[type="date"] {
  color: #fff;
  -webkit-appearance: none;
  appearance: none;
}

.form-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1);
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.form-field input[type="date"]::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}


/* Submit Button */
.btn-submit {
  width: 100%;
  padding: 18px;
  background: var(--primary-orange);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit:hover {
  background: #e8690a;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.35);
}

.btn-submit:active {
  transform: translateY(0);
}

/* ============================
   MOBILE RESPONSIVE
   ============================ */
@media (max-width: 768px) {
  .form-box {
    padding: 25px 20px;
  }

  .form-title {
    font-size: 24px;
  }

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

  .contact-form {
    gap: 16px;
  }

  .btn-submit {
    font-size: 16px;
    padding: 15px;
  }
}
