/* 来访者服务页面样式 */
.client-service-page {
    min-height: 80vh;
    background: linear-gradient(135deg, var(--secondary-green-bg) 0%, var(--primary-blue-bg) 100%);
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.client-service-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* 头部区域 */
.hero-section,
.service-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.hero-section h1,
.service-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-green-dark);
    margin-bottom: 1rem;
}

.hero-section .subtitle,
.service-header .subtitle {
    font-size: 1.3rem;
    color: var(--secondary-green);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 服务卡片区域 */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    border-color: var(--secondary-green);
}

.primary-card {
    background: var(--gradient-secondary);
    color: white;
}

.primary-card::before {
    background: linear-gradient(90deg, #ffffff, #f0f9ff);
}

.primary-card:hover {
    border-color: #065f46;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.service-card p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
    opacity: 0.9;
}

.primary-card p {
    opacity: 0.95;
}

.card-action {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.primary-card .card-action {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.service-card:hover .card-action {
    background: #059669;
    color: white;
}

.primary-card:hover .card-action {
    background: rgba(255, 255, 255, 0.3);
}

.card-arrow {
    font-size: 1.5rem;
    color: var(--secondary-green);
    text-align: center;
    font-weight: bold;
    transition: all 0.3s ease;
}

.service-card:hover .card-arrow {
    transform: translateX(5px);
    color: var(--secondary-green-dark);
}

.primary-card .card-arrow {
    color: rgba(255, 255, 255, 0.9);
}

.primary-card:hover .card-arrow {
    color: white;
}

/* 特色功能区域 */
.service-features,
.features-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.features-section {
    text-align: center;
    margin: 3rem auto;
    max-width: 1000px;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.features-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-green-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item,
.feature {
    text-align: center;
    padding: 1.5rem;
}

.feature {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    background: white;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h4,
.feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 0.5rem;
}

.feature-item p,
.feature p {
    font-size: 0.95rem;
    color: #047857;
    line-height: 1.5;
}

/* 底部区域 */
.service-footer {
    text-align: center;
    padding: 2rem 0;
}

.btn-outline {
    background: transparent;
    border: 2px solid #059669;
    color: #059669;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #059669;
    color: white;
    transform: translateY(-2px);
}

/* 响应式设计 */
@media (max-width: 768px) {
    .hero-section h1,
    .service-header h1 {
        font-size: 2rem;
    }
    
    .hero-section .subtitle,
    .service-header .subtitle {
        font-size: 1rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 1.8rem 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .service-features,
    .features-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem;
        margin: 3rem auto;
    }
    
    .features-section h2 {
        font-size: 1.8rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .client-service-page {
        padding: 2rem 0.8rem;
        min-height: 70vh;
    }
    
    .hero-section {
        margin-bottom: 2rem;
        padding: 1.5rem 1rem;
    }
    
    .hero-section h1 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-section .subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .service-cards {
        padding: 0 0.8rem;
        gap: 1.2rem;
        margin-bottom: 2rem;
        padding-bottom: 1rem;
    }
    
    .service-card {
        padding: 1.3rem 1rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .service-card p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .card-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .card-arrow {
        font-size: 1.2rem;
    }
    
    .features-section {
        padding: 2rem 1rem;
        margin: 2rem auto;
    }
    
    .features-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .features {
        gap: 1rem;
    }
    
    .feature {
        padding: 1.2rem 1rem;
    }
    
    .feature h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .feature p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
} 