/* ====== 服务页面独享CSS部分 ====== */
        
/* 服务页面英雄区域 */
.service-hero {
    position: relative;
    padding: 180px 0 100px;
    background: linear-gradient(135deg, rgba(247, 250, 252, 0.95) 0%, rgba(237, 242, 247, 0.9) 100%), url('/template/giaxi/images/13.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.service-hero:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(247, 250, 252, 0.9) 100%);
    z-index: 1;
}

.service-hero-content {
    max-width: 700px;
    position: relative;
    z-index: 2;
}

.service-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.service-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--gray-color);
    max-width: 600px;
}

/* 服务类别导航 */
.service-nav {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid var(--light-gray);
    position: sticky;
    top: 104px;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
    gap: 15px;
}

.service-nav-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(43, 108, 176, 0.08);
    border-radius: 8px;
    color: var(--dark-color);
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(43, 108, 176, 0.1);
}

.service-nav-item a:hover {
    background: rgba(43, 108, 176, 0.15);
    transform: translateY(-3px);
    color: var(--secondary-color);
}

.service-nav-item a.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(27, 85, 154, 0.2);
}

.service-nav-item i {
    font-size: 1.2rem;
}

/* 服务详情部分 */
.service-detail {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 60px;
    border: 1px solid var(--light-gray);
    overflow: hidden;
}

.service-detail-header {
    background: var(--gradient-primary);
    color: white;
    padding: 40px;
    position: relative;
}

.service-detail-header h2 {
    color: white;
    text-align: left;
    margin-bottom: 0;
}

.service-detail-header h2:after {
    display: none;
}

.service-icon-large {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3.5rem;
    opacity: 0.2;
}

.service-detail-content {
    padding: 50px;
}

/* 服务子类 */
.service-subcategory {
    margin-bottom: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--light-gray);
}

.service-subcategory:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-subcategory h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-subcategory h3 i {
    color: var(--accent-color);
    font-size: 1.8rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* 信息卡片 */
.info-card {
    background: rgba(43, 108, 176, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(43, 108, 176, 0.1);
}

.info-card h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.info-card h4 i {
    color: var(--accent-color);
}

/* 列表样式 */
.info-list {
    list-style: none;
}

.info-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.info-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 1.5rem;
    line-height: 1;
}

/* 价格和时间信息 */
.price-time-info {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.price-box, .time-box {
    flex: 1;
    min-width: 250px;
    background: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--box-shadow);
    border: 1px solid var(--light-gray);
    text-align: center;
}

.price-box {
    border-top: 5px solid var(--accent-color);
}

.time-box {
    border-top: 5px solid var(--secondary-color);
}

.price-label, .time-label {
    font-size: 1rem;
    color: var(--gray-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.price-value, .time-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.time-value {
    color: var(--secondary-color);
}

/* 浮动形状背景 */
.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-secondary);
    opacity: 0.05;
    z-index: -1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    right: -200px;
    animation: float-1 25s infinite ease-in-out;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: 10%;
    left: -150px;
    animation: float-2 30s infinite ease-in-out;
}

.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    animation: float-3 20s infinite ease-in-out;
}

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, 50px) rotate(120deg); }
    66% { transform: translate(-20px, 30px) rotate(240deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-40px, 30px) rotate(120deg); }
    66% { transform: translate(20px, -20px) rotate(240deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -30px) rotate(120deg); }
    66% { transform: translate(-30px, 20px) rotate(240deg); }
}

/* 联系我们CTA */
.contact-cta {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0;
    text-align: center;
    border-radius: var(--border-radius);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.contact-cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/template/giaxi/images/1.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.contact-cta-content {
    position: relative;
    z-index: 2;
}

.contact-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.contact-cta h2:after {
    background: white;
}

.contact-cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.2rem;
}

/* 服务页面响应式调整 */
@media (max-width: 1200px) {
    .service-hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .service-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .service-hero-content p {
        font-size: 1.2rem;
    }
    
    .service-nav {
        top: 60px;
    }
    
    .service-nav-list {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .service-detail-content {
        padding: 30px;
    }
    
    .service-icon-large {
        display: none;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 150px 0 80px;
    }
    
    .service-detail-header {
        padding: 30px;
    }
    
    .price-time-info {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .service-hero-content h1 {
        font-size: 2rem;
    }
    
    .service-hero-content p {
        font-size: 1.1rem;
    }
}