/* ... Keep all your provided CSS at the top ... */

/* Additional styles to support the Contact Page layout */

.contact-section {
    padding: 5rem 0;
    background-color: white;
}

.section-sub-title {
    font-size: 2rem;
    border-left: 8px solid var(--primary);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.emergency-box {
    background: var(--primary);
    padding: 2rem;
    color: var(--slate-200);
    border: 4px solid var(--slate-900);
    position: relative;
}

.phone-link {
    font-size: 2.5rem;
    font-family: 'Roboto Slab', serif;
    font-weight: 900;
    color: white;
    display: block;
    margin: 1rem 0;
}

.small-italic {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-style: italic;
    color: var(--slate-300);
}

/* Adjusting the split layout for content vs form */
.split-layout {
    align-items: flex-start;
}

.info-side {
    display: flex;
    flex-direction: column;
}

/* Form Specifics */
.form-card {
    box-shadow: 12px 12px 0px 0px rgba(14, 74, 134, 0.1);
    border: 4px solid var(--slate-900);
}

textarea:focus {
    border-color: var(--primary);
    outline: none;
}

select {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    outline: none;
}

.service-selection {
    width: 100%;
    border: 2px solid var(--slate-200);
    padding: 0.75rem;
    margin-bottom: 1rem;
    position: inherit;
    left: 0;
    height: auto;
}

.preferred-selection {
    color: white;
    background-color: var(--primary);
}

.other-textarea {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .phone-link {
        font-size: 1.75rem;
    }

    .contact-hero h1 {
        font-size: 2.5rem;
    }
}

/* ... (Keep your existing CSS) ... */

/* Email Contact Styling */
.email-contact-box {
    margin-top: 2rem;
    padding: 1rem 0;
}

.email-contact-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.email-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.email-link:hover {
    border-color: var(--primary);
}

/* ── SECTION ── */
.locations-section {
    padding: 5rem 0;
    background-color: var(--slate-200);
}

/* ── GRID ── */
.location-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
    justify-content: center;
}

/* ── CARD ── */
.location-card {
    border: 3px solid var(--slate-900);
    background-color: var(--slate-100);
    box-shadow: 12px 12px 0px 0px rgba(14, 74, 134, 0.1);
    overflow: hidden;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.location-card:hover {
    transform: translate(-2px, -2px);

}

/* Image fills top of card, cropped */
.location-card__image {
    object-fit: cover;
    object-position: center;
    display: block;
    border-bottom: 3px solid var(--slate-900);
    /* Desaturate slightly to feel cohesive */
    filter: saturate(0.85) contrast(1.05);
}

/* Body section */
.location-card__body {
    padding: 1.5rem;
}

/* Icon + title row */
.location-card__header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.75rem;
}

.location-card__header .material-symbols-outlined {
    color: var(--primary);
    font-size: 1.6rem;
    flex-shrink: 0;
    /* Small accent swatch behind icon */
    background: color-mix(in srgb, var(--primary) 12%, transparent);
    border-radius: 4px;
    padding: 3px;
}

.location-card h4 {
    font-family: 'Roboto Slab', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.2;
}

/* Divider */
.location-card__divider {
    height: 2px;
    background: var(--slate-300);
    margin: 0.875rem 0;
}

.location-card p {
    line-height: 1.7;
    color: var(--slate-700);
    font-size: 0.925rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
    }

    .location-card__image {
        height: 260px;
    }
}