.pull-quote-premium {
  font-size: 24px;
  line-height: 1.6;
  font-weight: 400;
  font-style: italic;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  color: #1a1a1a;
  position: relative;
  padding: 20px 30px;
}

.pull-quote-premium::before {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #000;
  margin: 0 auto 25px auto;
  opacity: 0.2;
}

.pull-quote-premium::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #000;
  margin: 25px auto 0 auto;
  opacity: 0.2;
}
.pull-quote-section {
  background: linear-gradient(to bottom, #ffffff, #f1f3f6);
}
/* Overlay */
.wd-tip-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 20, 40, 0.75);

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;

  z-index: 9999;
}

.wd-tip-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal */
.wd-tip-modal {
  background: #ffffff;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;

  padding: 35px;
  border-radius: 12px;
  text-align: center;
  position: relative;

  box-shadow: 0 25px 80px rgba(0,0,0,0.25);
}

/* Close */
.wd-tip-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
}

/* Form */
.wd-tip-form textarea,
.wd-tip-form input {
  width: 100%;
  padding: 13px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

/* Button */
.wpcf7-submit {
  background: #004bce;
  color: #fff;
  padding: 14px;
  width: 100%;
  border-radius: 6px;
  border: none;
}

.wpcf7-submit:hover {
  background: #003a9f;
}

/* Secure text */
.wd-tip-secure {
  font-size: 13px;
  color: #00a512;
}

/* SUCCESS STATE (hidden initially) */
.wd-tip-success {
  display: none;
  text-align: center;
}

/* Active success */
.wd-tip-modal.success .wd-tip-content {
  display: none;
}

.wd-tip-modal.success .wd-tip-success {
  display: block;
}

/* Success styling */
.wd-success-icon {
  font-size: 50px;
  color: #00a512;
  margin-bottom: 10px;
}
/* CF7 styling inside popup */
.wd-tip-form textarea,
.wd-tip-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.wd-tip-form textarea {
  min-height: 120px;
}

.wpcf7-submit {
  background: #e11d48;
  color: #fff;
  padding: 14px;
  width: 100%;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.wpcf7-submit:hover {
  background: #be123c;
}