.elementor-549 .elementor-element.elementor-element-0fa733f{--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-549 .elementor-element.elementor-element-e80d95c{--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-549 .elementor-element.elementor-element-2197e47{--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-9833f63 */.wpcf7 {
  width: 100%; /* Allow full container width */
  max-width: 500px; /* Still limit for large screens */
  margin: 0px auto;
  padding: 20px;
  background: #fff;
  border: 2px solid gray;
  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: 768px) {
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
.wpcf7 select {
  width: 85%;
  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: 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;
}
}


/* 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;
}

.wpcf7 textarea{
    height: 150px;
    margin: -20px auto;
}

/* Submit button styling */
.wpcf7 input[type="submit"] {
  background: #4B3F3F;
  width: 100%;
  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: #695f5d;
  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 */