/* 导航栏和页脚样式 */
.navbar-new {
    background: #000000;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;      
    border-bottom: 1px solid #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 滚动时导航栏效果 */
.navbar-new.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar-new.nav-hidden {
    transform: translateY(-100%);
}

.navbar-new .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.navbar-new-brand {
    padding: 15px 0;
}

.navbar-new-brand .logo-new {
    height: 50px;
    width: auto;
}

.navbar-new-menu {
    display: flex;
    gap: 0;
    align-items: center;
    height: 100%;
}

.nav-link-new {
    color: #fff;
    text-decoration: none;
    padding: 25px 25px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
    font-size: 17px;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    position: relative;
}

.nav-link-new:hover {
    color: #e60012;
}

.nav-link-new.active::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 25px;
    right: 25px;
    height: 2px;
    background: #fff;
}

.language-switcher-new {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: 20px;
    cursor: pointer;
}

.language-switcher-new .globe-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.language-switcher-new .globe-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.language-switcher-new a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.language-switcher-new a:hover {
    color: #e60012;
}

.footer-new {
    background: #000000;
}

.footer-main {
    padding: 40px 0;
}

.footer-content-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.footer-logo-img {
    height: 50px;
    filter: brightness(0) saturate(100%) invert(16%) sepia(92%) saturate(6234%) hue-rotate(355deg) brightness(91%) contrast(114%);
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-nav-link {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    white-space: nowrap;
}

.footer-nav-link:hover {
    color: #fff;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.footer-contact-info {
    text-align: right;
}

.footer-contact-label {
    color: #ccc;
    font-size: 14px;
    margin: 0 0 5px 0;
    white-space: nowrap;
}

.footer-contact-phone {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #fff;
    transition: color 0.3s;
}

.footer-social-link:hover {
    color: #e60012;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.footer-copyright {
    color: #666;
    font-size: 13px;
    text-align: center;
    margin: 0;
}

@media (max-width: 1024px) {
    .footer-nav {
        gap: 20px;
    }
    
    .footer-nav-link {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .navbar-new-menu {
        display: none;
    }
    
    .footer-content-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-left {
        width: 100%;
    }
    
    .footer-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        width: 100%;
    }
    
    .footer-right {
        align-items: flex-start;
        width: 100%;
    }
    
    .footer-contact-info {
        text-align: left;
    }
    
    .footer-contact-label {
        white-space: normal;
    }
}
