/* Container for sticky positioning */
        .sticky-contact-container {
            position: fixed;
            top: 300px;
            left: 5px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            z-index: 9999;
            font-family: Arial, sans-serif;
        }

        /* Base button styles */
        .contact-btn {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            text-decoration: none;
            color: white;
            height: 50px;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            transition: all 0.4s ease-in-out;
            max-width: 50px; /* Initially hides the text */
            position: relative;
        }

        /* Icon wrapper to keep it perfectly centered when closed */
        .contact-btn .icon-wrapper {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            flex-shrink: 0;
        }

        /* Hidden text properties */
        .contact-btn .btn-text {
            padding-left: 20px;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
            font-weight: bold;
            font-size: 14px;
        }

        /* Specific colors */
        .btn-whatsapp {
            background-color: #25D366;
        }

        .btn-phone {
            background-color: #0078FF;
        }

        /* Roll-out effect on Hover and Active/Click status */
        .contact-btn:hover,
        .contact-btn.active {
            max-width: 250px; /* Expands to show text */
        }

        .contact-btn:hover .btn-text,
        .contact-btn.active .btn-text {
            opacity: 1;
        }