/* Chatbot Styles */
#chatbot-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    cursor: pointer;
    z-index: 99999 !important;
    box-shadow: 0 10px 25px rgba(22, 163, 74, 0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#chatbot-icon:hover {
    transform: translateY(-8px) scale(1.05);
}
#chatbot-box {
    position: fixed;
    bottom: 95px;
    right: 20px;
    width: 380px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(22, 163, 74, 0.2);
    overflow: hidden;
    display: none;
    z-index: 99998 !important;
    transform-origin: bottom right;
    animation: chatPopup 0.3s ease-out;
}
@keyframes chatPopup {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
#chatHeader {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #fff;
    padding: 16px;
    font-size: 1.15rem;
    text-align: center;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
#chatBody {
    height: 380px;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.message {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 90%;
}
.bot {
    background: #f0fdf4;
    color: #166534;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    font-weight: 500;
}
.options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}
.options button {
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid rgba(22, 163, 74, 0.2);
    background: white;
    color: #16a34a;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.2s ease;
}
.options button:hover {
    background: #16a34a;
    color: white;
    border-color: #16a34a;
    transform: translateY(-2px);
}
