
        .sticky-buttons {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: space-around;
            background-color: #600D06;
            padding: 12px 0;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            display: none;
        }
        .sticky-btn {
            padding: 12px 25px;
            font-size: 16px;
            color: white;
            text-align: center;
            text-decoration: none;
            flex: 1;
            border: none;
            background: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .call-btn {
            border-right: 1px solid #fff;
            height: 100%;
        }
        .enquire-btn {
            border-left: 1px solid #fff;
            height: 100%;
        }
        .sticky-btn:hover {
            background-color: #600D06;
        }
        .whatsapp-btn {
            position: fixed;
            bottom: 100px;
            right: 15px;
            width: 55px;
            height: 55px;
            background-color: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            transition: transform 0.3s ease;
        }
        .whatsapp-btn:hover {
            transform: scale(1.1);
        }
        .whatsapp-btn i {
            font-size: 28px;
            color: white;
        }
        .sticky-btn i {
            font-size: 20px;
            color: white;
        }
        @media (max-width: 768px) {
            .sticky-buttons {
                display: flex;
            }
        }
    