/* Enhanced Navbar Styles - Ultra Modern & Animated */

/* Enhanced Desktop Sidebar */
.enhanced-desktop-sidebar {
    width: 320px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    background: linear-gradient(145deg, 
        rgba(26, 48, 36, 0.95) 0%, 
        rgba(44, 74, 59, 0.98) 50%, 
        rgba(26, 48, 36, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Animated Background Effects */
.sidebar-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(212, 175, 55, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(212, 175, 55, 0.15), transparent);
    background-repeat: repeat;
    background-size: 150px 100px;
    animation: particleFloat 20s linear infinite;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.4) 0%, transparent 70%);
    top: 10%;
    right: -20%;
    animation-delay: 0s;
}

.orb-2 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(104, 210, 168, 0.3) 0%, transparent 70%);
    bottom: 30%;
    left: -10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    top: 60%;
    right: -15%;
    animation-delay: -10s;
}

/* Enhanced Brand Logo */
.enhanced-brand-logo {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 3rem;
    text-decoration: none;
    color: white;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.enhanced-brand-logo:hover {
    transform: translateY(-2px);
}

.brand-icon-container {
    position: relative;
    width: 56px;
    height: 56px;
}

.brand-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 1) 0%, 
        rgba(229, 197, 88, 1) 50%, 
        rgba(212, 175, 55, 1) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(26, 48, 36, 1);
    font-size: 1.75rem;
    font-weight: bold;
    box-shadow: 
        0 8px 32px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
}

.icon-glow {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), rgba(229, 197, 88, 0.4));
    border-radius: 20px;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.enhanced-brand-logo:hover .brand-icon {
    transform: rotate(10deg) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.enhanced-brand-logo:hover .icon-glow {
    opacity: 1;
}

.brand-text-container {
    display: flex;
    flex-direction: column;
}

.brand-text {
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(212, 175, 55, 1) 50%, 
        rgba(255, 255, 255, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    animation: textShimmer 3s ease-in-out infinite;
}

.brand-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: -2px;
}

/* Enhanced Navigation Menu */
.enhanced-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    position: relative;
    z-index: 2;
}

.nav-indicator {
    position: absolute;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, 
        rgba(212, 175, 55, 1) 0%, 
        rgba(229, 197, 88, 1) 100%);
    border-radius: 0 4px 4px 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.enhanced-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    margin-left: 8px;
}

.enhanced-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.enhanced-nav-link:hover::before {
    left: 100%;
}

.nav-icon-wrapper {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-icon {
    font-size: 1.25rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    position: relative;
}

.icon-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.nav-text {
    flex: 1;
    transition: all 0.4s ease;
}

.nav-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: rgba(212, 175, 55, 1);
}

.enhanced-nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.95);
    transform: translateX(8px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.enhanced-nav-link:hover .nav-icon-wrapper {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.2) 0%, 
        rgba(229, 197, 88, 0.2) 100%);
    transform: scale(1.05);
}

.enhanced-nav-link:hover .nav-icon {
    color: rgba(212, 175, 55, 1);
    transform: scale(1.1);
}

.enhanced-nav-link:hover .icon-ripple {
    width: 40px;
    height: 40px;
}

.enhanced-nav-link:hover .nav-arrow {
    opacity: 1;
    transform: translateX(0);
}

.enhanced-nav-link.active {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.15) 0%, 
        rgba(229, 197, 88, 0.15) 100%);
    color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 
        0 8px 32px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.enhanced-nav-link.active .nav-icon-wrapper {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 1) 0%, 
        rgba(229, 197, 88, 1) 100%);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.enhanced-nav-link.active .nav-icon {
    color: rgba(26, 48, 36, 1);
    transform: scale(1.1);
}

.enhanced-nav-link.active .nav-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced Sidebar Footer */
.enhanced-sidebar-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.enhanced-user-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-decoration: none;
    color: inherit;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.enhanced-user-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(212, 175, 55, 0.1) 50%, 
        transparent 100%);
    transition: left 0.6s ease;
}

.enhanced-user-card:hover::before {
    left: 100%;
}

.enhanced-user-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.user-avatar-container {
    position: relative;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 1) 0%, 
        rgba(229, 197, 88, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(26, 48, 36, 1);
    font-weight: bold;
    font-size: 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.avatar-status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #10B981;
    border-radius: 50%;
    border: 2px solid rgba(26, 48, 36, 1);
    animation: statusPulse 2s ease-in-out infinite;
}

.user-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2px;
}

.user-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.user-menu-icon {
    margin-left: auto;
    color: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.enhanced-user-card:hover .user-menu-icon {
    color: rgba(212, 175, 55, 1);
    transform: rotate(90deg);
}

.logout-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: rgba(239, 68, 68, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.logout-btn:hover {
    background: rgba(239, 68, 68, 0.15);
    color: rgba(239, 68, 68, 1);
    transform: translateY(-1px);
}

.auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.login-btn {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 1) 0%, 
        rgba(229, 197, 88, 1) 100%);
    color: rgba(26, 48, 36, 1);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.register-btn {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.register-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Enhanced Mobile Navigation */
.enhanced-mobile-header {
    display: none;
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(135deg, 
        rgba(26, 48, 36, 0.95) 0%, 
        rgba(44, 74, 59, 0.98) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
}

.mobile-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.mobile-brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
}

.mobile-brand-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 1) 0%, 
        rgba(229, 197, 88, 1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(26, 48, 36, 1);
    font-size: 1.25rem;
    font-weight: bold;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.mobile-brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(212, 175, 55, 1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-user-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 1) 0%, 
        rgba(229, 197, 88, 1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(26, 48, 36, 1);
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.mobile-status-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #10B981;
    border-radius: 50%;
    border: 2px solid rgba(26, 48, 36, 1);
}

.mobile-login-btn {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-login-btn:hover {
    color: rgba(212, 175, 55, 1);
    background: rgba(255, 255, 255, 0.1);
}

/* Enhanced Mobile Bottom Navigation */
.enhanced-mobile-nav {
    display: none;
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 420px;
    background: rgba(26, 48, 36, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 0.75rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.mobile-nav-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 48, 36, 0.8) 0%, 
        rgba(44, 74, 59, 0.9) 100%);
    z-index: -1;
}

.mobile-nav-indicator {
    position: absolute;
    bottom: 4px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(212, 175, 55, 1) 0%, 
        rgba(229, 197, 88, 1) 100%);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.enhanced-mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    flex: 1;
    padding: 0.5rem;
}

.mobile-nav-icon-wrapper {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-nav-icon-wrapper i {
    font-size: 1.25rem;
    transition: all 0.4s ease;
    z-index: 2;
    position: relative;
}

.mobile-icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.mobile-nav-label {
    font-size: 0.7rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.enhanced-mobile-nav-item:hover {
    color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.enhanced-mobile-nav-item:hover .mobile-nav-icon-wrapper {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

.enhanced-mobile-nav-item:hover .mobile-icon-pulse {
    width: 40px;
    height: 40px;
}

.enhanced-mobile-nav-item.active {
    color: rgba(212, 175, 55, 1);
}

.enhanced-mobile-nav-item.active .mobile-nav-icon-wrapper {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.2) 0%, 
        rgba(229, 197, 88, 0.2) 100%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    transform: scale(1.1);
}

.enhanced-mobile-nav-item.active .mobile-nav-label {
    font-weight: 600;
}

/* Animations */
@keyframes particleFloat {
    0% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-10px) translateX(5px); }
    66% { transform: translateY(5px) translateX(-5px); }
    100% { transform: translateY(0px) translateX(0px); }
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0px) translateX(0px) scale(1); }
    33% { transform: translateY(-20px) translateX(10px) scale(1.1); }
    66% { transform: translateY(10px) translateX(-10px) scale(0.9); }
}

@keyframes textShimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .enhanced-desktop-sidebar {
        transform: translateX(-100%);
    }
    
    .enhanced-mobile-header {
        display: block;
    }
    
    .enhanced-mobile-nav {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
        padding-bottom: 120px;
    }
}

@media (min-width: 1024px) {
    .enhanced-mobile-header,
    .enhanced-mobile-nav {
        display: none;
    }
    
    .main-content {
        margin-left: 320px;
    }
}

/* Modern Navbar Standardization (from map.php) */

/* Mobile Bottom Nav */
.bottom-nav {
    position: fixed;
    bottom: calc(16px + env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%);
    width: min(420px, calc(100% - 24px));
    padding: 14px 16px;
    border-radius: 28px;
    background: rgba(12, 23, 17, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 25px 60px rgba(18, 35, 27, 0.35);
    backdrop-filter: blur(28px) saturate(160%);
    z-index: 9999;
}

.bottom-nav .nav-item {
    flex: 1;
    min-width: 0;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    font: inherit;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 8px 4px;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    transition: color 0.35s ease, transform 0.35s ease;
}

.bottom-nav .nav-icon-wrapper {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
}

.bottom-nav .nav-icon {
    font-size: 20px;
    color: inherit;
    transition: transform 0.35s ease, color 0.35s ease;
}

.bottom-nav .nav-label {
    font-size: 11px;
    letter-spacing: 0.02em;
    color: inherit;
    transition: inherit;
}

.bottom-nav .nav-item.active,
.bottom-nav .nav-item:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.bottom-nav .nav-item.active .nav-icon-wrapper,
.bottom-nav .nav-item:hover .nav-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-color, #324D3E), var(--primary-dark, #223A2A));
    box-shadow: 0 14px 30px rgba(34, 58, 42, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.bottom-nav .nav-item.active .nav-icon,
.bottom-nav .nav-item:hover .nav-icon {
    transform: translateY(-2px) scale(1.05);
    color: #ffffff;
}

/* Desktop Sidebar Standardization */
@media (min-width: 1024px) {
    .desktop-sidebar {
        width: 320px;
        background: #FFFFFF;
        border-right: 1px solid #D0D8D4;
        padding: 32px 24px;
        position: fixed;
        height: 100vh;
        overflow-y: auto;
        z-index: 1000;
        box-shadow: 0 10px 15px -3px rgba(50, 77, 62, 0.1), 0 4px 6px -2px rgba(50, 77, 62, 0.05);
    }
    
    .desktop-nav-link {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 16px 20px;
        border-radius: 16px;
        text-decoration: none;
        color: #425A4A;
        font-weight: 500;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
    }

    .desktop-nav-link:hover {
        background: rgba(245, 158, 11, 0.1);
        color: #324D3E;
        transform: translateX(4px);
    }

    .desktop-nav-link.active {
        background: rgba(245, 158, 11, 0.15);
        color: #324D3E;
        font-weight: 600;
    }
}