/* Floating CTA Button Styles */

.fcta-button {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    left: auto !important;
    top: auto !important;
    padding: 12px 24px;
    background-color: #0073aa;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 99999 !important;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    display: inline-block !important;
    width: auto !important;
    height: auto !important;
    max-width: 250px !important;
}

.fcta-button.visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.fcta-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-decoration: none !important;
    color: #ffffff !important;
}

.fcta-button:active {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive kiigazítások */
@media (max-width: 767px) {
    .fcta-button {
        bottom: 20px !important;
        right: 20px !important;
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .fcta-button {
        bottom: 15px !important;
        right: 15px !important;
        padding: 8px 16px;
        font-size: 13px;
    }
}