/* Navigation Styles - Classic White Theme */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    height: 60px;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.25rem;
    border-radius: 8px;
    height: 100%; /* Занимает всю высоту контейнера логотипа */
}

.logo-image {
    height: 55px; /* Увеличенная высота изображения */
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: all 0.3s ease;
    border-radius: 4px;
}

/* Удаляем старый псевдоэлемент ::after и добавляем новые эффекты */
.logo-link:hover {
    transform: scale(1.02);
    background: rgba(0, 0, 0, 0.02);
}

.logo-link:hover .logo-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.logo-link:hover .logo-text {
    color: #2d3748;
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: #1a202c;
    background: rgba(0, 0, 0, 0.04);
}

.nav-link.active {
    color: #1a202c;
    background: rgba(0, 0, 0, 0.06);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: #2d3748;
    border-radius: 1px;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
}

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background: rgba(0, 0, 0, 0.04);
    color: #1a202c;
}

.dropdown-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 0.5rem 0;
}

/* Navigation Icons */
.nav-icon {
    font-size: 0.9rem;
    opacity: 0.8;
    width: 16px;
    text-align: center;
}

/* Auth Section */
.nav-auth-section {
    display: contents;
}

/* CTA Button */
.nav-cta {
    background: #1a202c;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(26, 32, 44, 0.15);
    position: relative;
    overflow: hidden;
    margin-left: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    background: #2d3748;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 32, 44, 0.2);
}

/* Cart Link Special Styling */
.cart-link {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc2626;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

/* Logout Link Special Styling */
.logout-link:hover {
    background: rgba(220, 38, 38, 0.1);
    color: #dc2626;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #2d3748;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn:hover .hamburger-line {
    background: #1a202c;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active .mobile-menu {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a202c;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: #4a5568;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    color: #1a202c;
    background: rgba(0, 0, 0, 0.05);
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link,
.mobile-nav-cta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4a5568;
    text-decoration: none;
    padding: 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.02), transparent);
    transition: left 0.6s ease;
}

.mobile-nav-link:hover::before {
    left: 100%;
}

.mobile-nav-link:hover {
    color: #1a202c;
    background: rgba(0, 0, 0, 0.04);
    transform: translateX(5px);
}

.mobile-nav-link.active {
    background: rgba(0, 0, 0, 0.06);
    color: #1a202c;
}

.mobile-nav-cta {
    background: #1a202c;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
    box-shadow: 0 2px 8px rgba(26, 32, 44, 0.15);
    justify-content: center;
}

.mobile-nav-cta:hover {
    background: #2d3748;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 32, 44, 0.2);
}

/* Mobile Navigation Divider */
.mobile-nav-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-contact {
    text-align: center;
    margin-bottom: 1.5rem;
}

.mobile-contact p {
    color: #4a5568;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.mobile-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: #4a5568;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-link:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.15);
    color: #1a202c;
    transform: translateY(-2px);
}

/* Body scroll lock */
body.menu-open {
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }
}

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

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        width: 280px;
    }

    .nav-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .mobile-menu {
        width: 100%;
        border-left: none;
    }

    .mobile-menu-overlay.active .mobile-menu {
        transform: translateX(0);
    }

    .logo-link {
        font-size: 1.25rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .navbar {
        border-bottom: 2px solid #000000;
        background: #ffffff;
    }

    .nav-link {
        color: #000000;
    }

    .nav-link:hover {
        color: #000000;
        background: rgba(0, 0, 0, 0.05);
    }

    .nav-cta {
        background: #000000;
        color: #ffffff;
        border: 2px solid #000000;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .navbar,
    .nav-link,
    .nav-cta,
    .mobile-menu,
    .mobile-nav-link,
    .hamburger-line,
    .dropdown-menu {
        transition: none;
    }
}


/*!* Navigation Styles - Classic White Theme *!*/
/*.navbar {*/
/*    position: relative;*/
/*    width: 100%;*/
/*    background: rgba(255, 255, 255, 0.95);*/
/*    backdrop-filter: blur(20px);*/
/*    z-index: 100;*/
/*    padding: 1rem 0;*/
/*    border-bottom: 1px solid rgba(0, 0, 0, 0.08);*/
/*    transition: all 0.3s ease;*/
/*    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);*/
/*}*/



/*.nav-container {*/
/*    max-width: 1400px;*/
/*    margin: 0 auto;*/
/*    padding: 0 2rem;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*}*/

/*!* Logo *!*/
/*.logo {*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/

/*.logo-link {*/
/*    font-size: 1.5rem;*/
/*    font-weight: 700;*/
/*    color: #1a202c;*/
/*    text-decoration: none;*/
/*    cursor: pointer;*/
/*    transition: all 0.3s ease;*/
/*    position: relative;*/
/*}*/

/*.logo-link::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -2px;*/
/*    left: 0;*/
/*    width: 0;*/
/*    height: 2px;*/
/*    background: #2d3748;*/
/*    transition: width 0.3s ease;*/
/*}*/

/*.logo-link:hover::after {*/
/*    width: 100%;*/
/*}*/

/*.logo-link:hover {*/
/*    color: #2d3748;*/
/*    transform: scale(1.05);*/
/*}*/

/*!* Desktop Navigation *!*/
/*.nav-menu {*/
/*    display: flex;*/
/*    list-style: none;*/
/*    gap: 2rem;*/
/*    align-items: center;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    flex-wrap: wrap;*/
/*}*/

/*.nav-link {*/
/*    color: #4a5568;*/
/*    text-decoration: none;*/
/*    font-weight: 500;*/
/*    transition: all 0.3s ease;*/
/*    position: relative;*/
/*    padding: 0.5rem 0.75rem;*/
/*    border-radius: 6px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 0.5rem;*/
/*    font-size: 0.95rem;*/
/*}*/

/*.nav-link:hover {*/
/*    color: #1a202c;*/
/*    background: rgba(0, 0, 0, 0.04);*/
/*}*/

/*.nav-link.active {*/
/*    color: #1a202c;*/
/*    background: rgba(0, 0, 0, 0.06);*/
/*}*/

/*.nav-link.active::after {*/
/*    content: '';*/
/*    position: absolute;*/
/*    bottom: -2px;*/
/*    left: 50%;*/
/*    transform: translateX(-50%);*/
/*    width: 20px;*/
/*    height: 2px;*/
/*    background: #2d3748;*/
/*    border-radius: 1px;*/
/*}*/

/*!* Dropdown Menu *!*/
/*.nav-dropdown {*/
/*    position: relative;*/
/*    display: inline-block;*/
/*}*/

/*.dropdown-toggle {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 0.5rem;*/
/*}*/

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

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

/*.dropdown-menu {*/
/*    position: absolute;*/
/*    top: 100%;*/
/*    left: 0;*/
/*    background: #ffffff;*/
/*    border: 1px solid rgba(0, 0, 0, 0.1);*/
/*    border-radius: 8px;*/
/*    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);*/
/*    min-width: 200px;*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transform: translateY(-10px);*/
/*    transition: all 0.3s ease;*/
/*    z-index: 1000;*/
/*    padding: 0.5rem 0;*/
/*}*/

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

/*.dropdown-item {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 0.75rem;*/
/*    padding: 0.75rem 1rem;*/
/*    color: #4a5568;*/
/*    text-decoration: none;*/
/*    transition: all 0.2s ease;*/
/*    font-size: 0.9rem;*/
/*}*/

/*.dropdown-item:hover {*/
/*    background: rgba(0, 0, 0, 0.04);*/
/*    color: #1a202c;*/
/*}*/

/*.dropdown-divider {*/
/*    height: 1px;*/
/*    background: rgba(0, 0, 0, 0.1);*/
/*    margin: 0.5rem 0;*/
/*}*/

/*!* Navigation Icons *!*/
/*.nav-icon {*/
/*    font-size: 0.9rem;*/
/*    opacity: 0.8;*/
/*    width: 16px;*/
/*    text-align: center;*/
/*}*/

/*!* Auth Section *!*/
/*.nav-auth-section {*/
/*    display: contents;*/
/*}*/

/*!* CTA Button *!*/
/*.nav-cta {*/
/*    background: #1a202c;*/
/*    color: #ffffff;*/
/*    padding: 0.75rem 1.5rem;*/
/*    border-radius: 6px;*/
/*    text-decoration: none;*/
/*    font-weight: 600;*/
/*    transition: all 0.3s ease;*/
/*    box-shadow: 0 2px 8px rgba(26, 32, 44, 0.15);*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    margin-left: 1rem;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 0.5rem;*/
/*}*/

/*.nav-cta::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: -100%;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);*/
/*    transition: left 0.6s ease;*/
/*}*/

/*.nav-cta:hover::before {*/
/*    left: 100%;*/
/*}*/

/*.nav-cta:hover {*/
/*    background: #2d3748;*/
/*    transform: translateY(-1px);*/
/*    box-shadow: 0 4px 12px rgba(26, 32, 44, 0.2);*/
/*}*/

/*!* Cart Link Special Styling *!*/
/*.cart-link {*/
/*    position: relative;*/
/*}*/

/*.cart-badge {*/
/*    position: absolute;*/
/*    top: -8px;*/
/*    right: -8px;*/
/*    background: #dc2626;*/
/*    color: white;*/
/*    border-radius: 50%;*/
/*    width: 18px;*/
/*    height: 18px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    font-size: 0.7rem;*/
/*    font-weight: 600;*/
/*}*/

/*!* Logout Link Special Styling *!*/
/*.logout-link:hover {*/
/*    background: rgba(220, 38, 38, 0.1);*/
/*    color: #dc2626;*/
/*}*/

/*!* Mobile Menu Button *!*/
/*.mobile-menu-btn {*/
/*    display: none;*/
/*    flex-direction: column;*/
/*    justify-content: space-around;*/
/*    width: 30px;*/
/*    height: 30px;*/
/*    background: transparent;*/
/*    border: none;*/
/*    cursor: pointer;*/
/*    padding: 0;*/
/*    z-index: 1001;*/
/*}*/

/*.hamburger-line {*/
/*    width: 100%;*/
/*    height: 3px;*/
/*    background: #2d3748;*/
/*    border-radius: 2px;*/
/*    transition: all 0.3s ease;*/
/*    transform-origin: center;*/
/*}*/

/*.mobile-menu-btn:hover .hamburger-line {*/
/*    background: #1a202c;*/
/*}*/

/*.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(1) {*/
/*    transform: rotate(45deg) translate(7px, 7px);*/
/*}*/

/*.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(2) {*/
/*    opacity: 0;*/
/*}*/

/*.mobile-menu-btn[aria-expanded="true"] .hamburger-line:nth-child(3) {*/
/*    transform: rotate(-45deg) translate(7px, -7px);*/
/*}*/

/*!* Mobile Menu Overlay *!*/
/*.mobile-menu-overlay {*/
/*    position: fixed;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100vh;*/
/*    background: rgba(0, 0, 0, 0.4);*/
/*    backdrop-filter: blur(4px);*/
/*    z-index: 999;*/
/*    opacity: 0;*/
/*    visibility: hidden;*/
/*    transition: all 0.3s ease;*/
/*}*/

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

/*.mobile-menu {*/
/*    position: absolute;*/
/*    top: 0;*/
/*    right: 0;*/
/*    width: 320px;*/
/*    height: 100vh;*/
/*    background: #ffffff;*/
/*    border-left: 1px solid rgba(0, 0, 0, 0.1);*/
/*    padding: 2rem;*/
/*    transform: translateX(100%);*/
/*    transition: transform 0.3s ease;*/
/*    overflow-y: auto;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);*/
/*}*/

/*.mobile-menu-overlay.active .mobile-menu {*/
/*    transform: translateX(0);*/
/*}*/

/*.mobile-menu-header {*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*    margin-bottom: 3rem;*/
/*    padding-bottom: 1.5rem;*/
/*    border-bottom: 1px solid rgba(0, 0, 0, 0.1);*/
/*}*/

/*.mobile-logo {*/
/*    font-size: 1.25rem;*/
/*    font-weight: 700;*/
/*    color: #1a202c;*/
/*}*/

/*.mobile-menu-close {*/
/*    background: transparent;*/
/*    border: none;*/
/*    color: #4a5568;*/
/*    cursor: pointer;*/
/*    padding: 0.5rem;*/
/*    border-radius: 4px;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.mobile-menu-close:hover {*/
/*    color: #1a202c;*/
/*    background: rgba(0, 0, 0, 0.05);*/
/*}*/

/*!* Mobile Navigation Menu *!*/
/*.mobile-nav-menu {*/
/*    list-style: none;*/
/*    padding: 0;*/
/*    margin: 0 0 auto;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 0.5rem;*/
/*}*/

/*.mobile-nav-link,*/
/*.mobile-nav-cta {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 0.75rem;*/
/*    color: #4a5568;*/
/*    text-decoration: none;*/
/*    padding: 1rem;*/
/*    border-radius: 6px;*/
/*    transition: all 0.3s ease;*/
/*    font-weight: 500;*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*}*/

/*.mobile-nav-link::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: -100%;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.02), transparent);*/
/*    transition: left 0.6s ease;*/
/*}*/

/*.mobile-nav-link:hover::before {*/
/*    left: 100%;*/
/*}*/

/*.mobile-nav-link:hover {*/
/*    color: #1a202c;*/
/*    background: rgba(0, 0, 0, 0.04);*/
/*    transform: translateX(5px);*/
/*}*/

/*.mobile-nav-link.active {*/
/*    background: rgba(0, 0, 0, 0.06);*/
/*    color: #1a202c;*/
/*}*/

/*.mobile-nav-cta {*/
/*    background: #1a202c;*/
/*    color: #ffffff;*/
/*    font-weight: 600;*/
/*    text-align: center;*/
/*    margin-top: 1rem;*/
/*    box-shadow: 0 2px 8px rgba(26, 32, 44, 0.15);*/
/*    justify-content: center;*/
/*}*/

/*.mobile-nav-cta:hover {*/
/*    background: #2d3748;*/
/*    transform: translateY(-1px);*/
/*    box-shadow: 0 4px 12px rgba(26, 32, 44, 0.2);*/
/*}*/

/*!* Mobile Navigation Divider *!*/
/*.mobile-nav-divider {*/
/*    height: 1px;*/
/*    background: rgba(0, 0, 0, 0.1);*/
/*    margin: 1rem 0;*/
/*}*/

/*!* Mobile Menu Footer *!*/
/*.mobile-menu-footer {*/
/*    margin-top: 2rem;*/
/*    padding-top: 2rem;*/
/*    border-top: 1px solid rgba(0, 0, 0, 0.1);*/
/*}*/

/*.mobile-contact {*/
/*    text-align: center;*/
/*    margin-bottom: 1.5rem;*/
/*}*/

/*.mobile-contact p {*/
/*    color: #4a5568;*/
/*    margin: 0.5rem 0;*/
/*    font-size: 0.9rem;*/
/*}*/

/*.mobile-social {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    gap: 1rem;*/
/*}*/

/*.mobile-social-link {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    width: 40px;*/
/*    height: 40px;*/
/*    background: rgba(0, 0, 0, 0.04);*/
/*    border: 1px solid rgba(0, 0, 0, 0.1);*/
/*    border-radius: 50%;*/
/*    color: #4a5568;*/
/*    text-decoration: none;*/
/*    transition: all 0.3s ease;*/
/*}*/

/*.mobile-social-link:hover {*/
/*    background: rgba(0, 0, 0, 0.08);*/
/*    border-color: rgba(0, 0, 0, 0.15);*/
/*    color: #1a202c;*/
/*    transform: translateY(-2px);*/
/*}*/

/*!* Body scroll lock *!*/
/*body.menu-open {*/
/*    overflow: hidden;*/
/*}*/

/*!* Responsive Design *!*/
/*@media (max-width: 1024px) {*/
/*    .nav-menu {*/
/*        gap: 1.5rem;*/
/*    }*/

/*    .nav-container {*/
/*        padding: 0 1.5rem;*/
/*    }*/
/*}*/

/*@media (max-width: 768px) {*/
/*    .nav-menu {*/
/*        display: none;*/
/*    }*/

/*    .mobile-menu-btn {*/
/*        display: flex;*/
/*    }*/

/*    .mobile-menu {*/
/*        width: 280px;*/
/*    }*/

/*    .nav-container {*/
/*        padding: 0 1rem;*/
/*    }*/
/*}*/

/*@media (max-width: 480px) {*/
/*    .mobile-menu {*/
/*        width: 100%;*/
/*        border-left: none;*/
/*    }*/

/*    .mobile-menu-overlay.active .mobile-menu {*/
/*        transform: translateX(0);*/
/*    }*/

/*    .logo-link {*/
/*        font-size: 1.25rem;*/
/*    }*/
/*}*/

/*!* High contrast mode support *!*/
/*@media (prefers-contrast: high) {*/
/*    .navbar {*/
/*        border-bottom: 2px solid #000000;*/
/*        background: #ffffff;*/
/*    }*/

/*    .nav-link {*/
/*        color: #000000;*/
/*    }*/

/*    .nav-link:hover {*/
/*        color: #000000;*/
/*        background: rgba(0, 0, 0, 0.05);*/
/*    }*/

/*    .nav-cta {*/
/*        background: #000000;*/
/*        color: #ffffff;*/
/*        border: 2px solid #000000;*/
/*    }*/
/*}*/

/*!* Reduced motion support *!*/
/*@media (prefers-reduced-motion: reduce) {*/
/*    .navbar,*/
/*    .nav-link,*/
/*    .nav-cta,*/
/*    .mobile-menu,*/
/*    .mobile-nav-link,*/
/*    .hamburger-line,*/
/*    .dropdown-menu {*/
/*        transition: none;*/
/*    }*/
/*}*/