/* ===========================================
   СЕКЦИЯ КОНТАКТОВ (CONTACT)
   =========================================== */

.contact {
    background-color: var(--color-section-bg);
    padding: 80px 0;
    color: var(--color-text-white);
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Левая часть - контактная информация */
.contact__info {
    display: flex;
    flex-direction: column;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact__icon {
    width: 24px;
    height: 24px;
    fill: var(--color-text-white);
    flex-shrink: 0;
}

.contact__phone {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact__phone:hover {
    opacity: 0.8;
}

.contact__address,
.contact__hours {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text-white);
}

.contact__email {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text-white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact__email:hover {
    opacity: 0.8;
}


/* Правая часть - карта */
.contact__map {
    position: relative;
}

.contact__map-info {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact__map-icon {
    width: 20px;
    height: 20px;
    fill: var(--color-section-bg);
    flex-shrink: 0;
}

.contact__map-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-primary);
}

.contact__map-container {
    width: 100%;
    height: 380px;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

.contact__map-image {
    background-image: var(--image-contact-map);
}
