/**
 * 客户服务页样式
 * 与首页风格保持一致
 */

.services-page {
    padding: 50px 0;
}

.services-page .wrapper {
    max-width: 1200px;
}

.service-section {
    margin-bottom: 60px;
}

.service-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid #3498db;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-section h2 .icon {
    width: 30px;
    height: 30px;
}

/* 服务项目网格 */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-item {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-item .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.service-item .icon img {
    width: 100%;
    height: auto;
}

.service-item h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 12px;
}

.service-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* 服务流程 */
.process-steps {
    display: flex;
    justify-content: space-between;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.process-steps .step {
    flex: 1;
    text-align: center;
    position: relative;
}

.process-steps .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -20px;
    width: 40px;
    height: 2px;
    background: #3498db;
}

.process-steps .step-num {
    width: 50px;
    height: 50px;
    line-height: 50px;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50%;
    margin: 0 auto 15px;
}

.process-steps h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.process-steps p {
    font-size: 13px;
    color: #999;
}

/* 售后政策 */
.policy-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.policy-item {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.policy-item h4 {
    font-size: 17px;
    color: #333;
    margin-bottom: 10px;
}

.policy-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* 快速预约 */
.quick-book {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
}

.quick-book h2 {
    font-size: 28px;
    margin-bottom: 10px;
    border: none;
    padding: 0;
    color: #fff;
}

.quick-book > p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.book-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.book-buttons .btn-primary {
    display: inline-block;
    padding: 14px 40px;
    background: #fff;
    color: #3498db;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.book-buttons .btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.book-buttons .btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 30px;
    font-size: 16px;
    transition: all 0.3s;
}

.book-buttons .btn-phone:hover {
    background: #fff;
    color: #3498db;
}

/* 响应式 */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .process-steps .step {
        flex: 0 0 45%;
    }
    
    .process-steps .step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .policy-list {
        grid-template-columns: 1fr;
    }
    
    .book-buttons {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps .step {
        flex: 0 0 100%;
    }
    
    .quick-book {
        padding: 30px 20px;
    }
    
    .quick-book h2 {
        font-size: 22px;
    }
}
