/* Mobile-Only Floating Buttons Styles */

#angie-floating-buttons-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Initial state for animation */
    transform: translateY(100px);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}

/* Slide in animation class */
#angie-floating-buttons-container.angie-slide-in {
    transform: translateY(0);
    opacity: 1;
}

.angie-floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff !important;
    line-height: 1.2;
    white-space: nowrap;
}

.angie-floating-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.angie-btn-icon {
    margin-right: 8px;
    font-size: 16px;
}

/* Button Specific Colors */
.angie-btn-call {
    background-color: #0073e6;
}

.angie-btn-whatsapp {
    background-color: #25D366;
    /* Animation definition */
    animation: angie-pulse 8s infinite;
}

/* Pulse Animation */
@keyframes angie-pulse {
    0% { transform: scale(1); }
    3% { transform: scale(1.05); }
    6% { transform: scale(1); }
    9% { transform: scale(1.05); }
    12% { transform: scale(1); }
    100% { transform: scale(1); }
}

/* Mobile Only Logic - Hidden on larger screens */
@media (min-width: 769px) {
    #angie-floating-buttons-container {
        display: none !important;
    }
}

/* Ensure visibility on mobile */
@media (max-width: 768px) {
    #angie-floating-buttons-container {
        display: flex;
    }
}
