/* Enhanced Navigation Dropdown Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown > .nav-link i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.nav-dropdown:hover > .nav-link i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
    padding: 1rem 0;
    transform: translateY(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.95rem;
    border-left: 3px solid transparent;
}

.dropdown-link i {
    width: 20px;
    text-align: center;
    color: var(--primary);
    font-size: 1rem;
}

.dropdown-link:hover {
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
    color: var(--primary);
    border-left-color: var(--primary);
}

/* INDUSTRY SPECIFIC DROPDOWN ICON COLORS - ALL BLUE */
/* E-commerce Data Entry - Blue */
.nav-dropdown .dropdown-link[href="ecommerce-data-entry.html"] i.fa-shopping-cart,
/* Healthcare Data Entry - Blue */
.nav-dropdown .dropdown-link[href="healthcare-data-entry.html"] i.fa-heartbeat,
/* Legal Data Entry - Blue */
.nav-dropdown .dropdown-link[href="legal-data-entry.html"] i.fa-gavel,
/* Financial Data Specialist - Blue */
.nav-dropdown .dropdown-link[href="financial-data-specialist.html"] i.fa-chart-line,
/* Real Estate Data Entry - Blue */
.nav-dropdown .dropdown-link[href="real-estate-data-entry.html"] i.fa-building,
/* Real Estate Virtual Assistant - Blue */
.nav-dropdown .dropdown-link[href="real-estate-virtual-assistant.html"] i.fa-home {
    color: #2563eb !important;
}

/* DATA SERVICES DROPDOWN ICON COLORS */
/* Financial Data Entry - Blue */
.nav-dropdown .dropdown-link[href="financial-data-entry.html"] i.fa-chart-line {
    color: #2563eb !important;
}

/* Ensure hover states work properly for all blue icon items */
.nav-dropdown .dropdown-link[href="ecommerce-data-entry.html"]:hover,
.nav-dropdown .dropdown-link[href="healthcare-data-entry.html"]:hover,
.nav-dropdown .dropdown-link[href="legal-data-entry.html"]:hover,
.nav-dropdown .dropdown-link[href="financial-data-specialist.html"]:hover,
.nav-dropdown .dropdown-link[href="real-estate-data-entry.html"]:hover,
.nav-dropdown .dropdown-link[href="real-estate-virtual-assistant.html"]:hover,
.nav-dropdown .dropdown-link[href="financial-data-entry.html"]:hover {
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);
    color: var(--primary);
    border-left-color: var(--primary);
}

.nav-dropdown .dropdown-link[href="ecommerce-data-entry.html"]:hover i,
.nav-dropdown .dropdown-link[href="healthcare-data-entry.html"]:hover i,
.nav-dropdown .dropdown-link[href="legal-data-entry.html"]:hover i,
.nav-dropdown .dropdown-link[href="financial-data-specialist.html"]:hover i,
.nav-dropdown .dropdown-link[href="real-estate-data-entry.html"]:hover i,
.nav-dropdown .dropdown-link[href="real-estate-virtual-assistant.html"]:hover i,
.nav-dropdown .dropdown-link[href="financial-data-entry.html"]:hover i {
    color: var(--primary) !important;
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        background: #f8fafc;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        margin-top: 0.5rem;
        border-radius: 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
        max-height: 500px;
    }
    
    .nav-dropdown > .nav-link {
        justify-content: space-between;
    }
    
    .dropdown-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .nav-dropdown > .nav-link i {
        transform: none;
    }
    
    .nav-dropdown.active > .nav-link i {
        transform: rotate(180deg);
    }
}