/* Quote Form Wrapper */
#dtq-form {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #dbe2ef;
  padding: 2.5rem;
  width: 500px;
  height: 500px;
  margin: 3rem auto;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #1f2937;
  overflow-y: auto;
  transition: all 0.3s ease;
}

/* Headings */
.dtq-heading {
  font-size: 24px;
  color: #1e3a8a;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: left;
}

/* Form Section Grouping */
.dtq-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Inputs and Selects */
.dtq-input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 16px;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  background: #f9fafb;
  transition: border-color 0.2s ease;
}

.dtq-input:focus {
  border-color: #1e3a8a;
  outline: none;
  background: #ffffff;
}

/* Distance Box */
.dtq-distance-box {
  background-color: #f0f4ff;
  border: 1px solid #bfdbfe;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 15px;
  color: #1e3a8a;
  font-weight: 500;
}

.dtq-distance-val {
  font-weight: bold;
  color: #0f172a;
}

/* Vehicle Type Text */
.dtq-vehicle-type {
  font-size: 14px;
  color: #475569;
  margin-top: 0.25rem;
}

/* Navigation Buttons */
.dtq-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 2.5rem;
}

.dtq-btn {
  padding: 0.75rem 1.25rem;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

.dtq-btn-prev {
  background-color: #e2e8f0;
  color: #1f2937;
}

.dtq-btn-prev:hover {
  background-color: #cbd5e1;
}

.dtq-btn-next {
  background-color: #1e40af;
  color: white;
}

.dtq-btn-next:hover {
  background-color: #1e3a8a;
}

.dtq-btn-submit {
  background-color: #059669;
  color: white;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dtq-btn-submit:hover {
  background-color: #047857;
}

/* Loader Spinner */
.dtq-loader {
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Result Message */
.dtq-result {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #15803d;
  margin-top: 1.5rem;
}

/* Step Hidden State */
.dtq-step.hidden {
  display: none;
}


.dtq-summary-wrapper {
  max-width: 700px;
  margin: 3rem auto;
  padding: 2.5rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  font-family: 'Inter', sans-serif;
  color: #1f2937;
}

.dtq-summary-header {
  text-align: center;
  margin-bottom: 2rem;
}

.dtq-summary-header .dtq-logo {
  height: 60px;
  margin-bottom: 1rem;
}

.dtq-summary-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e3a8a;
}

.dtq-summary-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dtq-summary-row {
  display: flex;
  justify-content: space-between;
  background-color: #f9fafb;
  padding: 0.75rem 1.2rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 16px;
}

.dtq-summary-row span {
  color: #374151;
}

.dtq-summary-row strong {
  color: #1e40af;
}

.dtq-summary-error {
  text-align: center;
  padding: 2rem;
  color: #b91c1c;
  font-weight: 600;
  background-color: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 12px;
}

.dtq-summary-footer {
  margin-top: 30px;
  text-align: center;
  color: #1e293b;
  font-size: 16px;
}
.dtq-summary-footer a {
  color: #003366;
  text-decoration: none;
}


