.contacts-info-section {
    padding: 20px 0 60px;
    background-color: #ffffff;
}

.contacts-info-container {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.contacts-info-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-family: 'MatahariExtended600ExtSemBd', Arial, sans-serif;
}

.contacts-info-table {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contacts-info-row {
    display: flex;
    gap: 32px;
    line-height: 1.5;
}

.contacts-info-label {
    min-width: 150px;
    font-weight: 600;
    font-size: 16px;
    color: #1f1f1f;
}

.contacts-info-value {
    flex: 1;
    font-size: 16px;
    color: #1f1f1f;
}

.contacts-info-value p {
    margin: 0;
}

.contacts-info-value a {
    color: #1f1f1f;
    text-decoration: none;
    border-bottom: 1px solid #8a2b18;
    padding-bottom: 2px;
}

.contacts-info-socials {
    display: flex;
    gap: 12px;
}

.contacts-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #8a2b18;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.contacts-social-btn:hover {
    transform: translateY(-2px);
    background-color: #6d1f12;
}

.contacts-info-map {
    flex: 1;
    min-height: 360px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.contacts-info-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 1024px) {
    .contacts-info-container {
        flex-direction: column;
    }

    .contacts-info-map {
        min-height: 320px;
    }
}

@media (max-width: 640px) {
    .contacts-info-row {
        flex-direction: column;
        gap: 6px;
    }

    .contacts-info-label {
        min-width: auto;
    }

    .contacts-info-socials {
        justify-content: flex-start;
    }

    .contacts-info-map {
        min-height: 420px;
        height: 420px;
    }

    .contacts-info-map iframe {
        min-height: 420px;
    }
}

