/* Contacts Page Styles */

/* Hero Specifics */
.hero--contacts {
    min-height: 50vh;
}

/* Map Section */
.section--map {
    border-top: 1px solid #e2e8f0;
    background: white;
    padding: 64px 0;
}

.map-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    background: #f1f5f9;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.3s ease;
}

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

/* Contact Info Styles */
.section__header--contact {
    max-width: 768px;
    margin: 0 auto 64px;
    text-align: center;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-link {
    display: block;
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #ff5000;
}

.contact-link+.contact-link {
    margin-top: 4px;
}