/* ===============================
   MOBILE CONTACT BAR
   Thanh menu cố định ở dưới màn hình - chỉ hiển thị trên mobile
   =============================== */

.mobile-contact-bar {
    display: none; /* Ẩn trên desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    /* border-top: 2px solid #dc3545; Border đỏ ở trên */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Cao hơn các phần tử khác */
    padding: 8px 0;
}

.mobile-contact-bar-inner {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 100%;
    padding: 0 8px;
}

.mobile-contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 8px 4px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease;
    border-radius: 8px;
    min-height: 60px;
}

.mobile-contact-item,
.mobile-contact-item:link,
.mobile-contact-item:visited,
.mobile-contact-item:hover,
.mobile-contact-item:active {
    text-decoration: none;
}

.mobile-contact-item:active {
    background-color: rgba(0, 0, 0, 0.05);
}

.mobile-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    font-size: 18px;
    color: #fff;
}

/* Icon màu xanh lá cho Gọi điện */
.mobile-contact-icon-phone {
    background-color: #25D366; /* Màu xanh lá giống WhatsApp */
}

/* Icon màu xanh lá cho Nhắn tin */
.mobile-contact-icon-sms {
    background-color: #25D366; /* Màu xanh lá */
}

/* Icon màu xanh dương cho Zalo */
.mobile-contact-icon-zalo {
    background-color: #0068FF; /* Màu xanh dương của Zalo */
}

/* Icon màu xanh dương cho Facebook */
.mobile-contact-icon-facebook {
    background-color: #0084FF; /* Màu xanh dương của Facebook Messenger */
}

.mobile-contact-label {
    font-size: 11px;
    font-weight: 500;
    text-align: center;
    color: #333;
    line-height: 1.2;
}

/* Chỉ hiển thị trên mobile (màn hình <= 768px) */
@media (max-width: 768px) {
    .mobile-contact-bar {
        display: block;
    }
    
    /* Thêm padding-bottom cho body để nội dung không bị che bởi thanh menu */
    body {
        padding-bottom: 76px;
    }
}

/* Responsive cho màn hình rất nhỏ */
@media (max-width: 480px) {
    .mobile-contact-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .mobile-contact-label {
        font-size: 10px;
    }
    
    .mobile-contact-item {
        min-height: 56px;
        padding: 6px 2px;
    }
    
    body {
        padding-bottom: 72px;
    }
}

/* Ẩn hoàn toàn trên desktop */
@media (min-width: 769px) {
    .mobile-contact-bar {
        display: none !important;
    }
    
    body {
        padding-bottom: 0 !important;
    }
}
