/* Production Page Specific Styles for SeatPro */

/* Production Banner Section */
.production-banner {
    background: linear-gradient(to right, rgba(28, 28, 28, 0.95), rgba(28, 28, 28, 0.85)), url('../images/website-bg.jpg') no-repeat center center;
    background-size: cover;
    padding: 120px 0;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.production-banner .banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.production-banner h2 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: white;
}

.production-banner h2 span {
    color: var(--primary-color);
}

.production-banner p {
    line-height: 1.8;
    opacity: 0.9;
}

/* Manufacturing Section */
.manufacturing-section {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.manufacturing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.manufacturing-content h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.manufacturing-content h2 span {
    color: var(--primary-color);
}

.manufacturing-content p {
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.process-steps {
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    z-index: 1;
    font-family: var(--font-heading);
}

.step-content {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.step-content p {
    margin-bottom: 0;
}

.manufacturing-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.manufacturing-visual img:hover {
    transform: scale(1.02);
}

/* Materials Section */
.materials-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
    position: relative;
}

.materials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.materials-content h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.materials-content h2 span {
    color: var(--primary-color);
}

.materials-content p {
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.materials-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.materials-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.material-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.material-feature:hover {
    transform: translateX(10px);
}

.feature-icon {
    color: var(--primary-color);
    flex-shrink: 0;
}

.material-feature h3 {
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.material-feature p {
    margin-bottom: 0;
}

.materials-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(248, 249, 250, 0.95), rgba(248, 249, 250, 0.8));
    z-index: -1;
}

/* Quality Section */
.quality-section {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.quality-content h2 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.quality-content h2 span {
    color: var(--primary-color);
}

.quality-content p {
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.quality-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.stat-item.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stat-number {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: var(--fs-h3);
    font-family: var(--font-heading);
}

.stat-item p {
    margin-bottom: 0;
    color: var(--dark-color);
}

.quality-visual {
    position: relative;
}

.quality-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.certification-badges {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.badge {
    background-color: white;
    color: var(--dark-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.badge:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color);
    color: white;
}

/* CTA Section */
.production-cta-section {
    padding: 6rem 0;
    background: linear-gradient(to right, rgba(28, 28, 28, 0.95), rgba(28, 28, 28, 0.85)), url('../images/website-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
    color: white;
}

.cta-content h2 span {
    color: var(--secondary-color);
}

.cta-content p {
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: white;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons .btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.cta-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .manufacturing-grid,
    .materials-grid,
    .quality-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .manufacturing-content,
    .materials-content,
    .quality-content {
        order: 0;
    }
    
    .manufacturing-visual,
    .materials-gallery,
    .quality-visual {
        order: 1;
    }
    
    .quality-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 768px) {
    .process-steps::before {
        left: 30px;
    }
    
    .process-step {
        padding-left: 60px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
    }
    
    .materials-gallery {
        grid-template-columns: 1fr;
    }

    .materials-section{
        padding: 40px 0px;
    }

    .materials-content{
        text-align: center;
    }
    
    .material-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap:15px;
    }

    .feature-icon{
        margin-bottom: 0px;
    }
    
    .quality-stats {
        grid-template-columns: 1fr;
    }
    
    .certification-badges {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .certification-badges{
        bottom:-50px;
    }
}

/* JS-related animations and hover effects */
.manufacturing-visual img {
    transition: transform 0.5s ease;
}

.manufacturing-visual img:hover {
    transform: scale(1.02);
}

.process-step {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.process-step.animated {
    opacity: 1;
    transform: translateX(0);
}

.stat-item {
    opacity: 0;
    transform: translateY(20px);
}

.stat-item.animated {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.badge {
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    background-color: white;
    color: var(--dark-color);
}

.badge:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color);
    color: white;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
} 