.nav-cta1 {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: #fff;
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .25s;
    box-shadow: 0 4px 20px rgba(255, 107, 107, .4);
    position: relative;
    overflow: hidden;
}

.nav-cta1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, .15) 45deg, transparent 90deg);
    animation: spinFull 4s linear infinite;
    pointer-events: none;
}

.nav-cta1:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(255, 107, 107, .6);
}

.hidden {
    display: none;
}
/* Base Alert */
.alert {
    position: relative;
    padding: 0.3rem;
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid transparent;
    border-radius: 0.375rem;
    font-family: Arial, sans-serif;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Primary */
.alert-primary {
    color: #084298;
    background-color: #cfe2ff;
    border-color: #b6d4fe;
}

/* Secondary */
.alert-secondary {
    color: #41464b;
    background-color: #e2e3e5;
    border-color: #d3d6d8;
}

/* Success */
.alert-success {
    color: #0f5132;
    background-color: #d1e7dd;
    border-color: #badbcc;
}

/* Danger */
.alert-danger {
    color: #842029;
    background-color: #f8d7da;
    border-color: #f5c2c7;
}

/* Warning */
.alert-warning {
    color: #664d03;
    background-color: #fff3cd;
    border-color: #ffecb5;
}

/* Info */
.alert-info {
    color: #055160;
    background-color: #cff4fc;
    border-color: #b6effb;
}

/* Light */
.alert-light {
    color: #636464;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

/* Dark */
.alert-dark {
    color: #141619;
    background-color: #d3d3d4;
    border-color: #bcbebf;
}

.nav-links a{
    text-decoration: none;
}

/* ============================
   BOOKINGS & SUBSCRIPTIONS
=============================*/

.activity-wrap{
    max-width:1200px;
    margin:auto;
}

.activity-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    overflow:hidden;
    margin-bottom:40px;
    box-shadow:0 12px 35px rgba(0,0,0,.25);
    backdrop-filter:blur(12px);
}

.activity-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 26px;
    background:linear-gradient(90deg,#6b21e8,#8b5cf6);
}

.activity-header h3{
    margin:0;
    color:#fff;
    font-size:20px;
    font-weight:700;
    letter-spacing:.3px;
}

.activity-count{
    background:rgba(255,255,255,.18);
    color:#fff;
    padding:5px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
}

/* table */

.table-responsive{
    overflow-x:auto;
}

.kb-table{
    width:100%;
    border-collapse:collapse;
    font-family:Inter,"Segoe UI",sans-serif;
    color:#f8fafc;
}

.kb-table thead{
    background:#15101f;
}

.kb-table thead th{
    padding:16px 20px;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.7px;
    font-weight:700;
    color:#b8b3c7;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.kb-table tbody td{
    padding:18px 20px;
    font-size:15px;
    font-weight:500;
    color:whitesmoke;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.kb-table tbody tr{
    transition:.25s;
}

.kb-table tbody tr:hover{
    background:rgba(255,255,255,.04);
}

/* zebra */

.kb-table tbody tr:nth-child(even){
    background:rgba(255,255,255,.02);
}

/* Amount */

.amount{
    color:#facc15;
    font-weight:700;
}

/* Status */

.badge{
    display:inline-flex;
    align-items:center;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:700;
}

.badge.pending{
    background:#ff980022;
    color:#ffb300;
}

.badge.accepted{
    background:#22c55e22;
    color:#22c55e;
}

.badge.completed{
    background:#0ea5e922;
    color:#38bdf8;
}

.badge.cancelled{
    background:#ef444422;
    color:#ef4444;
}

.badge.active{
    background:#22c55e22;
    color:#22c55e;
}

/* Empty */

.empty-state{
    padding:70px;
    text-align:center;
}

.empty-state i{
    font-size:52px;
    display:block;
    margin-bottom:15px;
}

.empty-state h4{
    color:#fff;
    margin-bottom:8px;
}

.empty-state p{
    color:#999;
    margin:0;
}

.support-card{

    max-width:900px;
    margin:auto;

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    overflow:hidden;

    backdrop-filter:blur(14px);

}

.support-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 25px;

    background:linear-gradient(90deg,#6b21e8,#8b5cf6);

}

.support-agent{

    display:flex;

    align-items:center;

    gap:15px;

}

.support-avatar{

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#fff;

    font-size:28px;

}

.support-title{

    color:#fff;

    font-size:20px;

    font-weight:700;

}

.support-status{

    color:#ddd;

    font-size:14px;

}

.online-dot{

    width:10px;

    height:10px;

    display:inline-block;

    border-radius:50%;

    background:#22c55e;

    margin-right:5px;

}

.support-live{

    border:none;

    background:#22c55e;

    color:#fff;

    padding:10px 18px;

    border-radius:30px;

    font-weight:700;

}

.support-chat{

    height:350px;

    overflow-y:auto;

    padding:25px;

    background:#0d0816;

}

.msg{

    max-width:75%;

    margin-bottom:18px;

    padding:14px 18px;

    border-radius:18px;

    line-height:1.6;

}

.msg.support{

    background:#252033;

    color:#fff;

}

.msg.user{

    background:#6b21e8;

    color:#fff;

    margin-left:auto;

}

.support-input{

    display:flex;

    gap:15px;

    padding:20px;

    background:#120b1e;

}

.support-input textarea{

    flex:1;

    resize:none;

    height:60px;

    border:none;

    border-radius:12px;

    padding:14px;

    background:#1d152b;

    color:#fff;

}

.support-input button{

    width:180px;

    border:none;

    border-radius:12px;

    background:#6b21e8;

    color:#fff;

    font-weight:700;

    cursor:pointer;

    transition:.25s;

}

.support-input button:hover{

    background:#7c3aed;

}

.kb-table-center th,
.kb-table-center td{
    text-align:center;
    vertical-align:middle;
}

.kb-table-center td{
    padding:20px 16px;
}

.adj-img img{
    filter:blur(20px);
    user-select:none;
    pointer-events:none;
}

footer a{
    text-decoration: none;
}

.emp-img-area   img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
}

nav a{
    text-decoration: none;
}

.btn-rate {
    background: #ffc107;
    color: #212529;
    border: none;
    border-radius: 20px;
    padding: 6px 16px;
    font-weight: 600;
    transition: all .2s ease;
}

.btn-rate:hover {
    background: #ffca2c;
    color: #212529;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255,193,7,.35);
}

.msg.user{
   align-self:flex-end;
   background:var(--purple,#8b5cf6);
   color:#fff;
   margin-left:auto;
}
.msg-time{
   display:block;
   font-size:10px;
   opacity:.6;
   margin-top:4px;
}
.msg.sending{
   opacity:.6;
}

.hero-visual img{
    border-radius: 4px;
}

.rg-logo img{
    width: 40px;
    width: 40px;
    border-radius: 50%;
}

.nav-logo-icon img{
    width: 40px;
    width: 40px;
    border-radius: 50%;
}

.msg_support{
    padding:10px 14px;
    background:rgba(107,33,232,.08);
    font-size:12px;color:rgba(255,255,255,.4);
    border-bottom:1px solid rgba(255,255,255,.05)
}

@media (max-width:768px){

    .profile-layout{

        display:block !important;

    }

    .profile-layout > div:first-child{

        margin-bottom:20px;

    }

}


