/* 厂房仓库设计页面样式 - 工业现代风格 */

/* 业务介绍区域 */
.business-intro {
    padding: 120px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.business-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1), transparent);
    border-radius: 50%;
}

.business-intro .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.business-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.business-intro-text h2 {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.business-intro-text h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    margin-top: 20px;
    box-shadow: 0 0 20px rgba(52, 152, 219, 0.5);
}

.business-intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.business-intro-image {
    position: relative;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.business-intro-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.business-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 项目数据统计 */
.project-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.project-stats::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent);
    top: -300px;
    right: -300px;
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 18px;
    opacity: 0.95;
    font-weight: 500;
}

/* 核心优势区域 */
.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: 52px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.core-advantages .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    border-radius: 2px;
}

.core-advantages .section-header p {
    font-size: 20px;
    color: #666;
    line-height: 1.8;
    margin-top: 30px;
}

.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: 16px;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(52, 152, 219, 0.15);
    border-color: #3498db;
}

.advantage-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 40px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: rotateY(360deg);
}

.advantage-card h3 {
    font-size: 26px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* 应用场景展示 */
.application-scenarios {
    padding: 120px 0;
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ffffff;
}

.application-scenarios .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.application-scenarios .section-header h2 {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.application-scenarios .section-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.scenario-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.scenario-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #3498db;
    box-shadow: 0 30px 80px rgba(52, 152, 219, 0.3);
}

.scenario-header {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.scenario-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.scenario-header h3 {
    font-size: 32px;
    font-weight: 600;
}

.scenario-body {
    padding: 40px;
}

.scenario-body p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.scenario-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scenario-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.scenario-features li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
    font-size: 20px;
}

/* 设计标准 */
.design-standards {
    padding: 120px 0;
    background: #ffffff;
}

.design-standards .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.design-standards .section-header h2 {
    font-size: 52px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.design-standards .section-header p {
    font-size: 20px;
    color: #666;
    line-height: 1.8;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.standard-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.standard-card:hover {
    background: linear-gradient(135deg, #3498db, #2ecc71);
    color: #ffffff;
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(52, 152, 219, 0.2);
    border-color: transparent;
}

.standard-icon {
    font-size: 48px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.standard-card:hover .standard-icon {
    transform: scale(1.1);
    filter: brightness(2);
}

.standard-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.standard-card:hover h3 {
    color: #ffffff;
}

.standard-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.standard-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* 服务流程 */
.service-process {
    padding: 120px 0;
    background: linear-gradient(135deg, #ecf0f1, #bdc3c7);
    position: relative;
    overflow: hidden;
}

.service-process::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.08), transparent);
    border-radius: 50%;
}

.service-process .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.service-process .section-header h2 {
    font-size: 52px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-process .section-header p {
    font-size: 20px;
    color: #666;
    line-height: 1.8;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    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; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step::after {
    content: '→';
    position: absolute;
    top: 60px;
    right: -25px;
    font-size: 32px;
    color: #3498db;
    font-weight: 700;
    animation: arrowPulse 2s ease-in-out infinite;
}

@keyframes arrowPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(5px);
    }
}

.process-step:last-child::after {
    display: none;
}

.process-step-number {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3498db, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4);
    transition: all 0.5s ease;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.process-step:hover .process-step-number {
    transform: scale(1.15) rotateY(360deg);
    box-shadow: 0 20px 60px rgba(52, 152, 219, 0.6);
}

.process-step-number span {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.process-step h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .business-intro-content,
    .scenarios-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .business-intro-image {
        transform: none;
        height: 400px;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid,
    .standards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

    .process-step::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .business-intro,
    .core-advantages,
    .application-scenarios,
    .design-standards,
    .service-process {
        padding: 60px 0;
    }

    .business-intro-text h2,
    .core-advantages .section-header h2,
    .application-scenarios .section-header h2,
    .design-standards .section-header h2,
    .service-process .section-header h2 {
        font-size: 36px;
    }

    .advantages-grid,
    .stats-grid,
    .standards-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .business-intro-image {
        height: 300px;
    }

    .stat-number {
        font-size: 40px;
    }
}



