/* ==========================================================================
   LOTIUS QUICK LINKS CONTACT SIDEBAR - NON-CRITICAL STYLES
   ========================================================================== */

/* Styling for container */
.ntt-quicklinks {
    font-family: inherit;
}

/* Toggle button aesthetics */
.ntt-quicklinks__toggle {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.3);
}

.ntt-quicklinks__toggle:hover,
.ntt-quicklinks__toggle:focus {
    background: #1e293b;
    border-color: #53cdff;
}

/* Collapsed aesthetics */
.ntt-quicklinks.collapsed .ntt-quicklinks__toggle {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.ntt-quicklinks__toggle .toggle-arrow {
    border-right: 2px solid #53cdff;
    border-bottom: 2px solid #53cdff;
    transform: rotate(45deg);
}

/* List container aesthetics */
.ntt-quicklinks__list {
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Collapsed state list aesthetics */
.ntt-quicklinks.collapsed .ntt-quicklinks__list {
    border-color: transparent;
    box-shadow: none;
}

/* Link items styling */
.ntt-quicklinks__link {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.25s ease;
}

.ntt-quicklinks__icon {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.25s ease;
}

.ntt-quicklinks__icon img {
    object-fit: contain;
}

.ntt-quicklinks__text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #cbd5e1;
    letter-spacing: 0.05rem;
    transition: color 0.25s ease;
}

/* Hover effects with brand specific colors */
.ntt-quicklinks__link:hover,
.ntt-quicklinks__link:focus {
    transform: translateX(-0.4rem);
    background: rgba(255, 255, 255, 0.08);
}

.ntt-quicklinks__link:hover .ntt-quicklinks__text,
.ntt-quicklinks__link:focus .ntt-quicklinks__text {
    color: #ffffff;
}

/* Brand specific highlight colors */
.ntt-quicklinks__item:nth-child(1) .ntt-quicklinks__link:hover,
.ntt-quicklinks__item:nth-child(1) .ntt-quicklinks__link:focus {
    border-color: #22c55e !important;
    background: rgba(34, 197, 94, 0.12) !important;
}

.ntt-quicklinks__item:nth-child(1) .ntt-quicklinks__link:hover .ntt-quicklinks__icon,
.ntt-quicklinks__item:nth-child(1) .ntt-quicklinks__link:focus .ntt-quicklinks__icon {
    background: #22c55e !important;
}

.ntt-quicklinks__item:nth-child(2) .ntt-quicklinks__link:hover,
.ntt-quicklinks__item:nth-child(2) .ntt-quicklinks__link:focus {
    border-color: #3b82f6 !important;
    background: rgba(59, 130, 246, 0.12) !important;
}

.ntt-quicklinks__item:nth-child(2) .ntt-quicklinks__link:hover .ntt-quicklinks__icon,
.ntt-quicklinks__item:nth-child(2) .ntt-quicklinks__link:focus .ntt-quicklinks__icon {
    background: #3b82f6 !important;
}

.ntt-quicklinks__item:nth-child(3) .ntt-quicklinks__link:hover,
.ntt-quicklinks__item:nth-child(3) .ntt-quicklinks__link:focus {
    border-color: #0088cc !important;
    background: rgba(0, 136, 204, 0.12) !important;
}

.ntt-quicklinks__item:nth-child(3) .ntt-quicklinks__link:hover .ntt-quicklinks__icon,
.ntt-quicklinks__item:nth-child(3) .ntt-quicklinks__link:focus .ntt-quicklinks__icon {
    background: #0088cc !important;
}

.ntt-quicklinks__item:nth-child(4) .ntt-quicklinks__link:hover,
.ntt-quicklinks__item:nth-child(4) .ntt-quicklinks__link:focus {
    border-color: #0068ff !important;
    background: rgba(0, 104, 255, 0.12) !important;
}

.ntt-quicklinks__item:nth-child(4) .ntt-quicklinks__link:hover .ntt-quicklinks__icon,
.ntt-quicklinks__item:nth-child(4) .ntt-quicklinks__link:focus .ntt-quicklinks__icon {
    background: #0068ff !important;
}

.ntt-quicklinks__item:nth-child(5) .ntt-quicklinks__link:hover,
.ntt-quicklinks__item:nth-child(5) .ntt-quicklinks__link:focus {
    border-color: #1877f2 !important;
    background: rgba(24, 119, 242, 0.12) !important;
}

.ntt-quicklinks__item:nth-child(5) .ntt-quicklinks__link:hover .ntt-quicklinks__icon,
.ntt-quicklinks__item:nth-child(5) .ntt-quicklinks__link:focus .ntt-quicklinks__icon {
    background: #1877f2 !important;
}

/* Avatar container style aesthetics */
.ntt-quicklinks__avatar-container {
    border: 2px solid #53cdff;
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.2);
    background: #121b2e;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.ntt-quicklinks.collapsed .ntt-quicklinks__avatar-container {
    border-width: 2.5px;
    box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.4);
}

/* Green online status indicator dot aesthetics */
.ntt-quicklinks__status-dot {
    background-color: #22c55e;
    border: 1.5px solid #0f172a;
    box-shadow: 0 0 0.4rem #22c55e;
    animation: ntt-pulse 2s infinite;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.ntt-quicklinks.collapsed .ntt-quicklinks__status-dot {
    border-width: 2px;
}

@keyframes ntt-pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 0.6rem rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

/* Bubble styling */
.ntt-quicklinks__bubble {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    padding: 0.8rem 1.6rem;
    border-radius: 1.2rem 1.2rem 0 1.2rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Small triangle tail pointing to the avatar */
.ntt-quicklinks__bubble::after {
    content: '';
    position: absolute;
    right: -0.6rem;
    top: 50%;
    transform: translateY(-50%);
    border-top: 0.6rem solid transparent;
    border-bottom: 0.6rem solid transparent;
    border-left: 0.6rem solid rgba(15, 23, 42, 0.95);
}

/* Bubble close button styling */
.ntt-quicklinks__bubble-close {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: bold;
    box-shadow: 0 0.3rem 0.8rem rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.ntt-quicklinks__bubble-close:hover,
.ntt-quicklinks__bubble-close:focus {
    background: #ef4444 !important;
    border-color: #ef4444 !important;
    color: #ffffff !important;
}

/* Typing animation style */
.ntt-quicklinks__typing {
    align-items: center;
    gap: 0.4rem;
}

.typing-dot {
    background-color: #53cdff;
    opacity: 0.4;
    animation: ntt-typing 1.4s infinite both;
}

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

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

@keyframes ntt-typing {

    0%,
    100% {
        transform: scale(0.8);
        opacity: 0.4;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

.ntt-quicklinks__bubble-text {
    animation: ntt-fade-in 0.3s ease-in-out forwards;
}

@keyframes ntt-fade-in {
    from {
        opacity: 0;
        transform: translateY(0.2rem);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive aesthetics */
@media screen and (max-width: 767px) {
    .ntt-quicklinks__toggle {
        font-size: 0.95rem;
    }

    .ntt-quicklinks.collapsed .ntt-quicklinks__avatar-container {
        border-width: 2px;
    }

    .ntt-quicklinks__bubble {
        font-size: 1.15rem;
        padding: 0.6rem 1.2rem;
    }

    .ntt-quicklinks__link {
        padding: 0.6rem 1.2rem;
    }
}