/* 软装搭配设计页面样式 - 优雅时尚风格 */

/* 业务介绍区域 */
.business-intro {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f0e8 0%, #e8dcc8 100%);
    position: relative;
    overflow: hidden;
}

.business-intro::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(197, 157, 95, 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;
    background: linear-gradient(135deg, #c59d5f, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    line-height: 1.2;
}

.business-intro-text h2::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #c59d5f, #d4af37);
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(197, 157, 95, 0.3);
}

.business-intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #5a4a3a;
    margin-bottom: 20px;
}

.business-intro-image {
    position: relative;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(197, 157, 95, 0.25);
    transition: transform 0.5s ease;
}

.business-intro-image:hover {
    transform: translateY(-10px);
}

.business-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 项目数据统计 */
.project-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, #c59d5f, #d4af37);
    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.15), transparent);
    top: -300px;
    left: -200px;
    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.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.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: #ffffff;
}

.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;
    background: linear-gradient(135deg, #c59d5f, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    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, #c59d5f, #d4af37);
    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: linear-gradient(135deg, #f5f0e8, #ffffff);
    padding: 50px 40px;
    border-radius: 20px;
    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, #c59d5f, #d4af37);
    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(197, 157, 95, 0.2);
    border-color: #c59d5f;
}

.advantage-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #c59d5f, #d4af37);
    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(197, 157, 95, 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: #5a4a3a;
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* 软装分类展示 */
.soft-categories {
    padding: 120px 0;
    background: linear-gradient(135deg, #2c2416, #4a3a2a);
    color: #ffffff;
}

.soft-categories .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.soft-categories .section-header h2 {
    font-size: 52px;
    font-weight: 700;
    background: linear-gradient(135deg, #c59d5f, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.soft-categories .section-header p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(197, 157, 95, 0.2);
    transition: all 0.4s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: #c59d5f;
    box-shadow: 0 30px 80px rgba(197, 157, 95, 0.3);
}

.category-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
}

.category-body {
    padding: 40px 30px;
}

.category-body h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #c59d5f, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-body p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.category-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.category-features li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 12px;
}

/* 供应商资源 */
.supplier-resources {
    padding: 120px 0;
    background: #f5f0e8;
}

.supplier-resources .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.supplier-resources .section-header h2 {
    font-size: 52px;
    font-weight: 700;
    background: linear-gradient(135deg, #c59d5f, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.supplier-resources .section-header p {
    font-size: 20px;
    color: #666;
    line-height: 1.8;
}

.supplier-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.supplier-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.supplier-card:hover {
    transform: translateY(-10px);
    border-color: #c59d5f;
    box-shadow: 0 20px 60px rgba(197, 157, 95, 0.15);
}

.supplier-icon {
    font-size: 56px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.supplier-card:hover .supplier-icon {
    transform: scale(1.1);
}

.supplier-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #5a4a3a;
    margin-bottom: 10px;
}

.supplier-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

.supplier-count {
    display: block;
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, #c59d5f, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 15px;
}

/* 服务流程 */
.service-process {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.service-process::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(197, 157, 95, 0.05), 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;
    background: linear-gradient(135deg, #c59d5f, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.service-process .section-header p {
    font-size: 20px;
    color: #666;
    line-height: 1.8;
}

.process-timeline {
    max-width: 1100px;
    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, #c59d5f, #d4af37, #c59d5f);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(197, 157, 95, 0.3);
}

.process-item {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 40px;
    margin-bottom: 80px;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    align-items: center;
}

.process-item:nth-child(1) { animation-delay: 0.1s; }
.process-item:nth-child(2) { animation-delay: 0.2s; }
.process-item:nth-child(3) { animation-delay: 0.3s; }
.process-item:nth-child(4) { animation-delay: 0.4s; }
.process-item:nth-child(5) { animation-delay: 0.5s; }
.process-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-content {
    background: linear-gradient(135deg, #f5f0e8, #ffffff);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(197, 157, 95, 0.1);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c59d5f, #d4af37);
    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(197, 157, 95, 0.2);
    border-color: #c59d5f;
}

/* 奇数项：内容在左，右边空白 */
.process-item:nth-child(odd) .process-content {
    grid-column: 1;
    text-align: right;
}

.process-item:nth-child(odd) .process-number {
    grid-column: 2;
}

.process-item:nth-child(odd) .process-spacer {
    grid-column: 3;
}

/* 偶数项：内容在右，左边空白 */
.process-item:nth-child(even) .process-content {
    grid-column: 3;
    text-align: left;
}

.process-item:nth-child(even) .process-number {
    grid-column: 2;
}

.process-item:nth-child(even) .process-spacer {
    grid-column: 1;
}

.process-content h3 {
    font-size: 26px;
    font-weight: 600;
    color: #5a4a3a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.process-item:nth-child(odd) .process-content h3::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #c59d5f, #d4af37);
    border-radius: 2px;
}

.process-item:nth-child(even) .process-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #c59d5f, #d4af37);
    border-radius: 2px;
}

.process-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-top: 20px;
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #c59d5f, #d4af37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    border: 6px solid #f5f0e8;
    z-index: 2;
    box-shadow: 0 8px 30px rgba(197, 157, 95, 0.3);
    transition: all 0.3s ease;
    margin: 0 auto;
}

.process-item:hover .process-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 12px 40px rgba(197, 157, 95, 0.4);
}

.process-spacer {
    /* 空白占位 */
}

/* 成功案例展示 */
.success-cases {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f0e8, #e8dcc8);
}

.success-cases .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.success-cases .section-header h2 {
    font-size: 52px;
    font-weight: 700;
    background: linear-gradient(135deg, #c59d5f, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.success-cases .section-header p {
    font-size: 20px;
    color: #666;
    line-height: 1.8;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.case-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(197, 157, 95, 0.15);
    transition: all 0.4s ease;
}

.case-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(197, 157, 95, 0.25);
}

.case-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.1);
}

.case-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #c59d5f, #d4af37);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.case-body {
    padding: 40px;
}

.case-body h3 {
    font-size: 28px;
    font-weight: 600;
    color: #5a4a3a;
    margin-bottom: 15px;
}

.case-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.case-details {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(197, 157, 95, 0.2);
}

.case-detail-item {
    flex: 1;
}

.case-detail-label {
    font-size: 12px;
    color: #999;
    margin-bottom: 5px;
}

.case-detail-value {
    font-size: 16px;
    font-weight: 600;
    color: #5a4a3a;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .business-intro-content,
    .cases-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .business-intro-image {
        height: 400px;
    }

    .advantages-grid,
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid,
    .supplier-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-number {
        margin: 0;
        position: absolute;
        left: 30px;
        top: 20px;
    }

    .process-spacer {
        display: none;
    }

    .process-item:nth-child(odd) .process-content,
    .process-item:nth-child(even) .process-content {
        grid-column: 1;
        text-align: left;
        margin-left: 100px;
    }

    .process-item:nth-child(odd) .process-number,
    .process-item:nth-child(even) .process-number {
        grid-column: 1;
    }

    .process-item:nth-child(odd) .process-content h3::after {
        left: 0;
        right: auto;
    }
}

@media (max-width: 768px) {
    .business-intro,
    .core-advantages,
    .soft-categories,
    .supplier-resources,
    .service-process,
    .success-cases {
        padding: 60px 0;
    }

    .business-intro-text h2,
    .core-advantages .section-header h2,
    .soft-categories .section-header h2,
    .supplier-resources .section-header h2,
    .service-process .section-header h2,
    .success-cases .section-header h2 {
        font-size: 36px;
    }

    .advantages-grid,
    .categories-grid,
    .stats-grid,
    .supplier-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .business-intro-image {
        height: 300px;
    }

    .stat-number {
        font-size: 40px;
    }
}



