 .production-page {
        background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
        min-height: 100vh;
    }

    .page-header {
        background: #ffffff;
        padding: 3rem 0 2rem;
        border-bottom: 1px solid var(--border);
        text-align: center;
        box-shadow: var(--shadow);
    }

    .page-title {
        font-size: 2.5rem;
        font-weight: 800;
        color: #225824;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .breadcrumbs {
        font-size: 0.9rem;
        color: var(--text-light);
    }

    .breadcrumbs a {
        color: var(--primary);
        text-decoration: none;
        transition: var(--transition);
    }

    .breadcrumbs a:hover {
        color: var(--primary-dark);
    }

    .page-content {
        padding: 3rem 0;
    }

    .production-hero {
        text-align: center;
        margin-bottom: 3rem;
        padding: 0 1rem;
    }

    .production-hero h2 {
        font-size: 2.2rem;
        font-weight: 700;
        color: #225824;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .production-hero .lead {
        font-size: 1.2rem;
        color: var(--text-light);
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .production-content {
        background: white;
        border-radius: var(--radius);
        padding: 2rem;
        box-shadow: var(--shadow);
        border: 1px solid var(--border);
    }

    .production-text h3 {
        font-size: 1.5rem;
        color: #225824;
        margin: 2rem 0 1rem;
        font-weight: 700;
    }

    .production-text h3:first-child {
        margin-top: 0;
    }

    .production-text p {
        color: var(--text-light);
        line-height: 1.7;
        margin-bottom: 1rem;
        font-size: 1.05rem;
    }

    .features-list {
        list-style: none;
        padding: 0;
        margin: 1.5rem 0;
    }

    .features-list li {
        padding: 0.5rem 0;
        color: var(--text-light);
        position: relative;
        padding-left: 1.5rem;
        line-height: 1.6;
    }

    .features-list li:before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--primary);
        font-weight: bold;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        margin: 2rem 0;
    }

    .stat-card {
        background: var(--primary-light);
        padding: 1.5rem 1rem;
        border-radius: var(--radius);
        text-align: center;
        border: 1px solid var(--border);
    }

    .stat-number {
        font-size: 2rem;
        font-weight: 800;
        color: var(--primary);
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
        color: var(--text-light);
        font-weight: 500;
    }

    .zones-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin: 1.5rem 0;
    }

    .zone-card {
        background: white;
        padding: 1.5rem;
        border-radius: var(--radius);
        border: 1px solid var(--border);
        text-align: center;
        transition: var(--transition);
    }

    .zone-card:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
        border-color: var(--primary);
    }

    .zone-card h4 {
        color: var(--primary);
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .zone-card p {
        font-size: 0.9rem;
        color: var(--text-light);
        margin: 0;
        line-height: 1.4;
    }

    .highlight-card {
        background: var(--primary-light);
        padding: 1.5rem;
        border-radius: var(--radius);
        border-left: 4px solid var(--primary);
        margin: 1.5rem 0;
    }

    .highlight-card h4 {
        color: var(--primary);
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }

    .highlight-card p {
        color: var(--text);
        margin: 0;
        line-height: 1.6;
    }

    .production-gallery-full {
        margin: 3rem 0 2rem 0;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }

    .gallery-item-large {
        position: relative;
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        cursor: pointer;
    }

    .gallery-item-large:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-hover);
    }

    .gallery-image-large {
        width: 100%;
        height: 320px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .gallery-item-large:hover .gallery-image-large {
        transform: scale(1.08);
    }

    .production-cta {
        text-align: center;
        padding: 2rem;
        background: var(--primary-light);
        border-radius: var(--radius);
        border: 1px solid var(--border);
        margin-top: 2rem;
    }

    .production-cta h3 {
        color: #225824;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        font-weight: 600;
    }

    .production-cta p {
        color: var(--text-light);
        margin-bottom: 1.5rem;
        font-size: 1.1rem;
    }

    @media (max-width: 768px) {
        .page-header {
            padding: 2rem 0 1.5rem;
        }
        
        .page-title {
            font-size: 2rem;
        }
        
        .production-hero h2 {
            font-size: 1.8rem;
        }
        
        .production-content {
            padding: 1.5rem;
        }
        
        .gallery-grid {
            grid-template-columns: 1fr;
        }
        
        .gallery-image-large {
            height: 250px;
        }
    }

    .modal {
        display: none;
        position: fixed;
        z-index: 2000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.95);
    }

    .modal-content {
        position: relative;
        margin: auto;
        display: block;
        width: 95%;
        max-width: 1400px;
        max-height: 90vh;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 12px;
    }

    .modal-image {
        width: 100%;
        height: auto;
        max-height: 90vh;
        object-fit: contain;
        border-radius: 12px;
    }

    .close-modal {
        position: absolute;
        top: 25px;
        right: 35px;
        color: white;
        font-size: 3.5rem;
        font-weight: bold;
        cursor: pointer;
        z-index: 2001;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .production-content {
        animation: fadeInUp 0.6s ease-out;
    }