.contact-bar-section {
    background: #FFFFFF8C;
}

.contact-bar-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

/* Individual Column / Item */
.contact-bar-item {
    padding: 45px 40px;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border-right: 2px solid #042C531A;
}

.contact-bar-item:last-child {
    border-right: none;
}

.contact-bar-item:hover {
    background-color: #FAFBFD;
}

/* Top Label: "Contact Number", "Email", etc. */
.contact-bar-label {
    color: #042C53A6;
    margin-bottom: 10px;
    display: block;
    white-space: nowrap;
    font-family: Outfit;
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
}

/* Middle Value: Phone number, email, handles */
.contact-bar-value {
    color: #042C53;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.25s ease;
    font-family: Outfit;
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
}

.contact-bar-item:hover .contact-bar-value {
    color: #D07F10;
}

/* Bottom Icon Area */
.contact-bar-icon-wrap {
    margin-top: 36px;
}

.contact-bar-icon {
    color: #042C53;
    transition: transform 0.3s ease, color 0.3s ease;
}

.contact-bar-icon svg {
    width: 22px;
    height: 22px;
}

/* Large screens down to tablets */
@media (max-width: 1280px) {
    .contact-bar-item {
        padding: 30px 20px 26px 20px;
    }

    .contact-bar-value {
        font-size: 16px;
    }

    .contact-bar-icon-wrap {
        margin-top: 28px;
    }
}

@media (max-width: 1024px) {
    .contact-bar-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-bar-item:nth-child(3) {
        border-right: none;
    }

    .contact-bar-item:nth-child(4),
    .contact-bar-item:nth-child(5) {
        border-top: 1px solid #EAEEF3;
    }

    .contact-main-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Screens (Matches Image 2 exactly) */
@media (max-width: 767px) {

    /* Single column vertical stack as shown in Image 2 */
    .contact-bar-grid {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr;
    }

    .contact-bar-item {
        border-right: none;
        border-bottom: 2px solid #042C531A;
        padding: 24px 20px 22px 20px;
    }

    .contact-bar-item:last-child {
        border-bottom: none;
    }

    .contact-bar-icon-wrap {
        margin-top: 24px;
    }
    .contact-bar-section .page-width {
        padding: 0;
    }
}