/**
 * SubZero Theme - Contact Page Styles
 * Contact page design with map section
 */

/* ==========================================================================
   Contact Map Section
   ========================================================================== */

.contact-map {
    padding: 4rem 0;
    background: var(--color-offwhite);
}

.contact-map .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-map .section-header__title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin: 0 0 0.5rem;
    color: var(--color-secondary);
}

.contact-map .section-header__description {
    font-size: 1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.contact-map__embed {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-map__embed iframe {
    display: block;
    width: calc(100% + 140px); /* Extra width to crop left and right */
    height: calc(100% + 115px); /* Extra height to crop top */
    margin: -115px 0 0 -90px; /* Crop: top, left; right crops 50px */
    border: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-map {
        padding: 3rem 0;
    }

    .contact-map__embed {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-map__embed {
        height: 250px;
    }
}

/* ==========================================================================
   Reduced Motion Support
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    .contact-map__embed iframe {
        animation: none !important;
    }
}
