/* 现场服务 - 专业可靠风格 */

.page-header {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.page-header h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #e94560;
    margin: 20px auto 0;
    border-radius: 2px;
}

.breadcrumb {
    font-size: 14px;
    opacity: 0.7;
}

.breadcrumb a {
    color: #fff;
}

.breadcrumb a:hover {
    color: #e94560;
}

/* 服务承诺 */
.service-commitment {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.commitment-item {
    text-align: center;
    padding: 30px;
}

.commitment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #e94560 0%, #d63d56 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.commitment-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.commitment-item p {
    font-size: 14px;
    color: #666;
}

/* 服务区域 */
.service-areas {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 16px;
    color: #666;
}

.areas-map {
    background: #fff;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.area-item {
    text-align: center;
    padding: 25px 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.area-item:hover {
    background: #fff;
    border-color: #e94560;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.area-item i {
    font-size: 28px;
    color: #e94560;
    margin-bottom: 10px;
}

.area-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
}

.area-item span {
    font-size: 12px;
    color: #999;
}

/* 服务类型 */
.service-types {
    padding: 100px 0;
    background: #fff;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.type-card {
    padding: 40px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #e94560, #d63d56);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.type-card:hover::before {
    transform: scaleX(1);
}

.type-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.type-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e94560 0%, #d63d56 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin-bottom: 25px;
}

.type-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.type-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.type-features {
    list-style: none;
}

.type-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.type-features li i {
    color: #e94560;
    font-size: 12px;
}

/* 工程师团队 */
.engineer-team {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.engineer-team .section-header h2 {
    color: #fff;
}

.engineer-team .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #e94560 0%, #d63d56 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
}

.team-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-card span {
    font-size: 14px;
    color: #e94560;
}

.team-card p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
}

/* 快速预约 */
.quick-booking {
    padding: 100px 0;
    background: #f8f9fa;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.booking-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.booking-info>p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.booking-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.booking-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e94560 0%, #d63d56 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

.booking-step div h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.booking-step div p {
    font-size: 14px;
    color: #666;
}

.booking-form {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.booking-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e94560;
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #e94560 0%, #d63d56 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

/* 响应式 */
@media (max-width: 1024px) {
    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .types-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 30px;
    }
}