/* Floating Quote Button for Mobile */

.floating-quote-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: linear-gradient(135deg, #C4915B 0%, #B07F4A 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(196, 145, 91, 0.3);
    transition: all 0.3s ease;
    display: none; /* Initially hidden */
    align-items: center;
    gap: 8px;
    animation: pulse 2s infinite;
    transform: scale(0);
}

.floating-quote-btn.show {
    display: flex;
    transform: scale(1);
    animation: slideIn 0.5s ease-out forwards;
}

.floating-quote-btn:hover {
    background: linear-gradient(135deg, #B07F4A 0%, #A0724C 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 35px rgba(196, 145, 91, 0.4);
}

.floating-quote-btn i {
    font-size: 16px;
}

.floating-quote-btn span {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 8px 25px rgba(196, 145, 91, 0.3);
    }
    50% {
        box-shadow: 0 8px 25px rgba(196, 145, 91, 0.5), 0 0 0 10px rgba(196, 145, 91, 0.1);
    }
    100% {
        box-shadow: 0 8px 25px rgba(196, 145, 91, 0.3);
    }
}

@keyframes slideIn {
    0% {
        transform: scale(0) translateY(20px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* Only show on mobile devices */
@media (max-width: 768px) {
    .floating-quote-btn {
        display: flex;
    }
}

/* Hide on very small screens to avoid overlap */
@media (max-width: 480px) {
    .floating-quote-btn {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .floating-quote-btn i {
        font-size: 14px;
    }
}

/* Responsive adjustments */
@media (max-width: 375px) {
    .floating-quote-btn {
        bottom: 10px;
        right: 10px;
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .floating-quote-btn span {
        display: none; /* Hide text on very small screens, show only icon */
    }
}