/* ===================== Header Online Support ===================== */
#main nav .nav-container .nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-online-support {
    display: flex;
    align-items: center;
    border-right: 1px solid #e0e0e0;
    padding-right: 20px;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .nav-online-support {
        display: none !important;
    }
}

.nav-support-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    color: #333;
    transition: color 0.2s ease;
}

.nav-support-link:hover {
    color: #90090C;
}

.nav-support-link .fa-headset {
    font-size: 20px;
    color: #90090C;
    flex-shrink: 0;
}

.nav-support-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-support-label {
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.nav-support-number {
    font-size: 13px;
    font-weight: 600;
    color: #222;
}

.nav-support-link:hover .nav-support-number {
    color: #90090C;
}

/* ===================== Support Widget (Floating) ===================== */
.support-widget {
    position: fixed;
    bottom: 28px;
    right: 22px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.support-toggle-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    flex-shrink: 0;
}

.support-toggle-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
}

.support-icon-open,
.support-icon-close {
    position: absolute;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.support-icon-close {
    opacity: 0;
    transform: rotate(-90deg);
    font-size: 20px;
}

.support-widget--open .support-toggle-btn {
    background: #90090C;
    box-shadow: 0 4px 18px rgba(144, 9, 12, 0.4);
}

.support-widget--open .support-icon-open {
    opacity: 0;
    transform: rotate(90deg);
}

.support-widget--open .support-icon-close {
    opacity: 1;
    transform: rotate(0deg);
}

.support-panel {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.16);
    width: 285px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px) scale(0.96);
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s ease;
    transform-origin: bottom right;
}

.support-widget--open .support-panel {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.support-panel-header {
    background: #90090C;
    color: #fff;
    padding: 13px 18px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.support-panel-items {
    display: flex;
    flex-direction: column;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 16px;
    text-decoration: none !important;
    color: #333;
    border-bottom: 1px solid #f2f2f2;
    transition: background 0.18s ease, color 0.18s ease;
}

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

.support-item:hover {
    background: #fdf5f5;
    color: #90090C;
}

.support-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    color: #90090C;
    transition: background 0.18s ease;
}

.support-item-whatsapp .support-item-icon {
    background: #e8fdf1;
    color: #25D366;
    font-size: 22px;
}

.support-item:hover .support-item-icon {
    background: #fdeaea;
}

.support-item-whatsapp:hover .support-item-icon {
    background: #d4f8e4;
}

.support-item-content {
    flex: 1;
    min-width: 0;
}

.support-item-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.support-item-sub {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

.support-item:hover .support-item-sub {
    color: #c06060;
}

.support-item-arrow {
    font-size: 10px;
    color: #ccc;
    flex-shrink: 0;
    transition: color 0.18s ease, transform 0.18s ease;
}

.support-item:hover .support-item-arrow {
    color: #90090C;
    transform: translateX(2px);
}

@media (max-width: 576px) {
    .support-widget {
        bottom: 18px;
        right: 14px;
    }

    .support-panel {
        width: 262px;
    }
}
