/* ==============================================================================
   VINASTECH DEMO REQUEST MODAL — MINIMAL CLEAN WHITE & BLACK ENTERPRISE FORM
   ============================================================================== */

.vst-demo-modal-backdrop {
  position: fixed !important;
  inset: 0 !important;
  background: rgba(15, 23, 42, 0.65) !important;
  backdrop-filter: blur(8px) !important;
  z-index: 999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 1.5rem !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease !important;
}

.vst-demo-modal-backdrop.active {
  opacity: 1 !important;
  pointer-events: auto !important;
}

.vst-demo-modal {
  width: min(100%, 620px) !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  background-image: none !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 12px !important;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25) !important;
  color: #0f172a !important;
  padding: 2.5rem !important;
  position: relative !important;
  max-height: 90vh !important;
  overflow-y: auto !important;
}

.vst-demo-close {
  position: absolute !important;
  top: 1.25rem !important;
  right: 1.25rem !important;
  background: #f1f5f9 !important;
  border: 1px solid #cbd5e1 !important;
  color: #475569 !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  font-size: 1.1rem !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 150ms ease !important;
}

.vst-demo-close:hover {
  background: #e2e8f0 !important;
  color: #0f172a !important;
}

.vst-form-group {
  margin-bottom: 1.25rem !important;
  text-align: left !important;
}

.vst-form-label {
  display: block !important;
  font-family: var(--font-body) !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: #0f172a !important;
  margin-bottom: 0.4rem !important;
}

.vst-form-input,
.vst-form-select,
.vst-form-textarea {
  width: 100% !important;
  padding: 0.85rem 1.1rem !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 6px !important;
  color: #0f172a !important;
  font-size: 0.95rem !important;
  outline: none !important;
  font-family: inherit !important;
  transition: border-color 150ms ease, box-shadow 150ms ease !important;
}

.vst-form-input::placeholder,
.vst-form-textarea::placeholder {
  color: #94a3b8 !important;
}

.vst-form-input:focus,
.vst-form-select:focus,
.vst-form-textarea:focus {
  border-color: #2563eb !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15) !important;
}

.vst-form-select option {
  background: #ffffff !important;
  color: #0f172a !important;
}

.vst-demo-submit-btn {
  width: 100% !important;
  padding: 0.95rem !important;
  background: #2563eb !important;
  background-image: none !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 6px !important;
  font-family: var(--font-body) !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25) !important;
  transition: all 150ms ease !important;
  margin-top: 0.5rem !important;
}

.vst-demo-submit-btn:hover {
  background: #1d4ed8 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35) !important;
}
