/**
 * Floating Call Button - Styles
 * Laser House Custom Plugin
 */

.floating-call-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #D59C47;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(213, 156, 71, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(213, 156, 71, 0.6);
    background: #c88d3e;
    text-decoration: none;
}

.floating-call-btn:focus {
    outline: 2px solid #D59C47;
    outline-offset: 3px;
}

.floating-call-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
    pointer-events: none;
}

/* Animation pulse effect */
.floating-call-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #D59C47;
    animation: pulse-animation 2s infinite;
    z-index: -1;
    opacity: 0.8;
}

@keyframes pulse-animation {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .floating-call-btn {
        bottom: 15px;
        right: 15px;
        width: 55px;
        height: 55px;
    }

    .floating-call-btn svg {
        width: 26px;
        height: 26px;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .floating-call-btn {
        bottom: 18px;
        right: 18px;
        width: 58px;
        height: 58px;
    }
}

/* Accessibility - Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .floating-call-btn {
        transition: none;
    }

    .floating-call-btn::before {
        animation: none;
    }
}

/* Print - Hide button when printing */
@media print {
    .floating-call-btn {
        display: none !important;
    }
}
