.elementor-29670 .elementor-element.elementor-element-1faf865{--display:flex;}/* Start custom CSS for shortcode, class: .elementor-element-5def335 *//* ========== CLEAN WHITE & ORANGE FORM THEME ========== */

/* Outer form card background */
.wpcf7 form {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 44px;
  max-width: 720px;
  margin: 0 auto;
}

/* Field labels */
.wpcf7 label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #18181b;
  font-family: 'Inter', sans-serif;
}

/* Text inputs, dropdowns, and textareas */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  background: #f4f4f5 !important;
  border: 1px solid #e4e4e7 !important;
  border-radius: 10px !important;
  padding: 14px 16px !important;
  color: #18181b !important;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

/* Input focus state with orange highlight */
.wpcf7 input:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  background: #ffffff !important;
  border-color: #ff6b1a !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 26, 0.15);
}

.wpcf7 textarea {
  min-height: 110px;
  resize: vertical;
}

/* Two-column layout grid */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-hint {
  font-size: 0.8rem;
  color: #71717a;
  margin-top: 6px;
  display: block;
}

/* Orange submit button */
.wpcf7 input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #ff6b1a !important;
  color: #ffffff !important;
  padding: 15px 26px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  border: none !important;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.wpcf7 input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 107, 26, 0.3);
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .wpcf7 form {
    padding: 28px 18px;
  }
}/* End custom CSS */