#contact-screen {
    top: 0;
    left: 0;
    width: 100%;
    height: 77vh;
    padding: 0;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    background: black;
    max-width: var(--section-content-max-width, 1200px);
    margin: 0 auto;
    box-sizing: border-box;
    overflow: hidden !important;
    overscroll-behavior: none !important;
    touch-action: none;
    user-select: none;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
    padding-top: 5vh;
}

#contact-screen .contact-item {
    width: 100%;
    margin: 0 0 3.5rem 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    padding-left: calc((100% - var(--nav-container-width, 1200px)) / 2 + 11px);
    box-sizing: border-box;
}


.contact-item:hover {
    transform: translateY(-2px);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    object-fit: contain;
    flex-shrink: 0;
    cursor: pointer;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: clamp(15px, 2.5vw + 0.5rem, 20px);
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    flex: 1;
    text-align: start;
    justify-items: center;
}

.contact-link:hover {
    color: rgb(49, 209, 88);
}

/* Đảm bảo contact section luôn chặn scroll */
#contact,
#contact .content-section,
#contact-screen,
.contact-item,
.contact-link {
    overflow: hidden !important;
    overflow-y: hidden !important;
    overflow-x: hidden !important;
    overscroll-behavior: none !important;
}

@media (max-width: 768px) {
    #contact-screen {
        height: 100vh;
        width: 100vw;
        align-items: flex-start;
        justify-content: flex-start;
        padding-top: 25vw;
        margin: 0;
        margin-top: 20px;
        padding-left: 4.5vw;
        padding-right: 0;
        padding-bottom: 0;
        overflow: hidden !important;
        overflow-y: hidden !important;
        overflow-x: hidden !important;
        max-width: 100%;
    }

    #contact-screen .contact-item {
        width: 100%;
        padding: 0 0;
        margin: 0;
        padding-bottom: 13vw;
        align-items: center;
        gap: 2px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding-left: 0;
    }

    .contact-icon {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        object-fit: cover;
    }

    .contact-icon img {
        width: 10vw;
        height: auto;
    }

    .contact-link {
        text-align: start;
        white-space: normal;
        overflow: hidden !important;
        text-overflow: none;
        font-size: 4vw;
        flex: 2;
        max-width: 100%;
    }
}