/* Services 页面样式 */

/* 量身定制 AI 应用区域 */
.custom-ai-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* 特性列表样式 */
.features-list {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* 流程卡片样式 */
.process-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.process-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.process-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* 案例卡片样式 */
.case-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.case-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.case-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a2e;
}

.case-metrics {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.metric-item {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1;
}

.metric-label {
    font-size: 0.875rem;
    color: #6c757d;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .case-metrics {
        flex-direction: column;
        gap: 1rem;
    }
    
    .metric-item {
        text-align: left;
    }
}

/* 服务卡片链接样式 */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-link:hover {
    text-decoration: none;
    color: inherit;
}

/* 图片样式 */
.custom-ai-section img {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* 按钮样式增强 */
.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* 间距工具类 */
.py-12 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.mt-12 {
    margin-top: 5rem;
}

.mb-10 {
    margin-bottom: 4rem;
}

.mb-6 {
    margin-bottom: 2.5rem;
}

/* 背景渐变 */
.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}