@charset "UTF-8";

/* =========================================
   1. FAQ List: Premium Glass Bar Style (Restored)
   ========================================= */

/* Force Vertical Stack */
.faq-vertical-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

/* Card Style - High Visibility Glass */
.faq-vertical-list .interactive-card {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    background: rgba(15, 23, 42, 0.85);
    /* Dark & Clear */
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    cursor: auto;
}

.faq-vertical-list .interactive-card:hover {
    transform: translateY(-2px);
    background: rgba(15, 23, 42, 0.95);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

/* Summary Layout */
.faq-vertical-list .interactive-card summary {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    list-style: none;
    box-sizing: border-box;
}

.faq-vertical-list .interactive-card summary::-webkit-details-marker {
    display: none;
}

/* Header Content */
.faq-vertical-list .interactive-card .card-header-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Question Text */
.faq-vertical-list .interactive-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-align: left;
    letter-spacing: 0.02em;
}

/* Toggle Button */
.faq-vertical-list .interactive-card .toggle-btn {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.faq-vertical-list .interactive-card:hover .toggle-btn {
    background: rgba(56, 189, 248, 0.2);
    color: #38bdf8;
}

.faq-vertical-list .interactive-card details[open] .toggle-btn {
    transform: rotate(180deg);
    background: var(--primary, #3b82f6);
    border-color: transparent;
}

/* Answer Area */
.faq-vertical-list .card-body-content {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px 32px 32px;
    text-align: left;
    color: #e2e8f0;
    /* Clear bright grey */
    line-height: 1.8;
    background: rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   2. Chatbot: DARK MODE Messenger App Design
   ========================================= */

/* Feature Card Container */
.chatbot-feature-card {
    background: radial-gradient(circle at center, rgba(30, 41, 59, 0.8), rgba(15, 23, 42, 1)) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 30px !important;
    padding: 60px 20px !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    margin-bottom: 50px;
}

/* The "Chat Window" - DARK MODE */
.embedded-chat-ui {
    max-width: 450px !important;
    /* Phone width */
    margin: 40px auto 0 !important;
    background: #0f172a !important;
    /* Dark Blue-Grey Background */
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Chat Header */
.embedded-chat-ui::before {
    content: 'AI Concierge';
    display: block;
    background: #1e293b;
    /* Darker Header */
    color: #e2e8f0;
    padding: 15px;
    font-weight: 600;
    text-align: center;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 10;
}

/* Message Area - Dark */
.chat-messages {
    background: #0f172a;
    /* Main Dark BG */
    padding: 20px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

/* AI Message Bubble - Dark Mode */
.chat-bubble.ai {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    max-width: 85%;
    margin-right: auto;
    /* Force Left */
    animation: popIn 0.3s ease-out;
}

/* AI Icon */
.chat-bubble.ai .bubble-icon {
    width: 32px;
    height: 32px;
    background: #1e293b;
    color: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    flex-shrink: 0;
}

/* AI Text - Dark Mode Bubble */
.chat-bubble.ai .bubble-content {
    background: #1e293b;
    /* Dark Bubble */
    color: #f1f5f9;
    /* White Text */
    padding: 12px 16px;
    border-radius: 18px 18px 18px 2px;
    font-size: 0.95rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    /* Deeper shadow */
    line-height: 1.5;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- USER MESSAGE BUBBLE (Right Side) --- */
.chat-bubble.user {
    display: flex;
    justify-content: flex-end;
    /* Flex alignment */
    align-items: flex-end;
    max-width: 85%;
    margin-left: auto;
    /* Push to right */
    animation: popIn 0.3s ease-out;
}

.chat-bubble.user .bubble-content {
    background: #3b82f6;
    /* Blue for User */
    color: white;
    /* White Text */
    padding: 12px 16px;
    border-radius: 18px 18px 2px 18px;
    /* Tail Bottom-Right */
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.4);
    /* Glow */
    line-height: 1.5;
    text-align: left;
}

/* Input Area (Footer) - Dark Style */
.input-wrapper {
    background: #1e293b;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    gap: 10px;
    align-items: center;
}

.chat-input {
    flex-grow: 1;
    background: #334155 !important;
    /* Lighter Grey Input */
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    padding: 12px 16px !important;
    color: #ffffff !important;
    font-size: 0.95rem;
}

.chat-input:focus {
    background: #475569 !important;
    outline: none;
    border-color: #38bdf8 !important;
}

.chat-input::placeholder {
    color: #94a3b8;
}

/* Send Button */
#send-btn {
    width: 40px;
    height: 40px;
    background: #3b82f6 !important;
    border-radius: 50%;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.2);
}

#send-btn:hover {
    transform: scale(1.1);
    background: #2563eb !important;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}