.customs-main-header {
    background: linear-gradient(135deg, #015c6c 0%, #003d82 100%) !important;
    padding: 1.2rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: customsSlideDown 0.8s ease-out;
}

.customs-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customs-logo-badge {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.customs-logo-badge:hover {
    transform: scale(1.1) rotate(5deg);
}

.customs-logo-icon {
    font-size: 1.8rem;
    color: var(--customs-primary);
}

.customs-logo-text {
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.3;
}

.customs-nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
}

.customs-nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.customs-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--customs-accent);
    transition: width 0.3s ease;
}

.customs-nav-link:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

.customs-nav-link:hover::before {
    width: 100%;
}

.customs-mobile-toggle {
    display: none;
    background: transparent;
    border: 2px solid white;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.customs-mobile-toggle:hover {
    background: white;
    color: var(--customs-primary);
}

/* Hide menu on mobile */
@media (max-width: 768px) {
    .customs-nav-menu {
        display: none;
        flex-direction: column;
        gap: 1rem;
        background: #003d82;
        padding: 1rem;
        border-radius: 10px;
        position: absolute;
        top: 80px;
        right: 20px;
        width: 200px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }

    .customs-nav-menu.show {
        display: flex;
    }

    .customs-mobile-toggle {
        display: block;
    }
}






