/* 服务页面独有样式 */
.services-hero {
    margin-top: 80px;
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(12, 20, 39, 0.9) 0%, rgba(26, 36, 61, 0.8) 100%), url('/template/jia/images/27.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.services-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textGlow 3s infinite alternate;
}

@keyframes textGlow {
    0% {
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    }
    100% {
        text-shadow: 2px 2px 20px rgba(201, 169, 110, 0.5);
    }
}

.services-hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* 服务分类标签页 */
.service-tabs {
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tab-btn {
    padding: 1rem 2rem;
    background: var(--secondary);
    color: var(--text);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--gold-gradient);
    color: var(--primary);
    border-color: var(--accent);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 服务详情卡片 */
.service-detail-card {
    background-color: var(--secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
    border: 1px solid rgba(201, 169, 110, 0.1);
    transition: var(--transition);
}

.service-detail-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 169, 110, 0.3);
}

.service-header {
    padding: 2.5rem 2.5rem 1.5rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: var(--accent);
    font-size: 2rem;
    box-shadow: var(--shadow);
    border: 2px solid rgba(201, 169, 110, 0.2);
    transition: var(--transition);
}

.service-detail-card:hover .service-icon {
    background: var(--gold-gradient);
    color: var(--primary);
    border-color: var(--accent);
    transform: scale(1.1);
}

.service-title {
    flex: 1;
}

.service-title h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.service-title p {
    color: var(--text-dark);
}

.service-content {
    padding: 2.5rem;
}

.service-section {
    margin-bottom: 2.5rem;
}

.service-section h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--accent);
    position: relative;
    padding-left: 1.5rem;
}

.service-section h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gold-gradient);
    border-radius: 50%;
}

.materials-list, .process-list {
    list-style: none;
}

.materials-list li, .process-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 2rem;
}

.materials-list li::before, .process-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent);
}

.process-list li::before {
    content: '\f0a4';
}

.time-info {
    background: rgba(201, 169, 110, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.time-info p {
    margin-bottom: 0.5rem;
}

.time-value {
    font-weight: 700;
    color: var(--accent);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .tab-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .services-hero p {
        font-size: 1.1rem;
    }
}