header {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 5px 0px;
}

.logo-brand {
    width: 420px;
    flex-shrink: 0;
}


@media (max-width:1200px) {
    .logo-brand {
        width: 160px;
    }
}

.wrap-menu {
    width: 100%;
    display: flex;
    flex-direction: column;

}

.wrap-menu ul {
    display: flex;
    align-items: center;
}

.top-menu {
    justify-content: flex-end;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 15px;
    margin-right: 10px;
}

@media (max-width:1200px) {
    .top-menu {
        font-size: 13px;
        margin-bottom: 0;
    }
}

.bottom-menu {
    gap: 15px;
    margin-bottom: 30px;
}

@media (max-width:1200px) {
    .bottom-menu {
        gap: 12px;
        margin-bottom: 20px;
    }

}

.bottom-menu li {
    position: relative;
    cursor: pointer;
}

.bottom-menu li a {
    font-size: 20px;
    font-weight: lighter;
    line-height: 1;
}

@media (max-width:1200px) {
    .bottom-menu li a {
        font-size: 18px;
    }
}

.bottom-menu li i {
    color: var(--main-color);
}



.bottom-menu li:hover::after {
    transform: scaleX(100%);
}

.bottom-menu li svg {
    width: 12px;
    color: var(--main-color);
    margin-bottom: 3px;
}



header {
    background-image: url(../images/header-bg.png);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #f9f9f9;
}

header .container-web {
    width: 100%;
}

.top-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 0px;
}

.header-contact-links {
    display: flex;
    margin-left: 0;
    position: relative;
    z-index: 3;
    padding: 30px 0 15px;
    width: 100%;
    justify-content: flex-end;
}

.header-contact-links {
    display: flex;
    position: relative;
    padding-right: 40px;
}

.header-contact-links .header-icon {
    width: 50px;
    margin-right: 10px;
}

.header-contact-links img {
    width: 100%;
    height: auto;
}

.header-contact-links .header-contact {
    display: flex;
    position: relative;
    padding-right: 40px;
}

.header-contact-links .header-contact-info h5 {
    text-align: left;
    font-size: 17px;
    padding-bottom: 0;
    font-weight: 600;
    margin: 0;
}

.header-contact-links .header-contact-info span {
    color: #444444;
    margin: 0;
}

.header-contact-links .header-contact:not(:last-child):after {
    content: "/";
    color: #000;
    font-size: 40px;
    font-weight: 400;
    position: absolute;
    right: 11px;
    top: 50%;
    transform: translateY(-50%);

}

.wrap-menu .bottom-menu {
    display: flex;
    align-items: center;
    height: 64px;
    background: linear-gradient(135deg, #e67e00 0%, var(--main-color) 30%, var(--second-main-color) 70%, #ff9f1c 100%);
    color: #fff;
    border-radius: 14px;
    margin: 0;
    margin-bottom: -32px;
    z-index: 6;
    gap: 0;
    box-shadow: 0 6px 24px rgba(248, 139, 0, 0.35),
                0 2px 8px rgba(0, 0, 0, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.1) inset,
                0 1px 0 rgba(255, 255, 255, 0.25) inset;
    transition: box-shadow 0.4s ease, transform 0.3s ease;
    padding: 0 12px;
    position: relative;
    overflow: visible;
}

/* Animated shine sweep */
.wrap-menu .bottom-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.08) 30%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0.08) 70%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: navShine 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
    border-radius: inherit;
    clip-path: inset(0 round 14px);
}

@keyframes navShine {
    0% { left: -100%; }
    50% { left: 120%; }
    100% { left: 120%; }
}

/* Bottom accent line  */
.wrap-menu .bottom-menu::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    border-radius: 3px;
}

.wrap-menu .bottom-menu:hover {
    box-shadow: 0 10px 36px rgba(248, 139, 0, 0.45),
                0 4px 12px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(255, 255, 255, 0.15) inset,
                0 1px 0 rgba(255, 255, 255, 0.3) inset;
    transform: translateY(-1px);
}

/* Nav items */
.bottom-menu .item-bottom-menu {
    position: relative;
    z-index: 2;
}

.bottom-menu .item-bottom-menu a {
    color: #fff;
    padding: 20px 22px;
    position: relative;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.bottom-menu .item-bottom-menu a:hover {
    color: #fff;
    letter-spacing: 1.5px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* White glow underline */
.bottom-menu .item-bottom-menu > a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background: #fff;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s ease;
    border-radius: 3px;
}

.bottom-menu .item-bottom-menu > a:hover::after {
    width: 60%;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.6),
                0 0 4px rgba(255, 255, 255, 0.8);
}

/* Active state */
.bottom-menu .item-bottom-menu.active > a::after {
    width: 60%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* Dropdown chevron */
.bottom-menu li svg,
.bottom-menu li i {
    color: #fff;
    margin-left: 4px;
    transition: transform 0.35s ease;
    font-size: 10px;
    opacity: 0.8;
}

.bottom-menu .item-bottom-menu:hover svg,
.bottom-menu .item-bottom-menu:hover i {
    transform: rotate(180deg);
    opacity: 1;
}

/* ===== DROPDOWN MENU ===== */
.item-bottom-menu .sub-menu {
    transform: translateY(12px);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    left: 0px;
    min-width: 280px;
    padding: 12px 0;
    margin: 0;
    text-align: left;
    background: #fff;
    font-size: 15px;
    white-space: nowrap;
    list-style: none;
    z-index: 100;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12),
                0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 3px solid var(--main-color);
    overflow: hidden;
}

.bottom-menu .item-bottom-menu:hover > .sub-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.item-bottom-menu .sub-menu ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    margin: 0;
}

.item-bottom-menu .sub-menu ul li {
    position: relative;
}

.item-bottom-menu .sub-menu ul li a {
    color: #333;
    display: flex;
    align-items: center;
    padding: 12px 24px;
    font-weight: 500;
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
}

.item-bottom-menu .sub-menu ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(180deg, rgba(248,139,0,0.08) 0%, rgba(251,173,21,0.04) 100%);
    transition: width 0.3s ease;
    z-index: -1;
}

.item-bottom-menu .sub-menu ul li a:hover {
    color: var(--main-color);
    padding-left: 28px;
    border-left-color: var(--main-color);
}

.item-bottom-menu .sub-menu ul li a:hover::before {
    width: 100%;
}

/* Dropdown divider lines */
.item-bottom-menu .sub-menu ul li:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}