/* Start custom CSS for qtec-contact-form, class: .elementor-element-28a5663 *//* ===== FORM LAYOUT ===== */
.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  width: 50%;
}

.form-group {
  margin-bottom: 20px;
}

/* ===== INPUTS & TEXTAREA ===== */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid #000;
  background: #fff;
  font-size: 15px;
  color: #000;
  outline: none;
  transition: all 0.3s ease;
}

.wpcf7 textarea {
  min-height: 180px;
  resize: none;
}

/* Focus effect */
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

/* ===== SUBMIT BUTTON ===== */
.wpcf7 input[type="submit"],
.theme-btn.btn-style-four {
  background: #000;
  color: #fff;
  padding: 15px 45px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid #000;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Button hover */
.wpcf7 input[type="submit"]:hover {
  background: transparent;
  color: #000;
}

/* ===== PLACEHOLDER ===== */
::placeholder {
  color: #777;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
  }

  .form-row .form-group {
    width: 100%;
  }
}
.wpcf7-not-valid-tip {
  color: red;
  font-size: 13px;
  margin-top: 5px;
  display: block;
}

.wpcf7-response-output {
  margin-top: 15px;
}/* End custom CSS */