/* 全局重置 & 基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #000;
    background-color: #fff;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 按钮样式 */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-primary {
    background-color: #FFD100; /* 黄色按钮 */
    color: #000;
}

.btn-primary:hover {
    background-color: #e6bc00;
}

.btn-secondary {
    background-color: transparent;
    color: #000;
    border: 1px solid #000;
}

.btn-secondary:hover {
    background-color: #000;
    color: #fff;
}

.btn-tertiary {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-tertiary:hover {
    background-color: #fff;
    color: #000;
}

/* 标题样式 */
.section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #FFD100;
}

.section-title.light {
    color: #fff;
}

.section-title.light::after {
    background-color: #fff;
}

.section-desc {
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 600px;
}

.section-desc.light {
    color: #fff;
}

/* 头部样式 */
.header {
    background-color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 桌面端导航 */
.nav-desktop {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
}

.nav-item {
    margin-left: 24px;
}

.nav-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #FFD100;
}

.nav-link.lang {
    border: 1px solid #000;
    padding: 4px 8px;
}

/* 移动端汉堡菜单 */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* 移动端导航 */
.nav-mobile {
    display: none;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.nav-mobile.active {
    display: block;
}

.nav-mobile-list {
    list-style: none;
}

.nav-mobile-item {
    margin: 16px 0;
}

.nav-mobile-link {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
}









/* 页脚样式 */
.footer {
    background-color: #000;
    color: #fff;
    padding: 80px 0 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 40px;
}

.footer-col {
    padding: 0 10px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: #FFD100;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FFD100;
}

.contact-links li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-links i {
    margin-top: 4px;
    color: #FFD100;
}

.company-info {
    padding-right: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-desc {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #fff;
    background-color: #333;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-link:hover {
    background-color: #FFD100;
    color: #000;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #333;
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 12px;
    color: #ccc;
}

.legal-links {
    font-size: 12px;
}

.legal-links a {
    color: #ccc;
    text-decoration: none;
    margin: 0 5px;
}

.legal-links a:hover {
    color: #FFD100;
}

/* 响应式适配 */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
    
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-container {
        grid-template-columns: 2fr 1fr 1fr;
        row-gap: 40px;
    }
}

@media (max-width: 768px) {
    /* 导航适配 */
    .nav-desktop {
        display: none;
    }
    
    .hamburger {
        display: block;
    }
    
    /* 英雄区适配 */
    .hero {
        height: auto;
        padding: 40px 0;
    }
    
    .hero-container {
        flex-direction: column;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-numbering {
        display: none;
    }
    
    /* 布局适配 */
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}








/* ==========================
Dropdown Menu
========================== */


.nav-item.has-dropdown{
position:relative;
}



.dropdown-menu{

position:absolute;

top:100%;

left:0;

min-width:260px;

background:#fff;

padding:15px 0;

margin:0;

list-style:none;

box-shadow:0 10px 30px rgba(0,0,0,.12);

opacity:0;

transform:translateY(15px);

transition:.25s ease;

z-index:9999;

}



/* JS 添加 */

.dropdown-menu.show{

opacity:1;

transform:translateY(0);

}





.dropdown-menu li{

padding:0;

}



.dropdown-menu li a{

display:block;

padding:12px 25px;

font-size:14px;

color:#333;

text-decoration:none;

white-space:nowrap;

}



.dropdown-menu li a:hover{

background:#f5f7f9;

color:#005baa;

}




/* 手机端 */

@media(max-width:992px){


.dropdown-menu{

position:static;

box-shadow:none;

transform:none;

opacity:1;

}


}












.mobile-sub-menu{

display:none;

padding-left:20px;

}



.has-mobile-dropdown.open 
.mobile-sub-menu{

display:block;

}



.mobile-arrow{

float:right;

font-size:20px;

}



.quote-btn {
    background-color: #D4AF37;
    color: #000 !important;
    padding: 6px 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}
