.elementor-438 .elementor-element.elementor-element-c027e50{--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;}.elementor-438 .elementor-element.elementor-element-1ac557d{--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;}.elementor-438 .elementor-element.elementor-element-b7bb9d0.elementor-element{--align-self:center;}.elementor-438 .elementor-element.elementor-element-39faeba{--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;}.elementor-438 .elementor-element.elementor-element-ace3cc5{--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-b7bb9d0 *//* Contact Form 7 container */
.wpcf7 {
  width: 100%; /* Allow full container width */
  max-width: 500px; /* Still limit for large screens */
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border: 2px solid #f0c040;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  animation: fadeInUp 0.8s ease-in-out;
  box-sizing: border-box;
}

/* Input & textarea styling */
@media (min-width: 310px) {
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  max-width: 100%; /* Ensure no fixed width breaks responsiveness */
  padding: 12px;
  margin: 8px 0 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
}

@media (min-width: 768px) {
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 83%;
  max-width: 100%; /* Ensure no fixed width breaks responsiveness */
  padding: 12px;
  margin: 8px 0 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
}




/* Focus effect */
.wpcf7 input:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  border-color: #f0c040;
  box-shadow: 0 0 8px rgba(240, 192, 64, 0.4);
  outline: none;
}

/* Submit button styling */
.wpcf7 input[type="submit"] {
  background: #f0c040;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wpcf7 input[type="submit"]:hover {
  background: #d4a830;
  transform: scale(1.05);
}

/* Responsive behavior */
@media (max-width: 600px) {
  .wpcf7 {
    padding: 15px;
  }
}

/* Animation keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* End custom CSS */