 /* Chatbot Styles */
    .chatbot-container {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 10000;
        font-family: 'Inter', sans-serif;
    }

    .chatbot-toggle {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #062242 0%, #0d9488 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 28px;
        cursor: pointer;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
        border: none;
        outline: none;
        animation: pulse 2s infinite;
    }

    .chatbot-toggle:hover {
        transform: scale(1.1);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(6, 34, 66, 0.7);
        }
        70% {
            box-shadow: 0 0 0 15px rgba(6, 34, 66, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(6, 34, 66, 0);
        }
    }

    .chatbot-window {
        position: absolute;
        bottom: 90px;
        right: 0;
        width: 380px;
        height: 550px;
        background: white;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        display: none;
        flex-direction: column;
        overflow: hidden;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .chatbot-window.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    .chatbot-header {
        background: linear-gradient(135deg, #062242 0%, #0d9488 100%);
        color: white;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .chatbot-header i {
        font-size: 24px;
    }

    .chatbot-header h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
    }

    .chatbot-status {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        opacity: 0.9;
    }

    .status-indicator {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background-color: #4ade80;
    }

    .chatbot-messages {
        flex: 1;
        padding: 20px;
        overflow-y: auto;
        background: #f8fafc;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .chat-message {
        max-width: 80%;
        padding: 12px 16px;
        border-radius: 18px;
        position: relative;
        animation: fadeIn 0.3s ease;
        line-height: 1.4;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .bot-message {
        align-self: flex-start;
        background: white;
        border: 1px solid #e2e8f0;
        border-bottom-left-radius: 5px;
        color: #334155;
    }

    .user-message {
        align-self: flex-end;
        background: linear-gradient(135deg, #0d9488 0%, #062242 100%);
        color: white;
        border-bottom-right-radius: 5px;
    }

    .quick-options {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 10px;
    }

    .quick-option {
        background: #f1f5f9;
        border: 1px solid #e2e8f0;
        padding: 6px 12px;
        border-radius: 15px;
        font-size: 12px;
        cursor: pointer;
        transition: all 0.2s;
    }

    .quick-option:hover {
        background: #e2e8f0;
    }

    .chatbot-input {
        padding: 15px;
        background: white;
        border-top: 1px solid #e2e8f0;
        display: flex;
        gap: 10px;
    }

    .chatbot-input input {
        flex: 1;
        padding: 12px 16px;
        border: 1px solid #e2e8f0;
        border-radius: 25px;
        outline: none;
        font-size: 14px;
    }

    .chatbot-input input:focus {
        border-color: #0d9488;
    }

    .chatbot-input button {
        background: linear-gradient(135deg, #0d9488 0%, #062242 100%);
        color: white;
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 50%;
        cursor: pointer;
        transition: transform 0.2s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .chatbot-input button:hover {
        transform: scale(1.05);
    }

    .typing-indicator {
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 12px 16px;
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 18px;
        border-bottom-left-radius: 5px;
        width: fit-content;
        color: #64748b;
        font-size: 12px;
    }

    .typing-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background-color: #94a3b8;
        animation: typing 1.4s infinite ease-in-out;
    }

    .typing-dot:nth-child(2) {
        animation-delay: 0.2s;
    }

    .typing-dot:nth-child(3) {
        animation-delay: 0.4s;
    }

    @keyframes typing {
        0%, 60%, 100% {
            transform: translateY(0);
        }
        30% {
            transform: translateY(-5px);
        }
    }

    .chatbot-minimize {
        position: absolute;
        top: 15px;
        right: 15px;
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background 0.2s;
    }

    .chatbot-minimize:hover {
        background: rgba(255, 255, 255, 0.3);
    }

    /* Responsive Design */
    @media (max-width: 480px) {
        .chatbot-container {
            bottom: 20px;
            right: 20px;
        }
        
        .chatbot-toggle {
            width: 60px;
            height: 60px;
            font-size: 24px;
        }
        
        .chatbot-window {
            width: calc(100vw - 40px);
            right: -20px;
            height: 500px;
        }
    }