.travel-header {
    background: var(--bg);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1030;
    padding: 10px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.travel-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;

}

.travel-logo {
    height: 40px;
    transition: all 0.3s ease;
}

/* .travel-logo {
    height: 50px;
    margin-bottom: 5px;
    margin-top: 5px;
    transition: all 0.3s ease;
} */

.travel-nav ul {
    list-style: none;
    padding-left: 20px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.travel-nav > ul > li {
    position: relative;
}

.travel-nav > ul > li > a {
    display: block;
    padding: 8px 0;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.travel-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background:var(--theme1);
    transition: width 0.3s ease;
}

.travel-nav > ul > li > a:hover {
    color:var(--theme1);
}

.travel-nav > ul > li > a:hover::after {
    width: 100%;
}


.travel-nav .submenu {
    display: none; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    background: var(--bg); 
    min-width: 220px; 
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); 
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1002; 
}


.travel-nav  .has-submenu:hover > .submenu {
    display: block; 
}

.travel-nav .has-submenu{
    position: relative; 
}

.travel-nav .has-submenu > .submenu > .has-submenu > a::after{
    content: ' ';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;

    width: 7px; 
    height: 4px; 
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 7px solid var(--text-color-light);
}

.travel-nav .submenu .submenu {
    top: 0; 
    left: 100%; 
}

.travel-nav .submenu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

    .travel-nav .submenu li a:hover {
        background: var(--body);
        color: var(--text-color);
        padding-left: 25px;
    }

.travel-nav .submenu li a::before {
    /* content: '→';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease; */
}

.travel-nav .submenu li a:hover::before {
    opacity: 1;
}

/* Header Buttons Styling */
.header-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px !important;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    white-space: nowrap;
}

.header-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.header-btn:hover::before {
    left: 100%;
}

.header-btn-shop {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.header-btn-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    color: white;
}

.header-btn-account {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white !important;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.4);
}

.header-btn-account:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(240, 147, 251, 0.6);
    color: white;
}

.header-btn-signup {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.4);
}

.header-btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 172, 254, 0.6);
    color: white;
}

.header-btn-logout {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(250, 112, 154, 0.4);
}

.header-btn-logout:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(250, 112, 154, 0.6);
    color: white;
}

.header-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.header-btn:hover i {
    transform: scale(1.1);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-color-light);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

.overlay.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .travel-header-container{
        justify-content: space-between;
    }
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .travel-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 300px;
        height: 100vh;
        background: #ffffff;
        padding: 80px 30px 30px;
        overflow-y: auto;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    }

    .travel-nav.active {
        right: 0;
    }

    .travel-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .travel-nav > ul > li {
        width: 100%;
    }

    .travel-nav > ul > li > a {
        padding: 15px 20px;
        width: 100%;
        display: block;
        color: #333;
        background: #f8f9fa;
        margin-bottom: 5px;
        border-radius: 8px;
    }

    .travel-nav .submenu {
        position: static;
        box-shadow: none;
        background: #f8f9fa;
        margin: 0;
        padding: 0;
        display: none;
        width: 100%;
        transform: none;
    }
    
    .travel-nav .has-submenu.active .submenu {
        display: block;
    }
    
    .travel-nav .submenu li a {
        padding: 12px 20px 12px 40px;
        color: #666;
    }

    .travel-nav .submenu li a:hover {
        background: #fff5f5;
        color:var(--theme1);
    }

    /* Mobile Header Buttons */
    .header-buttons {
        gap: 8px;
    }

    .header-btn {
        padding: 8px 16px;
        font-size: 13px;
        gap: 6px;
    }

    .header-btn i {
        font-size: 14px;
    }
}