.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-primary);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.light-theme .main-header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.dark-theme .main-header {
    background: rgba(10, 10, 10, 0.95);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0; 
    gap: 2rem;
    min-height: 80px; 
}

.logo-img {
    height: 35px;
    width: auto;
    transition: transform 0.3s ease;
}

.light-theme .logo-img {
    filter: brightness(0) saturate(100%);
}

.dark-theme .logo-img {
    filter: none;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(255, 107, 53, 0.1);
}

.nav-link i {
    font-size: 0.9rem;
}

.nav-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    min-width: 280px;
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-xl);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.875rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-item:hover {
    background: rgba(255, 107, 53, 0.1);
}

.dropdown-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    color: white;
}

.dropdown-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.dropdown-content p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    min-width: 500px;
}

.premium-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
}

.blue-gradient { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.green-gradient { background: linear-gradient(135deg, #10B981, #059669); }
.purple-gradient { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.red-gradient { background: linear-gradient(135deg, #EF4444, #DC2626); }
.yellow-gradient { background: linear-gradient(135deg, #F59E0B, #D97706); }
.cyan-gradient { background: linear-gradient(135deg, #06B6D4, #0891B2); }
.pink-gradient { background: linear-gradient(135deg, #EC4899, #DB2777); }
.slate-gradient { background: linear-gradient(135deg, #64748B, #475569); }
.teal-gradient { background: linear-gradient(135deg, #14B8A6, #0D9488); }
.orange-gradient { background: linear-gradient(135deg, #FF6B35, #F7931E); }
.indigo-gradient { background: linear-gradient(135deg, #6366F1, #4F46E5); }

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem; 
}
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
}

.status-badge:hover {
    background: rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.5);
    transform: translateY(-1px);
}

.status-indicator {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #10B981;
}

.btn-register,
.btn-login {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-register span,
.btn-login span {
    display: none; 
}

.btn-register i,
.btn-login i {
    margin: 0;
    font-size: 1.1rem;
}

.btn-register {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-register:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    color: var(--primary-color);
}

.btn-login {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-login:hover {
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
    transform: translateY(-2px);
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

.theme-toggle:hover {
    background: var(--bg-tertiary);
    transform: scale(1.05);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.2s ease;
}

.mobile-toggle:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .nav-center {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 85%;
        max-width: 340px;
        height: calc(100vh - 80px);
        background: var(--bg-secondary);
        border-right: 1px solid var(--border-color);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 999;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-center::-webkit-scrollbar {
        width: 6px;
    }

    .nav-center::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.2);
    }

    .nav-center::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 3px;
    }

    .nav-center.active {
        left: 0;
    }

    .mobile-toggle {
        display: flex;
        position: relative;
        z-index: 1001;
    }

    .mobile-toggle.active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

    .status-link {
        display: none;
    }
}

@media (max-width: 768px) {
    .status-badge {
        display: none;
    }

    .auth-buttons {
        gap: 0.25rem;
    }

    .btn-auth {
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 1024px) {
    .nav-menu {
        padding: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-link {
        width: 100%;
        padding: 1.25rem 1.5rem;
        border-radius: 0;
        justify-content: space-between;
        font-size: 1rem;
        font-weight: 600;
        background: transparent;
        transition: all 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(255, 107, 53, 0.15);
        color: var(--primary-color);
        padding-left: 2rem;
    }

    .nav-link i {
        font-size: 1.1rem;
    }

    .dropdown-arrow {
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .nav-dropdown.active > .nav-link .dropdown-arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: var(--bg-secondary);
    }

    .light-theme .dropdown-menu {
        background: rgba(0, 0, 0, 0.05);
    }

    .dark-theme .dropdown-menu {
        background: rgba(0, 0, 0, 0.4);
    }

    .nav-dropdown.active .dropdown-menu {
        max-height: 2000px;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
        min-width: auto;
        gap: 0;
    }

    .dropdown-item {
        padding: 1rem 1.5rem 1rem 2.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .dropdown-item:hover {
        background: rgba(255, 107, 53, 0.1);
        padding-left: 3rem;
    }

    .dropdown-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .dropdown-content h4 {
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .dropdown-content p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .premium-badge {
        position: static;
        display: inline-block;
        margin-left: 0.5rem;
        font-size: 0.65rem;
        padding: 0.2rem 0.5rem;
    }

    .mobile-menu-overlay {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.8);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
        backdrop-filter: blur(8px);
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 1rem 0;
        min-height: 70px;
    }

    .nav-center {
        max-width: 280px;
        top: 70px;
        height: calc(100vh - 70px);
    }

    .nav-menu {
        width: 85%;
        padding: 1rem 0;
    }

    .nav-link {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .dropdown-item {
        padding: 0.875rem 1.25rem;
    }

    .dropdown-content h4 {
        font-size: 0.9rem;
    }

    .dropdown-content p {
        font-size: 0.75rem;
    }

    .btn-register,
    .btn-login {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .theme-toggle {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .mobile-toggle {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .nav-right {
        gap: 0.5rem;
    }

    .mobile-menu-overlay {
        top: 70px;
        height: calc(100vh - 70px);
    }
}
/* ========================================
   NEW NAVBAR BUTTONS STYLES
   ======================================== */

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn-nav i {
    font-size: 1rem;
}

/* Login Button */
.btn-login {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-login:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Register Button */
.btn-register {
    background: rgba(139, 157, 195, 0.1);
    color: var(--secondary-color);
    border: 1px solid rgba(139, 157, 195, 0.3);
}

.btn-register:hover {
    background: rgba(139, 157, 195, 0.2);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Shop Button */
.btn-shop {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

/* Theme Toggle Button */
.theme-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-lg);
    background: rgba(139, 157, 195, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
    background: rgba(139, 157, 195, 0.2);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1002;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ========================================
   RESPONSIVE - NEW NAVBAR
   ======================================== */

@media (max-width: 1024px) {
    .nav-actions {
        display: none;
    }

    .btn-nav {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    .theme-toggle-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .nav-right {
        gap: 0.5rem;
    }

    .theme-toggle-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .mobile-menu-toggle {
        width: 38px;
        height: 38px;
    }

    /* Show buttons in mobile menu */
    .nav-menu.active {
        padding-bottom: 2rem;
    }

    .nav-menu.active::after {
        content: '';
        display: block;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid var(--border-color);
    }

    /* Add mobile action buttons inside menu */
    .nav-menu.active .nav-links::after {
        content: '';
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--border-color);
    }
}

/* Fix for mobile menu buttons - Add to script.js to handle dynamically */

/* ========================================
   DROPDOWN ICON - OLD STYLE (No Gradients)
   ======================================== */

.dropdown-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.dropdown-item:hover .dropdown-icon {
    background: rgba(255, 107, 53, 0.2);
    transform: scale(1.1);
}

/* Large dropdown menu for Company */
.dropdown-menu-large {
    min-width: 300px;
}

/* ========================================
   UPDATED NAVBAR BUTTONS (No Shop Button)
   ======================================== */

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn-nav i {
    font-size: 1rem;
}

/* Login Button */
.btn-login {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-login:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Register Button - Primary Style */
.btn-register {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

/* Theme Toggle Button */
.theme-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-lg);
    background: rgba(139, 157, 195, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-toggle-btn:hover {
    background: rgba(139, 157, 195, 0.2);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1002;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.mobile-menu-toggle.active {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
}

/* ========================================
   DROPDOWN CONTENT - FIXED TITLE COLORS
   ======================================== */

.dropdown-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.dropdown-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

/* Company Dropdown - Grid Layout 3x2 */
.dropdown-menu-large {
    min-width: 620px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 1rem;
}

.dropdown-menu-large .dropdown-item {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem 1rem;
}

.dropdown-menu-large .dropdown-icon {
    margin: 0 auto 0.75rem;
}

.dropdown-menu-large .dropdown-content {
    width: 100%;
}

.dropdown-menu-large .dropdown-title {
    font-size: 0.9rem;
}

.dropdown-menu-large .dropdown-desc {
    font-size: 0.75rem;
}

/* ========================================
   COMPANY DROPDOWN RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .dropdown-menu-large {
        min-width: 520px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dropdown-menu-large {
        min-width: 100%;
        grid-template-columns: 1fr;
        max-height: 70vh;
        overflow-y: auto;
    }

    .dropdown-menu-large .dropdown-item {
        flex-direction: row;
        text-align: left;
        padding: 0.875rem;
    }

    .dropdown-menu-large .dropdown-icon {
        margin: 0;
    }
}
/* Company Dropdown - Grid Layout 2x3 (2 columns, 3 rows) */
.dropdown-menu-large {
    min-width: 420px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 1rem;
}

.dropdown-menu-large .dropdown-item {
    flex-direction: column;
    text-align: center;
    padding: 1rem 0.75rem;
}

.dropdown-menu-large .dropdown-icon {
    margin: 0 auto 0.5rem;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
}

.dropdown-menu-large .dropdown-content {
    width: 100%;
}

.dropdown-menu-large .dropdown-title {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
}

.dropdown-menu-large .dropdown-desc {
    font-size: 0.7rem;
    line-height: 1.3;
}

/* Company Dropdown - Responsive for 2x3 Grid */
@media (max-width: 768px) {
    .dropdown-menu-large {
        min-width: 100%;
        grid-template-columns: 1fr;
        max-height: 70vh;
        overflow-y: auto;
    }

    .dropdown-menu-large .dropdown-item {
        flex-direction: row;
        text-align: left;
        padding: 0.875rem;
    }

    .dropdown-menu-large .dropdown-icon {
        margin: 0;
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .dropdown-menu-large .dropdown-title {
        font-size: 0.95rem;
    }

    .dropdown-menu-large .dropdown-desc {
        font-size: 0.8rem;
    }
}

/* ========================================
   DROPDOWN MENU - UPDATED STYLE (Like Images)
   ======================================== */

.dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    background: rgba(20, 20, 25, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    min-width: 280px;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 0.5rem;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

/* Colored Icon Backgrounds */
.dropdown-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
}

/* Individual Icon Colors */
.dropdown-item:nth-child(1) .dropdown-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.dropdown-item:nth-child(2) .dropdown-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.dropdown-item:nth-child(3) .dropdown-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.dropdown-item:nth-child(4) .dropdown-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.dropdown-item:nth-child(5) .dropdown-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.dropdown-item:nth-child(6) .dropdown-icon {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.dropdown-item:nth-child(7) .dropdown-icon {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.dropdown-item:hover .dropdown-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.dropdown-content {
    flex: 1;
    padding-top: 0.125rem;
}

.dropdown-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.dropdown-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    margin: 0;
}

/* ========================================
   COMPANY DROPDOWN - 2×3 GRID (Updated Style)
   ======================================== */

.dropdown-menu-large {
    min-width: 520px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(20, 20, 25, 0.98);
    backdrop-filter: blur(10px);
}

.dropdown-menu-large .dropdown-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 0;
}

.dropdown-menu-large .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.dropdown-menu-large .dropdown-icon {
    margin: 0 auto 0.75rem;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
}

.dropdown-menu-large .dropdown-content {
    width: 100%;
}

.dropdown-menu-large .dropdown-title {
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
    color: #ffffff;
}

.dropdown-menu-large .dropdown-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* Individual colors for company items */
.dropdown-menu-large .dropdown-item:nth-child(1) .dropdown-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(2) .dropdown-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(3) .dropdown-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(4) .dropdown-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(5) .dropdown-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(6) .dropdown-icon {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .dropdown-menu-large {
        min-width: 100%;
        grid-template-columns: 1fr;
        max-height: 70vh;
        overflow-y: auto;
    }

    .dropdown-menu-large .dropdown-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        padding: 1rem;
    }

    .dropdown-menu-large .dropdown-icon {
        margin: 0;
        margin-right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .dropdown-menu-large .dropdown-title {
        font-size: 0.95rem;
    }

    .dropdown-menu-large .dropdown-desc {
        font-size: 0.8rem;
    }
}

/* ========================================
   COMPANY DROPDOWN - COMPACT STYLE (Icon Left, Text Right)
   ======================================== */

.dropdown-menu-large {
    min-width: 380px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(20, 20, 25, 0.98);
    backdrop-filter: blur(10px);
}

.dropdown-menu-large .dropdown-item {
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 0;
    gap: 0.75rem;
}

.dropdown-menu-large .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(2px);
}

.dropdown-menu-large .dropdown-icon {
    margin: 0;
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.dropdown-menu-large .dropdown-content {
    width: 100%;
}

.dropdown-menu-large .dropdown-title {
    font-size: 0.85rem;
    margin-bottom: 0.15rem;
    color: #ffffff;
    font-weight: 600;
}

.dropdown-menu-large .dropdown-desc {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.3;
}

/* Individual colors for company items */
.dropdown-menu-large .dropdown-item:nth-child(1) .dropdown-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(2) .dropdown-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(3) .dropdown-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(4) .dropdown-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(5) .dropdown-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(6) .dropdown-icon {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .dropdown-menu-large {
        min-width: 100%;
        grid-template-columns: 1fr;
        max-height: 70vh;
        overflow-y: auto;
    }

    .dropdown-menu-large .dropdown-item {
        padding: 0.875rem;
    }

    .dropdown-menu-large .dropdown-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .dropdown-menu-large .dropdown-title {
        font-size: 0.9rem;
    }

    .dropdown-menu-large .dropdown-desc {
        font-size: 0.75rem;
    }
}

/* ========================================
   COMPANY DROPDOWN - SAME SIZE AS OTHER DROPDOWNS
   ======================================== */

.dropdown-menu-large {
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(20, 20, 25, 0.98);
    backdrop-filter: blur(10px);
}

.dropdown-menu-large .dropdown-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 0;
    gap: 1rem;
}

.dropdown-menu-large .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.dropdown-menu-large .dropdown-icon {
    margin: 0;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dropdown-menu-large .dropdown-content {
    flex: 1;
    padding-top: 0.125rem;
}

.dropdown-menu-large .dropdown-title {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.3;
}

.dropdown-menu-large .dropdown-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    margin: 0;
}

/* Individual colors for company items */
.dropdown-menu-large .dropdown-item:nth-child(1) .dropdown-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(2) .dropdown-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(3) .dropdown-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(4) .dropdown-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(5) .dropdown-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(6) .dropdown-icon {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .dropdown-menu-large {
        min-width: 100%;
        max-height: 70vh;
        overflow-y: auto;
    }
}

/* ========================================
   COMPANY DROPDOWN - WIDER FOR BETTER TEXT DISPLAY
   ======================================== */

.dropdown-menu-large {
    min-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(20, 20, 25, 0.98);
    backdrop-filter: blur(10px);
}

.dropdown-menu-large .dropdown-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 0;
    gap: 1rem;
}

.dropdown-menu-large .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.dropdown-menu-large .dropdown-icon {
    margin: 0;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dropdown-menu-large .dropdown-content {
    flex: 1;
    padding-top: 0.125rem;
}

.dropdown-menu-large .dropdown-title {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.3;
}

.dropdown-menu-large .dropdown-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    margin: 0;
}

/* Individual colors for company items */
.dropdown-menu-large .dropdown-item:nth-child(1) .dropdown-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(2) .dropdown-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(3) .dropdown-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(4) .dropdown-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(5) .dropdown-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(6) .dropdown-icon {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .dropdown-menu-large {
        min-width: 100%;
        max-height: 70vh;
        overflow-y: auto;
    }
}

/* ========================================
   COMPANY DROPDOWN - EXTRA WIDE
   ======================================== */

.dropdown-menu-large {
    min-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(20, 20, 25, 0.98);
    backdrop-filter: blur(10px);
}

.dropdown-menu-large .dropdown-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 0;
    gap: 1rem;
}

.dropdown-menu-large .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.dropdown-menu-large .dropdown-icon {
    margin: 0;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dropdown-menu-large .dropdown-content {
    flex: 1;
    padding-top: 0.125rem;
}

.dropdown-menu-large .dropdown-title {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.3;
}

.dropdown-menu-large .dropdown-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    margin: 0;
}

/* Individual colors for company items */
.dropdown-menu-large .dropdown-item:nth-child(1) .dropdown-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(2) .dropdown-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(3) .dropdown-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(4) .dropdown-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(5) .dropdown-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(6) .dropdown-icon {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .dropdown-menu-large {
        min-width: 100%;
        max-height: 70vh;
        overflow-y: auto;
    }
}

/* ========================================
   COMPANY DROPDOWN - EXTRA EXTRA WIDE (600px)
   ======================================== */

.dropdown-menu-large {
    min-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(20, 20, 25, 0.98);
    backdrop-filter: blur(10px);
}

.dropdown-menu-large .dropdown-item {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 0;
    gap: 1rem;
}

.dropdown-menu-large .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.dropdown-menu-large .dropdown-icon {
    margin: 0;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.dropdown-menu-large .dropdown-content {
    flex: 1;
    padding-top: 0.125rem;
}

.dropdown-menu-large .dropdown-title {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.3;
}

.dropdown-menu-large .dropdown-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    margin: 0;
}

/* Individual colors for company items */
.dropdown-menu-large .dropdown-item:nth-child(1) .dropdown-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(2) .dropdown-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(3) .dropdown-icon {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(4) .dropdown-icon {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(5) .dropdown-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.dropdown-menu-large .dropdown-item:nth-child(6) .dropdown-icon {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

/* Responsive */
@media (max-width: 768px) {
    .dropdown-menu-large {
        min-width: 100%;
        max-height: 70vh;
        overflow-y: auto;
    }
}


/* Grid layout for Company dropdown (2 columns) */
.dropdown-menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    min-width: 500px;
}

.dropdown-menu-grid .dropdown-item {
    margin: 0;
}

@media (max-width: 768px) {
    .dropdown-menu-grid {
        grid-template-columns: 1fr;
        min-width: 100%;
    }
}

/* Mobile Menu Styles - CRITICAL FIX */
@media (max-width: 968px) {
    /* Hide nav-menu by default on mobile */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 300px;
        height: calc(100vh - 70px);
        background: var(--bg-primary);
        border-right: 1px solid var(--border-color);
        overflow-y: auto;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
    }

    /* Show nav-menu when active */
    .nav-menu.active {
        left: 0;
    }

    /* Mobile menu overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        backdrop-filter: blur(4px);
    }

    /* Prevent body scroll when menu open */
    body.menu-open {
        overflow: hidden;
    }

    /* Animate mobile menu toggle button */
    .mobile-menu-toggle.active {
        background: rgba(255, 107, 53, 0.15);
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

    /* Mobile menu items spacing */
    .nav-links {
        padding: 1rem 0;
    }

    /* Mobile buttons inside menu */
    .nav-menu.active .nav-links::after {
        content: '';
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.5rem;
        margin-top: 1rem;
        border-top: 1px solid var(--border-color);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        width: 280px;
        top: 65px;
        height: calc(100vh - 65px);
    }

    body.menu-open::before {
        top: 65px;
        height: calc(100vh - 65px);
    }
}

@media (max-width: 480px) {
    .nav-menu {
        width: 85%;
        max-width: 300px;
    }
}

/* Mobile Menu Overlay Backdrop */
body.menu-open::before {
    content: '';
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    backdrop-filter: blur(4px);
}

@media (max-width: 480px) {
    body.menu-open::before {
        top: 70px;
        height: calc(100vh - 70px);
    }
}

/* Mobile Menu Toggle Active State */
.mobile-menu-toggle.active {
    background: rgba(255, 107, 53, 0.2) !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

/* Force hamburger to show on mobile */
@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
}

/* Mobile Menu - Full Page Height */
@media (max-width: 1024px) {
    .nav-center {
        height: 100vh !important;
        top: 0 !important;
        padding-top: 80px;
    }

    .nav-menu {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .nav-links {
        flex: 1;
        overflow-y: auto;
    }
}

/* Mobile Action Buttons */
.mobile-nav-actions {
    display: none;
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    gap: 0.75rem;
    flex-direction: column;
    background: var(--bg-secondary);
    margin-top: auto;
}

@media (max-width: 1024px) {
    .mobile-nav-actions {
        display: flex;
    }
}

.btn-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-mobile i {
    font-size: 1.2rem;
}

.btn-mobile-login {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-mobile-login:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-mobile-register {
    background: var(--gradient-primary);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.btn-mobile-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

/* Mobile Menu Overlay - Full Screen */
@media (max-width: 1024px) {
    body.menu-open::before {
        top: 0 !important;
        height: 100vh !important;
    }
}
