/* OEM Page Styles */

/* Hero Section */
.oem-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 80px 60px;
    background: linear-gradient(135deg, #fff9e6 0%, #ffeebb 100%);
    min-height: 500px;
    max-width: 1400px;
    margin: 0 auto;
}

.oem-hero-content {
    flex: 1;
    max-width: 600px;
}

.oem-hero-title {
    font-size: 52px;
    font-weight: 700;
    color: #8b6914;
    margin-bottom: 15px;
    line-height: 1.1;
}

.oem-hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #8b6914;
    margin-bottom: 25px;
}

.oem-hero-description {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.oem-hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #f5a623 0%, #d4920a 100%);
    color: #fff;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.oem-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4);
}

.oem-hero-image {
    flex: 1;
    max-width: 500px;
}

.oem-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Section Titles */
.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #8b6914;
    text-align: center;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Capabilities Section */
.oem-capabilities {
    padding: 80px 40px;
    background: #fff;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.capability-card {
    background: linear-gradient(135deg, #fff9e6 0%, #ffeebb 100%);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.capability-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f5a623 0%, #d4920a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.capability-icon svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

.capability-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.capability-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

/* Facility Showcase */
.facility-showcase {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 80px 60px;
    background: linear-gradient(135deg, #fff9e6 0%, #ffeebb 100%);
}

.facility-images {
    flex: 1;
    display: flex;
    gap: 20px;
}

.facility-img {
    width: 50%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.facility-content {
    flex: 1;
}

.facility-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #8b6914;
    margin-bottom: 20px;
}

.facility-content p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
}

/* Quality Assurance Section */
.quality-assurance {
    padding: 80px 40px;
    background: #fff;
}

.qa-table-container {
    max-width: 900px;
    margin: 0 auto;
}

.qa-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.qa-table thead {
    background: linear-gradient(135deg, #f5a623 0%, #d4920a 100%);
}

.qa-table th {
    padding: 18px 25px;
    text-align: left;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.qa-table td {
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.qa-table tr:last-child td {
    border-bottom: none;
}

.qa-table tr:hover {
    background-color: #fffdf5;
}

/* Partnership Process */
.partnership-process {
    padding: 80px 40px;
    background: linear-gradient(135deg, #fff9e6 0%, #ffeebb 100%);
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    max-width: 250px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f5a623 0%, #d4920a 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.process-step p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.process-connector {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f5a623, #d4920a);
    margin-top: 25px;
    flex-shrink: 0;
}

/* Inquiry Section */
.inquiry-section {
    padding: 80px 40px;
    background: #fff;
}

.inquiry-container {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.inquiry-content {
    flex: 1;
}

.inquiry-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #8b6914;
    margin-bottom: 20px;
}

.inquiry-content > p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.inquiry-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    color: #333;
}

.benefit-icon {
    width: 24px;
    min-width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #f5a623 0%, #d4920a 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Inquiry Form */
.inquiry-form {
    flex: 1;
    background: linear-gradient(135deg, #fff9e6 0%, #ffeebb 100%);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0d5c0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f5a623;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-privacy-note {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #f5a623 0%, #d4920a 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .oem-hero {
        flex-direction: column;
        padding: 60px 40px;
        text-align: center;
    }

    .oem-hero-content {
        max-width: 100%;
    }

    .oem-hero-image {
        max-width: 100%;
    }

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

    .facility-showcase {
        flex-direction: column;
        padding: 60px 40px;
    }

    .facility-images {
        width: 100%;
    }

    .inquiry-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .oem-hero {
        padding: 40px 20px;
    }

    .oem-hero-title {
        font-size: 36px;
    }

    .oem-hero-subtitle {
        font-size: 20px;
    }

    .section-title {
        font-size: 28px;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .oem-capabilities,
    .quality-assurance,
    .partnership-process,
    .inquiry-section {
        padding: 50px 20px;
    }

    .facility-showcase {
        padding: 50px 20px;
    }

    .facility-images {
        flex-direction: column;
    }

    .facility-img {
        width: 100%;
        height: 200px;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .process-connector {
        width: 3px;
        height: 30px;
        margin: 0;
    }

    .process-step {
        max-width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .inquiry-form {
        padding: 25px;
    }

    .qa-table th,
    .qa-table td {
        padding: 15px;
        font-size: 14px;
    }
}