/* Live Quote page — EZ Locksmith Inc. (live-quote.html only)
   Reuses design tokens from style.css. Mobile-first. */
.live-hero { padding: 3rem 0 1.25rem; text-align: center; }
.live-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; }
.live-hero h1 { font-size: clamp(2rem, 5vw, 3rem); color: var(--navy); margin: 0 0 0.5rem; }
.live-hero p { color: var(--muted); font-size: 1.08rem; margin: 0 auto; max-width: 620px; }
.live-hero p strong { color: var(--navy); }

.live-status { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1rem; padding: 0.55rem 1.1rem; border-radius: 999px; font-weight: 700; font-size: 0.92rem; }
.live-status .dot { width: 10px; height: 10px; border-radius: 50%; background: currentColor; }
.live-status.open { background: #e5f6ec; color: #1a7a44; }
.live-status.open .dot { animation: pulse 1.6s infinite; }
.live-status.closed { background: #fdf1dc; color: var(--amber-deep); }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.live-grid { display: grid; gap: 1.5rem; max-width: 1020px; margin: 0 auto 3rem; }
@media (min-width: 900px) { .live-grid { grid-template-columns: 1.15fr 0.85fr; } }

.live-card { background: var(--white); border-radius: 20px; box-shadow: var(--shadow); padding: 1.75rem; }
.live-card h2 { font-size: 1.35rem; margin: 0 0 0.35rem; }
.live-card .card-sub { color: var(--muted); font-size: 0.95rem; margin: 0 0 1.25rem; }

.lq-field { margin-bottom: 1.05rem; }
.lq-field label { display: block; font-weight: 700; color: var(--navy); font-size: 0.92rem; margin-bottom: 0.35rem; }
.lq-field .hint { font-weight: 400; color: var(--muted); font-size: 0.82rem; }
.lq-field input, .lq-field select, .lq-field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  border: 2px solid #e6ecf2; background: #fbfdff; border-radius: 12px;
  padding: 0.8rem 1rem; appearance: none;
}
.lq-field textarea { min-height: 96px; resize: vertical; }
.lq-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f2a43' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.9rem center; background-size: 1.1em; padding-right: 2.6rem; }
.lq-field input:focus, .lq-field select:focus, .lq-field textarea:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px rgba(245,166,35,0.18); }
.lq-row { display: grid; gap: 1.05rem; }
@media (min-width: 560px) { .lq-row { grid-template-columns: 1fr 1fr; } }
.lq-error { display: none; color: #b4232a; font-size: 0.88rem; font-weight: 600; margin: -0.5rem 0 1rem; }
.lq-error.show { display: block; }

.btn-live { width: 100%; justify-content: center; font-size: 1.15rem; padding: 1.05rem 2rem; margin-top: 0.25rem; }
.lq-alt { text-align: center; margin-top: 0.9rem; font-size: 0.95rem; color: var(--muted); }
.lq-alt a { font-weight: 700; }

.lq-success { display: none; text-align: center; padding: 1rem 0.25rem; }
.lq-success.show { display: block; }
.lq-success .material-symbols-rounded.big { font-size: 60px; color: var(--green); }
.lq-success h3 { margin: 0.5rem 0 0.35rem; font-size: 1.4rem; }
.lq-success p { color: var(--muted); }

.price-list { list-style: none; margin: 0 0 1.25rem; padding: 0; }
.price-list li { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: 0.65rem 0; border-bottom: 1px solid #eef2f6; font-size: 0.97rem; }
.price-list li:last-child { border-bottom: none; }
.price-list .pname { color: var(--navy); font-weight: 600; }
.price-list .pname small { display: block; font-weight: 400; color: var(--muted); font-size: 0.8rem; }
.price-list .pval { font-weight: 800; color: var(--navy); white-space: nowrap; }
.price-list .pval.free { color: var(--green); }

.how-steps { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.how-steps li { counter-increment: step; display: flex; gap: 0.85rem; margin-bottom: 1rem; font-size: 0.95rem; color: var(--ink); }
.how-steps li::before { content: counter(step); flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--amber-soft); color: var(--amber-deep); font-weight: 800; display: grid; place-items: center; font-size: 0.9rem; }
.how-steps strong { color: var(--navy); }

.shabbat-note { display: none; background: var(--amber-soft); border: 1px solid #f3ddae; border-radius: 12px; padding: 0.9rem 1.1rem; font-size: 0.93rem; color: var(--navy); margin-bottom: 1.25rem; }
.shabbat-note.show { display: block; }
.shabbat-note strong { color: var(--amber-deep); }
