/**
 * 企业优势模块样式
 */

.advantages-section {
    background-color: var(--bg-primary);
}

.section-title {
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: var(--text-secondary);
}

.stats-row {
    background-color: var(--primary-color);
    padding: 5px 0;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 15px 30px var(--shadow-medium);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stats-item {
    text-align: center;
    color: white;
    flex: 1;
    min-width: 150px;
}

.stats-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

.stats-title {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.9;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.advantage-card {
    background-color: var(--bg-secondary);
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px var(--shadow-light);
    display: flex;
    flex-direction: column;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.advantage-icon i {
    font-size: 24px;
    color: white;
}

.advantage-content {
    flex: 1;
}

.advantage-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.advantage-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.advantage-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.advantage-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.advantage-link i {
    transition: transform 0.3s ease;
}

.advantage-link:hover i {
    transform: translateX(5px);
}

/* 查看我们的服务按钮样式 */
.btn.btn-primary.btn-lg {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.btn.btn-primary.btn-lg:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

/* 响应式设计 */
@media (max-width: 991px) {
    .advantages-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .stats-row {
        padding: 40px 0;
        margin-bottom: 60px;
    }
    
    .stats-number {
        font-size: 40px;
    }
    
    .stats-title {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .advantages-section {
        padding: 50px 0;
    }
    
    .stats-container {
        gap: 20px;
    }
    
    .stats-item {
        min-width: 120px;
    }
    
    .stats-number {
        font-size: 36px;
    }
    
    .stats-title {
        font-size: 15px;
    }
    
    .advantages-grid {
        gap: 20px;
    }
    
    .advantage-card {
        padding: 25px;
    }
    
    .advantage-icon {
        width: 50px;
        height: 50px;
    }
    
    .advantage-icon i {
        font-size: 20px;
    }
    
    .advantage-content h3 {
        font-size: 18px;
    }
    
    .advantage-content p {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .advantages-section {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .stats-row {
        padding: 30px 0;
        margin-bottom: 40px;
    }
    
    .stats-container {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-item {
        margin-bottom: 20px;
    }
    
    .stats-item:last-child {
        margin-bottom: 0;
    }
    
    .stats-number {
        font-size: 32px;
    }
    
    .advantage-card {
        padding: 20px;
    }
    
    .advantage-icon {
        width: 45px;
        height: 45px;
    }
    
    .advantage-icon i {
        font-size: 18px;
    }
    
    .advantage-content h3 {
        font-size: 17px;
    }
    
    .advantage-content p {
        font-size: 14px;
    }
}