/* Footer Styles */
.footer-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 0;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;

}

.footer {
    background-color: #333333;
    color: #FFFFFF;

}
.footer img {
    width: 60%;

}
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-top: 140px;
}

.footer-section {
    flex: 1;
    min-width: 280px;
}

.footer-left {
    flex: 0.9;
}

.footer-center {
    flex: 1;
}

.footer-right {
    flex: 1.1;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.company-intro p {
    font-size: 14px;
    line-height: 1.8;
    color: #CCCCCC;
    margin-bottom: 15px;
}

.footer-section h3 {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #D4AF37;
}

.contact-info {
    /* margin-top: 30px; */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-label {
    color: #D4AF37;
    font-weight: 500;
    min-width: 85px;
}

.contact-item span:last-child {
    color: #CCCCCC;
}

.timezone {
    font-size: 13px;
    color: #999999;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #444444;
}

.address-section,
.social-section {
    margin-bottom: 35px;
}

.address-en {
    font-size: 15px;
    color: #CCCCCC;
    margin-bottom: 8px;
    line-height: 1.6;
}

.address-cn {
    font-size: 14px;
    color: #999999;
    margin-bottom: 15px;
    line-height: 1.6;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #D4AF37;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.map-link:hover {
    color: #FFFFFF;
}

.map-link svg {
    width: 20px;
    height: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #444444;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

.social-icon.facebook:hover {
    background-color: #1877F2;
}

.social-icon.linkedin:hover {
    background-color: #0A66C2;
}

.social-icon.youtube:hover {
    background-color: #FF0000;
}

.social-icon.tiktok:hover {
    background-color: #000000;
}

.social-icon.tiktok:hover svg {
    filter: drop-shadow(0 0 3px #00f2ea);
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.instagram:hover svg {
    filter: drop-shadow(0 0 3px #e6683c);
}

.footer-bottom {
    margin-top: 50px;
    padding: 25px 40px;
    border-top: 1px solid #444444;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: #999999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: #D4AF37;
}

.copyright {
    font-size: 14px;
    color: #999999;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-bottom {
        padding: 25px 30px;
    }
}

@media screen and (max-width: 768px) {
    .footer {
    }
    
    .footer-container {
        flex-direction: column;
        padding: 40px 20px;
        gap: 35px;
    }
    
    .footer-section {
        min-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .footer-bottom-links {
        gap: 20px;
    }
}

@media screen and (max-width: 480px) {
    .footer-container {
        padding: 40px 15px;
    }
    
    .footer-bottom {
        padding: 20px 15px;
    }
}
