/* Contact Page Specific Styles */

.contact-wrapper {
    padding: 6rem 0;
    text-align: center;
}

.contact-card {
    max-width: 650px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.contact-card .card-intro {
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.contact-email {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.01em;
    margin-bottom: 3rem;
    word-break: break-all;
}

.contact-actions {
    margin-bottom: 5rem;
}

/* Map Section */
.map-section {
    text-align: left;
    border-top: 1px solid var(--surface-border);
    padding-top: 3rem;
}

.map-section h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.map-address {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.map-container {
    width: 100%;
    height: 300px;
    background-color: var(--surface-bg);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid var(--surface-border);
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: saturate(0.8) grayscale(0.2);
    transition: filter 0.3s ease;
}

.map-container:hover iframe {
    filter: saturate(1) grayscale(0);
}

.map-link-btn {
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
}

/* Mobile Overrides */
@media (max-width: 768px) {
    .contact-wrapper {
        padding: 3rem 0;
    }

    .contact-card {
        padding: 3rem 1.5rem;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }

    .contact-email {
        font-size: 1.5rem;
    }

    .map-container {
        height: 250px;
    }
}
