.elementor-11 .elementor-element.elementor-element-1f0fdd7{margin-top:50px;margin-bottom:0px;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-11 .elementor-element.elementor-element-70a0969 > .elementor-widget-container{margin:65px 0px 0px 0px;}.elementor-11 .elementor-element.elementor-element-70a0969 .elementor-heading-title{color:#E6B952;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for shortcode, class: .elementor-element-50c33c1 *//* === CTA FORM STYLE (like your sample image) === */

.wpcf7 form .row {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
  max-width: 980px;
  margin: 0 auto;
  font-family: "Poppins", "Helvetica Neue", Arial, sans-serif;
}

/* Columns layout */
.wpcf7 form .col-md-6 {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Input + Textarea common style */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #00c3ff;
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 15px;
  color: #222;
  box-sizing: border-box;
  transition: all 0.25s ease;
  outline: none;
}

/* Input field height */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
  height: 55px;
}

/* Textarea height */
.wpcf7 textarea {
  min-height: 150px;
  resize: vertical;
}

/* Placeholder style */
.wpcf7 ::placeholder {
  color: #6b6b6b;
  font-weight: 500;
}

/* Focus effect */
.wpcf7 input:focus,
.wpcf7 textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}

/* Submit button */
.wpcf7 input[type="submit"] {
  background: #1126ff; /* blue button */
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
  box-shadow: 0 6px 18px rgba(17, 38, 255, 0.2);
  transition: all 0.25s ease;
  text-transform: lowercase;
}

/* Add arrow manually if not in form shortcode */
.wpcf7 input[type="submit"]::after {
  content: " »";
  font-size: 18px;
}

/* Hover effect */
.wpcf7 input[type="submit"]:hover {
  background: #001aff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(17, 38, 255, 0.3);
}

/* Responsive - single column on mobile */
@media (max-width: 768px) {
  .wpcf7 form .row {
    flex-direction: column;
    gap: 20px;
  }
  .wpcf7 form .col-md-6 {
    width: 100%;
  }
  .wpcf7 input[type="submit"] {
    width: 100%;
    text-align: center;
  }
}

/* Background behind form */
.cta-form {
  background-color: #0a0a0a !important;
  padding: 100px 20px;
}/* End custom CSS */