/* ===================================
   STICKY ACTION BUTTONS
   =================================== */

.sticky-action-buttons {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-end;
}

.sticky-btn {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    width: 60px;
    /* Initial width - icon only */
    height: 60px;
    white-space: nowrap;
}

.sticky-btn:hover {
    width: auto;
    padding-right: 25px;
}

.btn-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #FFFFFF;
    flex-shrink: 0;
}

.btn-label {
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 15px;
    margin-left: 10px;
    color: #0B2C54;
}

.sticky-btn:hover .btn-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Button Colors */
.sticky-appointment .btn-icon {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8F66 100%);
}

.sticky-live-support .btn-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.sticky-career .btn-icon {
    background: linear-gradient(135deg, #4A90E2 0%, #007AFF 100%);
}

.sticky-international .btn-icon {
    background: linear-gradient(135deg, #0B2C54 0%, #1E4D8B 100%);
}

/* Hover Pulse Effects */
.sticky-appointment:hover .btn-icon {
    animation: pulse-orange 1.5s infinite;
}

.sticky-live-support:hover .btn-icon {
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .sticky-action-buttons {
        right: 20px;
        bottom: 20px;
    }

    .sticky-btn {
        width: 50px;
        height: 50px;
    }

    .btn-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    /* On mobile maybe keep appointment icon visible or smaller logic */
}