.site-header {
    position: static;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    padding: 10px 0;
    transition: all 0.3s ease;
    background: #fff;
    border-bottom: 1px solid #e0e0e0;
}

/* Home Page - Absolute with gradient */
.site-header.header-absolute {
    position: absolute;
    top: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.5) 0%,
        transparent 100%
    );
    border-bottom: 0px solid #f0f0f0;
}

/* Logo visibility */
.site-header .logo-light {
    display: none;
}

.site-header .logo-dark {
    display: block;
}

.site-header.header-absolute .logo-light {
    display: block;
}

.site-header.header-absolute .logo-dark {
    display: none;
}

/* Static header (other pages) - Dark text */
.site-header .header-link,
.site-header .icon-link {
    color: #1a1a1a;
}

.site-header .toggle-bar {
    background: #1a1a1a;
}

.site-header .header-link:hover,
.site-header .icon-link:hover {
    color: #666;
}

.site-header .menu-toggle:hover .toggle-bar {
    background: #666;
}

/* Absolute header (home page) - White text */
.site-header.header-absolute .header-link,
.site-header.header-absolute .icon-link {
    color: #fff;
}

.site-header.header-absolute .toggle-bar {
    background: #fff;
}

.site-header.header-absolute .header-link:hover,
.site-header.header-absolute .icon-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

.site-header.header-absolute .menu-toggle:hover .toggle-bar {
    background: rgba(255, 255, 255, 0.7);
}

/* Sticky behavior on scroll */
.site-header.is-sticky {
    position: fixed;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
}

/* Reset colors and logo when sticky (even on home page) */
.site-header.is-sticky .header-link,
.site-header.is-sticky .icon-link {
    color: #1a1a1a;
}

.site-header.is-sticky .toggle-bar {
    background: #1a1a1a;
}

.site-header.is-sticky .header-link:hover,
.site-header.is-sticky .icon-link:hover {
    color: #666;
}

.site-header.is-sticky .menu-toggle:hover .toggle-bar {
    background: #666;
}

.site-header.is-sticky .logo-light {
    display: none;
}

.site-header.is-sticky .logo-dark {
    display: block;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

/* Left Section */
.header-left {
    flex: 1;
}

.header-link {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

/* Center Section - Logo */
.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-logo img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

.site-header.is-sticky .header-logo img {
    height: 65px;
}

.header-logo:hover img {
    transform: scale(1.02);
}

/* Right Section */
.header-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-icons {
    display: flex;
    align-items: center;
}

.icon-link {
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.icon-link:hover {
    transform: translateY(-2px);
}

/* Menu Toggle Button */
.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.toggle-bar {
    width: 24px;
    height: 2px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Toggle Animation when menu is open */
.menu-toggle.is-active .toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .toggle-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   MOBILE STYLES
   ============================================ */
@media (max-width: 991.98px) {
    .header-left {
        display: none;
    }

    .header-center {
        justify-content: flex-start;
    }

    .header-right {
        flex: 1;
    }
}

/* SMALL DEVICES */
@media (max-width: 425px) {
    .site-header {
        padding: 7px 0px !important;
    }

    .header-inner {
        padding: 0px 0px !important;
    }
}

/* ============================================
   OVERLAY
   ============================================ */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(230, 230, 230, 0.6);
    opacity: 0;
    visibility: hidden;
    z-index: 1041;
    transition: all 0.4s ease;
}

.menu-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   SLIDE MENU
   ============================================ */
.slide-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #fff;
    z-index: 1042;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.slide-menu.is-open {
    transform: translateX(0);
}

/* Menu Header */
.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid #f0f0f0;
}

.menu-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
}

.menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #1a1a1a;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.menu-close:hover {
    background: #f5f5f5;
}

/* Menu Content */
.menu-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

/* Menu List */
.menu-list {
    list-style: none;
    padding: 20px 0;
    margin: 0;
    height: 100%;
    overflow-y: auto;
}

.menu-list > li > a,
.menu-list > li > .menu-item-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 25px;
    font-size: 16px;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.menu-list > li > a:hover,
.menu-list > li > .menu-item-toggle:hover {
    background: #f8f8f8;
    padding-left: 30px;
}

.menu-item-toggle i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* Submenu */
.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.submenu.is-active {
    transform: translateX(0);
}

.submenu-back a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 25px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.submenu-back a:hover {
    color: #1a1a1a;
    background: #f8f8f8;
}

.submenu-title {
    padding: 20px 25px 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
}

.submenu-title .text-sm {
    font-size: 7px;
    color: #777;
}

.submenu li:not(.submenu-back):not(.submenu-title) a {
    display: block;
    padding: 15px 25px;
    font-size: 15px;
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
}

.submenu li:not(.submenu-back):not(.submenu-title) a:hover {
    background: #f8f8f8;
    padding-left: 30px;
}

/* Menu Footer (Mobile Icons) */
.menu-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 25px;
    border-top: 1px solid #f0f0f0;
}

.footer-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #1a1a1a;
    background: #f5f5f5;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-icon:hover {
    background: #1a1a1a;
    color: #fff;
}

/* Body Lock when menu is open */
body.menu-open {
    overflow: hidden;
}
