@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

#vc_text_input,
#vc_date_input {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
}

#vc_text_input[type="text"],
#vc_text_input[type="email"] {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
}

.message-enter {
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chat-open {
    animation: scaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: bottom right;
}

.chat-bubble {
    max-width: 80%;
    word-wrap: break-word;
    transition: all 0.3s ease;
}

.chat-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background: #94a3b8;
    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%,
    60%,
    100% {
        transform: translateY(0);
        opacity: 0.7;
    }

    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.button-hover {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.button-hover:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 156, 222, 0.3);
}

.button-hover:active {
    transform: translateY(0) scale(0.98);
}

#vc_chat_button {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: bounce 2s infinite;
    z-index: 999;
}

#vc_chat_window {
    z-index: 9999999999;
    max-width: 320px;
}

#vc_chat_button:hover {
    animation: pulse 0.6s infinite;
}

.input-focus {
    transition: all 0.3s ease;
}

.input-focus:focus {
    transform: scale(1.02);
    box-shadow: 0 0 0 4px rgba(0, 156, 222, 0.1);
}

.card-enter {
    animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.interest-card {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.interest-card:hover {
    transform: translateY(-4px) scale(1.05);
}

.interest-card:active {
    transform: translateY(0) scale(0.95);
}

.gradient-animated {
    background: #009cde;
    /* background: linear-gradient(270deg, #009cde, #6366f1, #009cde ); */
    background-size: 600% 600%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}