/* 建站服务页面样式 */

.page-banner {
    margin-top: 80px;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--color-wine) 0%, var(--color-green) 100%);
    text-align: center;
    color: var(--color-cream);
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.breadcrumb {
    padding: 20px 0;
    background: var(--color-white);
    border-bottom: 1px solid #eee;
}

.breadcrumb a { color: var(--color-text-light); }
.breadcrumb span { color: var(--color-text-light); margin: 0 10px; }

.services-section {
    padding: 80px 0;
    background: var(--color-cream-light);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    border-top: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-top-color: var(--color-gold);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-wine);
    margin-bottom: 15px;
}

.service-desc {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 8px 0;
    color: var(--color-text);
    font-size: 14px;
}

.process-section {
    padding: 80px 0;
    background: var(--color-white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-wine) 0%, var(--color-green) 100%);
    color: var(--color-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h4 {
    font-size: 18px;
    color: var(--color-wine);
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: var(--color-text-light);
}

@media (max-width: 768px) {
    .page-title { font-size: 32px; }
    .process-steps { flex-direction: column; }
}
