.contact-grid {
    margin-top: 4cqw;
}

.contact-grid-sub {
    gap: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    margin-top: 2cqw;
    z-index: 5;
}

.contact-item:nth-child(1) {
    margin-top: 0;
}

.contact-item::after {
    width: 4cqw;
    height: 4cqw;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%) rotate(0deg);
    transform-origin: center;
    transition: all 0.5s ease;
}
.contact-subitem {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 4cqw;
    transform: translateY(-2cqw);
    pointer-events: none;
    box-shadow: none;
    transition: all 0.5s ease;
}

.contact-subitem::after {
    display: none;
}

.contact-item.is-open::after  {
    transform: translateY(-50%) rotate(90deg);
}

.contact-subitem.is-open {
    margin-top: 2cqw;
    max-height: 90cqw;
    opacity: 1;
    padding: 5cqw 4cqw;
    transform: translateY(0);
    pointer-events: auto;
    box-shadow: var(--shadow);
}

.contact-qr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4cqw;
}

.rq-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2cqw;
}

.qr {
    width: 100%;
}

.report-form-container {
    margin: 4cqw 0;
}

.call-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}