/* Contact page specific styles (keeps consistency with base.css) */
.contact-hero {}

/* Map embed helpers */
.map-embed { position: relative; background: var(--surface); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: var(--space-16); }
.map-embed iframe { width: 100%; height: 100%; border: 0; border-radius: var(--radius-sm); }

/* Details styling for FAQ */
details { border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 12px 14px; }
details + details { margin-top: var(--space-12); }
details[open] { background: var(--surface); }
details summary { cursor: pointer; font-weight: var(--fw-medium); }

/* Quote form steps */
.form-step { animation: fadeIn var(--transition-slow); }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* Chat panel small adjustment for mobile */
@media (max-width: 480px) { #chat-panel { right: 8px; left: 8px; width: auto; } }
