/* Product Feature Section */
.product-feature-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.product-feature-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.product-feature-header h1 .highlight {
    color: #ff6b35;
}

.product-feature-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-feature-image {
    margin-bottom: 40px;
}

.product-feature-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.product-feature-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.product-feature-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* General Scrollbar Hiding */
::-webkit-scrollbar {
    display: none;
}
* {
    -ms-overflow-style: none;
}

.nav-logo .logo:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .product-tabs {
        flex-direction: column;
        gap: 10px;
    }
}

/* Technical Specification Section */
.technical-specs-section {
    padding: 40px 0 80px;
    background: #fff;
}

.technical-specs-section .section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    text-align: center;
    margin-bottom: 40px;
}

.spec-tables-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.spec-tables-grid .spec-table-wrapper:first-child {
    grid-column: span 2;
}

.technical-specs-section .spec-table-wrapper h4 {
    background-color: #005a9c;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 12px 15px;
    margin-bottom: 0;
    border-radius: 8px 8px 0 0;
}

.technical-specs-section .spec-table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-top: none;
    border-radius: 0 0 8px 8px;
}

.technical-specs-section .spec-table-wrapper td {
    padding: 10px 15px;
    border-bottom: 1px solid #e9ecef;
    font-size: 0.95rem;
}

.technical-specs-section .spec-table-wrapper tr:last-child td {
    border-bottom: none;
}

.technical-specs-section .spec-table-wrapper tr td:first-child {
    font-weight: 500;
    color: #495057;
}

.technical-specs-section .spec-table-wrapper tr td:last-child {
    text-align: right;
    font-weight: 600;
    color: #212529;
}

.pitch-table {
    max-width: 800px;
    margin: 40px auto 0;
}

/* Product Gallery Section */
.product-gallery-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-gallery-item {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .spec-tables-grid {
        grid-template-columns: 1fr;
    }
    .spec-tables-grid .spec-table-wrapper:first-child {
        grid-column: span 1;
    }
    
    .product-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* 125 Ton Press Line Section */
.press-line-125-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.press-line-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.press-line-header h1 .highlight {
    color: #ff6b35;
}

.press-line-header p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.press-line-image {
    margin-bottom: 40px;
}

.press-line-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.press-line-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.press-line-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Manufacturing Facility Section */
.manufacturing-facility-section {
    padding: 80px 0;
    background: #fff;
}

.facility-header {
    text-align: center;
    margin-bottom: 50px;
}

.facility-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.facility-header h1 .highlight {
    color: #ff6b35;
}

.facility-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.facility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.facility-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.facility-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

@media (max-width: 992px) {
    .facility-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===== Products list (Products page) ===== */
.products-intro-section { padding: 80px 0 60px; background: #fff; text-align: center; }
.products-list-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 10px; text-align: left; }
.products-list-card { background: #f8f9fa; border-top: 4px solid #005a9c; border-radius: 10px; padding: 24px; }
.products-list-card h3 { font-size: 1.15rem; color: #005a9c; margin-bottom: 10px; }
.products-list-card p { color: #555; font-size: 0.98rem; line-height: 1.7; }
.products-key-specs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.products-key-specs div { padding: 18px 10px; border-radius: 10px; background: #005a9c; color: #fff; display: flex; flex-direction: column; gap: 4px; }
.products-key-specs strong { font-size: 1.25rem; }
.products-key-specs span { font-size: 0.9rem; opacity: 0.9; }

/* ===== Other capabilities (Capabilities page) ===== */
.other-capabilities-section { padding: 70px 0 80px; background: #f8f9fa; }
.other-capabilities-section .section-header { text-align: center; margin-bottom: 40px; }
.other-capabilities-section .section-header h2 { font-size: 2.5rem; font-weight: 700; color: #ff6b35; margin-bottom: 10px; }
.other-capabilities-section .section-header p { color: #666; font-size: 1.1rem; }
.other-cap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.other-cap-card { background: #fff; border-radius: 14px; padding: 32px; box-shadow: 0 10px 30px rgba(0,0,0,0.07); border-left: 5px solid #ff6b35; }
.other-cap-num { font-size: 2.2rem; font-weight: 700; color: #005a9c; opacity: 0.25; line-height: 1; margin-bottom: 10px; }
.other-cap-card h3 { font-size: 1.4rem; color: #222; margin-bottom: 12px; }
.other-cap-card p { color: #555; font-size: 1.05rem; line-height: 1.75; margin-bottom: 18px; }
.other-cap-machine { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; background: rgba(0,90,156,0.07); padding: 12px 16px; border-radius: 8px; font-weight: 600; color: #005a9c; }
.other-cap-machine .label { background: #005a9c; color: #fff; font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 20px; }

/* ===== CTA ===== */
.products-cta-section { padding: 60px 0; background: #005a9c; color: #fff; text-align: center; }
.products-cta-section h2 { font-size: 2rem; margin-bottom: 10px; }
.products-cta-section p { opacity: 0.9; margin-bottom: 24px; font-size: 1.1rem; }
.products-cta-section .cta-button { position: static; transform: none; }

@media (max-width: 992px) {
  .products-list-grid, .products-key-specs { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .products-list-grid, .products-key-specs, .other-cap-grid { grid-template-columns: 1fr; }
  .other-capabilities-section .section-header h2 { font-size: 2rem; }
}
.other-cap-card { overflow: hidden; }
.other-cap-img { margin: -32px -32px 22px; height: 280px; background: #eef2f6; }
.other-cap-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 768px) { .other-cap-img { height: 230px; } }
.other-cap-img img[src*="40-ton"] { object-position: center 20%; }
