/* 办公空间设计页面样式 - 欧美风格 */

/* 业务介绍区域 */
.business-intro {
    padding: 120px 0;
    background: #ffffff;
}

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

.business-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.business-intro-text h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
}

.business-intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.business-intro-image {
    position: relative;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.business-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 核心优势区域 */
.core-advantages {
    padding: 120px 0;
    background: #f8f9fa;
}

.core-advantages .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.core-advantages .section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.core-advantages .section-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.advantage-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-color: #f4821f;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f4821f, #ff9d42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 36px;
    color: #ffffff;
}

.advantage-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* 设计流程区域 */
.design-process {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.design-process::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(244, 130, 31, 0.05), transparent);
    border-radius: 50%;
}

.design-process .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.design-process .section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.design-process .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #f4821f, #ff9d42);
    border-radius: 2px;
}

.design-process .section-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-top: 30px;
}

.process-timeline {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #f4821f, #ff9d42, #f4821f);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(244, 130, 31, 0.3);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.2s; }
.process-step:nth-child(3) { animation-delay: 0.3s; }
.process-step:nth-child(4) { animation-delay: 0.4s; }
.process-step:nth-child(5) { animation-delay: 0.5s; }
.process-step:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step:nth-child(even) .process-content {
    order: 2;
}

.process-step:nth-child(even) .process-image {
    order: 1;
}

.process-content {
    padding: 40px;
    background: #ffffff;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 10px 40px rgba(244, 130, 31, 0.08);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    overflow: hidden;
}

.process-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f4821f, #ff9d42);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.process-content:hover::before {
    transform: scaleX(1);
}

.process-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(244, 130, 31, 0.15);
    border-color: #f4821f;
}

.process-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f4821f, #ff9d42);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    z-index: 2;
    border: 6px solid #ffffff;
    box-shadow: 0 8px 30px rgba(244, 130, 31, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    transform: translate(-50%, -50%) scale(1.1) rotate(360deg);
    box-shadow: 0 12px 40px rgba(244, 130, 31, 0.4);
}

.process-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.process-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #f4821f, #ff9d42);
    border-radius: 2px;
}

.process-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-top: 20px;
}

.process-image {
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.process-image:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.process-image:hover img {
    transform: scale(1.05);
}

/* 客户群体区域 */
.client-segments {
    padding: 120px 0;
    background: #1a1a1a;
    color: #ffffff;
}

.client-segments .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.client-segments .section-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.client-segments .section-header p {
    font-size: 18px;
    color: #cccccc;
    line-height: 1.8;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.client-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.client-card:hover {
    background: rgba(244, 130, 31, 0.1);
    border-color: #f4821f;
    transform: translateY(-5px);
}

.client-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.client-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.client-card p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

/* 项目数据统计 */
.project-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #f4821f, #ff9d42);
    color: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .business-intro-content,
    .process-step {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-step:nth-child(even) .process-content,
    .process-step:nth-child(even) .process-image {
        order: initial;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-number {
        left: 30px;
        transform: translateY(-50%);
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .business-intro,
    .core-advantages,
    .design-process,
    .client-segments {
        padding: 60px 0;
    }

    .business-intro-text h2,
    .core-advantages .section-header h2,
    .design-process .section-header h2,
    .client-segments .section-header h2 {
        font-size: 32px;
    }

    .advantages-grid,
    .clients-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .business-intro-image {
        height: 300px;
    }

    .stat-number {
        font-size: 40px;
    }
}

