/* ============================================
   MULTI-STEP QUOTE FORM
   ============================================ */
.quote-page {
  min-height: 100vh;
  padding: 110px 6% 60px;
  position: relative;
}

.quote-page::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 50%;
  background: radial-gradient(ellipse, var(--orange-glow) 0%, transparent 60%);
  filter: blur(100px);
  z-index: 0;
}

.quote-wrap {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.quote-header {
  text-align: center;
  margin-bottom: 36px;
}

.quote-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.quote-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  line-height: 1;
}

.quote-sub {
  font-size: 15px;
  color: var(--muted);
}

/* Progress bar */
.progress-wrap {
  margin-bottom: 28px;
}
.progress-bar {
  height: 4px;
  background: var(--ink-3);
  border-radius: 4px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #ff8533);
  border-radius: 4px;
  width: 0%;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.progress-info {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.progress-step { color: var(--muted-2); }
.progress-pct { color: var(--orange); }

/* Form card */
.quote-card {
  background: linear-gradient(145deg, var(--ink-2), var(--ink-3));
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.quote-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

/* Steps */
.step {
  display: none;
  animation: stepIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.step.active { display: block; }

@keyframes stepIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.step-num {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}

.step-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  line-height: 1.1;
}

.step-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

/* Choice cards (big tap targets) */
.choices {
  display: grid;
  gap: 12px;
}
.choices.cols-2 { grid-template-columns: 1fr 1fr; }
.choices.cols-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 600px) {
  .choices.cols-2, .choices.cols-3 { grid-template-columns: 1fr; }
}

.choice {
  position: relative;
  padding: 18px 20px;
  background: var(--ink-3);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.choice:hover {
  border-color: rgba(232, 93, 0, 0.5);
  background: rgba(232, 93, 0, 0.04);
}
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice input:checked ~ .choice-inner,
.choice.selected {
  border-color: var(--orange);
  background: rgba(232, 93, 0, 0.08);
  box-shadow: 0 0 0 1px var(--orange);
}
.choice.selected {
  border-color: var(--orange);
  background: rgba(232, 93, 0, 0.08);
}

.choice-icon {
  width: 40px; height: 40px;
  background: var(--ink-2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.choice.selected .choice-icon {
  background: var(--orange);
}

.choice-text { flex: 1; }
.choice-label {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.choice-sub {
  font-size: 12px;
  color: var(--muted-2);
}

.choice-check {
  width: 22px; height: 22px;
  border: 2px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--white);
  transition: all 0.2s;
}
.choice.selected .choice-check {
  background: var(--orange);
  border-color: var(--orange);
}

/* Counter */
.counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 0;
}
.counter-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink-3);
  border: 1.5px solid var(--line);
  color: var(--white);
  font-size: 28px;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter-btn:hover:not(:disabled) {
  background: var(--orange);
  border-color: var(--orange);
}
.counter-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.counter-val {
  font-family: 'Bebas Neue', cursive;
  font-size: 64px;
  color: var(--orange);
  min-width: 80px;
  text-align: center;
  line-height: 1;
}
.counter-lbl {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: -8px;
  margin-bottom: 12px;
}

/* Form fields */
.field {
  margin-bottom: 20px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; }
}
.field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 8px;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: var(--ink-3);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  color: var(--white);
  font-size: 15px;
  padding: 14px 16px;
  font-family: inherit;
  transition: all 0.2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--ink-2);
  box-shadow: 0 0 0 3px rgba(232, 93, 0, 0.15);
}
.field textarea {
  min-height: 90px;
  resize: vertical;
}
.field-hint {
  font-size: 11.5px;
  color: var(--muted-2);
  margin-top: 6px;
}

/* Step navigation */
.step-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 28px;
  gap: 12px;
}
.btn-back {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--muted);
  padding: 14px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.btn-back:hover {
  border-color: var(--white);
  color: var(--white);
}
.btn-next, .btn-submit {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-next:hover, .btn-submit:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--orange-glow);
}
.btn-next:disabled, .btn-submit:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Estimate panel */
.estimate {
  background: rgba(232, 93, 0, 0.08);
  border: 1px solid rgba(232, 93, 0, 0.3);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.estimate-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.estimate-val {
  font-family: 'Bebas Neue', cursive;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}
.estimate-note {
  font-size: 11px;
  color: var(--muted-2);
  margin-top: 4px;
  text-align: right;
  max-width: 200px;
}

/* Summary */
.summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.summary-row:last-child { border-bottom: none; }
.summary-key {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.summary-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  text-align: right;
  max-width: 60%;
}

/* Success screen */
.success {
  text-align: center;
  padding: 32px 0;
}
.success-icon {
  width: 80px; height: 80px;
  background: var(--orange);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--white);
  animation: bounceIn 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
@keyframes bounceIn {
  0% { transform: scale(0); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}
.success-title {
  font-family: 'Bebas Neue', cursive;
  font-size: 38px;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.success-msg {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}
.success-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-top: 48px;
}
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(232, 93, 0, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 4px;
}
.contact-info-val {
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
}
.contact-info-val a:hover { color: var(--orange); }

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
}
.hours-day { color: var(--muted); }
.hours-time { color: var(--white); font-weight: 600; }
