/* 服务页面公共样式 */

/* ==================== 基础容器样式 ==================== */
.service-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

/* ==================== Hero区域公共样式 ==================== */
.service-hero {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.service-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.service-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 150px 50px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-hero-left {
    /* 左侧内容区 */
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 30px;
}

.service-hero-left h1 {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.3;
}

.service-hero-left h1 span {
    display: block;
}

.service-hero-left p {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.9;
    margin-bottom: 40px;
}

.service-hero-features {
    display: flex;
    gap: 20px;
}

.service-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-feature-text {
    color: #fff;
    font-size: 15px;
}

.service-hero-right {
    position: relative;
}

/* ==================== 统计数据展示 ==================== */
.service-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
}

.service-stat-number {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.service-stat-label {
    font-size: 14px;
    margin-top: 10px;
}

/* ==================== 服务模块网格 ==================== */
.service-modules {
    padding: 100px 0;
}

.service-modules-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.service-modules-header {
    text-align: center;
    margin-bottom: 80px;
}

.service-modules-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-modules-header p {
    font-size: 16px;
}

.service-modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-module-card {
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-module-card:hover {
    transform: translateY(-10px);
}

.service-module-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
}

.service-module-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-module-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-module-features {
    list-style: none;
    padding: 0;
}

.service-module-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
}

.service-module-feature::before {
    content: '→';
}

.service-module-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
}

/* ==================== 案例展示 ==================== */
.service-cases {
    padding: 100px 0;
}

.service-cases-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.service-cases-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-cases-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-cases-header p {
    font-size: 16px;
}

.service-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-case-card {
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-case-card:hover {
    transform: translateY(-10px);
}

.service-case-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.service-case-content {
    padding: 30px;
}

.service-case-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-case-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-case-tags {
    display: flex;
    gap: 10px;
}

.service-case-tag {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
}

/* ==================== 联系区域 ==================== */
.service-contact {
    padding: 80px 0;
}

.service-contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.service-contact-box {
    border-radius: 24px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-contact-left h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-contact-left p {
    font-size: 16px;
}

.service-contact-btn {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-contact-btn:hover {
    transform: translateY(-3px);
}

/* ==================== 数据统计区域 ==================== */
.service-data-section {
    padding: 80px 0;
}

.service-data-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.service-data-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-data-card {
    text-align: center;
    padding: 30px;
    border-radius: 16px;
}

.service-data-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.service-data-label {
    font-size: 14px;
    margin-top: 15px;
}

/* ==================== 流程时间线 ==================== */
.service-process {
    padding: 100px 0;
}

.service-process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.service-process-header {
    text-align: center;
    margin-bottom: 80px;
}

.service-process-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-process-header p {
    font-size: 16px;
}

.service-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 40px 0;
}

.service-timeline-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.service-timeline-dot {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.service-timeline-content {
    border-radius: 16px;
    padding: 30px;
}

.service-timeline-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-timeline-content p {
    font-size: 14px;
    line-height: 1.6;
}

/* ==================== 动画效果 ==================== */
.service-card-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.service-card-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 1024px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-modules-grid,
    .service-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-data-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-timeline {
        flex-direction: column;
        gap: 40px;
    }
    
    .service-contact-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        height: 600px;
    }
    
    .service-hero-left h1 {
        font-size: 36px;
    }
    
    .service-container,
    .service-modules-container,
    .service-cases-container,
    .service-contact-container,
    .service-data-container,
    .service-process-container {
        padding: 0 20px;
    }
    
    .service-hero-content {
        padding: 120px 20px 80px;
    }
    
    .service-modules-grid,
    .service-cases-grid,
    .service-data-grid {
        grid-template-columns: 1fr;
    }
    
    .service-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .service-hero-features {
        flex-direction: column;
        gap: 15px;
    }
}