/* Floating App Download Icons */
.floating-app-icons {
    position: fixed;
    right: 5px;
    top: 80%;
    transform: translateY(-80%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-app-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3c4852;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: 2px solid #f0f0f0;
}

.floating-app-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.floating-app-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.floating-app-icon:hover img {
    transform: scale(1.1);
}


/* Animation */
.floating-app-icons.animate-in .floating-app-icon {
    animation: slideInRight 0.6s ease forwards;
}

.floating-app-icons.animate-in .floating-app-icon:nth-child(1) {
    animation-delay: 0.1s;
}

.floating-app-icons.animate-in .floating-app-icon:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Pulse animation for attention */
.floating-app-icon.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    }
    100% {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .floating-app-icons {
        right: 15px;
        gap: 12px;
    }
    
    .floating-app-icon {
        width: 45px;
        height: 45px;
    }
    
    .floating-app-icon img {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
.floating-app-icons {
    right: 10px;
    top: 85%;
    transform: translateY(-85%);
    flex-direction: column;
    gap: 10px;
}
    
    .floating-app-icon {
        width: 40px;
        height: 40px;
    }
    
    .floating-app-icon img {
        width: 28px;
        height: 28px;
    }
}

/* Hide on very small screens if needed */
@media (max-width: 320px) {
    .floating-app-icons {
        display: none;
    }
}
