.elementor-278 .elementor-element.elementor-element-7393880{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for shortcode, class: .elementor-element-a1c2ab3 *//* ===== Contact Form 7 - Responsive Form Styles ===== */
.wpcf7 form {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.06);
  box-sizing: border-box;
  font-family: "Poppins", Arial, sans-serif;
}

/* Label styling */
.wpcf7-form label {
  display: block;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
  font-size: 15px;
}

/* Input and textarea fields */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  background: #fafafa;
  margin-bottom: 16px;
  transition: all 0.2s ease;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: #2d9cdb;
  background: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(45,155,219,0.15);
}

/* Submit button */
.wpcf7-form .wpcf7-submit {
  background: linear-gradient(90deg,#2d9cdb,#226fb3);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease, transform 0.1s ease;
}

.wpcf7-form .wpcf7-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ===== Responsive Layout ===== */

/* 2-column layout for larger screens */
@media (min-width: 768px) {
  .wpcf7-form p {
    display: flex;
    flex-direction: column;
  }

  /* make Name and Email side-by-side */
  .wpcf7-form p:nth-child(1),
  .wpcf7-form p:nth-child(2) {
    width: 48%;
    display: inline-block;
  }

  .wpcf7-form p:nth-child(1) {
    margin-right: 3%;
  }

  .wpcf7-form p:nth-child(3),
  .wpcf7-form p:nth-child(4),
  .wpcf7-form p:nth-child(5) {
    width: 100%;
    display: block;
  }
}

/* Adjust padding for small screens */
@media (max-width: 480px) {
  .wpcf7 form {
    padding: 15px 18px;
  }
  .wpcf7-form input,
  .wpcf7-form textarea {
    font-size: 14px;
  }
  .wpcf7-form .wpcf7-submit {
    width: 100%;
    padding: 12px;
  }
}/* End custom CSS */