/* ==========================================================================
   /contact-us — Contact page specific styles
   Extends static-pages.css
   ========================================================================== */

/* Help center inline links */
.contact-help-link {
    color: #111827;
    text-decoration: underline;
}

/* Section with no top padding */
.contact-section-flush {
    padding-top: 0;
}

/* Smaller section title */
.contact-title-sm {
    font-size: 1.75rem;
}
.contact-title-xs {
    font-size: 1.5rem;
}

/* Full-width prose */
.contact-prose-full {
    max-width: 100%;
}

/* Image grid (3-col) */
.contact-img-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.contact-img-grid img {
    border-radius: 10px;
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
@media (max-width: 576px) {
    .contact-img-grid {
        grid-template-columns: 1fr;
    }
}

/* Motorbike image subtle opacity */
.contact-motorbike {
    opacity: 0.85;
}

/* Form heading */
.contact-form-heading {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.25rem;
}

/* Form description */
.contact-form-desc {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* Textarea vertical resize */
.contact-textarea {
    resize: vertical;
}

/* Submit button row */
.contact-submit-row {
    margin-top: 0.75rem;
}

/* Social section text */
.contact-social-text {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.7;
    max-width: 520px;
}

/* FAQ max-width */
.contact-faq {
    max-width: 100%;
}

/* Submit button spacing */
.sp-form-card .btn-submit {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Hero trust pills */
.sp-hero-right {
    flex: 0 0 auto;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    align-self: flex-start;
    flex-wrap: wrap;
}
.sp-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 18px;
    background: #000;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    font-size: 0.6rem;
    font-weight: 600;
    color: #fff;
    transition: opacity 0.15s;
    white-space: nowrap;
}
.sp-trust-pill:hover { opacity: 0.85; text-decoration: none; color: #fff; }
.sp-trust-stars { color: #f59e0b; letter-spacing: 1px; font-size: 0.6rem; }
.sp-trust-pill span { font-weight: 600; font-size: 0.6rem; }

/* FAQ 2-column grid */
.contact-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 768px) {
    .contact-faq-grid { grid-template-columns: 1fr; }
}

/* Browse CTA link */
.contact-browse-btn {
    color: #fff;
    text-decoration: none;
}
