/* Clean, slick, flat, modern Callback & Quote Modal */
@keyframes tvcModalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes tvcModalSlideUp {
  from { opacity: 0; transform: scale(0.98) translateY(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes tvcPulseGlow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

.tvc-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  z-index: 2147483647 !important;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  box-sizing: border-box;
  animation: tvcModalFadeIn 0.15s ease-out;
}

.tvc-modal-card-simple {
  background: #ffffff;
  border-radius: 14px;
  max-width: 440px;
  width: 100%;
  margin: auto;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.04);
  position: relative;
  box-sizing: border-box;
  text-align: left;
  font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  animation: tvcModalSlideUp 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px 22px 18px;
}

.tvc-simple-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.tvc-simple-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #dcfce7;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.tvc-pulse-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
  animation: tvcPulseGlow 1.8s infinite ease-in-out;
}

.tvc-simple-title {
  font-size: 17px;
  font-weight: 750;
  color: #0f172a;
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

.tvc-modal-close-btn {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
  transition: all 0.12s ease;
}

.tvc-modal-close-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
  border-color: #cbd5e1;
}

.tvc-modal-close-btn svg {
  display: block;
}

/* Tour Context Strip */
.tvc-simple-tour-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 7px 10px;
  margin-bottom: 12px;
}

.tvc-simple-tour-info {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.tvc-simple-dest-tag {
  font-size: 9.5px;
  font-weight: 750;
  background: #0f172a;
  color: #ffffff;
  padding: 2px 5px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.tvc-simple-tour-title {
  font-size: 12px;
  font-weight: 600;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tvc-simple-tour-price {
  font-size: 12px;
  font-weight: 750;
  color: #059669;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Form Styles */
.tvc-simple-form-body form {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.tvc-simple-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.tvc-simple-field {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tvc-simple-field label {
  font-size: 11px;
  font-weight: 650;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 4px;
}

.tvc-optional-tag {
  font-size: 10.5px;
  font-weight: 400;
  color: #94a3b8;
}

.tvc-simple-input {
  width: 100%;
  height: 38px;
  padding: 0 10px;
  border-radius: 7px;
  border: 1px solid #d1d5db;
  font-size: 12.5px;
  font-weight: 500;
  color: #0f172a;
  outline: none;
  background: #ffffff;
  box-sizing: border-box;
  transition: border-color 0.12s, box-shadow 0.12s;
}

.tvc-simple-input:focus {
  border-color: #059669;
  box-shadow: 0 0 0 2.5px rgba(5, 150, 105, 0.12);
}

.tvc-simple-input::placeholder {
  color: #9ca3af;
  font-size: 11.5px;
  font-weight: 400;
}

/* Custom Clean Date Box */
.tvc-custom-date-box {
  position: relative;
  width: 100%;
  height: 38px;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 7px;
  padding: 0 10px;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.12s ease;
  overflow: hidden;
}

.tvc-custom-date-box:hover,
.tvc-custom-date-box:focus-within {
  border-color: #059669;
  box-shadow: 0 0 0 2.5px rgba(5, 150, 105, 0.12);
}

.tvc-custom-date-box .tvc-date-icon {
  color: #059669;
  pointer-events: none;
  flex-shrink: 0;
  margin-right: 6px;
  z-index: 1;
}

.tvc-date-display {
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.tvc-hidden-date-picker {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0 !important;
  cursor: pointer !important;
  z-index: 3 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.tvc-hidden-date-picker::-webkit-calendar-picker-indicator {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* Stepper Alignment & Flat Fit */
.tvc-simple-stepper {
  width: 100%;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 7px;
  padding: 2px 3px;
  box-sizing: border-box;
  overflow: hidden;
  transition: border-color 0.12s;
}

.tvc-simple-stepper:focus-within {
  border-color: #059669;
}

.tvc-stepper-btn {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  color: #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.12s ease;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}

.tvc-stepper-btn:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #059669;
}

.tvc-stepper-btn:active {
  transform: scale(0.95);
}

.tvc-simple-pax-val {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: #0f172a;
  user-select: none;
}

/* Contact Slot Flat Chips */
.tvc-simple-chips {
  display: flex;
  gap: 6px;
}

.tvc-simple-chip {
  height: 33px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  background: #f8fafc;
  color: #475569;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.12s ease;
  white-space: nowrap;
}

.tvc-simple-chip:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

.tvc-simple-chip.active {
  background: #ecfdf5;
  color: #065f46;
  border-color: #059669;
  font-weight: 700;
}

.tvc-simple-chip *, .tvc-stepper-btn * {
  pointer-events: none;
}

.tvc-simple-submit-btn {
  width: 100%;
  height: 42px;
  padding: 0 16px;
  border-radius: 8px;
  background: #059669;
  color: #ffffff;
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.12s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 3px;
}

.tvc-simple-submit-btn:hover {
  background: #047857;
}

.tvc-simple-submit-btn:active {
  transform: scale(0.99);
}

.tvc-simple-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 500;
  color: #94a3b8;
  text-align: center;
  margin-top: 1px;
}

/* Success View */
.tvc-simple-success {
  text-align: center;
  padding: 10px 0;
}

.tvc-simple-success-icon {
  font-size: 32px;
  margin-bottom: 6px;
}

.tvc-simple-success-title {
  font-size: 17px;
  font-weight: 750;
  color: #0f172a;
  margin: 0 0 4px;
}

.tvc-simple-success-sub {
  font-size: 12.5px;
  color: #475569;
  margin: 0 0 12px;
  line-height: 1.4;
}

.tvc-simple-success-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 12px;
  text-align: left;
  margin-bottom: 12px;
}

.tvc-simple-success-card span {
  color: #64748b;
}

.tvc-simple-success-btn {
  width: 100%;
  height: 40px;
  border-radius: 8px;
  background: #059669;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

@media (max-width: 480px) {
  .tvc-modal-card-simple {
    padding: 16px 14px 14px;
    border-radius: 12px;
    max-width: 100%;
  }
  .tvc-simple-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .tvc-simple-title {
    font-size: 15.5px;
  }
}
