header {
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;

        .logo {
            img {
                width: 149px;
            }
        }

        .nav {
            list-style: none;
            display: flex;
            gap: 30px;

            @media (max-width:900px) {
                display: none;
            }

            li {
                position: relative;

                a {
                    color: #fff;
                    text-decoration: none;
                    font-size: 15px;
                    padding: 10px 0;
                    display: block;
                }
            }

            .nav-item {
                display: flex;
                align-items: center;
                gap: 10px;

                .dropdown-toggle,
                .sub-toggle {
                    display: block;
                    color: #fff;
                }
            }

            /* 🔽 MAIN DROPDOWN */
            .dropdown {
                position: absolute;
                top: 120%;
                left: 0;

                background: rgba(20, 20, 20, 0.95);
                backdrop-filter: blur(10px);
                border-radius: 10px;
                padding: 10px 0;
                min-width: 180px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

                opacity: 0;
                visibility: hidden;
                transform: translateY(10px);
                transition: 0.3s ease;

                pointer-events: none;
            }

            /* 🔽 SUBMENU */
            .submenu {
                position: absolute;
                top: 0;
                left: 95%;
                margin-left: 5px;

                background: rgba(20, 20, 20, 0.95);
                backdrop-filter: blur(10px);
                border-radius: 10px;
                padding: 10px 0;
                min-width: 180px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);

                opacity: 0;
                visibility: hidden;
                transform: translateX(10px);
                transition: 0.3s ease;

                pointer-events: none;
            }

            /* Items */
            .dropdown li,
            .submenu li {
                a {
                    padding: 10px 0 10px 15px;
                    font-size: 14px;
                    color: #ccc;
                    transition: 0.3s;

                    &:hover {
                        background: #111;
                        color: #fff;
                    }
                }
            }

            /* 🖥️ HOVER ONLY */
            .has-dropdown:hover>.dropdown {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                top: 100%;
                pointer-events: auto;
            }

            .has-sub {
                position: relative;
            }

            .has-sub:hover>.submenu {
                opacity: 1;
                visibility: visible;
                transform: translateX(0);
                pointer-events: auto;
            }
        }

        .Actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;

            .Toggle {
                span {
                    display: block;
                    width: 35px;
                    height: 2px;
                    background: var(--white-color);
                    margin: 7px 0;
                    border-radius: 8px;
                }

                span:first-child {
                    width: 25px;
                    margin-left: auto;
                }
            }
        }
    }
}

/* MENU TOGGLE NEW */
.MenuMore {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: 0.5s ease;
    overflow-y: scroll;
    z-index: 99;

    @media (max-width: 768px) {
        align-items: start;
        padding-top: 60px;
    }

    &.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    &::after {
        content: "";
        background: var(--bg-color);
        width: 40%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        z-index: -1;
    }

    @media (max-width: 768px) {
        &::after {
            display: none;
        }
    }

    .close-btn {
        position: absolute;
        top: 30px;
        right: 150px;
        width: 40px;
        height: 40px;
        font-size: 17px;
        color: #fff;
        border: 1px solid var(--white-color);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    @media (max-width: 768px) {
        .close-btn {
            right: 20px;
            top: 20px;
        }
    }

    .MenuWrap {
        display: flex;
        gap: 24px;
        width: 80%;
        align-items: center;

        @media (max-width: 768px) {
            align-items: start;
        }
    }

    @media (max-width: 768px) {
        .MenuWrap {
            flex-direction: column;
            width: 90%;
        }
    }

    /* LEFT */
    .Left {
        width: 70%;
    }

    @media (max-width: 768px) {
        .Left {
            width: 100%;
        }
    }

    .nav {
        li {
            margin: 20px 0;

            a {
                font-size: 40px;
                font-weight: 600;
                color: var(--white-color);
                text-decoration: none;
                opacity: 0.7;
                transition: 0.3s;

                &:hover {
                    opacity: 1;
                }
            }
        }
    }

    @media (max-width: 768px) {
        .nav li a {
            font-size: 36px;
        }
    }

    .nav-item {
        display: flex;
        align-items: center;
        gap: 15px;

        .dropdown-toggle {
            font-size: 35px;
            cursor: pointer;
            opacity: 0.7;
            color: var(--white-color);
        }
    }

    /* DROPDOWN */
    .dropdown {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;

        li a {
            font-size: 25px;
            color: #aaa;
            padding-left: 15px;
        }
    }

    .dropdown.active {
        max-height: 500px;
    }

    @media (max-width: 768px) {
        .dropdown li a {
            font-size: 29px;
        }
    }

    /* RIGHT */
    .Right {
        width: 30%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #fff;
    }

    @media (max-width: 768px) {
        .Right {
            width: 100%;
            margin-top: 30px;
            align-items: start;
            text-align: left;
        }
    }

    .Logo img {
        width: 150px;
    }

    @media (max-width: 768px) {
        .Logo img {
            width: 100px;
        }
    }

    .SocilaMeida {
        margin: 20px 0;
        display: flex;
        gap: 15px;

        a {
            width: 38px;
            height: 38px;
            border: 1px solid #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #aaa;
            transition: 0.3s;

            &:hover {
                color: #fff;
                border-color: #fff;
                transform: translateY(-3px);
            }
        }
    }

    .ContactInfo {

        p,
        a {
            display: block;
            margin: 5px 0;
            color: #aaa;
            font-size: 20px;
        }

        a:last-child {
            margin-top: 10px;
            border-bottom: 1px solid #fff;
            padding-bottom: 10px;
        }
    }

    @media (max-width: 768px) {
        padding-bottom: 40px;
        text-align: left;

        .ContactInfo p,
        .ContactInfo a {
            font-size: 20px;
        }
    }
}