.elementor-6544 .elementor-element.elementor-element-4f8a598{--display:flex;}.elementor-6544 .elementor-element.elementor-element-4f8a598.e-con{--flex-grow:0;--flex-shrink:0;}#elementor-popup-modal-6544 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-6544{justify-content:center;align-items:center;}#elementor-popup-modal-6544 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}@media(min-width:768px){.elementor-6544 .elementor-element.elementor-element-4f8a598{--width:96.406%;}}/* Start custom CSS for shortcode, class: .elementor-element-6d1fe7c *//* ===========================
   RESET ELEMENTOR POPUP
=========================== */
.elementor-popup-modal {
  background: rgba(0, 0, 0, 0.65) !important; /* dark overlay */
  padding: 0 !important;
  box-shadow: none !important;
  overflow-y: auto !important; /* prevent double scrollbars */
  pointer-events: auto;
  cursor: pointer; /* allow overlay click */
}

.elementor-popup-modal .dialog-widget-content {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* ===========================
   POPUP FORM CONTAINER
=========================== */
.custom-cf7-popup {
  position: relative;
  background: #ffffff;
  padding: 40px 36px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  font-family: 'Poppins', sans-serif;
  text-align: center;
  max-width: 620px;
  margin: auto;
  pointer-events: auto;
  cursor: default; /* prevent overlay click inside form */
  animation: fadeInUp 0.35s ease both; /* smooth entrance */
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===========================
   INPUT FIELDS
=========================== */
.custom-cf7-popup input,
.custom-cf7-popup textarea,
.custom-cf7-popup input[type="submit"] {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: block;
}

.custom-cf7-popup input,
.custom-cf7-popup textarea {
  padding: 14px 16px;
  margin-bottom: 18px;
  border: 1px solid #e3f0f6;
  border-radius: 8px;
  background: #fbfdfe;
  font-size: 15px;
  line-height: 1.5;
  height: 48px;
  box-shadow: none;
  transition: all 0.2s ease-in-out;
}

/* Textarea override */
.custom-cf7-popup textarea {
  min-height: 100px;
  height: auto;
  resize: vertical;
}

/* Focus styles */
.custom-cf7-popup input:focus,
.custom-cf7-popup textarea:focus {
  outline: none;
  border-color: #6EC1E4;
  box-shadow: 0 0 0 2px rgba(110, 193, 228, 0.25);
}

/* ===========================
   SUBMIT BUTTON
=========================== */
.custom-cf7-popup input[type="submit"] {
  background: #6EC1E4;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  margin-top: 6px;
  box-shadow: 0 4px 12px rgba(110, 193, 228, 0.25);
}

.custom-cf7-popup input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(110, 193, 228, 0.35);
}

/* ===========================
   CLOSE BUTTON
=========================== */
.custom-cf7-popup .cf7-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #6EC1E4;
  color: #6EC1E4;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  z-index: 99999;
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease-in-out;
}

.custom-cf7-popup .cf7-close-btn:hover {
  background: #6EC1E4;
  color: #ffffff;
  transform: scale(1.1);
}

/* Accessibility: focus state for keyboard users */
.custom-cf7-popup .cf7-close-btn:focus {
  outline: 3px solid rgba(110, 193, 228, 0.5);
  outline-offset: 2px;
}

/* ===========================
   VALIDATION & RESPONSE STYLES
=========================== */
.custom-cf7-popup .wpcf7-not-valid {
  border-color: #ff4d4f;
  box-shadow: 0 0 0 3px rgba(255, 77, 79, 0.15);
  background: #fff6f6;
}

.custom-cf7-popup .wpcf7-not-valid-tip {
  color: #d60000; /* improved contrast */
  font-size: 13px;
  margin-top: -10px;
  margin-bottom: 12px;
  display: block;
  text-align: left;
}

.custom-cf7-popup .wpcf7-response-output {
  margin-top: 15px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
}

.custom-cf7-popup .wpcf7-validation-errors {
  background: #fff3f3;
  border: 1px solid #ffb3b3;
  color: #d60000;
}

.custom-cf7-popup .wpcf7-mail-sent-ok {
  background: #f0fff6;
  border: 1px solid #a3e5c0;
  color: #1c8c4c;
}

/* ===========================
   RESPONSIVE FIXES
=========================== */
@media (max-width: 480px) {
  .custom-cf7-popup {
    padding: 24px 18px;
    border-radius: 12px;
  }
  .custom-cf7-popup .cf7-close-btn {
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
  .custom-cf7-popup input,
  .custom-cf7-popup textarea {
    padding: 12px 14px;
    font-size: 14px;
    height: 42px;
  }
  .custom-cf7-popup input[type="submit"] {
    padding: 12px 24px;
    font-size: 15px;
  }
}/* End custom CSS */