/* Products页面专属样式 - 黑底白字 */

/* Products Header */
.products-header {
    padding: 12rem 0 6rem;
    text-align: center;
}

.page-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 0.938rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(30px);
    font-weight: 300;
}

/* Products Showcase Images */
.products-showcase,
.products-gallery,
.final-image {
    width: 100%;
    height: 70vh;
    overflow: hidden;
    position: relative;
}

.showcase-image,
.gallery-image {
    width: 100%;
    height: 100%;
}

.showcase-image img,
.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeIn 1.2s ease forwards;
    animation-delay: 0.5s;
}

/* What We Do Section */
.what-we-do-section {
    padding: 6rem 0;
    text-align: center;
}

.section-subtitle {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-weight: 300;
}

.services-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: left;
}

.services-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.938rem;
    line-height: 1.6;
    font-weight: 300;
}

.services-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
}

.services-note {
    max-width: 700px;
    margin: 0 auto;
    font-size: 0.938rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    font-weight: 300;
}

/* Why Choose Section */
.why-choose-section {
    padding: 6rem 0 8rem;
    text-align: center;
}

.benefits-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.benefits-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.938rem;
    line-height: 1.6;
    font-weight: 300;
}

.benefits-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.5);
}

/* Image hover effects */
.products-showcase:hover img,
.products-gallery:hover img,
.final-image:hover img {
    transform: scale(1.05);
    transition: transform 10s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Staggered animations */
.services-list li,
.benefits-list li {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

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

.benefits-list li:nth-child(1) { animation-delay: 0.1s; }
.benefits-list li:nth-child(2) { animation-delay: 0.2s; }
.benefits-list li:nth-child(3) { animation-delay: 0.3s; }
.benefits-list li:nth-child(4) { animation-delay: 0.4s; }
.benefits-list li:nth-child(5) { animation-delay: 0.5s; }

/* 响应式设计 */
@media (max-width: 768px) {
    .products-header {
        padding: 8rem 0 4rem;
    }
    
    .page-intro {
        font-size: 0.875rem;
        padding: 0 1rem;
    }
    
    .products-showcase,
    .products-gallery,
    .final-image {
        height: 40vh;
    }
    
    .services-list,
    .benefits-list {
        padding: 0 1rem;
    }
    
    .services-list li,
    .benefits-list li {
        font-size: 0.875rem;
    }
}