
/* Custom CSS for Macrosoft */
:root {
    --bs-primary: #0a4275;
    --bs-primary-rgb: 10, 66, 117;
    --bs-secondary: #6c757d;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Hover Utilities */
.hover-primary:hover {
    color: var(--bs-primary) !important;
}
.hover-bg-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Cards */
.service-card, .card-product {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}
.service-card:hover, .card-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08) !important;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 1000;
    transition: transform 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Admin Sidebar */
.admin-sidebar {
    background-color: #062b4d !important;
}

/* Floating Chatbot */
.chatbot-float {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    z-index: 1000;
    transition: transform 0.3s ease;
    cursor: pointer;
}
.chatbot-float:hover {
    transform: scale(1.1);
}
.chatbot-window {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 450px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
    flex-direction: column;
    overflow: hidden;
}
.chatbot-window.show {
    display: flex;
}
.chatbot-header {
    background: #0d6efd;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chatbot-body {
    flex: 1;
    padding: 15px;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
}
.chatbot-footer {
    padding: 15px;
    background: white;
    border-top: 1px solid #dee2e6;
    display: flex;
    gap: 10px;
}
.chat-message {
    margin-bottom: 10px;
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
}
.chat-message.bot {
    background: #e9ecef;
    color: #333;
    align-self: flex-start;
    border-bottom-left-radius: 0;
}
.chat-message.user {
    background: #0d6efd;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 0;
    margin-left: auto;
}
