/* ============================================================
   БЛОК 6: КОНТАКТЫ И РЕЖИМ РАБОТЫ
   ============================================================ */
.contacts-uzi {
    padding: 70px 20px;
    background: #f4f8fa;
}

.contacts-uzi__container {
    max-width: 1100px;
    margin: 0 auto;
}

/* ----- РАЗДЕЛИТЕЛЬ ----- */
.contacts-uzi__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.contacts-uzi__divider-line {
    flex: 1;
    height: 1.5px;
    background: #3A7CA5;
    opacity: 0.3;
}

.contacts-uzi__divider-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    animation: contacts-spin 20s linear infinite;
}

.contacts-uzi__divider-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

@keyframes contacts-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ----- ЗАГОЛОВОК ----- */
.contacts-uzi__title {
    font-size: 38px;
    font-weight: 300;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 40px;
}

/* ----- СЕТКА ----- */
.contacts-uzi__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* ----- ЛЕВАЯ КОЛОНКА (контакты) ----- */
.contacts-uzi__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contacts-uzi__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #ffffff;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(58, 124, 165, 0.06);
}

.contacts-uzi__icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.contacts-uzi__item strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 4px;
}

.contacts-uzi__item p {
    font-size: 16px;
    color: #4A6A80;
    margin: 0;
    line-height: 1.5;
}

.contacts-uzi__item a {
    color: #3A7CA5;
    text-decoration: none;
    font-weight: 500;
}

.contacts-uzi__item a:hover {
    color: #2C5F7A;
    text-decoration: underline;
}

/* ----- КНОПКИ СВЯЗИ ----- */
.contacts-uzi__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.contacts-uzi__buttons .btn {
    padding: 12px 24px;
    font-size: 15px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contacts-uzi__buttons .btn-primary {
    background: #3A7CA5;
    color: #ffffff;
    border: none;
}

.contacts-uzi__buttons .btn-primary:hover {
    background: #2C5F7A;
    transform: scale(1.02);
}

.contacts-uzi__buttons .btn-secondary {
    background: #ffffff;
    color: #2C3E50;
    border: 2px solid #D9E9F2;
}

.contacts-uzi__buttons .btn-secondary:hover {
    background: #D9E9F2;
    border-color: #3A7CA5;
    transform: scale(1.02);
}

.contacts-uzi__buttons .btn svg {
    fill: currentColor;
}

/* ----- ПРАВАЯ КОЛОНКА (карта) ----- */
.contacts-uzi__map {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(58, 124, 165, 0.06);
}

.contacts-uzi__map iframe {
    display: block;
    width: 100%;
    height: 350px;
    border: none;
}

/* ============================================================
   АДАПТИВ
   ============================================================ */
@media (max-width: 992px) {
    .contacts-uzi__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contacts-uzi__map iframe {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .contacts-uzi {
        padding: 50px 16px;
    }
    .contacts-uzi__title {
        font-size: 30px;
    }
    .contacts-uzi__item {
        padding: 16px 20px;
    }
    .contacts-uzi__buttons .btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    .contacts-uzi__map iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .contacts-uzi__item {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        text-align: center;
    }
    .contacts-uzi__icon {
        width: auto;
    }
    .contacts-uzi__buttons {
        justify-content: center;
    }
    .contacts-uzi__buttons .btn {
        width: 100%;
        justify-content: center;
    }
    .contacts-uzi__divider-icon {
        width: 30px;
        height: 30px;
    }
    .contacts-uzi__map iframe {
        height: 200px;
    }
}