body {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    cursor: default;
}

/* Chatbot Redesign */
:root {
    --valonix-neon: #00F0FF;
}

.chat-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #00F0FF;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10002;
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-bubble:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 50px rgba(0, 240, 255, 0.5);
}

.chat-bubble i {
    font-size: 24px;
}

.chat-window {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 380px;
    height: 550px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    z-index: 10001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
    .chat-bubble {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .chat-window {
        bottom: 85px;
        right: 15px;
        left: 15px;
        width: auto;
        height: 75vh;
    }
}

.chat-window.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.chat-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-body {
    flex-grow: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.1) transparent;
}

.chat-message {
    padding: 14px 18px;
    border-radius: 20px;
    font-size: 14px;
    line-height: 1.6;
    max-width: 88%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.chat-message.bot {
    background: rgba(40, 40, 40, 0.6);
    color: #fff;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.chat-message.user {
    background: var(--valonix-neon);
    color: #000;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    font-weight: 700;
}

.chat-q-btn {
    text-align: left;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ccc;
    border-radius: 14px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}

.chat-q-btn:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--valonix-neon);
    color: #fff;
    transform: translateX(4px);
}

.chat-back-btn {
    align-self: center;
    margin-top: 20px;
    font-size: 12px;
    font-weight: bold;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.3s;
}

.chat-back-btn:hover {
    color: var(--valonix-neon);
}

/* Typing Indicator Animation */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 14px 18px;
    background: rgba(40, 40, 40, 0.6);
    border-radius: 20px;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    margin-bottom: 12px;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: #666;
    border-radius: 50%;
    animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}


/* Background Logo FX */
.bg-logo-rotate {
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
    max-width: 600px;
    filter: grayscale(1) brightness(2);
}

.hero-logo-animate {
    animation: heroLogoFade 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    mix-blend-mode: multiply;
    filter: brightness(1.5) drop-shadow(0 0 20px rgba(0, 240, 255, 0.5));
}

.logo-liquid-fx {
    animation:
        slowRotate 20s linear infinite,
        liquidPulse 4s ease-in-out infinite alternate;
}

@keyframes slowRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes liquidPulse {
    0% {
        transform: scale(1) translateZ(0);
        filter: brightness(1.2) blur(0px);
    }

    50% {
        transform: scale(1.05) translateZ(0);
        filter: brightness(1.5) blur(1px);
    }

    100% {
        transform: scale(1) translateZ(0);
        filter: brightness(1.2) blur(0px);
    }
}

@keyframes heroLogoFade {
    0% {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
        filter: blur(20px);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
        filter: blur(0px);
    }
}

/* Fix for dropdown visibility */
select option {
    background-color: #1a1a1a;
    color: white;
}