/* Sticky Mobile CTA Styling */
#chatOnlineLabel {
    font-size: 11px;
    color: #00ff84;
    margin-bottom: 3px;
    font-weight: 600;
    display: block;
}

/* Pink/Purple gradient like "Get Brochure" */
#feeBtn {
    background: linear-gradient(90deg, #ff00b8, #7f39ff);
    color: #fff !important;
    border: none !important;
    font-weight: 600;
}

/* Green Chat Button */
#liveChatBtn {
    background: #28a745 !important;
    color: #fff !important;
    font-weight: 600;
}

/* Blue Call Button (match SCM Hub logo) */
#callNowBtn {
    background: #006ab3 !important; /* SCM Hub blue */
    color: #fff !important;
    font-weight: 600;
}

/* CTA Container */
.sticky-cta .btn {
    border-radius: 6px !important;
    padding: 9px 5px !important;
    font-size: 14px;
}

/* Only show on mobile */
@media (max-width: 991px) {
    .sticky-cta {
        position: fixed;
        left: 0; 
        right: 0; 
        bottom: 0;
        z-index: 1050;
        background: rgba(0,0,0,0.55) !important;
        backdrop-filter: blur(6px);
        padding: 10px 14px;
        display: block;
    }
}

@media (min-width: 992px) {
    .sticky-cta {
        display: none;
    }
}
