/* Contact page — hero uses global .site-hero default (250px) */

/* ============================================================
   Contact Us Module
   ============================================================ */

/* DC contact cards grid */
.contact-dc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}
.contact-dc-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: .2s;
}
.contact-dc-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.contact-dc-card-info strong {
    font-size: 15px;
    color: var(--text);
    display: block;
    margin-bottom: 4px;
}
.contact-dc-card-info .address {
    font-size: 13px;
    color: var(--text-muted);
}
.contact-dc-card-info .hours {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}
.contact-dc-card-phone {
    text-align: right;
}
.contact-dc-card-phone .phone {
    color: var(--primary);
    font-weight: 600;
    font-size: 15px;
}

/* SVG Map section */
.contact-map-section {
    margin-bottom: 50px;
}


/* Quick contact cards (phone/email/address) */
.contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}
.contact-quick-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    text-align: left;
    transition: .2s;
}
.contact-quick-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: transparent;
}
.contact-quick-card .icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.contact-quick-card .icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}
.contact-quick-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}
.contact-quick-card .highlight {
    font-size: 22px;
    color: var(--accent);
    font-weight: 700;
    margin: 8px 0;
}
.contact-quick-card .email-highlight {
    font-size: 17px;
    color: var(--primary);
    font-weight: 600;
    margin: 8px 0;
}
.contact-quick-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .contact-dc-grid { grid-template-columns: 1fr; }
    .contact-quick-grid { grid-template-columns: 1fr; }
}
