/* Footer CTA Buttons - Prominent Design */

.footer-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(79, 209, 197, 0.1), rgba(124, 143, 246, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(79, 209, 197, 0.2);
    backdrop-filter: blur(4px);
}

.footer-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.8rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    position: relative;
    overflow: hidden;
    min-height: 48px;
}

/* Install Button */
.footer-cta-btn.install-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    animation: pulse-install 2s ease-in-out infinite;
}

.footer-cta-btn.install-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.6);
    animation: none;
}

.footer-cta-btn.install-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Donation Button */
.footer-cta-btn.donate-btn {
    background: linear-gradient(135deg, #ff6b6b, #ff8787);
    color: white;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
    animation: pulse-donate 2.5s ease-in-out infinite;
}

.footer-cta-btn.donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(255, 107, 107, 0.6);
    animation: none;
}

.footer-cta-btn.donate-btn:active {
    transform: translateY(-1px) scale(0.98);
}

/* Icons */
.cta-icon {
    font-size: 1.4rem;
    display: inline-block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: bounce 0.6s ease-in-out infinite;
}

.footer-cta-btn.install-btn .cta-icon {
    animation: bounce-install 0.6s ease-in-out infinite;
}

.footer-cta-btn.donate-btn .cta-icon {
    animation: bounce-donate 0.6s ease-in-out infinite 0.15s;
}

/* Pulse animations */
@keyframes pulse-install {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(102, 126, 234, 0.6);
    }
}

@keyframes pulse-donate {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(255, 107, 107, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(255, 107, 107, 0.6);
    }
}

/* Bounce animations */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@keyframes bounce-install {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-4px) scale(1.05);
    }
}

@keyframes bounce-donate {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-4px) scale(1.05);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-cta-buttons {
        gap: 0.75rem;
        padding: 1rem;
        margin-bottom: 1rem;
        flex-direction: column;
    }

    .footer-cta-btn {
        width: 100%;
        padding: 1rem 1.2rem;
        justify-content: center;
        font-size: 0.95rem;
    }

    .cta-icon {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .footer-cta-buttons {
        gap: 0.5rem;
        padding: 0.8rem;
    }

    .footer-cta-btn {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }

    .cta-icon {
        font-size: 1rem;
    }

    .cta-text {
        display: none;
    }

    .footer-cta-btn {
        flex: 1;
    }
}

/* Desktop optimization */
@media (hover: hover) {
    .footer-cta-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        transition: left 0.3s ease;
    }

    .footer-cta-btn:hover::before {
        left: 100%;
    }
}

/* Hidden state */
.footer-cta-btn.hidden {
    display: none;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .footer-cta-buttons {
        animation: none;
    }

    .footer-cta-btn,
    .cta-icon {
        animation: none !important;
    }

    .footer-cta-btn:hover {
        transform: none;
    }
}
/* Updated Fri Jan 30 21:05:36 EST 2026 */
