/* ============================================
   QUOTE.HTML — PAGE-SPECIFIC STYLES
   Simple Quote Form
   Requires: css/style.css (loaded first)
============================================ */

body { background: var(--bg); }

.page-hero { padding: 48px 24px 36px; }
.page-hero h1 { font-size: clamp(24px, 3.5vw, 36px); margin-bottom: 10px; }
.page-hero p { font-size: 15px; }

.quote-wrap { max-width: 560px; margin: 0 auto; padding: 32px 20px 64px; }

/* ── TRUST STRIP ── */
.trust-strip { display: flex; justify-content: center; gap: 24px; margin-bottom: 24px; flex-wrap: wrap; }
.trust-pill { display: flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 600; color: var(--dark); }
.trust-pill span.dot { width: 7px; height: 7px; border-radius: 50%; background: #10B981; }

/* ── FORM CARD ── */
.quote-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: 0 20px 60px rgba(10,71,194,0.08);
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

#form-msg-quote { display: none; padding: 14px 18px; border-radius: 8px; font-size: 14px; font-weight: 600; margin-top: 20px; text-align: center; }

/* ── RESPONSIVE (page-specific) ── */
@media (max-width: 700px) {
  .quote-card { padding: 22px 18px; }
  .trust-strip { gap: 14px; }
}
