/* Productions & Services Pages Styles */

/* Gallery Showcase Section */
.gallery-showcase {
    padding: 8rem 6%;
    background-color: #f9f9f9;
    font-family: 'Montserrat', sans-serif;
}

.gallery-showcase-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-showcase h2 {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.showcase-grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.showcase-item {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInSlideUp 0.8s ease-out;
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.showcase-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

/* Production Intro Section */
.production-intro,
.services-intro {
    padding: 6rem 6%;
    background-color: #fff;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.production-intro-wrapper,
.services-intro-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.production-intro h2,
.services-intro h2 {
    font-size: 2.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.production-intro p,
.services-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    font-weight: 400;
}

/* Products Grid Section */
.products-section,
.services-grid-section {
    padding: 8rem 6%;
    background-color: #f9f9f9;
    font-family: 'Montserrat', sans-serif;
}

.products-wrapper,
.services-grid-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.products-headline,
.services-grid-headline {
    font-size: 3.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

/* Grid Layout */
.products-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

/* Product/Service Cards */
.product-card,
.service-card {
    background-color: #fff;
    padding: 2.5rem;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    animation: fadeInSlideUp 0.8s ease-out;
}

.product-card:hover,
.service-card:hover {
    border-color: #111;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

/* Product Image SVG */
.product-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    background-color: #f5f5f5;
    overflow: hidden;
}

.product-svg {
    width: 80%;
    height: 80%;
    display: block;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Service Icon */
.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: #111;
}

/* Card Headings */
.product-card h3,
.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #111;
}

/* Card Descriptions */
.product-card p,
.service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

/* Features List */
.product-features,
.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li,
.service-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
    color: #555;
    position: relative;
    font-weight: 400;
}

.product-features li::before,
.service-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #111;
    font-weight: 600;
}

/* Production Process Section */
.production-process {
    padding: 8rem 6%;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.process-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.production-process h2 {
    font-size: 3.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.step {
    text-align: center;
    padding: 2rem;
    animation: fadeInSlideUp 0.8s ease-out;
}

.step-number {
    font-size: 3rem;
    font-weight: 300;
    color: #e0e0e0;
    margin-bottom: 1rem;
    line-height: 1;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #111;
}

.step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    font-weight: 400;
}

/* Expertise Section */
.expertise-section {
    padding: 8rem 6%;
    background-color: #f9f9f9;
    font-family: 'Montserrat', sans-serif;
}

.expertise-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-section h2 {
    font-size: 3.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

.expertise-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.expertise-item {
    padding: 2.5rem;
    background-color: #fff;
    border-left: 4px solid #111;
    transition: all 0.3s ease;
    animation: fadeInSlideUp 0.8s ease-out;
}

.expertise-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.expertise-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #111;
}

.expertise-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    font-weight: 400;
}

/* Workflow Timeline Section */
.workflow-section {
    padding: 8rem 6%;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.workflow-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.workflow-section h2 {
    font-size: 3.5rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

.workflow-timeline {
    position: relative;
    padding: 2rem 0;
}

.workflow-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #111, #e0e0e0);
}

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-dot {
    position: absolute;
    left: -12px;
    top: 8px;
    width: 24px;
    height: 24px;
    background-color: #fff;
    border: 3px solid #111;
    border-radius: 50%;
    z-index: 2;
}

.timeline-content {
    margin-left: 80px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    animation: fadeInSlideLeft 0.8s ease-out;
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #111;
}

.timeline-content p {
    font-size: 0.95rem;
    color: #666;
    font-weight: 400;
}

/* CTA Section */
.cta-section {
    padding: 6rem 6%;
    background: linear-gradient(135deg, #111 0%, #333 100%);
    color: #fff;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.cta-wrapper h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.cta-wrapper p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 400;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: #fff;
    color: #111;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #fff;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-cta:hover {
    background-color: transparent;
    color: #fff;
}

/* Animations */
@keyframes fadeInSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes fadeInSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Specs Section */
.specs-section {
    padding: 8rem 6%;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.specs-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.specs-section h2 {
    font-size: 3rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: -1px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.spec-item {
    padding: 2.5rem;
    background-color: #f9f9f9;
    border-radius: 4px;
    border-left: 4px solid #111;
    transition: all 0.3s ease;
    animation: fadeInSlideUp 0.8s ease-out;
}

.spec-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.spec-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #111;
}

.spec-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .products-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .production-intro,
    .services-intro,
    .products-section,
    .services-grid-section,
    .production-process,
    .expertise-section,
    .workflow-section,
    .cta-section,
    .gallery-showcase,
    .specs-section {
        padding: 4rem 5%;
    }

    .products-headline,
    .services-grid-headline,
    .gallery-showcase h2,
    .specs-section h2 {
        font-size: 2.2rem;
    }

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

    .showcase-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .showcase-item img {
        height: 200px;
    }

    .products-headline,
    .services-grid-headline,
    .production-process h2,
    .expertise-section h2,
    .workflow-section h2 {
        font-size: 2.2rem;
    }

    .production-intro h2,
    .services-intro h2 {
        font-size: 2rem;
    }

    .cta-wrapper h2 {
        font-size: 1.8rem;
    }

    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .showcase-item img {
        height: 200px;
    }

    .workflow-timeline::before {
        left: 15px;
    }

    .timeline-dot {
        left: -6px;
        width: 18px;
        height: 18px;
    }

    .timeline-content {
        margin-left: 60px;
    }
}

@media (max-width: 480px) {
    .product-card,
    .service-card {
        padding: 1.5rem;
    }

    .products-headline,
    .services-grid-headline {
        font-size: 1.8rem;
    }

    .production-intro p,
    .services-intro p {
        font-size: 1rem;
    }

    .product-image {
        height: 140px;
    }

    .btn-cta {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }

    .step-number {
        font-size: 2rem;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}
