/* Assistance */

.section-assistance {
    background: #f3f4f6;
}

.assistance-layout {
    display: grid;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 900px) {
    .assistance-layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

.assistance-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 1.2rem;
    overflow: hidden;
}

.assistance-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* Contact section styles (align with site typography & spacing) */
.section-contact {
    background: #ffffff;
}

.contact-grid {
    display: grid;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    }
}

.contact-details {
    max-width: 640px;
}

.contact-list {
    list-style: none;
    margin: 0.5rem 0 1.25rem;
    padding: 0;
    display: grid;
    gap: 0.9rem;
}

.contact-list li {
    color: #374151;
}

.contact-list a {
    color: #111827;
    font-weight: var(--weight-semibold);
}

.contact-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.contact-form {
    background: transparent;
}

/* Make appointment form consistent with other components */
.contact-form .appointment-form input,
.contact-form .appointment-form textarea,
.contact-form .appointment-form select {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.6rem;
    font-size: 0.95rem;
    background: #fff;
}

.contact-form .appointment-form .form-row { margin-bottom: 0.75rem; }

.contact-form .btn-submit { width: 100%; }

/* Make privacy policy link smaller and subtle inside contact actions */
.contact-actions .btn.btn-outline {
    font-size: 0.875rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: transparent;
    border: 1px solid #e5e7eb;
    color: #374151;
}

/* Make the appointment CTA match site primary CTA styling (bolder and brand color) */
.contact-actions .btn.btn-primary {
    font-weight: var(--weight-bold);
    background-color: #7f1d1d; /* match .nav-cta brand color */
    color: #ffffff;
    padding: 0.6rem 1.25rem;
}

.contact-actions .btn.btn-primary:hover {
    background-color: #991b1b;
}

