/* ==================== PRODUCTION SCALE SECTION ==================== */

.production-scale-section {
    padding: 60px 0;
}

.production-scale-section .badge-top {
    display: table;
    margin: 0 auto 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.production-scale-section .section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    text-align: center;
}

.production-scale-section .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    text-align: center;
}

.ps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    grid-auto-flow: dense;
    gap: 20px;
    margin-bottom: 20px;
}

.ps-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

.ps-item.wide {
    grid-column: span 2;
}

.ps-item.tall {
    grid-row: span 2;
}

.ps-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.ps-item .content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Cover full height to avoid "chopped" look */
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 40%, transparent 100%);
    color: #fff;
    transition: background 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: left;
    /* Left align text */
}

.ps-item .item-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

.ps-item .item-desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.ps-item:hover img {
    transform: scale(1.1);
}

.ps-item:hover .content-overlay {
    background: rgba(0, 0, 0, 0.7);
}

.ps-item:hover .item-desc {
    opacity: 1;
    max-height: 150px;
}

/* Info Cards */
.ps-card {
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.ps-card.white {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.ps-card.blue {
    background-color: #f0f7ff;
}

.ps-card .card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.ps-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ps-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 13.5px;
    line-height: 1.4;
    color: #444;
}

.ps-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* Stats Row */
.ps-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    margin-top: 40px;
}

.stat-item {
    padding: 30px;
    text-align: center;
    border-right: 1px solid #eee;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item .stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item .stat-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 991px) {
    .ps-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 240px;
    }
}

@media (max-width: 767px) {
    .ps-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .ps-item {
        aspect-ratio: 16/10;
    }

    .ps-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .stat-item:last-child {
        border-bottom: none;
    }
}