.floating-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1.25rem 2.5rem;
    background: #000000;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 9998;
    transition: all 0.3s ease;
    border: 2px solid #000000;
    animation: floating 3s ease-in-out infinite;
    white-space: nowrap;
}

.floating-button:hover {
    background: #ffffff;
    color: #000000 !important;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
    animation: none;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .floating-button {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 1rem 2rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .floating-button {
        bottom: 1rem;
        right: 1rem;
        padding: 0.875rem 1.5rem;
        font-size: 0.8rem;
    }
}
