/* Header Styles */
.site-header {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 15px 0;
    border-bottom: 2px solid #d4af37;
    position: relative;
    z-index: 999;
}

.site-header .logo {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0;
}

.site-header .logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Menu Navigation */
.menu-slide {
    position: relative;
    overflow: hidden;
    height: 50px;
    display: flex;
    align-items: center;
}

.menu-slide .left_trigger,
.menu-slide .right_trigger {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(212, 175, 55, 0.8);
    color: #000;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.menu-slide .left_trigger {
    left: 0;
}

.menu-slide .right_trigger {
    right: 0;
}

.menu-slide .left_trigger:hover,
.menu-slide .right_trigger:hover {
    background-color: #d4af37;
    transform: translateY(-50%) scale(1.1);
}

.top-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.top-menu::-webkit-scrollbar {
    display: none;
}

.top-menu li {
    flex-shrink: 0;
    position: relative;
}

.top-menu li::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, #d4af37, transparent);
}

.top-menu li:last-child::after {
    display: none;
}

.top-menu li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    gap: 5px;
    min-width: 100px;
    text-align: center;
}

.top-menu li a img {
    width: 30px;
    height: 30px;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.top-menu li a:hover {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 8px;
}

.top-menu li a:hover img {
    filter: brightness(0) invert(1) sepia(1) saturate(10000%) hue-rotate(10deg);
    transform: scale(1.1);
}

.top-menu li[data-active="true"] a {
    color: #d4af37;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 8px;
}

.top-menu li[data-active="true"] a img {
    filter: brightness(0) invert(1) sepia(1) saturate(10000%) hue-rotate(10deg);
}

/* Glyphicon Icons */
.glyphicon {
    display: inline-block;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
}

.glyphicon-chevron-left::before {
    content: '‹';
    font-size: 24px;
}

.glyphicon-chevron-right::before {
    content: '›';
    font-size: 24px;
}

/* Responsive */
@media (max-width: 992px) {
    .site-header .col-sm-3 {
        width: 30%;
    }
    
    .site-header .col-sm-9 {
        width: 70%;
    }
    
    .top-menu li a {
        min-width: 80px;
        padding: 8px 10px;
        font-size: 11px;
    }
    
    .top-menu li a img {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }
    
    .site-header .logo img {
        height: 40px;
    }
    
    .menu-slide {
        height: 40px;
    }
    
    .top-menu li a {
        min-width: 70px;
        padding: 6px 8px;
        font-size: 10px;
    }
    
    .top-menu li a img {
        width: 20px;
        height: 20px;
    }
    
    .menu-slide .left_trigger,
    .menu-slide .right_trigger {
        width: 25px;
        height: 25px;
        font-size: 18px;
    }
}
