:root {
  --surface: #ffffff;
  --primary: #ff6b3d;
  --primary-dark: #e24f24;
  --secondary: #2ec4b6;
  --text: #172033;
  --muted: #5f6b7a;
  --border: #f2d8c7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #fffaf4 0%, #fff4e8 50%, #f4fbff 100%);
  color: var(--text);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1110px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(242, 216, 199, 0.9);
  backdrop-filter: blur(16px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.site-header.is-visible {
  transform: translateY(0);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-img {
  width: 140px;
  height: auto;
  display: block;
}

.header-cta {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.hero {
  padding: 1.25rem 0 0.5rem;
  text-align: center;
  background: radial-gradient(circle at top left, rgba(255, 209, 102, 0.45), transparent 38%),
    radial-gradient(circle at bottom right, rgba(46, 196, 182, 0.2), transparent 32%),
    linear-gradient(135deg, #fff8ec 0%, #fff3e9 45%, #f7fcff 100%);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.hero-logo {
  width: min(88%, 29rem);
  height: auto;
  margin: 0 auto;
}

.hero-tagline {
  margin: 0;
  font-size: clamp(1.45rem, 5vw, 2.1rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 36rem;
}

.hero-availability {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 3.6vw, 1.35rem);
  font-weight: 600;
  max-width: 36rem;
}

.hero .service-areas {
  justify-content: center;
  margin: 0.35rem 0 0;
}

.hero-cta {
  margin-top: 0.35rem;
  font-size: 1rem;
}

.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.service-areas li {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(46, 196, 182, 0.3);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
}

.service-areas-more {
  background: rgba(46, 196, 182, 0.16) !important;
  color: #12685f !important;
}

.details-counter {
  margin: -0.5rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.details-counter.is-warning {
  color: #991b1b;
}

.review-image {
  margin: 1.25rem 0 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

.review-image-title {
  padding: 0.7rem 1rem;
  background: rgba(255, 107, 61, 0.1);
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

.review-image img {
  width: 100%;
  height: auto;
  display: block;
}

.section {
  padding: 3rem 0;
  scroll-margin-top: 5.5rem;
}

.section.order {
  padding-top: 1rem;
}

html {
  scroll-behavior: smooth;
}

.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.wizard {
  max-width: 46rem;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08);
}

.wizard-progress {
  margin-bottom: 2rem;
}

.wizard-progress-track {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: var(--border);
  margin-bottom: 1rem;
}

.wizard-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  width: 0%;
  transition: width 0.3s ease;
}

.wizard-steps {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wizard-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
}

.dot-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #f1f5f9;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.wizard-step-dot.is-active .dot-num {
  background: var(--primary);
  color: #fff;
}

.wizard-step-dot.is-complete .dot-num {
  background: var(--secondary);
  color: #fff;
}

.dot-label {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.wizard-step-dot.is-active .dot-label {
  color: var(--text);
}

.wizard-step h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.3rem;
  line-height: 1.25;
}

.wizard-step-sub {
  margin: 0.2rem 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.wizard-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
  margin-bottom: 0;
}

.wizard-service-card {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #fffaf4 100%);
  border: 2px solid var(--border);
  border-radius: 20px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 18px 48px rgba(23, 32, 51, 0.08);
  cursor: pointer;
  font-family: inherit;
  font-size: 1rem;
  text-align: left;
  appearance: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.wizard-service-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.08rem;
}

.wizard-service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.wizard-service-card ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.wizard-service-card li {
  margin-bottom: 0.2rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.wizard-service-card:hover,
.wizard-service-card:focus-visible {
  border-color: rgba(255, 107, 61, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(23, 32, 51, 0.12);
}

.wizard-service-card.is-selected {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(255, 107, 61, 0.1) 0%, rgba(255, 209, 102, 0.2) 100%);
}

.wizard-card-check {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--border);
  color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.wizard-service-card.is-selected .wizard-card-check {
  background: var(--primary);
  color: #fff;
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
}

.wizard-nav .btn {
  flex: 1;
}

.review-summary {
  display: grid;
  gap: 0.5rem;
  margin: 1.25rem 0;
  padding: 1.1rem;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid var(--border);
}

.review-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--text);
}

.review-row span {
  color: var(--muted);
}

.review-row strong {
  text-align: right;
  word-break: break-word;
}

.review-row-total {
  padding-top: 0.5rem;
  border-top: 1px dashed var(--border);
  font-size: 1.05rem;
}

.review-row-savings span,
.review-row-savings strong {
  color: #12685f;
}

.order-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font-family: inherit;
  margin-bottom: 1rem;
  background: #f8fafc;
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(47, 107, 255, 0.3);
  border-color: rgba(47, 107, 255, 0.6);
}

.autocomplete-list {
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.autocomplete-item:hover {
  background: #fff1e8 !important;
}

.route-timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 2.75rem;
}

.route-timeline::before {
  content: "";
  position: absolute;
  left: 1.1rem;
  top: 1.4rem;
  bottom: 1.4rem;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(46, 196, 182, 0.5) 0,
    rgba(46, 196, 182, 0.5) 6px,
    transparent 6px,
    transparent 12px
  );
}

.route-node {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.65rem 0;
}

.route-dot {
  position: absolute;
  left: -2.75rem;
  top: 0.65rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
  flex-shrink: 0;
}

.route-dot-pickup {
  background: linear-gradient(135deg, #2ec4b6 0%, #1a9c90 100%);
}

.route-dot-delivery {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.route-dot-stop {
  background: linear-gradient(135deg, #ffb84d 0%, #ff9a2e 100%);
}

.route-dot-add {
  background: #fff;
  color: var(--primary-dark);
  border: 2px dashed rgba(255, 107, 61, 0.5);
  box-shadow: none;
}

.route-node-body {
  flex: 1;
  min-width: 0;
}

.route-node-label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 0.15rem;
}

.route-node-pickup,
.route-node-delivery {
  padding-top: 0;
}

.route-node-stop {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
  margin: 0.25rem 0;
}

.stop-input-row {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-top: 0.35rem;
}

.stop-input-row input {
  margin-bottom: 0;
  flex: 1;
}

.stop-remove-btn {
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: #991b1b;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.7rem 0.9rem;
  cursor: pointer;
}

.stop-remove-btn:hover {
  background: rgba(220, 38, 38, 0.08);
}

.route-node-add {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  border-radius: 14px;
}

.route-node-add:hover .route-add-label {
  color: var(--primary-dark);
}

.route-node-add[hidden] {
  display: none;
}

.route-add-label {
  padding-top: 0.4rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.stops-limit-note {
  margin: 0.25rem 0 0 0;
  padding-left: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.stops-fee-total {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: rgba(255, 184, 77, 0.18);
  color: #92400e;
  font-weight: 600;
  font-size: 0.9rem;
}

.price-summary {
  margin: 0.25rem 0 1rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 107, 61, 0.1);
  color: var(--text);
  font-weight: 600;
}

.price-summary span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
}

.price-summary.is-warning {
  background: rgba(220, 38, 38, 0.08);
  color: #991b1b;
}

.form-status {
  margin-top: 0.75rem;
  min-height: 1.4rem;
  font-weight: 700;
}

.contact .contact-grid {
  grid-template-columns: 1fr;
  align-items: start;
}

.contact-copy h2 {
  margin-top: 0;
}

.highlight {
  margin: 1rem 0;
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(46, 196, 182, 0.14);
  color: #12685f;
  font-weight: 600;
}

.footer {
  padding: 1.5rem 0;
  text-align: center;
  color: var(--muted);
}

.success-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(8px);
}

.success-overlay[hidden] {
  display: none;
}

.success-card {
  width: min(100%, 32rem);
  background: var(--surface);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.24);
  text-align: center;
}

.success-card h2 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.success-card p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.7rem;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #ff834f 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(255, 107, 61, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 107, 61, 0.3);
}

.btn-secondary {
  background: rgba(255, 209, 102, 0.25);
  color: var(--text);
}

.service-badge {
  display: inline-flex;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .wizard {
    padding: 1.5rem;
  }

  .wizard-nav {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    width: calc(100% - 1.5rem);
  }

  .wizard {
    padding: 1rem;
    border-radius: 20px;
  }

  .wizard-service-card {
    padding: 1rem 1.1rem;
  }

  .hero {
    padding: 0.75rem 0 0.25rem;
  }

  .section.order {
    padding-top: 0.5rem;
  }

  .wizard-step h2 {
    font-size: 1.2rem;
  }

  .wizard-step-sub {
    margin-bottom: 0.85rem;
  }

  .route-timeline {
    padding-left: 2.25rem;
  }

  .route-dot {
    left: -2.25rem;
    width: 1.9rem;
    height: 1.9rem;
    font-size: 0.75rem;
  }

  .stop-input-row {
    flex-wrap: wrap;
  }

  .stop-remove-btn {
    width: 100%;
  }

  .dot-label {
    font-size: 0.68rem;
  }
}

@media (max-width: 620px) {
  .logo-img {
    width: 115px;
  }

  .header-cta {
    padding: 0.55rem 1rem;
    font-size: 0.85rem;
  }

  .hero-logo {
    width: min(84%, 21rem);
  }
}
