    /*Header/Navigation*/
    #menu {
        background: rgba(255, 255, 255, 1);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--gray);
        transition: all 0.3s ease;
        position: relative;
        z-index: 10000;
    }

    body.fixed { margin-top:71px; }
    #menu.sticky,
    body.fixed #menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    .nav-container {
        max-width: 1230px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 70px;
    }

    #menu .logo {
        transition: all 0.3s ease;
        flex: 0 0 142px;
    }
    #menu .logo a {
        display:flex !important;
        opacity:1;
    }
    #menu .logo img { 
    	max-height: 54px; 
    }

    #menu .logo:hover {
        color: var(--blue);
    }

    .nav-menu, .social-icons {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
    }
    .social-icons {
    	gap: 20px;
    }

	#menu .social-div {
        flex: 0 0 142px;
        justify-content: flex-end;
		border-left:1px solid rgba(255, 255, 255, 0.2);
		border-right:1px solid rgba(255, 255, 255, 0.2);
		height:60px;
		display: flex;
		align-items: center;
	}

	#menu .social-icons {
		display: flex;
		gap: 16px;
		list-style: none;
		margin: 0;
		padding: 0;

	}

	#menu .social-icons li a {
		color: var(--navy);
		font-size: 20px;
		transition: all 0.2s;
	}

	#menu .social-icons li a:hover {
		color: var(--pink);
	}

    .nav-item {
        position: relative;
        margin-left: 2rem;
    }

    .nav-link {
        color: #333;
        text-decoration: none;
        font-weight: 400;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.7px;
        padding: 0.5rem 0;
        transition: all 0.3s ease;
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--blue);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after {
        width: 100%;
    }
    .nav-link.active {
        color: var(--pink);
        font-weight: 400;
    }
    .nav-link:hover {
        color: var(--blue);
    }

    /* Sous-menu */
    .dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        min-width: 200px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        padding: 1rem 0;
        margin-top: 10px;
    }

    .nav-item:hover .dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown a {
        display: block;
        padding: 0.7rem 1.5rem;
        color: #333;
        text-decoration: none;
        transition: all 0.3s ease;
        text-transform: none;
        letter-spacing: normal;
        font-size: 0.9rem;
    }

    .dropdown a:hover {
        background: #f8f9fa;
        color: var(--blue);
    }

    /* Hamburger Menu */
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        width: 30px;
        height: 30px;
        justify-content: space-between;
        align-items: center;
    }

    .hamburger span {
        width: 100%;
        height: 3px;
        background: #333;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    /* Menu Mobile */
    .mobile-menu {
        position: fixed;
        top: 61px;
        left: 0;
        width: 100%;
        height: calc(100vh - 61px);
        background: linear-gradient(135deg, var(--blue) 0%, #764ba2 100%);
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 9990;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .mobile-menu.active {
        display: flex;
        transform: translateY(0);
    }

    .mobile-logo {
        position: absolute;
        top: 60px;
        font-size: 2rem;
        font-weight: bold;
        color: white;
        text-decoration: none;
    }

    .mobile-nav {
        list-style: none;
        text-align: center;
        max-height: 70vh;
        overflow-y: auto;
        margin:0;
        padding:0;
    }

    .mobile-nav-item {
        margin: 1rem 0;
    }

    .mobile-nav-link {
        color: white;
        text-decoration: none;
        font-size: 1.6rem;
        font-weight: var(--font-weight-extra-bold);
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: all 0.3s ease;
        opacity: 0;
        transform: translateY(20px);
        display: block;
        padding: 0.5rem 1rem;
    }

    .mobile-menu.active .mobile-nav-link {
        opacity: 1;
        transform: translateY(0);
    }

    /* Sous-menus mobile */
    .mobile-dropdown {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        margin-bottom: 0.5rem;
    }

    .mobile-dropdown.active {
        max-height: 300px;
    }

    .mobile-dropdown a {
        font-size: 1.2rem;
        text-transform: none;
        letter-spacing: 0;
        padding: 0.3rem 1rem;
        margin: 0.2rem 0;
        display:block;
        color:#FFF;
        text-decoration: none;
        font-weight: 500;
    }

    .mobile-dropdown a:hover {
        opacity: 1;
        color: #ffeb3b;
    }
    .mobile-nav-link.has-dropdown.active::after {
        content: ' -' !important;
    }
    .mobile-nav-link.has-dropdown::after {
        content: ' +';
        font-size: 1.2rem;
        transition: transform 0.3s ease;
        position: relative;
	    top: -3px;
    }

    .mobile-nav-link.has-dropdown.active::after {
        transform: rotate(45deg);
    }

    .mobile-nav-item:nth-child(1) .mobile-nav-link { transition-delay: 0.1s; }
    .mobile-nav-item:nth-child(2) .mobile-nav-link { transition-delay: 0.2s; }
    .mobile-nav-item:nth-child(3) .mobile-nav-link { transition-delay: 0.3s; }
    .mobile-nav-item:nth-child(4) .mobile-nav-link { transition-delay: 0.4s; }

    .mobile-nav-link:hover, .mobile-nav-link.active {
        color: #ffeb3b;
        transform: scale(1.05);
    }


    /* Media Queries */
    @media (max-width: 1100px) {
	   .nav-item {
	        position: relative;
	        margin-left: 1rem;
	    }
	    #menu .social-div {
	    	flex: 0;
	    }
	}

    /* Media Queries */
    @media (max-width: 950px) {
	    body.fixed { margin-top:61px !important; }

        .nav-menu {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .nav-container {
            height: 60px;
        }

        .logo {
            font-size: 1.5rem;
        }
        #menu .social-div { flex: 0 0 62px; }
	    nav { flex: 0 0 calc(100% - 290px); }
    }

    @media (max-width: 480px) {
        .mobile-nav-link {
            font-size: 1.4rem;
        }

        .mobile-logo {
            font-size: 1.8rem;
            top: 40px;
        }
        
        .mobile-dropdown a {
            font-size: 1.1rem;
        }
    }