  /* CF7 SUCCESS MODAL */
.cf7-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.cf7-modal.show {
  opacity: 1;
  visibility: visible;
}

.cf7-modal-content {
  background: #f3f3f3;
  max-width: 420px;
  width: 90%;
  padding: 32px 26px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.cf7-icon {
  width: 64px;
  height: 64px;
  background: #4CAF50;
  color: #fff;
  font-size: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-weight: bold;
}

.cf7-modal-content h2 {
  margin-bottom: 8px;
  color: #333;
  font-size: 20px;
}

.cf7-modal-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 22px;
  line-height: 1.5;
}

.btn--green {
  background: #4CAF50;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn--green:hover {
  background: #43a047;
}

  .wpcf7-response-output {
    display: none;
  }
 
