/* ------------ REUSABLE CONTACT COMPONENT ------------ */

.wm-contact-section {
    padding: var(--spacing-xxl) 0;
    background-color: #fdfdfd;
}

.wm-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: var(--spacing-xl);
}

.wm-contact-card {
    background: #ffffff;
    padding: 25px;
    border-radius: var(--radius-md);
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.wm-contact-card:hover {
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.wm-contact-icon-wrapper {
    color: var(--color-accent);
    background: var(--color-accent-light);
    min-width: 44px;
    max-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.wm-contact-info h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-wide);
    color: var(--color-heading);
    margin-bottom: 4px;
    line-height: 1.2;
}

.wm-contact-info a, 
.wm-contact-info p {
    color: var(--color-heading);
    font-weight: var(--fw-regular);
    font-size: var(--fs-small);
    line-height: var(--lh-body);
    text-decoration: none;
    margin: 0;
}

.wm-contact-info a:hover {
    color: var(--color-accent);
}

/* --- MAP --- */

.wm-contact-map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    filter: grayscale(0.2);
    transition: filter 0.3s ease;
}

.wm-contact-map-wrapper:hover {
    filter: grayscale(0);
}

.wm-contact-map-wrapper iframe {
    display: block; /* Removes tiny gap at bottom of iframe */
}

/* --- RESPONSIVENESS --- */

@media (max-width: 992px) {
    .wm-contact-grid {
        grid-template-columns: 1fr;
    }
    
    .wm-contact-card {
        padding: 20px;
    }
}

@media (max-width: 500px) {
    .wm-contact-section {
        padding: var(--spacing-xl) 0;
    }
    
    .wm-contact-card {
        flex-direction: column; /* Stack icons on top for small phones */
        align-items: center;
        text-align: center;
    }

    .wm-contact-info p {
        max-width: 250px;
        margin: 0 auto;
    }
}