.navbar {
    position: relative;
    padding: 0.75rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1030;
}

.navbar.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
}

.navbar .navbar-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.navbar-brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none !important;
}
.navbar-brand img {
    /*filter: brightness(0) invert(1);*/
}
.navbar-brand span {
    flex: 0 0 auto;
    background: linear-gradient(45deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 700;
}
.navbar-brand:hover img {
    /*filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(175deg)*/
}

.navbar .navbar-toggler {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 0.5rem;
    background: transparent;
}
.navbar .navbar-toggler span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}
.navbar .navbar-toggler.active {
    transform: rotate(90deg);
    /*box-shadow: 0 0 0 0.2rem rgba(6, 182, 212, 0.25);*/
}

.navbar .navbar-collapse {
    display: none;
    flex-grow: 1;
    width: 100%;
    padding: 1rem;
    text-align: center;
}
.navbar .navbar-collapse.show {
    display: block;
}
.navbar .navbar-collapse a {
    color: var(--white);
}

.navbar .navbar-collapse ul {
    list-style: none;
    padding: 0;
}
.navbar .navbar-collapse ul li a {
    position: relative;
    display: block;
    padding: 0.5rem 1rem;
    margin: 0.5rem 0;
    border-radius: var(--border-radius);
    font-size: 0.95rem;
    font-weight: 500;
}

.navbar .navbar-collapse ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(6, 182, 212, 0.1));
    transition: width 0.3s ease;
    border-radius: 6px;
    z-index: -1;
}

.navbar .navbar-collapse ul li a:hover,
.navbar .navbar-collapse ul li.current-menu-item a {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--accent);
    text-decoration: none;
}

.navbar .navbar-collapse ul li.current-menu-item a {
    background-color: rgba(6, 182, 212, 0.1);
}

.navbar .navbar-collapse ul li.current-menu-item a::after{
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    left: 50%;
    bottom: 0;
    background-color: var(--accent);
    border-radius: 1px;
    transform: translateX(-50%);
}

.navbar .navbar-collapse ul li a:hover::before {
    width: 100%;
}

.menu-item-has-children .sub-menu {
    display: none;
}
.menu-item-has-children.show > .sub-menu {
    display: block;
}
.menu-item-has-children > a::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}


.navbar .navbar-collapse .navbar-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.navbar .navbar-collapse .navbar-contact-item {
    color: var(--accent);
}

.navbar .navbar-collapse .navbar-contact-item a:hover {
    color: var(--accent);
    text-decoration: none;
}

.navbar,
.navbar .navbar-brand img,
.navbar .navbar-collapse,
.menu-item-has-children .sub-menu {
    transition: all 0.3s ease;
}


/* gtranslate */
.gt_switcher {
    width: 60px !important;
}
.gt_switcher .gt_option {
    width: 58px !important;
}
.gt_switcher .gt_option,
.gt_switcher .gt_option a:hover,
.gt_switcher .gt_selected,
.gt_switcher .gt_selected a:hover {
    background: none !important;
}

.gt_switcher .gt_option,
.gt_switcher a {
    font-size: 0 !important;
    color: var(--white) !important;
    border: none !important;
}

.gt_switcher .gt_selected a {
    width: 48px !important;
}
.gt_switcher .gt_selected a::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 285 285'><path d='M282 76.5l-14.2-14.3a9 9 0 0 0-13.1 0L142.5 174.4 30.3 62.2a9 9 0 0 0-13.2 0L3 76.5a9 9 0 0 0 0 13.1l133 133a9 9 0 0 0 13.1 0l133-133a9 9 0 0 0 0-13z' style='fill:%23fff'/></svg>") !important;
}