@charset "UTF-8";
@keyframes sp-slide-in {
  from {
    opacity: 0;
    transform: translateX(18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes sp-slide-back {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes sp-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes sp-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes sp-pop {
  0% {
    transform: scale(0.92);
    opacity: 0;
  }
  60% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes sp-check-draw {
  from {
    stroke-dashoffset: 60;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.sp-wrap {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1e293b;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 0 48px;
  box-sizing: border-box;
}
.sp-wrap *,
.sp-wrap *::before,
.sp-wrap *::after {
  box-sizing: inherit;
}

.sp-stepper {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  padding: 24px 0 0;
}

.sp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex: 0 0 auto;
  cursor: default;
}
.sp-step span {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.sp-step.active span, .sp-step.done span {
  color: #A60D1F;
}

.sp-step-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #dfdfdf;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  transition: all 0.3s ease;
}
.sp-step.active .sp-step-bubble {
  border-color: #A60D1F;
  background: #A60D1F;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(166, 13, 31, 0.15);
}
.sp-step.done .sp-step-bubble {
  border-color: #A60D1F;
  background: #fff4f4;
  color: #A60D1F;
}
.sp-step.done .sp-step-bubble::after {
  content: "✓";
}
.sp-step.done .sp-step-bubble {
  font-size: 0;
}
.sp-step.done .sp-step-bubble::after {
  font-size: 14px;
}

.sp-hint-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sp-hint-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}

.sp-toast {
  position: fixed;
  top: 70px;
  right: 5%;
  background: #A60D1F;
  color: #fff;
  padding: 12px 18px;
  border-radius: 0px;
  box-shadow: 0 4px 14px rgba(166, 13, 31, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .sp-toast {
    top: unset;
    bottom: 16px;
    right: 16px;
  }
}
.sp-toast-title {
  font-size: 15px !important;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 0;
}
.sp-toast-msg {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0;
  max-width: 190px;
}
.sp-toast-hidden {
  transform: translateX(100%);
  opacity: 0;
}

.sp-location-hint {
  display: flex;
  gap: 4px;
  align-items: center;
  cursor: pointer;
}
.sp-location-hint a {
  text-decoration: none;
}

.sp-file-drop {
  position: relative;
  border: 2px dashed #A60D1F;
  background: #fff;
  padding: 24px 20px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, box-shadow 0.15s;
}
.sp-file-drop:hover, .sp-file-drop:focus-within {
  border-color: #A60D1F;
  background: #fff4f4;
}
.sp-file-drop.drag-over {
  border-color: #2b7588;
  background: #fafafa;
  box-shadow: 0 0 0 4px rgba(43, 117, 136, 0.12);
}
.sp-file-drop.has-file {
  border-style: solid;
  border-color: #10b981;
  background: #f0fdf4;
}
.sp-file-drop.sp-invalid {
  border-color: #ef4444;
  background: #fff5f5;
}
.sp-file-drop .sp-file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.sp-file-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  color: #94a3b8;
}
.sp-file-placeholder svg {
  color: #94a3b8;
}

.sp-file-placeholder-text {
  font-size: 13px;
  font-weight: 500;
}

.sp-file-preview {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 3;
}

.sp-file-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #dfdfdf;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 12px;
  color: #1e293b;
  max-width: 280px;
}
.sp-file-chip span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sp-file-chip svg {
  flex-shrink: 0;
  color: #94a3b8;
}

.sp-file-size {
  color: #94a3b8;
  flex-shrink: 0;
}

.sp-file-remove {
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  font-size: 16px;
  line-height: 1;
  padding: 0 2px;
  flex-shrink: 0;
}
.sp-file-remove:hover {
  color: #ef4444;
}

.sp-location-hint-nearest {
  border: 2px solid #2b7588 !important;
  box-shadow: 0 0 0 4px rgba(166, 13, 31, 0.12) !important;
  transform: translateY(-2px);
}

.sp-step-line {
  flex: 1;
  height: 2px;
  background: #dfdfdf;
  margin: 0 10px;
  position: relative;
  top: -10px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .sp-step-line {
    top: 0;
  }
}
.sp-step-line.done {
  background: #A60D1F;
}

.sp-panel {
  display: none;
}
.sp-panel.active {
  display: block;
  animation: sp-slide-in 0.28s ease;
}
.sp-panel.slide-back {
  animation: sp-slide-back 0.28s ease;
}
.sp-panel.sp-panel-success {
  text-align: center;
  padding: 60px 24px;
}

.sp-panel-header {
  margin-bottom: 28px;
}
.sp-panel-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 6px;
  line-height: 1.25;
}
.sp-panel-header p {
  font-size: 16px;
  color: #475569;
  margin: 0;
  line-height: 1.5;
}
.sp-panel-header p strong {
  color: #A60D1F;
  font-weight: 600;
}

.sp-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.sp-card {
  padding: 20px 18px;
  background: #fff;
  border: 2px solid #dfdfdf;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
  text-align: left;
  width: 100%;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1e293b;
  position: relative;
  overflow: hidden;
}
.sp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff4f4;
  opacity: 0;
  transition: all 0.3s ease;
}
.sp-card:hover {
  border-color: #A60D1F;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.sp-card:hover::before {
  opacity: 1;
}
.sp-card:hover .sp-card-title {
  color: #A60D1F;
}
.sp-card.selected {
  border-color: #A60D1F;
  box-shadow: 0 0 0 3px rgba(166, 13, 31, 0.15);
}
.sp-card.selected::before {
  opacity: 1;
}
.sp-card.selected .sp-card-title {
  color: #A60D1F;
}
.sp-card.selected .sp-card-check {
  opacity: 1;
  transform: scale(1);
}

.sp-card-inner {
  position: relative;
  z-index: 1;
}

.sp-card-title {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.35;
  transition: all 0.3s ease;
  margin: 0 0 4px;
  padding-right: 24px;
}

.sp-card-sub {
  font-size: 12px;
  color: #94a3b8;
  margin: 0;
}

.sp-card-check {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 18px;
  height: 18px;
  background: #A60D1F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sp-card-check svg {
  width: 10px;
  height: 10px;
}

.sp-bb-card {
  display: none;
  background: #fff;
  border: 2px solid #A60D1F;
  border-radius: 0px;
  padding: 24px 26px;
  margin-bottom: 20px;
  box-shadow: 0 0 0 4px rgba(166, 13, 31, 0.15);
  animation: sp-fade-up 0.25s ease;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.sp-bb-card.visible {
  display: flex;
}

.sp-bb-inner {
  flex: 1;
  min-width: 200px;
}

.sp-bb-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #94a3b8;
  margin: 0 0 6px;
}

.sp-bb-name {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 6px;
}

.sp-bb-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  flex-wrap: wrap;
}

.sp-bb-email {
  color: #A60D1F;
  text-decoration: none;
  font-weight: 500;
}
.sp-bb-email:hover {
  text-decoration: underline;
}

.sp-bb-dot {
  color: #94a3b8;
}

.sp-bb-phone {
  color: #475569;
  font-weight: 500;
}

.sp-nav {
  display: flex;
  align-items: center;
  padding-top: 8px;
}

.sp-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #A60D1F;
  color: #fff;
  border: none;
  border-radius: 0px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.sp-btn-primary svg {
  flex-shrink: 0;
}
.sp-btn-primary:hover {
  background: #850a18;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(166, 13, 31, 0.3);
}

.sp-btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: transparent;
  color: #475569;
  border: 1.5px solid #dfdfdf;
  border-radius: 0px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 500;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sp-btn-back svg {
  flex-shrink: 0;
}
.sp-btn-back:hover {
  border-color: #475569;
  color: #1e293b;
}

.sp-btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #A60D1F;
  color: #fff;
  border: none;
  border-radius: 0px;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
  justify-content: center;
}
.sp-btn-submit:hover:not(:disabled) {
  background: #850a18;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(166, 13, 31, 0.3);
}
.sp-btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.sp-btn-submit.loading .sp-btn-label {
  opacity: 0;
  position: absolute;
}
.sp-btn-submit.loading .sp-btn-spinner {
  display: block;
}

.sp-btn-label {
  position: relative;
}

.sp-btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: sp-spin 0.6s linear infinite;
}

.sp-summary-card {
  background: #f5f5f5;
  border: 1px solid #dfdfdf;
  border-radius: 0px;
  padding: 18px 22px;
  margin-bottom: 32px;
}

.sp-summary-chips {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.sp-chip {
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.sp-chip.sp-chip-job {
  background: #fff4f4;
  color: #A60D1F;
  border: 1.5px solid rgba(166, 13, 31, 0.2);
}
.sp-chip.sp-chip-loc {
  background: #eff6ff;
  color: #16677c;
  border: 1.5px solid rgba(29, 78, 216, 0.2);
}

.sp-chip-sep {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}

.sp-summary-bb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  flex-wrap: wrap;
}

.sp-summary-bb-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  white-space: nowrap;
  width: 100%;
}

.sp-summary-bb-value {
  color: #475569;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sp-summary-bb-value strong {
  color: #1e293b;
  font-weight: 700;
  font-size: 18px;
}
.sp-summary-bb-value a {
  color: #A60D1F;
  text-decoration: none;
  font-weight: 500;
}
.sp-summary-bb-value a:hover {
  text-decoration: underline;
}

.sp-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sp-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sp-field.sp-field-full {
  grid-column: 1/-1;
}
.sp-field label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #475569;
}
.sp-field input,
.sp-field textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 14px;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1e293b;
  background: #fff;
  border: 1.5px solid #dfdfdf;
  border-radius: 0px;
  outline: none;
  transition: all 0.3s ease;
  resize: vertical;
}
.sp-field input::-moz-placeholder, .sp-field textarea::-moz-placeholder {
  color: #94a3b8;
}
.sp-field input::placeholder,
.sp-field textarea::placeholder {
  color: #94a3b8;
}
.sp-field input:focus,
.sp-field textarea:focus {
  border-color: #A60D1F;
  box-shadow: 0 0 0 3px rgba(166, 13, 31, 0.15);
}
.sp-field input.sp-invalid,
.sp-field textarea.sp-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.sp-req {
  color: #A60D1F;
  font-weight: 700;
}

.sp-field-error {
  font-size: 12px;
  color: #ef4444;
  min-height: 16px;
  display: block;
  line-height: 1.3;
}

.sp-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  flex-wrap: wrap;
}

.sp-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #d1fae5;
  color: #10b981;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: sp-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sp-panel-success h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 12px;
}
.sp-panel-success p {
  font-size: 15px;
  color: #475569;
  margin: 0 0 28px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.sp-btn-restart {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #A60D1F;
  border: 2px solid #A60D1F;
  border-radius: 0px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sp-btn-restart:hover {
  background: #A60D1F;
  color: #fff;
}

.sp-empty-state {
  text-align: center;
  padding: 40px 24px;
  color: #94a3b8;
  font-size: 14px;
  grid-column: 1/-1;
}

@media (max-width: 600px) {
  .sp-stepper span {
    display: none;
  }
  .sp-step-bubble {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .sp-form-row {
    grid-template-columns: 1fr;
  }
  .sp-card-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sp-bb-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .sp-btn-primary {
    width: 100%;
    justify-content: center;
  }
  .sp-form-footer {
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .sp-form-footer .sp-btn-submit {
    width: 100%;
  }
  .sp-panel-header h2 {
    font-size: 18px;
  }
}
@media (max-width: 400px) {
  .sp-card-grid {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=frontend.css.map */