#zcl-contact-box {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9997;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.zcl-card {
    background: white;
    border-radius: 14px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 210px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    animation: zcl_floating 3s ease-in-out infinite;
}

@keyframes zcl_floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.zcl-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.zcl-icon {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zcl-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.zcl-text {
    display: flex;
    flex-direction: column;
}

.zcl-title {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.zcl-subtitle {
    color: #888;
    font-size: 12px;
    margin-top: 2px;
}

/* Mobile adjustments for round icons */
@media (max-width: 480px) {
    #zcl-contact-box {
        right: 20px;
        top: auto;
        bottom: 110px;
        transform: none;
        /* Sit right above the 70px bot icon at bottom: 20px + gap */
        gap: 15px;
    }

    .zcl-card {
        width: 70px;
        height: 70px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        animation: none !important;
    }

    .zcl-icon {
        width: 40px;
        height: 40px;
    }

    .zcl-text {
        display: none;
    }
}