/* Sticky Bottom Bar */
.sticky-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 1rem;
    display: none; /* Hidden by default */
    gap: 1rem;
    z-index: 999;
    transition: transform 0.3s ease-in-out;
    transform: translateY(100%);
}

@media (max-width: 1024px) {
    /* Only allow it to be visible on mobile if class is present */
    .sticky-bottom-bar.visible {
        display: flex;
        transform: translateY(0);
    }
    
    /* Add padding to body so content isn't covered */
    body {
        padding-bottom: 80px;
    }
}

.sticky-btn {
    flex: 1;
    padding: 0.8rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: transform 0.2s;
}

.sticky-btn:active {
    transform: scale(0.98);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-quote {
    background: linear-gradient(135deg, #4F46E5, #6366F1);
    color: white;
}

/* WhatsApp Icon SVG */
.wa-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}