.tz-enquiry-trigger {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 9997;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: linear-gradient(135deg, #007bff, #4f46e5);
  color: #fff;
  font: 800 14px/1.2 Inter, Arial, sans-serif;
  box-shadow: 0 16px 38px rgba(0, 88, 200, 0.32);
  cursor: pointer;
}

.tz-enquiry-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(8, 18, 47, 0.68);
  backdrop-filter: blur(8px);
}

.tz-enquiry-overlay.is-visible {
  display: flex;
}

.tz-enquiry-modal {
  width: min(680px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  font-family: Inter, Arial, sans-serif;
}

.tz-enquiry-head {
  position: relative;
  padding: 24px 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 199, 44, 0.28), transparent 36%),
    linear-gradient(135deg, #0f67ff, #08245f);
  color: #fff;
}

.tz-enquiry-eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tz-enquiry-head h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.tz-enquiry-head p {
  margin: 10px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  line-height: 1.6;
}

.tz-enquiry-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.tz-enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px 26px 26px;
}

.tz-enquiry-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.tz-enquiry-field.full {
  grid-column: 1 / -1;
}

.tz-enquiry-field label {
  color: #111827;
  font-size: 13px;
  font-weight: 800;
}

.tz-enquiry-field input,
.tz-enquiry-field select,
.tz-enquiry-field textarea {
  width: 100%;
  border: 1px solid #dbe2ea;
  border-radius: 13px;
  padding: 12px 13px;
  background: #f8fafc;
  color: #111827;
  font: 500 14px/1.4 Inter, Arial, sans-serif;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.tz-enquiry-field textarea {
  min-height: 92px;
  resize: vertical;
}

.tz-enquiry-field input:focus,
.tz-enquiry-field select:focus,
.tz-enquiry-field textarea:focus {
  border-color: #007bff;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.12);
}

.tz-enquiry-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}

.tz-enquiry-submit {
  border: 0;
  border-radius: 999px;
  padding: 13px 20px;
  background: linear-gradient(135deg, #007bff, #4f46e5);
  color: #fff;
  font: 900 14px/1 Inter, Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(0, 123, 255, 0.25);
}

.tz-enquiry-note {
  margin: 0;
  color: #64748b;
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .tz-enquiry-trigger {
    right: 12px;
    bottom: 76px;
    padding: 11px 14px;
  }

  .tz-enquiry-modal {
    border-radius: 20px;
  }

  .tz-enquiry-head,
  .tz-enquiry-form {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tz-enquiry-form {
    grid-template-columns: 1fr;
  }
}
