/* Help Dropdown Styles for Main Header */
.help-dropdown-nav {
    position: relative;
}

.help-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    color: inherit;
    padding: 0;
}

.help-nav-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

.help-dropdown-nav:hover .help-nav-btn i {
    transform: rotate(180deg);
}

.help-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    min-width: 280px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1001;
}

.help-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
}

.help-dropdown-menu .dropdown-header {
    padding: 10px 16px;
    font-weight: 600;
    color: #666;
    font-size: 0.85rem;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 8px;
}

.help-dropdown-menu .dropdown-header i {
    margin-right: 8px;
    color: #28a745;
    font-size: 0.8rem;
}

.help-dropdown-menu .help-contacts {
    padding: 8px 16px;
    margin-bottom: 8px;
}

.help-dropdown-menu .contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    font-size: 0.8rem;
}

.help-dropdown-menu .contact-item .country {
    font-weight: 600;
    color: #333;
    min-width: 50px;
}

.help-dropdown-menu .contact-item .phone {
    color: #007bff;
    font-weight: 500;
    cursor: pointer;
}

.help-dropdown-menu .contact-item .phone:hover {
    color: #0056b3;
    text-decoration: underline;
}

.help-dropdown-menu a {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.2s;
}

.help-dropdown-menu a:hover {
    background: #f8f9fa;
    color: #007bff;
}

.help-dropdown-menu a i {
    width: 16px;
    margin-right: 10px;
    color: #666;
    font-size: 0.8rem;
}

.help-dropdown-menu a:hover i {
    color: #007bff;
}

.help-dropdown-menu .help-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 8px 0;
}
