/* =========================================
   Footer Chat Bar
   ========================================= */
.footer-chat-bar {
    background-color: #ffffff;
    padding: 10px 0 !important;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    /* Optional separator */
    border-bottom: 1px solid #f0f0f0;
    /* Connection to footer */
}

.chat-bar-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: opacity 0.2s;
}

.chat-bar-link:hover {
    opacity: 0.7;
    color: #000;
}

.chat-icon {
    width: 20px;
    height: 20px;
}

.chat-label {
    font-weight: 600;
}

.chat-arrow {
    font-size: 16px;
    line-height: 1;
}

.chat-action {
    font-weight: 400;
}

/* Tablet / Mobile Adjustments */
@media (max-width: 768px) {
    .footer-chat-bar {
        padding: 20px 0;
    }
}