/* Quote wizard — EZ Locksmith Inc. (quote.html only) */
.quote-hero { padding: 3rem 0 1rem; text-align: center; }
.quote-hero .eyebrow { display: inline-block; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.8rem; color: var(--amber-deep); margin-bottom: 0.5rem; }
.quote-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--navy); margin: 0 0 0.5rem; }
.quote-hero p { color: var(--muted); font-size: 1.05rem; margin: 0; }

.wizard { max-width: 860px; margin: 0 auto 3rem; background: var(--white); border-radius: 20px; box-shadow: var(--shadow); overflow: hidden; }
.wizard-progress { display: flex; gap: 0.5rem; padding: 1.25rem 1.5rem 0; align-items: center; }
.wstep { flex: 1; text-align: center; position: relative; }
.wstep .wdot { width: 34px; height: 34px; border-radius: 50%; display: inline-grid; place-items: center; background: #eef2f6; color: var(--muted); font-weight: 700; font-size: 0.9rem; transition: all 0.25s; }
.wstep .wlabel { display: block; font-size: 0.72rem; color: var(--muted); margin-top: 0.3rem; font-weight: 600; }
.wstep.done .wdot { background: var(--amber); color: var(--navy-deep); }
.wstep.done .wlabel { color: var(--navy); }
.wstep.active .wdot { background: var(--navy); color: #fff; box-shadow: 0 0 0 5px rgba(15,42,67,0.12); }
.wstep.active .wlabel { color: var(--navy); }
.wstep .material-symbols-rounded { font-size: 18px; }

.wizard-body { padding: 1.5rem; }
.wq-title { font-size: 1.5rem; color: var(--navy); margin: 0.25rem 0 0.35rem; text-align: center; }
.wq-sub { text-align: center; color: var(--muted); margin: 0 0 1.5rem; }

.wopts { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 1rem; }
.wopt { appearance: none; border: 2px solid #e6ecf2; background: #fbfdff; border-radius: 16px; padding: 1.35rem 1rem; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 0.55rem; text-align: center; transition: transform 0.15s, border-color 0.15s, box-shadow 0.15s; min-height: 150px; justify-content: center; font-family: inherit; }
.wopt:hover { transform: translateY(-3px); border-color: var(--amber); box-shadow: 0 10px 24px rgba(15,42,67,0.10); }
.wopt:active { transform: scale(0.97); }
.wopt .material-symbols-rounded { font-size: 44px; color: var(--navy); background: var(--amber-soft, #fdf3e0); width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; }
.wopt:hover .material-symbols-rounded { color: var(--amber-deep); }
.wopt strong { display: block; color: var(--navy); font-size: 1.02rem; line-height: 1.25; }
.wopt small { color: var(--muted); font-size: 0.82rem; line-height: 1.35; }
.wopt.wide { grid-column: 1 / -1; flex-direction: row; min-height: 0; padding: 1rem 1.25rem; text-align: left; justify-content: flex-start; gap: 1rem; }
.wopt.wide .material-symbols-rounded { width: 56px; height: 56px; font-size: 32px; flex: none; }
.wopt.wide .wtext { text-align: left; }

.wizard-nav { display: flex; justify-content: space-between; align-items: center; padding: 0 1.5rem 1.5rem; }
.wback { appearance: none; background: none; border: none; color: var(--navy); font-weight: 700; font-size: 0.95rem; cursor: pointer; display: inline-flex; align-items: center; gap: 0.35rem; font-family: inherit; padding: 0.6rem 0.4rem; }
.wback .material-symbols-rounded { font-size: 20px; }
.wback:disabled { visibility: hidden; }
.whint { font-size: 0.82rem; color: var(--muted); }

.wresult { text-align: center; padding: 0.5rem 0.25rem; }
.wresult .material-symbols-rounded.big { font-size: 64px; color: #1a9e54; }
.wresult h2 { color: var(--navy); margin: 0.5rem 0 0.25rem; font-size: 1.6rem; }
.wprice { font-size: clamp(2.2rem, 6vw, 3.2rem); font-weight: 800; color: var(--navy); margin: 0.5rem 0; }
.wprice span { color: var(--amber-deep); }
.wprice .wfrom { display: block; font-size: 1rem; font-weight: 600; color: var(--navy); letter-spacing: 0.02em; }
.wnote { color: var(--muted); font-size: 0.92rem; max-width: 520px; margin: 0 auto 1.25rem; }
.wchips { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 1.5rem; }
.wchip { background: #eef2f6; color: var(--navy); border-radius: 999px; padding: 0.45rem 0.95rem; font-size: 0.85rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.35rem; }
.wchip .material-symbols-rounded { font-size: 16px; color: var(--amber-deep); }
.wctas { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }
.wctas .btn { display: inline-flex; align-items: center; gap: 0.5rem; }
.wdisclaimer { font-size: 0.78rem; color: var(--muted); max-width: 560px; margin: 0 auto; }
.wrestart { margin-top: 1rem; }

@media (max-width: 560px) {
  .wopts { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .wopt { min-height: 138px; padding: 1rem 0.6rem; }
  .wopt .material-symbols-rounded { width: 62px; height: 62px; font-size: 36px; }
  .wstep .wlabel { display: none; }
  .wizard-body { padding: 1rem; }
}
