#thm-quote-app {
  --thm-navy: #17233c;
  --thm-orange: var(--tcm-primary);
  --thm-orange-dark: var(--tcm-primary-hover);
  --thm-green: #708b75;
  --thm-card: #ffffff;
  --thm-border: var(--tcm-standard-border);
  --thm-text: #222b38;
  --thm-muted: #687386;
  --thm-error: #b42318;
  --tcm-primary: #f28c28;
  --tcm-primary-hover: #d97716;
  --tcm-button-bg: #f28c28;
  --tcm-button-hover: #d97716;
  --tcm-button-text: #ffffff;
  --tcm-standard-border: #dfe4ea;
  --tcm-selected-border: #f28c28;
  --tcm-selected-bg: #fff8f0;
  --tcm-brand-label: #f28c28;
  --tcm-progress-bar: #f28c28;
  --thm-radius: 16px;
  width: 100%;
  box-sizing: border-box;
  color: var(--thm-text);
  font-family: Arial, Helvetica, sans-serif;
}

#thm-quote-app *,
#thm-quote-app *::before,
#thm-quote-app *::after { box-sizing: border-box; }

#thm-quote-app .thm-quote-card {
  width: 100%;
  max-width: 1280px;
  margin: 20px auto;
  padding: 34px;
  background: var(--thm-card);
  border: 1px solid var(--thm-border);
  border-radius: var(--thm-radius);
  box-shadow: 0 14px 40px rgba(23,35,60,.09);
}

#thm-quote-app .thm-quote-header { text-align: center; margin-bottom: 30px; }

#thm-quote-app .thm-quote-header h2 {
  margin: 0 0 14px;
  color: var(--tcm-brand-label);
  font-size: clamp(32px,5vw,48px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.5px;
}

#thm-quote-app .thm-quote-header p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  color: var(--thm-navy);
  line-height: 1.55;
}

#thm-quote-app .thm-quote-header .thm-quote-intro {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: clamp(16px,2vw,19px);
  font-weight: 650;
}

#thm-quote-app .thm-quote-header .thm-quote-cta {
  margin-top: 0;
  margin-bottom: 0;
  color: var(--thm-muted);
  font-size: clamp(14px,1.7vw,17px);
  font-weight: 500;
}

#thm-quote-app .thm-progress-wrap { margin-bottom: 34px; }

#thm-quote-app .thm-progress-info {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 9px;
  color: var(--thm-muted);
  font-size: 14px;
  font-weight: 700;
}

#thm-quote-app .thm-progress-track {
  width: 100%;
  height: 10px;
  overflow: hidden;
  background: #e9edf1;
  border-radius: 999px;
}

#thm-quote-app .thm-progress-bar {
  width: 12.5%;
  height: 100%;
  background: var(--tcm-progress-bar);
  border-radius: inherit;
  transition: width .3s ease;
}

#thm-quote-app .thm-step { display: none; animation: thmFadeIn .25s ease; }
#thm-quote-app .thm-step.active { display: block; }

@keyframes thmFadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

#thm-quote-app .thm-step-heading {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 26px;
}

#thm-quote-app .thm-step-number,
#thm-quote-app .thm-room-icon {
  display: inline-flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: var(--thm-navy);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 800;
}

#thm-quote-app .thm-step-heading h3 {
  margin: 0 0 5px;
  color: var(--thm-navy);
  font-size: 25px;
  line-height: 1.2;
}

#thm-quote-app .thm-step-heading p {
  margin: 0;
  color: var(--thm-muted);
  line-height: 1.5;
}

#thm-quote-app .thm-option-grid,
#thm-quote-app .thm-room-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
}

#thm-quote-app .thm-option-card,
#thm-quote-app .thm-room-card {
  position: relative;
  display: block;
  cursor: pointer;
}

#thm-quote-app .thm-option-card input,
#thm-quote-app .thm-room-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

#thm-quote-app .thm-option-content {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 154px;
  padding: 18px 22px;
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--thm-border);
  border-radius: 13px;
  transition: .2s ease;
}

#thm-quote-app .thm-option-card:hover .thm-option-content {
  border-color: var(--tcm-selected-border);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(23,35,60,.08);
}

#thm-quote-app .thm-option-card input:checked + .thm-option-content {
  background: var(--tcm-selected-bg);
  border-color: var(--tcm-selected-border);
  box-shadow: 0 0 0 3px rgba(242,140,40,.16);
}

#thm-quote-app .thm-option-copy {
  display: block;
  min-width: 0;
  flex: 1 1 auto;
}

#thm-quote-app .thm-service-image {
  display: block;
  width: 138px;
  height: 112px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 138px;
  max-width: 100%;
}

#thm-quote-app .thm-option-card[data-service="moving"] .thm-service-image { transform: scale(.96); }
#thm-quote-app .thm-option-card[data-service="delivery"] .thm-service-image { transform: scale(.88); }
#thm-quote-app .thm-option-card[data-service="disposal"] .thm-service-image { transform: scale(.92); }
#thm-quote-app .thm-option-card[data-service="storage"] .thm-service-image { transform: scale(.92); }

#thm-quote-app .thm-option-title {
  display: block;
  margin-bottom: 7px;
  color: var(--thm-navy);
  font-size: 31px;
  font-weight: 800;
}

#thm-quote-app .thm-option-description {
  display: block;
  color: var(--thm-muted);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 700px) {
  #thm-quote-app .thm-option-grid {
    grid-template-columns: 1fr;
  }
  #thm-quote-app .thm-option-content {
    gap: 18px;
    min-height: 132px;
    padding: 16px;
  }
  #thm-quote-app .thm-service-image {
    width: 112px;
    height: 90px;
    flex-basis: 112px;
  }
  #thm-quote-app .thm-option-title {
    font-size: 23px;
  }
}

#thm-quote-app .thm-room-card span {
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 16px 18px;
  color: var(--thm-navy);
  background: #fff;
  border: 2px solid var(--thm-border);
  border-radius: 12px;
  font-weight: 800;
  transition: .2s ease;
}

#thm-quote-app .thm-room-card input:checked + span {
  background: var(--tcm-selected-bg);
  border-color: var(--tcm-selected-border);
  box-shadow: 0 0 0 3px rgba(242,140,40,.16);
}

#thm-quote-app .thm-bedroom-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: -7px 0 22px;
}

#thm-quote-app .thm-bedroom-tag {
  padding: 8px 12px;
  color: #3d5141;
  background: #eef4ef;
  border: 1px solid #d3e2d5;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

#thm-quote-app .thm-two-column {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 20px;
}

#thm-quote-app .thm-field-group { margin-bottom: 22px; }

#thm-quote-app .thm-field-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--thm-navy);
  font-size: 15px;
  font-weight: 800;
}

#thm-quote-app input[type="text"],
#thm-quote-app input[type="date"],
#thm-quote-app input[type="number"],
#thm-quote-app input[type="email"],
#thm-quote-app input[type="tel"],
#thm-quote-app select,
#thm-quote-app textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--thm-text);
  background: #fff;
  border: 1px solid #cfd6df;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  font-family: inherit;
  transition: .2s ease;
}

#thm-quote-app textarea { min-height: 110px; resize: vertical; }

#thm-quote-app input:focus,
#thm-quote-app select:focus,
#thm-quote-app textarea:focus {
  border-color: var(--thm-orange);
  box-shadow: 0 0 0 3px rgba(242,140,40,.16);
}

#thm-quote-app .thm-helper-text {
  margin-top: 8px;
  color: var(--thm-muted);
  font-size: 13px;
  line-height: 1.5;
}

#thm-quote-app .thm-error {
  display: none;
  margin-top: 8px;
  color: var(--thm-error);
  font-size: 13px;
  font-weight: 700;
}

#thm-quote-app .thm-error.show { display: block; }

#thm-quote-app .thm-route-test-panel {
  margin-top: 8px;
  padding: 20px;
  background: #fffaf4;
  border: 1px dashed #e7a665;
  border-radius: 12px;
}

#thm-quote-app .thm-route-test-heading {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 7px;
}

#thm-quote-app .thm-route-test-heading span {
  color: var(--thm-orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
}

#thm-quote-app .thm-route-test-heading strong {
  color: var(--thm-navy);
}

#thm-quote-app .thm-route-test-panel > p {
  margin: 0 0 17px;
  color: var(--thm-muted);
  font-size: 13px;
  line-height: 1.5;
}

#thm-quote-app .thm-route-test-panel .thm-field-group {
  margin-bottom: 0;
}

#thm-quote-app .thm-quote-result {
  margin-bottom: 22px;
  padding: 26px;
  color: #fff;
  background: var(--thm-navy);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(23,35,60,.16);
}

#thm-quote-app .thm-quote-result-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

#thm-quote-app .thm-quote-result-heading span {
  font-size: 15px;
  font-weight: 700;
}

#thm-quote-app .thm-quote-result-heading strong {
  color: #fff;
  font-size: clamp(30px,6vw,46px);
  line-height: 1;
}

#thm-quote-app .thm-quote-lines {
  margin-top: 15px;
}

#thm-quote-app .thm-quote-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 0;
  color: rgba(255,255,255,.9);
}

#thm-quote-app .thm-quote-line strong {
  color: #fff;
}

#thm-quote-app .thm-quote-line-optional {
  display: none;
}

#thm-quote-app .thm-quote-assurances {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 8px 14px;
  margin-top: 14px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,.18);
}

#thm-quote-app .thm-quote-assurances span {
  color: rgba(255,255,255,.84);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

#thm-quote-app .thm-pricing-warning {
  display: none;
  margin-top: 15px;
  padding: 12px 14px;
  color: #7a241b;
  background: #fde9e7;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
}

#thm-quote-app .thm-pricing-warning.show {
  display: block;
}

#thm-quote-app .thm-quote-validity {
  margin: 16px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.5;
}

#thm-quote-app .thm-pricing-admin {
  margin-bottom: 16px;
  padding: 13px 15px;
  background: #fff;
  border: 1px solid #eed8c4;
  border-radius: 9px;
}

#thm-quote-app .thm-pricing-admin-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 0;
  border-bottom: 1px solid #f0e2d4;
}

#thm-quote-app .thm-pricing-admin-row:last-child {
  border-bottom: none;
}

#thm-quote-app .thm-pricing-admin-row span {
  color: var(--thm-muted);
  font-size: 13px;
}

#thm-quote-app .thm-pricing-admin-row strong {
  color: var(--thm-navy);
  font-size: 13px;
}

#thm-quote-app .thm-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

#thm-quote-app .thm-submit-error {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  color: #8a1c13;
  background: #fde9e7;
  border-radius: 9px;
  font-size: 13px;
  line-height: 1.5;
}

#thm-quote-app .thm-submit-error.show {
  display: block;
}

#thm-quote-app .thm-contact-panel {
  padding: 20px;
  background: #f8fafc;
  border: 1px solid var(--thm-border);
  border-radius: 12px;
}

#thm-quote-app .thm-contact-panel .thm-field-group {
  margin-bottom: 0;
}

#thm-quote-app .thm-photo-intro {
  margin: 28px 0 15px;
}

#thm-quote-app .thm-photo-intro h4 {
  margin: 0 0 6px;
  color: var(--thm-navy);
  font-size: 20px;
}

#thm-quote-app .thm-photo-intro p {
  margin: 0;
  color: var(--thm-muted);
  line-height: 1.5;
}

#thm-quote-app .thm-photo-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
}

#thm-quote-app .thm-photo-card {
  padding: 17px;
  background: #fff;
  border: 1px solid var(--thm-border);
  border-radius: 12px;
}

#thm-quote-app .thm-photo-card label {
  display: block;
  margin-bottom: 12px;
}

#thm-quote-app .thm-photo-card label strong {
  display: block;
  margin-bottom: 4px;
  color: var(--thm-navy);
  font-size: 15px;
}

#thm-quote-app .thm-photo-card label span {
  color: var(--thm-muted);
  font-size: 12px;
  line-height: 1.4;
}

#thm-quote-app .thm-photo-card input[type="file"] {
  display: block;
  width: 100%;
  color: var(--thm-muted);
  font-size: 13px;
}

#thm-quote-app .thm-photo-card input[type="file"]::file-selector-button {
  margin-right: 10px;
  padding: 9px 12px;
  color: var(--thm-navy);
  background: #eef1f5;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

#thm-quote-app .thm-file-summary {
  margin-top: 10px;
  color: var(--thm-muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}

#thm-quote-app .thm-file-summary.has-files {
  color: #3d5141;
  font-weight: 700;
}

#thm-quote-app .thm-confirmation-box {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 16px;
  cursor: pointer;
  background: #f8fafc;
  border: 1px solid var(--thm-border);
  border-radius: 10px;
}

#thm-quote-app .thm-confirmation-box input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--thm-orange);
}

#thm-quote-app .thm-confirmation-box span {
  color: var(--thm-text);
  font-size: 13px;
  line-height: 1.55;
}

#thm-quote-app .thm-submission-test-note {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 18px;
  padding: 14px 16px;
  color: #7a4b00;
  background: #fff2d8;
  border-radius: 9px;
  font-size: 13px;
  line-height: 1.45;
}

#thm-quote-app .thm-success-message {
  display: none;
  margin-top: 20px;
  padding: 24px;
  text-align: center;
  background: #eef4ef;
  border: 1px solid #cfdfd1;
  border-radius: 12px;
}

#thm-quote-app .thm-success-message.show {
  display: block;
}

#thm-quote-app .thm-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  color: #fff;
  background: var(--thm-green);
  border-radius: 50%;
  font-size: 25px;
  font-weight: 800;
}

#thm-quote-app .thm-success-message h4 {
  margin: 0 0 7px;
  color: var(--thm-navy);
  font-size: 21px;
}

#thm-quote-app .thm-success-message p {
  max-width: 590px;
  margin: 0 auto;
  color: var(--thm-muted);
  line-height: 1.55;
}

#thm-quote-app .thm-location-panel {
  margin-bottom: 22px;
  padding: 22px;
  background: #f8fafc;
  border: 1px solid var(--thm-border);
  border-radius: 13px;
}

#thm-quote-app .thm-location-title {
  margin-bottom: 18px;
  color: var(--thm-navy);
  font-size: 18px;
  font-weight: 800;
}

#thm-quote-app .thm-location-panel .thm-field-group { margin-bottom: 0; }
#thm-quote-app .thm-comments-group { margin-top: 24px; }

#thm-quote-app .thm-room-progress {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 12px 15px;
  color: var(--thm-muted);
  background: #f8fafc;
  border: 1px solid var(--thm-border);
  border-radius: 10px;
  font-size: 14px;
}

#thm-quote-app .thm-room-progress strong { color: var(--thm-navy); }

#thm-quote-app .thm-capacity-panel,
#thm-quote-app .thm-final-capacity {
  margin-bottom: 24px;
  padding: 18px;
  background: #f8fafc;
  border: 1px solid var(--thm-border);
  border-radius: 12px;
}

#thm-quote-app .thm-final-capacity {
  margin-top: 0;
}

#thm-quote-app .thm-capacity-topline,
#thm-quote-app .thm-final-capacity-heading,
#thm-quote-app .thm-capacity-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

#thm-quote-app .thm-capacity-label,
#thm-quote-app .thm-final-capacity-heading span {
  display: block;
  margin-bottom: 4px;
  color: var(--thm-muted);
  font-size: 13px;
  font-weight: 700;
}

#thm-quote-app .thm-capacity-topline strong,
#thm-quote-app .thm-final-capacity-heading strong {
  color: var(--thm-navy);
  font-size: 26px;
}

#thm-quote-app .thm-capacity-status {
  padding: 7px 10px;
  color: #3d5141;
  background: #eef4ef;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

#thm-quote-app .thm-capacity-status.warning {
  color: #7a4b00;
  background: #fff2d8;
}

#thm-quote-app .thm-capacity-status.danger {
  color: #8a1c13;
  background: #fde9e7;
}

#thm-quote-app .thm-capacity-track {
  width: 100%;
  height: 14px;
  margin: 14px 0 11px;
  overflow: hidden;
  background: #e4e9ef;
  border-radius: 999px;
}

#thm-quote-app .thm-capacity-bar {
  width: 0%;
  height: 100%;
  background: var(--thm-green);
  border-radius: inherit;
  transition: width .25s ease, background-color .25s ease;
}

#thm-quote-app .thm-capacity-bar.warning {
  background: #d99a25;
}

#thm-quote-app .thm-capacity-bar.danger {
  background: #c84637;
}

#thm-quote-app .thm-capacity-bottom {
  color: var(--thm-muted);
  font-size: 12px;
}

#thm-quote-app .thm-final-capacity p {
  margin: 0;
  color: var(--thm-muted);
  font-size: 14px;
  line-height: 1.5;
}

#thm-quote-app .thm-test-panel {
  margin-bottom: 22px;
  padding: 20px;
  background: #fffaf4;
  border: 1px dashed #e7a665;
  border-radius: 12px;
}

#thm-quote-app .thm-test-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

#thm-quote-app .thm-test-heading span {
  color: var(--thm-orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .7px;
  text-transform: uppercase;
}

#thm-quote-app .thm-test-heading h4 {
  margin: 3px 0 0;
  color: var(--thm-navy);
  font-size: 19px;
}

#thm-quote-app .thm-test-badge {
  padding: 7px 10px;
  color: #7a4b00 !important;
  background: #fff0d8;
  border-radius: 999px;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

#thm-quote-app .thm-test-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
}

#thm-quote-app .thm-test-stat {
  padding: 13px 14px;
  background: #fff;
  border: 1px solid #eed8c4;
  border-radius: 9px;
}

#thm-quote-app .thm-test-stat-wide {
  grid-column: 1 / -1;
}

#thm-quote-app .thm-test-stat-total {
  grid-column: 1 / -1;
  background: #eef4ef;
  border-color: #cfdfd1;
}

#thm-quote-app .thm-test-stat-total strong {
  font-size: 18px;
}

#thm-quote-app .thm-test-stat span {
  display: block;
  margin-bottom: 5px;
  color: var(--thm-muted);
  font-size: 12px;
}

#thm-quote-app .thm-test-stat strong {
  color: var(--thm-navy);
  font-size: 15px;
  line-height: 1.4;
}

#thm-quote-app .thm-items-list {
  display: grid;
  gap: 12px;
}

#thm-quote-app .thm-item-card {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--thm-border);
  border-radius: 12px;
}

#thm-quote-app .thm-item-row {
  display: grid;
  grid-template-columns: minmax(150px,1fr) minmax(180px,260px);
  align-items: center;
  gap: 18px;
}

#thm-quote-app .thm-item-name {
  color: var(--thm-navy);
  font-size: 16px;
  font-weight: 800;
}

#thm-quote-app .thm-item-note {
  display: block;
  margin-top: 4px;
  color: var(--thm-muted);
  font-size: 12px;
  font-weight: 400;
}

#thm-quote-app .thm-counter {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  overflow: hidden;
  border: 1px solid #cfd6df;
  border-radius: 10px;
}

#thm-quote-app .thm-counter button {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  height: 46px;
  border: none;
  cursor: pointer;
  color: var(--thm-navy);
  background: #eef1f5;
  font-size: 22px;
  font-weight: 800;
}

#thm-quote-app .thm-counter button:hover { background: #e2e7ed; }

#thm-quote-app .thm-counter-value {
  text-align: center;
  color: var(--thm-navy);
  font-weight: 800;
}

#thm-quote-app .thm-anything-else { margin-top: 22px; }

#thm-quote-app .thm-room-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--thm-border);
}

#thm-quote-app .thm-inventory-review {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
  margin-bottom: 22px;
}

#thm-quote-app .thm-review-room {
  padding: 18px 20px;
  background: #f8fafc;
  border: 1px solid var(--thm-border);
  border-radius: 12px;
}

#thm-quote-app .thm-review-room h4 {
  margin: 0 0 12px;
  color: var(--thm-navy);
  font-size: 19px;
}

#thm-quote-app .thm-review-room ul {
  margin: 0;
  padding-left: 20px;
  color: var(--thm-text);
}

#thm-quote-app .thm-review-room li { margin-bottom: 7px; }

#thm-quote-app .thm-summary-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 14px;
  margin-top: 22px;
}

#thm-quote-app .thm-summary-card {
  padding: 16px;
  border: 1px solid var(--thm-border);
  border-radius: 10px;
}

#thm-quote-app .thm-summary-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--thm-muted);
  font-size: 13px;
}

#thm-quote-app .thm-summary-card strong {
  color: var(--thm-navy);
  overflow-wrap: anywhere;
}

#thm-quote-app .thm-notice {
  margin-top: 20px;
  padding: 16px 18px;
  color: #3d5141;
  background: #eef4ef;
  border-radius: 9px;
  font-size: 14px;
  line-height: 1.6;
}

#thm-quote-app .thm-button-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--thm-border);
}

#thm-quote-app .thm-button {
  min-width: 130px;
  min-height: 50px;
  padding: 12px 22px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 800;
  transition: .2s ease;
}

#thm-quote-app .thm-button:hover:not(:disabled) { transform: translateY(-1px); }
#thm-quote-app .thm-button:disabled { cursor: not-allowed; opacity: .45; }
#thm-quote-app .thm-button-primary { color: var(--tcm-button-text); background: var(--tcm-button-bg); }
#thm-quote-app .thm-button-primary:hover:not(:disabled) { background: var(--tcm-button-hover); }
#thm-quote-app .thm-button-secondary { color: var(--thm-navy); background: #e9edf2; }
#thm-quote-app .thm-button-secondary:hover:not(:disabled) { background: #dce2e9; }

/* Build 018B: compact review hierarchy and selected-room grid. */
@media (max-width:700px) {
  #thm-quote-app .thm-inventory-review {
    grid-template-columns: 1fr;
  }
}

@media (max-width:700px) {
  #thm-quote-app .thm-quote-assurances {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  #thm-quote-app .thm-quote-assurances span {
    text-align: left;
  }

  #thm-quote-app .thm-quote-card {
    margin: 8px auto;
    padding: 22px 16px;
    border-radius: 12px;
  }

  #thm-quote-app .thm-option-grid,
  #thm-quote-app .thm-room-grid,
  #thm-quote-app .thm-two-column,
  #thm-quote-app .thm-summary-grid,
  #thm-quote-app .thm-test-grid,
  #thm-quote-app .thm-photo-grid {
    grid-template-columns: 1fr;
  }

  #thm-quote-app .thm-contact-panel .thm-field-group {
    margin-bottom: 20px;
  }

  #thm-quote-app .thm-contact-panel .thm-field-group:last-child {
    margin-bottom: 0;
  }

  #thm-quote-app .thm-test-stat-wide {
    grid-column: auto;
  }

  #thm-quote-app .thm-item-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  #thm-quote-app .thm-option-content { min-height: auto; }

  #thm-quote-app .thm-location-panel .thm-field-group { margin-bottom: 20px; }
  #thm-quote-app .thm-location-panel .thm-field-group:last-child { margin-bottom: 0; }

  #thm-quote-app .thm-button,
  #thm-quote-app .thm-room-nav .thm-button {
    width: 100%;
    min-width: 0;
  }

  #thm-quote-app .thm-room-nav,
  #thm-quote-app .thm-button-row {
    flex-direction: column;
  }
}

/* Build 018: settings-driven room accordion */
.thm-moving-room-accordion{display:grid;gap:12px;margin:8px 0 18px}.thm-moving-room-panel{border:1px solid #dfe4ec;border-radius:14px;background:#fff;overflow:hidden}.thm-moving-room-toggle{width:100%;border:0;background:#fff;padding:16px 18px;display:flex;align-items:center;justify-content:space-between;gap:12px;text-align:left;font:inherit;cursor:pointer}.thm-moving-room-toggle:hover{background:#f7f9fc}.thm-moving-room-heading{display:flex;align-items:center;gap:10px;font-weight:700}.thm-moving-room-badge{display:none;min-width:28px;padding:3px 8px;border-radius:999px;background:#172d4f;color:#fff;text-align:center;font-size:12px}.thm-moving-room-badge.show{display:inline-block}.thm-moving-room-chevron{font-size:20px;transition:transform .2s ease}.thm-moving-room-panel.open .thm-moving-room-chevron{transform:rotate(180deg)}.thm-moving-room-content{display:none;padding:0 16px 16px;border-top:1px solid #edf0f5}.thm-moving-room-panel.open .thm-moving-room-content{display:block}.thm-moving-room-content .thm-items-list{margin-top:14px}.thm-moving-room-other{margin-top:14px}.thm-accordion-capacity{margin-top:18px}


/* Build 018A: Moving accordion visual polish. */
#thm-quote-app .thm-moving-room-toggle,
#thm-quote-app .thm-moving-room-toggle:focus,
#thm-quote-app .thm-moving-room-toggle:active,
#thm-quote-app .thm-moving-room-panel.open .thm-moving-room-toggle{color:var(--thm-navy,#17233c)!important;background:#fff!important;}
#thm-quote-app .thm-moving-room-toggle:hover{color:var(--thm-navy,#17233c)!important;background:var(--tcm-selected-bg,#fff5f9)!important;}
#thm-quote-app .thm-moving-room-heading,
#thm-quote-app .thm-moving-room-heading span:not(.thm-moving-room-badge){color:var(--thm-navy,#17233c)!important;}
#thm-quote-app .thm-moving-room-toggle{padding-right:28px!important;}
#thm-quote-app .thm-moving-room-chevron{margin-right:2px!important;color:var(--thm-navy,#17233c)!important;}
#thm-quote-app .thm-accordion-capacity{margin:0 0 18px!important;}


/* V3.0.2 spreadsheet-style test calculator */
#thm-quote-app .thm-test-panel { background:#fff; border:2px solid #c9d4df; border-radius:2px; padding:0; overflow:hidden; }
#thm-quote-app .thm-test-heading { margin:0; padding:16px 18px; background:#fff; border-bottom:4px solid #d7e9f5; align-items:center; }
#thm-quote-app .thm-test-heading h4 { margin:2px 0 0; font-size:24px; text-transform:uppercase; letter-spacing:.2px; }
#thm-quote-app .thm-weight-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; padding:14px 18px; background:#f7f9fb; border-bottom:1px solid #d9e0e6; }
#thm-quote-app .thm-weight-box { padding:13px 14px; background:#fff; border:1px solid #cfd8e1; }
#thm-quote-app .thm-weight-box span { display:block; color:var(--thm-muted); font-size:12px; }
#thm-quote-app .thm-weight-box strong { display:block; margin-top:4px; color:var(--thm-navy); font-size:22px; }
#thm-quote-app .thm-calc-results-title { padding:8px 10px; background:#d7ebf7; color:#24547e; font-size:20px; font-weight:900; text-transform:uppercase; }
#thm-quote-app .thm-calc-section { padding:18px 10px 0; }
#thm-quote-app .thm-calc-section h5 { margin:0; padding:4px 0; color:#24547e; font-size:17px; font-weight:900; text-transform:uppercase; border-bottom:1px solid #d6dce1; }
#thm-quote-app .thm-calc-row { display:grid; grid-template-columns:minmax(0,1fr) 150px; min-height:30px; align-items:center; border-bottom:1px solid #dde2e6; }
#thm-quote-app .thm-calc-row span { padding:5px 0; color:#111; font-size:15px; }
#thm-quote-app .thm-calc-row strong { padding:5px 8px; text-align:right; color:#111; font-size:16px; }
#thm-quote-app .thm-calc-spacer { height:15px; }
#thm-quote-app .thm-calc-total { font-weight:900; }
#thm-quote-app .thm-calc-total strong { background:#e5f5f2; font-size:18px; }
#thm-quote-app .thm-quote-summary-section h5 { padding:7px 8px; background:#d7ebf7; }
#thm-quote-app .thm-grand-total { display:grid; grid-template-columns:minmax(0,1fr) 190px; margin-top:18px; background:#26ae60; border:3px solid #235b85; color:#fff; align-items:center; text-transform:uppercase; }
#thm-quote-app .thm-grand-total span,#thm-quote-app .thm-grand-total strong { padding:8px 10px; font-size:24px; font-weight:900; }
#thm-quote-app .thm-grand-total strong { text-align:right; border-left:3px solid #235b85; }
#thm-quote-app .thm-test-details { display:none; }
@media (max-width:640px){
 #thm-quote-app .thm-weight-grid{grid-template-columns:repeat(3,1fr);gap:6px;padding:10px;}
 #thm-quote-app .thm-weight-box{padding:10px 8px;}
 #thm-quote-app .thm-calc-row{grid-template-columns:minmax(0,1fr) 110px;}
 #thm-quote-app .thm-calc-row span{font-size:13px;}
 #thm-quote-app .thm-calc-row strong{font-size:14px;}
 #thm-quote-app .thm-grand-total{grid-template-columns:minmax(0,1fr) 145px;}
 #thm-quote-app .thm-grand-total span,#thm-quote-app .thm-grand-total strong{font-size:18px;}
}

/* Build 054: complete user-supplied truck progress indicator */
#thm-quote-app .thm-progress-track {
  position: relative;
  overflow: visible;
}

#thm-quote-app .thm-progress-bar {
  position: relative;
  z-index: 1;
  transition: width .45s cubic-bezier(.22, .8, .3, 1);
}

#thm-quote-app .thm-progress-truck {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: clamp(20px, var(--tcm-progress-position, 0%), calc(100% - 20px));
  width: 48px;
  height: 38px;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: left .45s cubic-bezier(.22, .8, .3, 1), opacity .2s ease;
  filter: drop-shadow(0 2px 2px rgba(20, 34, 58, .18));
}

#thm-quote-app .thm-progress-track.has-progress .thm-progress-truck {
  opacity: 1;
}

@media (max-width: 560px) {
  #thm-quote-app .thm-progress-truck {
    left: clamp(17px, var(--tcm-progress-position, 0%), calc(100% - 17px));
    width: 42px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  #thm-quote-app .thm-progress-bar,
  #thm-quote-app .thm-progress-truck {
    transition: none;
  }
}

/* Build 055: moving journey progress bar */
#thm-quote-app .thm-progress-place {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 2px solid #dce3eb;
  border-radius: 50%;
  background: #fff;
  color: var(--thm-navy);
  transform: translateY(-50%);
  pointer-events: none;
  box-shadow: 0 2px 5px rgba(20, 34, 58, .10);
}

#thm-quote-app .thm-progress-place svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
}

#thm-quote-app .thm-progress-home { left: -2px; }
#thm-quote-app .thm-progress-destination { right: -2px; }

#thm-quote-app .thm-progress-truck {
  left: clamp(30px, var(--tcm-progress-position, 0%), calc(100% - 30px));
  width: 57px;
  height: 45px;
  z-index: 5;
}

#thm-quote-app .thm-progress-track.has-progress .thm-progress-home {
  border-color: rgba(242, 140, 40, .45);
  color: var(--tcm-progress-bar);
}

#thm-quote-app .thm-progress-track.has-progress .thm-progress-destination {
  transition: border-color .25s ease, color .25s ease, transform .25s ease;
}

#thm-quote-app .thm-progress-track[style*="100%"] .thm-progress-destination {
  border-color: var(--tcm-progress-bar);
  color: var(--tcm-progress-bar);
  transform: translateY(-50%) scale(1.06);
}

@media (max-width: 560px) {
  #thm-quote-app .thm-progress-place {
    width: 24px;
    height: 24px;
  }

  #thm-quote-app .thm-progress-place svg {
    width: 15px;
    height: 15px;
  }

  #thm-quote-app .thm-progress-truck {
    left: clamp(27px, var(--tcm-progress-position, 0%), calc(100% - 27px));
    width: 50px;
    height: 40px;
  }
}


/* Customer Assist — Moving quote review */
#thm-quote-app .thm-quote-line-discount strong { color: #16794b; }
#thm-quote-app .thm-customer-assist {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding: 15px 16px;
  border: 1px solid var(--thm-border);
  border-radius: 11px;
  background: #fff;
}
#thm-quote-app .thm-customer-assist-copy { display: flex; flex-direction: column; gap: 4px; }
#thm-quote-app .thm-customer-assist-copy strong { color: var(--thm-navy); font-size: 14px; }
#thm-quote-app .thm-customer-assist-copy span { color: var(--thm-muted); font-size: 12px; line-height: 1.45; }
#thm-quote-app .thm-customer-assist-button {
  flex: 0 0 auto;
  min-width: 145px;
  padding: 10px 14px;
  border: 1px solid var(--thm-orange);
  border-radius: 8px;
  background: #fff;
  color: var(--thm-orange);
  font-weight: 800;
  cursor: pointer;
}
#thm-quote-app .thm-customer-assist-button:hover,
#thm-quote-app .thm-customer-assist-button.is-active {
  background: var(--thm-orange);
  color: #fff;
}
#thm-quote-app .thm-customer-assist-button:disabled {
  border-color: var(--thm-border);
  background: #f3f4f6;
  color: #8a9099;
  cursor: not-allowed;
}
@media (max-width: 640px) {
  #thm-quote-app .thm-customer-assist { align-items: stretch; flex-direction: column; }
  #thm-quote-app .thm-customer-assist-button { width: 100%; }
}


/* V1.1.7 booking calendar + multi-contact */
#thm-quote-app .thm-date-picker,#thm-quote-app .thm-contact-select{position:relative}
#thm-quote-app .thm-date-trigger,#thm-quote-app .thm-contact-select-button{width:100%;min-height:52px;padding:12px 14px;display:flex;align-items:center;justify-content:space-between;text-align:left;color:var(--thm-text);background:#fff;border:1px solid #cfd6df;border-radius:10px;font:inherit;cursor:pointer}
#thm-quote-app .thm-date-trigger:hover,#thm-quote-app .thm-contact-select-button:hover{border-color:var(--thm-orange)}
#thm-quote-app .thm-date-trigger:focus,#thm-quote-app .thm-contact-select-button:focus{outline:none;border-color:var(--thm-orange);box-shadow:0 0 0 3px rgba(242,140,40,.16)}
#thm-quote-app .thm-date-icon{font-size:19px;color:var(--thm-orange)}
#thm-quote-app .thm-calendar{position:absolute;z-index:60;top:calc(100% + 8px);left:0;width:min(390px,100%);padding:16px;background:#fff;border:1px solid #d9dee5;border-radius:14px;box-shadow:0 16px 40px rgba(20,32,48,.16)}
#thm-quote-app .thm-calendar-head{display:grid;grid-template-columns:42px 1fr 42px;align-items:center;gap:8px;margin-bottom:12px}
#thm-quote-app .thm-calendar-head strong{text-align:center;color:var(--thm-navy);font-size:17px}
#thm-quote-app .thm-calendar-head button{width:38px;height:38px;border:1px solid #d9dee5;border-radius:9px;background:#fff;color:var(--thm-navy);font-size:25px;cursor:pointer}
#thm-quote-app .thm-calendar-head button:hover{border-color:var(--thm-orange);color:var(--thm-orange)}
#thm-quote-app .thm-calendar-week,#thm-quote-app .thm-calendar-grid{display:grid;grid-template-columns:repeat(7,1fr);gap:5px}
#thm-quote-app .thm-calendar-week{margin-bottom:5px;color:var(--thm-muted);font-size:11px;font-weight:800;text-align:center}
#thm-quote-app .thm-calendar-week span{padding:5px 0}
#thm-quote-app .thm-calendar-day,#thm-quote-app .thm-calendar-blank{aspect-ratio:1;min-width:0}
#thm-quote-app .thm-calendar-day{border:1px solid transparent;border-radius:9px;background:#f7f8fa;color:var(--thm-navy);font-weight:700;cursor:pointer}
#thm-quote-app .thm-calendar-day:hover{border-color:var(--thm-orange);background:#fff7ee}
#thm-quote-app .thm-calendar-day.is-today{border-color:#cfd6df}
#thm-quote-app .thm-calendar-day.is-selected{background:var(--thm-orange);border-color:var(--thm-orange);color:#fff}
#thm-quote-app .thm-calendar-day:disabled{opacity:.28;cursor:not-allowed;background:#f3f4f6}
#thm-quote-app .thm-contact-options{position:absolute;z-index:55;top:calc(100% + 7px);left:0;right:0;padding:8px;background:#fff;border:1px solid #d9dee5;border-radius:11px;box-shadow:0 12px 30px rgba(20,32,48,.13)}
#thm-quote-app .thm-contact-options label{display:flex;align-items:center;gap:10px;margin:0;padding:10px 9px;border-radius:8px;cursor:pointer;font-size:15px;font-weight:700}
#thm-quote-app .thm-contact-options label:hover{background:#f7f8fa}
#thm-quote-app .thm-contact-options input{width:18px;height:18px;accent-color:var(--thm-orange)}
#thm-quote-app .thm-optional{color:var(--thm-muted);font-size:13px;font-weight:600}
@media(max-width:560px){#thm-quote-app .thm-calendar{position:relative;top:auto;width:100%;margin-top:8px;box-shadow:0 8px 24px rgba(20,32,48,.11)}}

/* V1.1.9 calendar alignment polish */
#thm-quote-app .thm-calendar-head button{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  line-height:1;
  text-align:center;
}
#thm-quote-app .thm-calendar-day{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  line-height:1;
  text-align:center;
}
