/* Mobile Floating CTA */
.mobile-fab-link {
    display: none;
    text-decoration: none;
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
}

.mobile-fab {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, #2563eb 100%);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 40px -10px rgba(37, 99, 235, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    backdrop-filter: blur(10px);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fab-pop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1s backwards;
}

.mobile-fab i {
    width: 20px;
    height: 20px;
}

.mobile-fab:active {
    transform: scale(0.95);
}

@keyframes fab-pop {
    from {
        transform: translateY(100px) scale(0.8);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Show only on mobile/tablet */
@media (max-width: 900px) {
    .mobile-fab-link {
        display: block;
    }
}