/* ====================================
   STICKY QUOTE NOW BUTTON STYLES
   ==================================== */

/* Button Container */
#sticky-quote-btn {
    position: fixed;
    bottom: 80px;
    left: 5%;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff4500 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 75, 0, 0.4);
    z-index: 1000;
    text-decoration: none;
    outline: none;
    font-family: "Poppins", sans-serif;
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-user-drag: none;
}

/* Visible State - Shows on scroll */
#sticky-quote-btn.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* Icon styling */
#sticky-quote-btn i {
    margin-right: 8px;
}

/* Hover State */
#sticky-quote-btn:hover {
    box-shadow: 0 6px 20px rgba(255, 75, 0, 0.5);
    background: linear-gradient(135deg, #ff4500 0%, #ff2d00 100%);
}

/* Focus State (Accessibility) */
#sticky-quote-btn:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    #sticky-quote-btn {
        box-shadow: 0 4px 15px rgba(255, 75, 0, 0.3);
    }

    #sticky-quote-btn:hover {
        box-shadow: 0 6px 20px rgba(255, 75, 0, 0.4);
    }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    #sticky-quote-btn {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px 16px;
        font-size: 13px;
    }

    #sticky-quote-btn i {
        margin-right: 6px;
    }
}

/* Tablet responsiveness */
@media (max-width: 480px) {
    #sticky-quote-btn {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        padding: 9px 14px;
        font-size: 12px;
        border-radius: 40px;
    }

    #sticky-quote-btn i {
        margin-right: 4px;
        font-size: 12px;
    }
}