/* Modern Dropdown Menu Styles */
.dropdown-container {
    position: relative;
    display: inline-block;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    background: transparent;
    color: #042d59;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin-right: 2.125rem;
}

.dropdown-trigger:hover {
    transform: translateY(-4px);
}

.dropdown-trigger .dot {
    display: block;
    width: 8px;
    height: 8px;
    margin-right: 8px;
    background: #25b8c5;
    border-radius: 100%;
    transition: all 0.3s ease;
}

.dropdown-trigger .arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #25b8c5;
    transition: transform 0.3s ease;
    margin-left: 4px;
}

.dropdown-trigger.active .arrow {
    transform: rotate(180deg);
}

.dropdown-trigger:hover .dot {
    transform: translateY(-8px);
}

.dropdown-menu {
    position: absolute;
    border: none;
    top: calc(100% + 2px);
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    overflow: hidden;
    padding:0
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: #ffffff;
    transform: rotate(45deg);
    box-shadow: -2px -2px 5px rgba(0, 0, 0, 0.08);
}

.dropdown-item {
    display: flex;
    align-items: center;
    margin-right: 0!important;
    gap: 12px;
    padding: 14px 20px;
    color: #2d3748;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.dropdown-item:first-child {
    padding-top: 16px;
}

.dropdown-item:last-child {
    padding-bottom: 16px;
}



.dropdown-item:hover {
       background: rgba(37, 184, 197, 0.1843137255);
           color: #25b8c5;
}

.dropdown-item:hover::before {
    width: 100%;
}

.dropdown-item .icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.dropdown-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(37, 184, 197, 0.2), transparent);
    margin: 8px 0;
}

/* Mobile Styles - Completely Different Design */
.dropdown-container.mobile {
    width: 100%;
    display: block;
    margin-bottom: 0;
}

.dropdown-container.mobile .dropdown-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5px 0;
    margin-right: 0;
    background: transparent;
    color: #ffffff;
    font-size: 20px !important;
    font-weight: 400;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-container.mobile .dropdown-trigger:hover {
    transform: none;
}

.dropdown-container.mobile .dropdown-trigger .dot {
    display: block;
    width: 8px;
    height: 8px;
    margin-right: 1rem;
    background: #ffffff;
    border-radius: 100%;
    transition: transform 0.3s ease;
}

.dropdown-container.mobile .dropdown-trigger .arrow {
    margin-left: 6px;
    border-top: 6px solid #ffffff;
    border-left: 4.5px solid transparent;
    border-right: 4.5px solid transparent;
    transform-origin: center;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.dropdown-container.mobile .dropdown-trigger.active .dot {
    background: #25b8c5;
}

.dropdown-container.mobile .dropdown-trigger.active .arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-container.mobile .dropdown-menu {
    position: static;
    width: 100%;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s ease,
                padding 0.4s ease;
}

.dropdown-container.mobile .dropdown-menu.show {
    max-height: 600px;
    opacity: 1;
    padding: 4px 0 4px 2rem;
}

.dropdown-container.mobile .dropdown-menu::before {
    display: none;
}

.dropdown-container.mobile .dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    margin-right: 0;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    border-left: none;
    background: transparent;
    transition: all 0.25s ease;
}

.dropdown-container.mobile .dropdown-item:first-child {
    padding-top: 12px;
}

.dropdown-container.mobile .dropdown-item:last-child {
    padding-bottom: 12px;
}

.dropdown-container.mobile .dropdown-item .icon {
    width: 20px;
    height: 20px;
    font-size: 18px;
    opacity: 0.9;
}

.dropdown-container.mobile .dropdown-item:active,
.dropdown-container.mobile .dropdown-item:hover {
    color: #25b8c5;
    background: transparent;
    padding-left: 10px;
    transform: translateX(2px);
}

.dropdown-container.mobile .dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 8px 0;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Theme Color Variations */
.dropdown-trigger.theme-primary {
    background: transparent;
}

.dropdown-trigger.theme-success {
    background: transparent;
}

.dropdown-trigger.theme-danger {
    background: transparent;
}

/* Accessibility */
.dropdown-trigger:focus {
    outline: 2px solid #25b8c5;
    outline-offset: 2px;
}

.dropdown-item:focus {
    outline: 2px solid #25b8c5;
    outline-offset: -2px;
}
