.concierge-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    color: #ffffff;
}

.concierge-header {
    position: relative;
    text-align: center;
    margin-bottom: 32px;
}

.concierge-back {
    position: absolute;
    left: 0;
    top: 6px;
    color: #a0a9c0;
    text-decoration: none;
    font-size: 0.9rem;
}

.concierge-back:hover {
    color: #00d4ff;
}

.concierge-header h1 {
    font-size: 2.2rem;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #00d4ff, #6c5ce7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.concierge-header p {
    color: #a0a9c0;
    font-size: 1.05rem;
}

.concierge-body {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 24px;
}

@media (max-width: 800px) {
    .concierge-body {
        grid-template-columns: 1fr;
    }
}

.concierge-chat {
    background: #1a1f2e;
    border: 1px solid #2a2f3e;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    height: 70vh;
    min-height: 420px;
    overflow: hidden;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.message {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.message-avatar {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    background: #2a2f3e;
    color: #00d4ff;
}

.message.user .message-avatar {
    background: #6c5ce7;
    color: #ffffff;
}

.message-content {
    background: #2a2f3e;
    padding: 10px 14px;
    border-radius: 10px;
    line-height: 1.5;
    max-width: 80%;
    color: #ffffff;
}

.message.user {
    flex-direction: row-reverse;
}

.message.user .message-content {
    background: rgba(108, 92, 231, 0.25);
}

.typing-indicator {
    display: flex;
    gap: 4px;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #a0a9c0;
    animation: concierge-blink 1.2s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes concierge-blink {
    0%, 80%, 100% { opacity: 0.25; }
    40% { opacity: 1; }
}

.chat-input-area {
    display: flex;
    gap: 10px;
    padding: 14px;
    border-top: 1px solid #2a2f3e;
}

.chat-input {
    flex: 1;
    resize: none;
    background: #0a0f1c;
    border: 1px solid #2a2f3e;
    border-radius: 8px;
    color: #ffffff;
    padding: 10px 12px;
    font-size: 0.95rem;
    font-family: inherit;
}

.chat-input:focus {
    outline: none;
    border-color: #00d4ff;
}

.send-btn {
    background: linear-gradient(135deg, #00d4ff, #6c5ce7);
    color: #0a0f1c;
    border: none;
    border-radius: 8px;
    padding: 0 20px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
}

.send-btn:hover {
    opacity: 0.9;
}

.send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.concierge-results h2 {
    font-size: 1.1rem;
    color: #a0a9c0;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.results-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.results-empty {
    color: #6c757d;
    font-size: 0.9rem;
}

.result-card {
    display: block;
    background: #1a1f2e;
    border: 1px solid #2a2f3e;
    border-radius: 10px;
    padding: 14px 16px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s;
}

.result-card:hover {
    border-color: #00d4ff;
    transform: translateY(-2px);
}

.result-card h3 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 4px;
}

.result-card p {
    font-size: 0.85rem;
    color: #a0a9c0;
    margin-bottom: 8px;
    line-height: 1.4;
}

.result-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.result-tag {
    font-size: 0.7rem;
    background: rgba(0, 212, 255, 0.12);
    color: #00d4ff;
    border-radius: 999px;
    padding: 2px 9px;
}

.alert {
    background: rgba(163, 31, 52, 0.2);
    border: 1px solid rgba(163, 31, 52, 0.5);
    color: #ffffff;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}
