/* Mobile Sticky Footer */
.mobile-sticky-footer {
    display: none; /* Hidden by default on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.mobile-sticky-footer .footer-btn {
    flex: 1;
    text-align: center;
    padding: 15px 10px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease;
}

.mobile-sticky-footer .btn-call {
    background-color: #0056b3; /* Darker blue for contrast */
}

.mobile-sticky-footer .btn-whatsapp {
    background-color: #25D366; /* WhatsApp Green */
}

/* Mobile Viewport Only */
@media (max-width: 768px) {
    .mobile-sticky-footer {
        display: flex;
    }
    
    /* Adjust existing bottom elements if needed */
    .cookiealert {
        bottom: 50px !important; /* Move cookie alert up */
    }
    
    /* Hide existing floating buttons if they overlap */
    .download-brochure .mob_brochure {
        bottom: 70px; /* Move up */
    }
}
