.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 50px;
    align-items: flex-start;
}
.contacts-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.contacts-card,
.contacts-form-wrap {
    padding: 28px;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(5,33,48,0.08);
}
.contacts-card h3,
.contacts-form-wrap h2 {
    margin-bottom: 18px;
    font-size: 22px;
    font-weight: 800;
    color: var(--color-dark);
}
.contacts-link {
    display: block;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
}
.contacts-text,
.contacts-schedule {
    font-size: 16px;
    line-height: 1.55;
    color: #5c6b74;
}
.contacts-schedule {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
}
.contacts-form-wrap p {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.6;
    color: #5c6b74;
}
.contacts-form {
    display: grid;
    gap: 14px;
}
.contacts-form input,
.contacts-form textarea {
    width: 100%;
    border: 1px solid rgba(5,33,48,0.12);
    border-radius: 14px;
    padding: 15px 16px;
    outline: none;
    font-size: 15px;
}
.contacts-form textarea {
    min-height: 130px;
    resize: vertical;
}
.contacts-form input:focus,
.contacts-form textarea:focus {
    border-color: var(--color-primary);
}
.contacts-form .btn {
    width: 100%;
}
.contacts-map {
    margin-top: 50px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(5,33,48,0.08);
}
.contacts-map iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: 0;
}
@media (max-width: 992px) {
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    .contacts-info {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .contacts-info {
        grid-template-columns: 1fr;
    }
    .contacts-card,
    .contacts-form-wrap {
        padding: 22px;
        border-radius: 20px;
    }
    .contacts-map iframe {
        height: 320px;
    }
}

.fixed-actions {
    position: fixed;
    right: 22px;
    bottom: 110px;
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.fixed-actions__btn,
.scroll-top {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ffffff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(5,33,48,0.18);
    transition: 0.25s ease;
}

.fixed-actions__btn img {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.fixed-actions__btn--phone {
    background: #c4000b;
}

.fixed-actions__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(5,33,48,0.24);
}

.scroll-top {
    position: fixed;
    right: 22px;
    bottom: 34px;
    z-index: 300;
    background: #c4000b;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    font-size: 22px;
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: #052130;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .fixed-actions {
        right: 14px;
        bottom: 92px;
        gap: 10px;
    }

    .fixed-actions__btn,
    .scroll-top {
        width: 48px;
        height: 48px;
    }

    .fixed-actions__btn img {
        width: 22px;
        height: 22px;
    }

    .scroll-top {
        right: 14px;
        bottom: 28px;
    }
}