/* 服务页面样式 */

/* 页面头部 */
.services-header {
    background: linear-gradient(to right, #00b09b, #96c93d);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

/* 服务类别 */
.service-categories {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
    color: #333;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00b09b;
    font-weight: bold;
}

.service-card .btn {
    display: inline-block;
    background-color: #00b09b;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.service-card .btn:hover {
    background-color: #008b7d;
}

/* 服务流程 */
.service-process {
    padding: 80px 0;
    background-color: #fff;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.process-item {
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.process-icon {
    width: 60px;
    height: 60px;
    background-color: #00b09b;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-item h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.process-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.process-arrow {
    width: 40px;
    height: 20px;
    background-image: url('../images/arrow-right.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* 服务套餐 */
.service-packages {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.packages-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.package-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    transition: transform 0.3s;
    position: relative;
}

.package-item:hover {
    transform: translateY(-10px);
}

.package-item.featured {
    transform: scale(1.05);
    border: 2px solid #00b09b;
}

.package-item.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #00b09b;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.package-header {
    background-color: #f5f5f5;
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.package-item.featured .package-header {
    background-color: #e6f7f4;
}

.package-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.package-price {
    margin-top: 15px;
    color: #333;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #00b09b;
}

.period {
    font-size: 1rem;
    color: #666;
}

.package-body {
    padding: 30px 20px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.package-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    color: #555;
}

.package-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00b09b;
    font-weight: bold;
}

.package-btn {
    display: block;
    width: 100%;
    background-color: #00b09b;
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.package-btn:hover {
    background-color: #008b7d;
}

/* 服务保障 */
.service-guarantee {
    padding: 80px 0;
    background-color: #fff;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.guarantee-item {
    text-align: center;
    padding: 30px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    transition: transform 0.3s;
}

.guarantee-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.guarantee-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.guarantee-item h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.guarantee-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 服务预约 */
.service-appointment {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/appointment-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.appointment-content {
    max-width: 800px;
    margin: 0 auto;
}

.appointment-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.appointment-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.appointment-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.appointment-buttons .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background-color: #fff;
    color: #333;
}

/* 响应式设计 */
@media (max-width: 991px) {
    .process-steps {
        flex-direction: column;
    }
    
    .process-item {
        margin-bottom: 30px;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
    
    .packages-container {
        flex-direction: column;
        align-items: center;
    }
    
    .package-item {
        max-width: 100%;
        width: 100%;
    }
    
    .package-item.featured {
        transform: none;
        order: -1;
    }
    
    .package-item.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .services-header {
        padding: 60px 0;
    }
    
    .services-header h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .guarantee-item {
        padding: 20px 15px;
    }
    
    .appointment-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .appointment-content h2 {
        font-size: 1.8rem;
    }
} 