/* 业务范围页面样式 - 基于logo颜色的简约霸气版 */

/* 删除冲突的页面标题样式，使用全局样式 */
/* .page-header 样式已删除，将使?style.css 中的通用样式 */

/* 形状元素 */
.header-shape {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    z-index: 2;
}

.shape-1 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    top: -50px;
    left: -50px;
}

.shape-2 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    bottom: -30px;
    right: 10%;
}

.shape-3 {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    top: 30%;
    right: 20%;
}

/* 服务页面样式 */
.services-page {
    padding: 80px 0;
}

.service-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* 使用全局标题样式 */
.service-intro h2 {
    /* 替换为全局统一标题样式 */
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-intro h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.service-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-color);
}

/* 服务卡片网格 - 1?列布局 */
.services-row {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 -15px 60px;
}

.service-column {
    width: 25%;
    padding: 0 15px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    overflow: hidden;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-bottom-color: #e89e5b; /* Logo橙棕?*/
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
    background-color: #00a99d; /* Logo青绿?*/
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 169, 157, 0.3); /* Logo青绿色阴?*/
}

.service-content {
    padding: 25px 20px;
}

/* 服务卡片内容部分标题使用全局标题风格 */
.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #00a99d; /* Logo青绿?*/
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.service-content h3::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: #e89e5b; /* Logo橙棕?*/
    bottom: 0;
    left: 0;
}

.service-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.service-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    border-bottom: 1px dashed rgba(0,0,0,0.05);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li i {
    color: #e89e5b; /* Logo橙棕?*/
    margin-right: 10px;
    font-size: 14px;
}

/* 服务流程 */
.service-process {
    padding: 60px 0;
    background-color: rgba(0, 169, 157, 0.05); /* Logo青绿色透明?*/
    margin-bottom: 80px;
    border-radius: 8px;
    text-align: center;
}

/* 使用全局标题样式 */
.service-process h3 {
    /* 替换为全局统一标题样式 */
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-process h3::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 30px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: rgba(0, 169, 157, 0.1); /* Logo青绿色透明?*/
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 15px;
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: #00a99d; /* Logo青绿?*/
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 169, 157, 0.2); /* Logo青绿色阴?*/
    transition: all 0.3s ease;
    border: 5px solid white;
}

.step:hover .step-number {
    background-color: #e89e5b; /* Logo橙棕?*/
    transform: translateY(-8px);
}

.step h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #00a99d; /* Logo青绿?*/
    font-weight: 600;
}

.step p {
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.5;
}

/* 服务案例 */
.service-cases {
    padding: 40px 0 80px;
}

/* 使用全局标题样式 */
.service-cases h3 {
    /* 替换为全局统一标题样式 */
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-cases h3::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-item {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-bottom: 3px solid transparent;
}

.case-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--block-shadow);
    border-bottom-color: #e89e5b; /* Logo橙棕?*/
}

.case-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-item:hover img {
    transform: scale(1.1);
}

.case-content {
    padding: 20px;
}

.case-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #00a99d; /* Logo青绿?*/
    font-weight: 600;
}

.case-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.case-link {
    display: inline-flex;
    align-items: center;
    color: #e89e5b; /* Logo橙棕?*/
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.case-link i {
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.case-link:hover {
    color: #00a99d; /* Logo青绿?*/
}

.case-link:hover i {
    transform: translateX(6px);
}

/* 客户咨询 */
.service-consultation {
    padding: 100px 0;
    background-image: linear-gradient(rgba(0, 50, 45, 0.85), rgba(0, 50, 45, 0.85)), url('../images/hero2.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    position: relative;
    margin-top: 50px;
}

.service-consultation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #e89e5b; /* Logo橙棕?*/
}

/* 客户咨询标题使用全局标题风格 */
.consultation-content h2 {
    /* 替换为全局统一标题样式 */
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.consultation-content h2::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* 联系我们按钮增强样式 */
.consultation-content .contact-btn {
    display: inline-block;
    background: linear-gradient(to right, #00a99d, #e89e5b);
    color: #fff;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 8px 20px rgba(232, 158, 91, 0.3);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}

.consultation-content .contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(232, 158, 91, 0.4);
}

.consultation-content .contact-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #e89e5b, #00a99d);
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.consultation-content .contact-btn:hover::after {
    opacity: 1;
}

/* 响应式调?*/
@media screen and (max-width: 1200px) {
    .services-row {
        flex-wrap: wrap;
    }
    
    .service-column {
        width: 50%;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 992px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps::before {
        /* 修复：不移除连接线，而是改为纵向 */
        width: 2px;
        height: 100%;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .step {
        width: 100%;
        max-width: 400px;
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .step-number {
        margin-bottom: 15px;
    }
    
    .cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .service-column {
        width: 100%;
    }
    
    /* 使用全局响应式标题样?*/
    
    .cases-grid {
        grid-template-columns: 1fr;
    }
    
    .service-process,
    .service-cases {
        padding: 40px 0;
    }
    
    .consultation-content .contact-btn {
        padding: 12px 30px;
        font-size: 15px;
    }
}

@media screen and (max-width: 576px) {
    .consultation-content .contact-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* 合作伙伴区块标题样式 */
.service-cases h3,
.service-process h3,
.about-partners h3 {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary-color);
    display: inline-block;
}

.service-cases h3::after,
.service-process h3::after,
.about-partners h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
/* ȷؾɵ񲼾 */
.services-grid {
    display: none !important;
}

/* ǿʾµв */
.services-row {
    display: flex !important;
    flex-wrap: wrap !important; /* СĻϻ */
    margin: 0 -15px 60px !important;
    position: relative !important;
    z-index: 1 !important;
}

.service-column {
    width: 25% !important;
    padding: 0 15px !important;
    position: relative !important;
    z-index: 1 !important;
    margin-bottom: 30px !important; /* ӵײ */
}

.service-card {
    background: #fff !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05) !important;
    overflow: hidden !important;
    height: 100% !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    flex-direction: column !important;
}

.service-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

.service-icon {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    background: rgba(52, 152, 219, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 25px auto 15px !important;
    transition: all 0.3s ease !important;
}

.service-card:hover .service-icon {
    background: #3498db !important;
}

.service-icon i {
    font-size: 24px !important;
    color: #3498db !important;
    transition: all 0.3s ease !important;
}

.service-card:hover .service-icon i {
    color: #fff !important;
}

.service-image {
    height: 200px !important;
    overflow: hidden !important; 
}

.service-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: all 0.5s ease !important;
}

.service-card:hover .service-image img {
    transform: scale(1.1) !important;
}

.service-content {
    padding: 20px !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.service-content h3 {
    font-size: 20px !important;
    color: #2c3e50 !important;
    margin-bottom: 15px !important;
}

.service-content p {
    margin-bottom: 20px !important;
    color: #7f8c8d !important;
    line-height: 1.6 !important;
}

.service-features {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    margin-top: auto !important; /* бƵײ */
}

.service-features li {
    margin-bottom: 10px !important;
    position: relative !important;
    padding-left: 25px !important;
    color: #34495e !important;
}

.service-features li i {
    position: absolute !important;
    left: 0 !important;
    top: 4px !important;
    color: #2ecc71 !important;
}

/* ʽĽ */
.service-process {
    display: block !important;
    clear: both !important;
    position: relative !important; 
    z-index: 10 !important; /* z-indexԪسͻ */
    background: rgba(255, 255, 255, 0.9) !important; /* ʹð͸ */
    padding: 60px 20px !important; /* ˮƽڱ߾ */
    margin: 40px 0 !important;
    border-radius: 15px !important;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05) !important;
    overflow: visible !important; /* ȷݿɼ */
}

.service-process h3 {
    display: block !important;
    width: 100% !important; /* ȷռ */
    margin: 0 auto 40px !important; /* ж */
    text-align: center !important;
    font-size: 28px !important;
    color: #2c3e50 !important;
    position: relative !important;
}

.service-process h3:after {
    content: '' !important;
    width: 50px !important;
    height: 3px !important;
    background: #3498db !important;
    position: absolute !important;
    bottom: -15px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    display: block !important; /* ȷʾ */
}

.process-steps {
    display: flex !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    position: relative !important;
    z-index: 11 !important; /* ȷ֮ */
    max-width: 1000px !important;
    margin: 0 auto !important;
}

/*  */
.process-steps:before {
    content: '' !important;
    position: absolute !important;
    top: 30px !important;
    left: 10% !important;
    width: 80% !important;
    height: 2px !important;
    background: #e0e0e0 !important;
    z-index: 0 !important;
    display: block !important; /* ȷʾ */
}

.step {
    width: 18% !important;
    text-align: center !important;
    position: relative !important;
    z-index: 2 !important; /* z-indexȷ֮ */
}

/* ͻѯʽŻ */
.service-consultation {
    background: linear-gradient(rgba(0, 50, 45, 0.85), rgba(0, 50, 45, 0.85)), url('../images/hero2.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    padding: 60px 0 !important;
    color: #fff !important;
    text-align: center !important;
    margin-top: 60px !important;
    position: relative !important;
}

.service-consultation::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 5px !important;
    background: var(--secondary-color) !important; /* ʹóɫ */
}

.consultation-content h2 {
    font-size: 32px !important;
    margin-bottom: 20px !important;
    position: relative !important;
    display: inline-block !important;
    padding-bottom: 15px !important;
}

.consultation-content h2::after {
    content: '' !important;
    position: absolute !important;
    width: 70px !important;
    height: 4px !important;
    background-color: var(--secondary-color) !important; /* ʹóɫ */
    bottom: 0 !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.consultation-content p {
    font-size: 18px !important;
    margin-bottom: 30px !important;
    opacity: 0.9 !important;
}

.contact-btn {
    display: inline-block !important;
    padding: 12px 30px !important;
    background: var(--secondary-color) !important; /* ʹóɫ */
    color: #fff !important;
    border-radius: 6px !important; /* ޸İťԲվһ */
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    box-shadow: 0 8px 20px rgba(232, 158, 91, 0.3) !important; /* ɫӰ */
}

.contact-btn:hover {
    background: var(--dark-secondary) !important; /* ʹɫ */
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 25px rgba(232, 158, 91, 0.4) !important;
}

/* дͶλ */
/* Ƴܵȫ */
/* * {
    overflow: visible !important;
} */

.services-page {
    overflow: visible !important;
    position: relative !important;
}

/* Ӧʽǿ */
@media (max-width: 1200px) {
    .service-column {
        width: 33.33% !important; /* Ļʾ */
    }
    
    .process-steps:before {
        width: 70% !important;
        left: 15% !important;
    }
}

@media (max-width: 991px) {
    .service-column {
        width: 50% !important; /* ƽʾ */
    }
    
    .step {
        width: 30% !important;
        margin-bottom: 40px !important;
    }
    
    .process-steps {
        justify-content: center !important;
    }
    
    .process-steps:before {
        display: none !important;
    }
    
    /* Ľ̲ƽϵʾ */
    .step:nth-child(4), .step:nth-child(5) {
        margin-top: 20px !important;
    }
}

@media (max-width: 768px) {
    .service-column {
        width: 100% !important; /* ֻϵʾ */
    }
    
    .step {
        width: 45% !important;
    }
    
    .consultation-content h2 {
        font-size: 28px !important;
    }
    
    .consultation-content p {
        font-size: 16px !important;
    }
    
    /* ޸Ƭֻ˵ĸ߶ */
    .service-card {
        height: auto !important;
    }
    
    .service-image {
        height: 180px !important;
    }
    
    /* Ľֻ̲ϵʾ */
    .service-process {
        padding: 40px 15px !important;
    }
}

@media (max-width: 576px) {
    .step {
        width: 100% !important;
        margin-bottom: 30px !important;
    }
    
    .service-image {
        height: 200px !important; /* СĻͼƬ߶Ա */
    }
    
    /* ĽСĻϵʾ */
    .service-content {
        padding: 15px !important;
    }
    
    .service-content h3 {
        font-size: 18px !important;
    }
    
    .service-content p {
        font-size: 14px !important;
    }
    
    /* ȷֻ̲ϵȷʾ */
    .step-number {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
    }
}
