/* ===== CHAT SUPPORT ===== */
.chat-support-btn{
    position:fixed;
    bottom:25px;
    right:25px;
    width:62px;
    height:62px;
    border-radius:50%;
    background:var(--navy-deep);
    border:2px solid var(--gold);
    color:var(--gold);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    cursor:pointer;
    box-shadow:0 8px 25px rgba(10,22,40,0.35);
    z-index:9999;
    transition:0.3s;
}

.chat-support-btn:hover{
    transform:scale(1.08);
}

.chat-box{
    position:fixed;
    bottom:100px;
    right:25px;
    width:350px;
    max-width:95%;
    background:#fff;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(10,22,40,0.25);
    display:none;
    z-index:9999;
    animation:fadeIn 0.3s ease;
    border:1px solid var(--line);
}

.chat-header{
    background:var(--navy-deep);
    border-bottom:1px solid var(--gold);
    color:#fff;
    padding:16px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.chat-header h6{
    margin:0;
    font-weight:700;
    font-family:'Inter', sans-serif;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#fff;
}

.chat-header small{
    color:var(--muted);
    font-size:11px;
}

.chat-body{
    height:320px;
    overflow-y:auto;
    padding:15px;
    background:#f8f9fa;
}

.support-message{
    background:#fff;
    border:1px solid var(--line);
    padding:12px;
    border-radius:8px;
    margin-bottom:12px;
    max-width:85%;
    font-size:13px;
}

.user-message{
     background:#fff;
    border:1px solid var(--line);
    padding:12px;
    border-radius:8px;
    margin-bottom:12px;
    max-width:85%;
    font-size:13px;
    margin-left:auto;
    color:#198754;
}

.chat-footer{
    padding:12px;
    border-top:1px solid #eee;
    display:flex;
    gap:10px;
    background:#fff;
}

.chat-footer input{
    flex:1;
    border-radius:30px;
    border:1px solid #ddd;
    padding:10px 15px;
    font-size:13px;
}

.chat-footer input:focus{
    outline:none;
    border-color:var(--gold);
}

.chat-footer button{
    border:none;
    background:var(--navy-deep);
    color:var(--gold);
    border-radius:50%;
    width:45px;
    height:45px;
}


.online-dot{
    width:9px;
    height:9px;
    background:#28c76f;
    border-radius:50%;
    display:inline-block;
    margin-right:5px;
}

.badge.bg-success{
    background:#198754 !important;
    color:#fff !important;
}

.badge.bg-danger{
    background:#b42318 !important;
    color:#fff !important;
}

.chat-item{cursor:pointer;}
.chat-item:hover{background:#f8f9fa;}
#chatWindow{
    height:80vh;
    overflow-y:auto;
    background:#198754;
    border-radius:10px;
    padding:15px;
    box-shadow:0 4px 15px rgba(0,0,0,0.05);
}