.poseidon-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    box-shadow: none;
    z-index: 1000;
    border-bottom: none;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 2rem;
    background: var(--var-white);
    border-bottom: 1px solid var(--var-white);
    font-size: 0.85rem;
    color: var(--var-gray);
}
.top-bar-left .currency-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    
}
.top-bar-left .currency-selector:hover {
    color: var(--var-gray-hover);
}
.top-bar-left .currency-selector:hover svg {
    transform: rotate(180deg);
}
.top-bar-center .main-logo {
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--var-black);
    text-decoration: none;
    font-weight: bold;
    
}
.top-bar-center .main-logo:hover {
    color: var(--var-blue);
}
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.icon-btn {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--var-gray);
    
    border-radius: 50%;
}
.icon-btn:hover {
    color: var(--var-black);
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    
    min-height: 60px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}


.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    margin-left: 0.5rem;
    font-size: 0.7rem;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--var-white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    z-index: 1000;
    padding: 1rem 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
}
[data-theme="dark"] .dropdown-menu {
    background: var(--var-black);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown:hover .dropdown-menu .dropdown-link{
    color: #000000
}
.dropdown-link {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--var-gray-hover);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: none;
    border-left: 3px solid transparent;
}

.dropdown-link:hover {
    background: rgba(255, 51, 102, 0.05);
    color: var(--var-pink);
    border-left-color: var(--var-pink);
    padding-left: 2rem;
}


.theme-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid rgb(255 255 255 / 20%);
    background: rgb(255 255 255 / 10%);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
[data-theme="dark"]  .theme-switcher {
    border: 2px solid rgb(0 0 0 / 20%);
    background: rgb(0 0 0 / 10%);
}
.theme-icon {
    position: absolute;
    font-size: 1.2rem;
    color: var(--var-white);
    transition: all 0.3s ease;
}
[data-theme="dark"] .theme-icon:hover {
    color: #ffffff;
}
.theme-icon.light-icon {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

.theme-icon.dark-icon {
    opacity: 0;
    transform: translateY(20px) rotate(180deg);
}

[data-theme="dark"] .theme-icon.light-icon {
    opacity: 0;
    transform: translateY(-20px) rotate(-180deg);
}

[data-theme="dark"] .theme-icon.dark-icon {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

.theme-switcher:hover {
    background: var(--var-pink);
    border-color: var(--var-pink);
    transform: scale(1.1) rotate(10deg);
}
[data-theme="dark"] .theme-switcher:hover svg{
    color: white;
}

.poseidon-nav.scrolled .theme-icon {
    color: var(--var-gray-hover);
}

.poseidon-nav.scrolled .theme-switcher:hover {
    background: var(--var-pink);
    border-color: var(--var-pink);
}

.poseidon-nav.scrolled .theme-switcher:hover .theme-icon {
    color: #ffffff;
}

.language-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: var(--var-white);
    backdrop-filter: blur(10px);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.language-toggle:hover {
    background: var(--var-pink);
    border-color: var(--var-pink);
    transform: scale(1.1) rotate(10deg);
}

.lang-text {
    position: absolute;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--var-white);
    transition: all 0.3s ease;
}

.lang-text.lang-fr {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

.lang-text.lang-en {
    opacity: 0;
    transform: translateY(20px) rotate(180deg);
}

[data-lang="en"] .lang-text.lang-fr {
    opacity: 0;
    transform: translateY(-20px) rotate(-180deg);
}

[data-lang="en"] .lang-text.lang-en {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}


.poseidon-nav.scrolled .language-toggle:hover {
    background: var(--var-pink);
    border-color: var(--var-pink);
}

.poseidon-nav.scrolled .lang-text {
    color: var(--var-gray-hover);
}

.poseidon-nav.scrolled .language-toggle:hover .lang-text {
    color: var(--var-white);
}
.poseidon-nav.scrolled .nav-container {
    padding: 0.5rem 2rem;
}
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 2rem;
    flex-shrink: 0;
    position: relative;
    height: 40px;
    line-height: 1;
}
.nav-logo-img {
    height: 40px;
    width: auto;
    
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.nav-logo-white {
    opacity: 1;
    z-index: 2;
}
.nav-logo-black {
    opacity: 0;
    z-index: 1;
}
.poseidon-nav.scrolled .nav-logo-white {
    opacity: 0;
}
.poseidon-nav.scrolled .nav-logo-black {
    opacity: 1;
}

[data-theme="dark"] .nav-logo-white {
    opacity: 1;
    z-index: 2;
}
[data-theme="dark"] .nav-logo-black {
    opacity: 0;
    z-index: 1;
}
[data-theme="dark"] .poseidon-nav.scrolled .nav-logo-white {
    opacity: 1;
    z-index: 2;
}
[data-theme="dark"] .poseidon-nav.scrolled .nav-logo-black {
    opacity: 0;
    z-index: 1;
}
.nav-logo:hover .nav-logo-img {
    transform: translateY(-50%) scale(1.05);
}
.nav-logo {
    width: 40px;
    height: 40px;
}
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    flex: 1;
    justify-content: center;
    height: 40px;
    line-height: 1;
}
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
}
.nav-link {
    display: flex;
    align-items: center;
    padding: 0 1.5rem;
    text-decoration: none;
    color: var(--var-white);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    
    position: relative;
    height: 40px;
    line-height: 1;
    margin: 0;
}
.nav-link:hover {
    color: var(--var-pink);
}
.nav-link.active::after {
    color: var(--var-pink);
}
.poseidon-nav.scrolled .nav-link {
    color: var(--var-gray-hover);
}
.poseidon-nav.scrolled .nav-link:hover,
.poseidon-nav.scrolled .nav-link.active {
    color: var(--var-pink);
}
.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: var(--var-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    
    border-top: 1px solid var(--var-white);
}
.has-megamenu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.mega-menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}
.mega-menu-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}
.mega-menu-image {
    background: var(--var-white);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}
.mega-menu-image img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}
.mega-menu-categories {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}
.mega-category h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--var-black);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--var-blue);
    padding-bottom: 0.5rem;
}
.mega-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mega-category li {
    margin-bottom: 0.5rem;
}
.mega-category a {
    color: var(--var-gray);
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.5;
    
    display: block;
    padding: 0.25rem 0;
}
.mega-category a:hover {
    color: var(--var-blue);
    transform: translateX(5px);
}
.menu-toggle {
    display: flex;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0.75rem;
    cursor: pointer;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    
    flex-shrink: 0;
}
.call-button {
    width: auto;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    gap: 5px;
}
.menu-toggle:hover {
    background: var(--var-pink);
    transform: translateY(-1px);
}
.menu-toggle .hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--var-white);
    margin: 2px 0;
    border-radius: 1px;
}
[data-theme="dark"] .menu-toggle .hamburger-line {
    background: #ffffff;
}
.poseidon-nav.scrolled .menu-toggle {
    background: var(--var-pink);
    border: 1px solid #ddd;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.poseidon-nav.scrolled .menu-toggle:hover {
    background: rgba(224, 46, 92, 0.8);
    border: 1px solid var(--var-pink);
}
[data-theme="dark"] .poseidon-nav.scrolled .menu-toggle {
    border: none;
}
.menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}
.mobile-toggle {
    display: none;
}
@media (max-width: 1024px) {
    .mega-menu-content {
        grid-template-columns: 200px 1fr;
        gap: 2rem;
    }
    .mega-menu-categories {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
    .mega-menu-image {
        min-height: 250px;
        padding: 1.5rem;
    }
}
@media (max-width: 1100px) {
    .poseidon-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 0;
    }
    .top-bar {
        display: none;
    }
    .nav-container {
        padding: 1rem 1.5rem;
        min-height: 60px;
        max-width: 100%;
    }
    .poseidon-nav.scrolled .nav-container {
        padding: 0.75rem 1.5rem;
    }
    .nav-logo {
        height: 35px;
    }
    .nav-logo-img {
        height: 35px;
    }
    .nav-menu {
        display: none;
    }
    .theme-switcher {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .theme-icon {
        font-size: 1rem;
    }

    .menu-toggle {
        display: flex;
        width: 40px;
        height: 40px;
        padding: 0.5rem;
    }
    .menu-toggle .hamburger-line {
        width: 18px;
        height: 2px;
        margin: 1.5px 0;
    }
    .mega-menu {
        display: none !important;
    }
    .fullscreen-menu {
        top: 0;
        background: var(--var-white);
        color: var(--var-black)000;
        z-index: 1001;
    }
    .fullscreen-menu.active {
        opacity: 1;
        visibility: visible;
    }
    .hero {
        padding-top: 60px;
        min-height: calc(100vh - 60px);
    }
}
@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 1rem;
        min-height: 50px;
    }
    .poseidon-nav.scrolled .nav-container {
        padding: 0.5rem 1rem;
    }
    .nav-logo {
        height: 30px;
    }
    .nav-logo-img {
        height: 30px;
    }
    .menu-toggle {
        width: 35px;
        height: 35px;
        padding: 0.4rem;
    }
    .menu-toggle .hamburger-line {
        width: 16px;
        height: 2px;
        margin: 1px 0;
    }
    .hero {
        padding-top: 50px;
        min-height: calc(100vh - 50px);
    }
}
@media (min-width: 1100px) {
    .nav-item:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .has-megamenu .mega-menu {
        left: -50vw;
        margin-left: 50vw;
        transform-origin: center top;
    }
}
@media (min-width: 1100px) {
    .nav-menu {
        display: flex !important;
    }
    body {
        padding-top: 0;
    }
    .hero {
        min-height: 100vh;
        padding-top: 0;
    }
}
@media (min-width: 1100px) {
    .section {
        padding-top: 0;
    }
    .hero {
        height: 100vh;
        margin-top: 0;
    }
}
@media (max-width: 1024px) {
    .nav {
        width: calc(100% - 60px);
        height: 65px;
        padding: 0 25px;
        top: 18px;
    }
    .logo {
        font-size: 1.8rem;
        letter-spacing: 1.5px;
    }
}
@media (max-width: 1100px) {
    .fullscreen-submenu {
        padding: 0 !important;
        margin: 0 !important;
        padding-top: 0.5 !important;
    }
    .nav {
        width: calc(100% - 40px);
        height: 60px;
        padding: 0 20px;
        top: 15px;
    }
    .fullscreen-menu-link:hover {
        color: var(--var-pink);
        transform: translateX(0) !important;
    }
    .fullscreen-menu-link:active {
        color: var(--var-pink);
        transform: translateX(0) !important;
    }
    .logo {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    .nav-toggle {
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .hamburger-line {
        width: 25px;
        height: 2px;
        margin: 3px 0;
        border-radius: 1px;
    }
}
@media (max-width: 480px) {
    .nav {
        width: calc(100% - 30px);
        height: 55px;
        padding: 0 18px;
        top: 12px;
    }
    .logo {
        font-size: 1.4rem;
        letter-spacing: 0.5px;
    }
    .nav-toggle {
        padding: 8px;
    }
    .hamburger-line {
        width: 22px;
        height: 2px;
        margin: 2px 0;
    }
}
@media (max-width: 375px) {
    .nav {
        width: calc(100% - 24px);
        height: 50px;
        padding: 0 15px;
        top: 10px;
    }
    .logo {
        font-size: 1.3rem;
        letter-spacing: 0.3px;
    }
    .nav-toggle {
        padding: 6px;
    }
    .hamburger-line {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }
}
@media (max-width: 320px) {
    .nav {
        width: calc(100% - 20px);
        height: 48px;
        padding: 0 12px;
        top: 8px;
    }
    .logo {
        font-size: 1.2rem;
        letter-spacing: 0.2px;
    }
    .nav-toggle {
        padding: 5px;
    }
    .hamburger-line {
        width: 18px;
        height: 2px;
        margin: 1.5px 0;
    }
}
.nav.nav-no-background {
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: var(--var-white);
    text-decoration: none;
    
    position: relative;
    overflow: hidden;
    padding: 10px 20px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
.logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: logoShine 3s ease-in-out infinite;
    pointer-events: none;
}
@keyframes logoShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}
.nav.nav-top .logo {
    color: var(--var-white) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}
.nav.nav-light .logo {
    color: var(--var-white) !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}
.nav.nav-dark .logo {
    color: var(--var-black)000 !important;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.08));
    border: 1px solid rgba(0, 0, 0, 0.15);
    text-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}
.nav.nav-light .nav-toggle {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50px;
}
.nav.nav-dark .nav-toggle {
    background: rgba(0, 0, 0, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    border-radius: 50px;
}
.logo:hover {
    transform: translateY(-2px) scale(1.05);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow:
        0 0 30px rgba(255, 255, 255, 0.6),
        0 0 60px rgba(255, 255, 255, 0.3);
    letter-spacing: 4px;
    box-shadow:
        0 10px 30px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.nav.nav-light .logo:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-shadow:
        0 0 35px rgba(255, 255, 255, 0.7),
        0 0 70px rgba(255, 255, 255, 0.4);
    box-shadow:
        0 15px 40px rgba(255, 255, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.nav.nav-dark .logo:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15));
    border: 1px solid rgba(0, 0, 0, 0.4);
    text-shadow:
        0 0 35px rgba(0, 0, 0, 0.7),
        0 0 70px rgba(0, 0, 0, 0.4);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(0, 0, 0, 0.3);
}
.nav.nav-top .logo:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-shadow:
        0 0 25px rgba(255, 255, 255, 0.5),
        0 0 50px rgba(255, 255, 255, 0.2);
}
.nav-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    padding: 12px;
    z-index: 10001;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.nav-toggle:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--var-white);
    margin: 2px 0;
    transform-origin: center;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.nav.nav-top .nav-toggle {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.nav.nav-top .hamburger-line {
    background-color: var(--var-white) !important;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.nav.nav-light .nav-toggle {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 6px 25px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.nav.nav-light .hamburger-line {
    background-color: var(--var-white) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.nav.nav-dark .nav-toggle {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.08));
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow:
        0 6px 25px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(0, 0, 0, 0.15);
}
.nav.nav-dark .hamburger-line {
    background-color: var(--var-black)000 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.nav.nav-top .nav-toggle:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.nav.nav-light .nav-toggle:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.nav.nav-dark .nav-toggle:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.15));
    border: 1px solid rgba(0, 0, 0, 0.25);
    box-shadow:
        0 10px 35px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(0, 0, 0, 0.25);
}
.nav-toggle.active {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
    transform: scale(1.05) rotate(180deg);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.nav-toggle.active .hamburger-line {
    background-color: var(--var-black)000 !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.nav-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}
.nav-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.fullscreen-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.02);
    pointer-events: none;
}

.fullscreen-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
    background: var(--var-white);
}
.fullscreen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.fullscreen-logo {
    display: flex;
    align-items: center;
}

.fullscreen-logo-img {
    height: 40px;
    width: auto;
    
}

.fullscreen-logo:hover .fullscreen-logo-img {
    transform: scale(1.05);
}

.fullscreen-close {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    
    position: relative;
    overflow: hidden;
}

.fullscreen-close::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 102, 0.1), transparent);
    
}

.fullscreen-close:hover::before {
    left: 100%;
}

.fullscreen-close:hover {
    background: var(--var-pink);
    border-color: var(--var-pink);
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.3);
}

.close-line {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--var-gray-hover);
    border-radius: 1px;
    
}

.close-line:first-child {
    transform: rotate(45deg);
}

.close-line:last-child {
    transform: rotate(-45deg);
}

.fullscreen-close:hover .close-line {
    background: var(--var-white);
}
.fullscreen-content {
    flex: 1;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    padding: 3rem;
    overflow-y: auto;
}
@media(max-width: 800px){
    .fullscreen-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 4rem;
        padding: 2em;
        overflow-y: auto;
    }
}
.fullscreen-navigation {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fullscreen-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fullscreen-menu-item {
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fullscreen-menu-item:nth-child(1) { animation-delay: 0.1s; }
.fullscreen-menu-item:nth-child(2) { animation-delay: 0.2s; }
.fullscreen-menu-item:nth-child(3) { animation-delay: 0.3s; }
.fullscreen-menu-item:nth-child(4) { animation-delay: 0.4s; }
.fullscreen-menu-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fullscreen-menu-link {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-decoration: none;
    color: var(--var-black);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}
[data-theme="dark"]  .fullscreen-menu-link {
    border-bottom: 1px solid rgb(255 255 255 / 5%);
}

.fullscreen-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 102, 0.03), transparent);
    
}

.fullscreen-menu-link:hover::before {
    left: 100%;
}

.fullscreen-menu-link:hover {
    color: var(--var-pink);
    border-bottom-color: var(--var-pink);
}

.menu-number {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.3);
    font-weight: 400;
    letter-spacing: 1px;
    min-width: 40px;
}
[data-theme="dark"] .menu-number {
    color: rgb(255 255 255 / 30%);
}

.fullscreen-menu-link:hover .menu-number {
    color: var(--var-pink);
}

.menu-text {
    font-family: 'Montserrat-Bold', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
    
}

.menu-arrow {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.3);
    margin-left: auto;
}
[data-theme="dark"] .menu-arrow {
    color: rgb(255 255 255 / 30%);
}
.fullscreen-menu-link:hover .menu-arrow {
    color: var(--var-pink);
}
.fullscreen-dropdown {
    position: relative;
}

.fullscreen-dropdown-trigger {
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 2rem !important;
    font-weight: 300;
    
}
.menu-arrow {
    font-size: 1.5rem;
    color: rgba(0, 0, 0, 0.3);
    margin-left: auto;
}
.fullscreen-dropdown.active .dropdown-arrow {
    transform: rotate(45deg);
    color: var(--var-pink);
}

.fullscreen-submenu {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 3rem;
    border-radius: 12px;
    
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
}

.fullscreen-dropdown.active .fullscreen-submenu {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    padding: 1rem 2rem;
}

.fullscreen-submenu li {
    margin-bottom: 0.8rem;
}

.fullscreen-submenu-link {
    display: block;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
[data-theme="dark"] .fullscreen-submenu-link {
    color: rgb(255 255 255 / 70%);
}
.fullscreen-submenu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 102, 0.05), transparent);
    
}

.fullscreen-submenu-link:hover::before {
    left: 100%;
}

.fullscreen-submenu-link:hover {
    color: var(--var-pink);
    background: rgba(255, 51, 102, 0.05);
    transform: translateX(10px);
}
.fullscreen-sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.3s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar-section {
    border-radius: 16px;
    padding: 2rem;
    padding-left: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.sidebar-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 102, 0.02), transparent);
    
}

.sidebar-title {
    font-size: 1.2rem;
    color: var(--var-black);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--var-pink);
    border-radius: 1px;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    margin-bottom: 0.8rem;
}

.sidebar-link {
    display: block;
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: relative;
}
[data-theme="dark"] .sidebar-link {
    color: rgb(255 255 255 / 70%);
}

.sidebar-link::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    
    color: var(--var-pink);
}

.sidebar-link:hover {
    color: var(--var-pink);
    transform: translateX(15px);
}

.sidebar-link:hover::before {
    opacity: 1;
}


.sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: var(--var-black)000;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
}

.contact-value:hover {
    color: var(--var-pink);
}
.fullscreen-footer {
    padding: 2rem 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.fullscreen-social {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.social-item {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    
    position: relative;
    overflow: hidden;
}

.social-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 51, 102, 0.1), transparent);
    
}

.social-item:hover::before {
    left: 100%;
}

.social-item:hover {
    color: var(--var-white);
    background: var(--var-pink);
    border-color: var(--var-pink);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.3);
}

.fullscreen-copyright {
    color: rgba(0, 0, 0, 0.5);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
}

.fullscreen-copyright p {
    margin: 0;
}
.menu-content {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 0 auto;
}
.menu-nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.menu-main {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-main li {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.menu-main li:nth-child(1) { animation-delay: 0.1s; }
.menu-main li:nth-child(2) { animation-delay: 0.2s; }
.menu-main li:nth-child(3) { animation-delay: 0.3s; }
.menu-main li:nth-child(4) { animation-delay: 0.4s; }
.menu-main li:nth-child(5) { animation-delay: 0.5s; }
.menu-main li:nth-child(6) { animation-delay: 0.6s; }
.esc-button {
    position: absolute;
    z-index: 9999;
    top: 50px;
    right: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.circle {
    width: 40px;
    height: 40px;
    border: 4px solid var(--var-gray-hover);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.cross {
    position: relative;
    width: 30px;
    height: 30px;
}

.cross::before,
.cross::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 4px;
    background-color: var(--var-gray-hover);
    transform-origin: center;
}

.cross::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.cross::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.circle:hover {
    border: 4px solid var(--var-pink);
}
.circle:hover .cross::before,
.circle:hover .cross::after {
    background-color: var(--var-pink);
}
.changed {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}
[data-theme="dark"] .changed {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}
@media(max-width: 1100px) {
    .menu-text {
        font-size: 1.5rem;
    }
    .esc-button {
        display: none;
    }
    .sidebar-section {
        padding-top: 0;
    }
}
