        /* --- Book Now Floating Button --- */
        .fab-book {
            position: fixed;
            bottom: 20px;
            right: 100px; /* Positioned to the left of the call button */
            width: 60px;
            height: 60px;
            background-color: #1dace0; /* Primary Blue */
            color: white;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            z-index: 1999;
            transition: transform 0.3s ease;
            text-decoration: none;
        }

        .fab-book:hover {
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .fab-book {
                bottom: 20px;
                right: 20px;
            }
        }