/* Sticky call button for mobile */
.sticky-call-btn {
    position: fixed;
    left: 16px;
    bottom: 24px;
    z-index: 11000;
    display: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #28a745;
    color: #fff;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    text-decoration: none;
    transition: transform .24s ease, opacity .24s ease;
    opacity: 0;
    transform: translateY(12px);
    display: inline-flex;
}
.sticky-call-btn .fa { font-size: 22px; }
.sticky-call-btn.show {
    opacity: 1;
    transform: translateY(0);
}
/* Only consider mobile widths */
@media (min-width: 768px) {
    .sticky-call-btn { display: none !important; }
}