/* 咨询服务页面样式 */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-text: #64748b;
    --background-color: #f9f9f9;
    --card-bg: #fff;
    --border-color: #e0e0e0;
}

/* 英雄区域（Banner）样式 */
.consulting-hero {
    background: var(--primary-color);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: left;
}

/* 移除弧形底部设计 */

/* 新的背景装饰 */
.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    opacity: 0.7;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--secondary-color);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.2;
    z-index: 0;
}

.consulting-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.service-icon {
    font-size: 120px;
    color: white;
    opacity: 0.9;
    margin-bottom: 20px;
}

.service-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-subtitle {
    font-size: 20px;
    max-width: 600px;
    margin-bottom: 32px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.primary-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    display: inline-block;
}

.primary-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.secondary-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    display: inline-block;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* 服务特点 */
.service-features {
    padding: 100px 0;
    background-color: var(--background-color);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 36px;
    color: var(--text-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.section-description {
    color: var(--light-text);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.feature-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary-color), var(--accent-color));
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 24px;
    display: inline-block;
}

.feature-title {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.feature-description {
    color: var(--light-text);
    line-height: 1.7;
    font-size: 16px;
}

/* 咨询流程 */
.consulting-process {
    padding: 100px 0;
    background-color: white;
}

.process-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.process-steps {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* 垂直时间线 */
.timeline {
    position: relative;
    padding: 0 0 0 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 18px;
    width: 2px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--accent-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--secondary-color);
    z-index: 1;
}

.timeline-content {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(10px);
}

.timeline-title {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.timeline-description {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 15px;
}

/* 专家团队 */
.expert-team {
    padding: 100px 0;
    background-color: var(--background-color);
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.expert-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: none;
}

.expert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.expert-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 56px;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.3);
}

.expert-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-name {
    font-size: 22px;
    color: var(--text-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.expert-title {
    font-size: 16px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 500;
}

.expert-bio {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 15px;
}

/* 客户反馈 */
.client-testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-align: center;
}

.client-testimonials .section-title {
    color: white;
}

.client-testimonials .section-description {
    color: rgba(255, 255, 255, 0.9);
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial-quote {
    font-size: 26px;
    font-style: italic;
    color: white;
    margin-bottom: 40px;
    position: relative;
    padding: 0 60px;
    line-height: 1.8;
    font-weight: 300;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    font-size: 80px;
    position: absolute;
    color: rgba(255, 255, 255, 0.2);
    font-family: Georgia, serif;
}

.testimonial-quote::before {
    top: -30px;
    left: 20px;
}

.testimonial-quote::after {
    bottom: -60px;
    right: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
    font-size: 20px;
}

.testimonial-company {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

/* 服务价值 */
.service-value {
    padding: 100px 0;
    background-color: white;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.value-card {
    background: var(--card-bg);
    border-radius: 8px;
    padding: 35px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    position: relative;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.value-title {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.value-description {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 15px;
}

/* 联系表单 */
.contact-section {
    padding: 100px 0;
    background-color: var(--background-color);
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    margin-bottom: 25px;
}

.form-group {
    flex: 0 0 calc(50% - 30px);
    margin: 0 15px;
    margin-bottom: 25px;
}

.form-group.full-width {
    flex: 0 0 calc(100% - 30px);
}

.form-label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-color);
    font-weight: 600;
    font-size: 15px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: white;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .consulting-hero {
        padding: 80px 0 60px;
        text-align: center;
    }
    
    .service-title {
        font-size: 36px;
    }
    
    .service-subtitle {
        font-size: 18px;
        margin-bottom: 24px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .primary-btn,
    .secondary-btn {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .section-title {
        font-size: 30px;
    }
    
    .section-description {
        font-size: 16px;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline::before {
        left: 12px;
    }
    
    .timeline-dot {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .timeline-item {
        padding-left: 30px;
        margin-bottom: 40px;
    }
    
    .testimonial-quote {
        font-size: 22px;
        padding: 0 40px;
    }
    
    .form-group {
        flex: 0 0 calc(100% - 30px);
    }
    
    .contact-form {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .service-title {
        font-size: 28px;
    }
    
    .service-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .testimonial-quote {
        font-size: 20px;
        padding: 0 20px;
    }
    
    .expert-avatar {
        width: 120px;
        height: 120px;
        font-size: 48px;
    }
}