/* ===== ESTIMATE CALCULATOR ===== */
.estimate-page {
  background: #0a0f15;
  min-height: 100vh;
}

/* Hero */
.estimate-hero {
  background: var(--navy);
  color: var(--white);
  padding: 72px 0 64px;
  text-align: center;
}

.estimate-hero .section-eyebrow { color: var(--gold); }
.estimate-hero .section-title { color: var(--white); margin-bottom: 16px; }
.estimate-hero .section-sub { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; }

/* Calculator wrap */
.estimate-calc-wrap {
  max-width: 720px;
  margin: -48px auto 0;
  padding: 0 24px 80px;
  position: relative;
  z-index: 1;
}

/* Form card */
.estimate-card {
  background: #1a2030;
  border-radius: 16px;
  padding: 40px 40px 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

/* Field groups */
.estimate-field {
  margin-bottom: 28px;
}

.estimate-label {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
}

.estimate-label span {
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  margin-left: 8px;
}

/* Slider */
.estimate-slider-wrap {
  position: relative;
  padding-bottom: 28px;
}

.estimate-slider {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: linear-gradient(to right, var(--gold) 0%, var(--gold) var(--pct, 20%), rgba(255,255,255,0.12) var(--pct, 20%));
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.estimate-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(200,150,62,0.4);
  transition: transform 0.15s;
}

.estimate-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }

.estimate-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.estimate-ft-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.estimate-ft-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
}

.estimate-ft-value span {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
}

.estimate-range-hint {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

/* Radio group */
.estimate-radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.estimate-radio-label {
  flex: 1;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  transition: all 0.15s;
  text-align: center;
}

.estimate-radio-label input[type="radio"] {
  display: none;
}

.estimate-radio-label:hover {
  border-color: var(--gold);
  color: var(--white);
}

.estimate-radio-label.is-selected {
  border-color: var(--gold);
  background: rgba(200,150,62,0.12);
  color: var(--white);
}

.estimate-radio-label.is-install.is-selected { border-color: var(--navy); background: rgba(26,39,68,0.3); }
.estimate-radio-label.is-clean.is-selected  { border-color: #2e7d32; background: rgba(46,125,50,0.15); color: #6fbf83; }
.estimate-radio-label.is-repair.is-selected { border-color: #1565c0; background: rgba(21,101,192,0.15); color: #6ba3d4; }

/* Stories toggle */
.estimate-stories-toggle {
  display: flex;
  gap: 12px;
}

.estimate-story-btn {
  flex: 1;
  padding: 14px;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font);
  color: rgba(255,255,255,0.65);
  transition: all 0.15s;
}

.estimate-story-btn:hover {
  border-color: var(--gold);
  color: var(--white);
}

.estimate-story-btn.is-selected {
  border-color: var(--gold);
  background: rgba(200,150,62,0.12);
  color: var(--white);
}

/* Calculate button */
.estimate-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  margin-top: 8px;
}

.estimate-submit:hover { background: #2a3a5c; transform: translateY(-1px); }
.estimate-submit:active { transform: translateY(0); }

/* Result panel */
.estimate-result {
  display: none;
  margin-top: 28px;
  padding: 28px;
  background: #0f1218;
  border-radius: 12px;
  border: 2px solid var(--gold);
  text-align: center;
}

.estimate-result.is-visible { display: block; }

.estimate-result-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.estimate-result-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.estimate-result-range {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.estimate-result-meta {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  line-height: 1.5;
}

.estimate-result-meta strong {
  color: rgba(255,255,255,0.7);
}

.estimate-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  padding: 10px 14px;
  background: rgba(0,0,0,0.3);
  border-radius: 6px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.estimate-result-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.estimate-result-actions .btn-primary {
  padding: 14px 28px;
}

/* CTA strip below card */
.estimate-cta-strip {
  margin-top: 40px;
  padding: 32px 40px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.estimate-cta-strip h3 {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.estimate-cta-strip p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9375rem;
}

.estimate-cta-strip .btn-ghost {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
  padding: 12px 24px;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}

.estimate-cta-strip .btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Responsive */
@media (max-width: 600px) {
  .estimate-card { padding: 28px 20px; }
  .estimate-cta-strip { padding: 24px 20px; flex-direction: column; text-align: center; }
  .estimate-radio-label { min-width: 0; flex: 1 1 calc(50% - 6px); }
  .estimate-result-price { font-size: 2rem; }
}