/* ================================
   Dark Mode Support
   ================================ */

:root {
    --bg-primary: #f8fafc;
    --card-bg: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #f5f5f5;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-tertiary: #999999;
    --border-color: #eeeeee;
    --shadow-color: rgba(0,0,0,0.08);
    --shadow-color-strong: rgba(0,0,0,0.12);
    --card-bg: #ffffff;
}













/* Dark Mode Toggle Button */
.theme-toggle {
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-left: 8px;
}

.theme-toggle:hover {
    background: var(--bg-tertiary);
    transform: scale(1.1);
}

/* PhotonEdge Website Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --bg-primary: #f8fafc;
    --card-bg: #ffffff; --primary: #1a365d; --secondary: #2c5282; --accent: #3182ce; --light: #ebf8ff; --dark: #1a202c; --gray: #718096; --white: #ffffff; --border: #e2e8f0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; line-height: 1.6; color: var(--dark); background-color: var(--card-bg); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.header { background: var(--card-bg); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }
.header .container { display: flex; justify-content: space-between; align-items: center; height: 70px; }
.logo { font-size: 24px; font-weight: 700; color: #4caf50; }
.logo span { color: #059669; }
.nav { display: flex; align-items: center; gap: 30px; }
.nav-list { display: flex; gap: 30px; }
.nav-link { font-weight: 500; color: var(--dark); transition: color 0.3s; }
.nav-link:hover { color: #059669; }
.lang-switcher { display: flex; gap: 8px; }
.lang-btn { padding: 6px 12px; border: 1px solid var(--border-color); background: var(--card-bg); border-radius: 4px; cursor: pointer; font-size: 13px; transition: all 0.2s; }
.lang-btn:hover { border-color: #059669; }
.lang-btn.active { background: #4caf50; color: var(--card-bg); border-color: #4caf50; }

/* Hero */
.hero { background: linear-gradient(135deg, #4caf50 0%, var(--secondary) 100%); color: var(--card-bg); padding: 180px 0 100px; text-align: center; }
.hero h1 { font-size: 56px; font-weight: 800; margin-bottom: 20px; letter-spacing: -1px; }
.hero .subtitle { font-size: 24px; opacity: 0.9; margin-bottom: 10px; }
.hero .company { font-size: 18px; opacity: 0.8; margin-bottom: 40px; }
.hero-btns { display: flex; gap: 20px; justify-content: center; }
.btn { padding: 14px 32px; border-radius: 6px; font-weight: 600; font-size: 16px; cursor: pointer; transition: all 0.3s; border: none; }
.btn-primary { background: var(--card-bg); color: #4caf50; }
.btn-primary:hover { background: var(--bg-secondary); transform: translateY(-2px); }
.btn-secondary { background: transparent; color: var(--card-bg); border: 2px solid var(--card-bg); }
.btn-secondary:hover { background: rgba(255,255,255,0.1); }

/* Categories */
.categories { padding: 80px 0; background: var(--bg-secondary); }
.section-title { text-align: center; font-size: 36px; font-weight: 700; color: #4caf50; margin-bottom: 50px; }
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.category-card { background: var(--card-bg); border-radius: 12px; padding: 30px; text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.05); transition: all 0.3s; cursor: pointer; }
.category-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.category-icon { font-size: 48px; margin-bottom: 20px; }
.category-card h3 { font-size: 18px; color: #4caf50; margin-bottom: 10px; }
.category-card p { color: var(--gray); font-size: 14px; }

/* Features */
.features { padding: 80px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature-card { text-align: center; padding: 30px 20px; }
.feature-icon { width: 70px; height: 70px; background: var(--bg-secondary); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 32px; }
.feature-card h3 { font-size: 18px; color: #4caf50; margin-bottom: 10px; }
.feature-card p { color: var(--gray); font-size: 14px; }

/* Applications */
.applications { padding: 80px 0; background: var(--bg-secondary); }
.applications-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 20px; }
.app-item { background: var(--card-bg); padding: 20px; border-radius: 8px; text-align: center; font-size: 14px; color: var(--dark); transition: all 0.3s; }
.app-item:hover { background: #4caf50; color: var(--card-bg); }

/* Products Page */
.products-page { padding: 120px 0 60px; }
.products-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; flex-wrap: wrap; gap: 20px; }
.products-filters { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.filter-group { display: flex; align-items: center; gap: 10px; }
.filter-group label { font-weight: 500; color: var(--gray); }
.filter-group select { padding: 10px 16px; border: 1px solid var(--border-color); border-radius: 6px; font-size: 14px; min-width: 180px; }
.search-box { display: flex; align-items: center; }
.search-box input { padding: 10px 16px; border: 1px solid var(--border-color); border-radius: 6px 0 0 6px; font-size: 14px; width: 250px; }
.search-box button { padding: 10px 16px; background: #4caf50; color: var(--card-bg); border: none; border-radius: 0 6px 6px 0; cursor: pointer; }
.products-count { color: var(--gray); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; transition: all 0.3s; cursor: pointer; }
.product-card:hover { border-color: #059669; box-shadow: 0 10px 25px rgba(0,0,0,0.1); transform: translateY(-5px); }
.product-image { height: 180px; background: linear-gradient(135deg, var(--bg-secondary) 0%, #e2e8f0 100%); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; }
.product-image .img-placeholder { font-size: 48px; }
.product-info { padding: 20px; }
.product-name { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 8px; line-height: 1.4; }
.product-category { font-size: 12px; color: var(--gray); margin-bottom: 12px; }
.product-desc { font-size: 13px; color: var(--gray); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 40px; }
.pagination button { padding: 10px 16px; border: 1px solid var(--border-color); background: var(--card-bg); border-radius: 6px; cursor: pointer; transition: all 0.3s; }
.pagination button:hover, .pagination button.active { background: #4caf50; color: var(--card-bg); border-color: #4caf50; }
.pagination-nav { font-weight: 600; }
.pagination-ellipsis { padding: 10px 5px; color: var(--text-muted); }

/* Product Detail */
.product-detail { padding: 120px 0 60px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.product-detail-image { height: 400px; background: linear-gradient(135deg, var(--bg-secondary) 0%, #e2e8f0 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-detail-image img { width: 100%; height: 100%; object-fit: contain; }
.product-detail-image .img-placeholder { font-size: 100px; }
.product-detail-info h1 { font-size: 28px; color: #4caf50; margin-bottom: 5px; }
.product-detail-category { font-size: 14px; color: var(--gray); margin-bottom: 20px; }
.product-description { margin-bottom: 30px; }
.product-description h3 { font-size: 18px; color: var(--dark); margin-bottom: 10px; }
.product-description p { color: var(--gray); line-height: 1.7; }
.product-detail-info h3 { font-size: 18px; color: var(--dark); margin: 25px 0 15px; }
/* Specifications Table */
.specifications-table { background: var(--bg-secondary); border-radius: 8px; padding: 20px; margin: 20px 0; }
.specifications-table h3 { font-size: 18px; color: #4caf50; margin-bottom: 15px; font-weight: 600; }
.specifications-table table { width: 100%; border-collapse: collapse; }
.specifications-table tr { border-bottom: 1px solid var(--border-color); }
.specifications-table tr:last-child { border-bottom: none; }
.specifications-table th { text-align: left; padding: 12px 15px; font-weight: 600; color: var(--dark); width: 40%; background: transparent; }
.specifications-table td { padding: 12px 15px; color: var(--gray); }
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 10px; }
.spec-table th, .spec-table td { padding: 10px 14px; text-align: left; border-bottom: 1px solid var(--border-color); }
.spec-table th { background: var(--bg-secondary); font-weight: 600; color: var(--dark); width: 40%; font-size: 14px; }
.spec-table td { color: var(--gray); font-size: 14px; }
.back-btn { display: inline-block; margin-bottom: 20px; color: #059669; font-weight: 500; }
.back-btn:hover { text-decoration: underline; }

/* Sub Products Table */
.sub-products-section { margin-top: 30px; }
.sub-products-section h3 { font-size: 18px; color: var(--dark); margin-bottom: 15px; }
.table-scroll { overflow-x: auto; }
.sub-products-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 500px; }
.sub-products-table th, .sub-products-table td { padding: 10px 12px; text-align: left; border-bottom: 1px solid var(--border-color); white-space: nowrap; }
.sub-products-table th { background: #4caf50; color: var(--card-bg); font-weight: 600; position: sticky; top: 0; }
.sub-products-table tr:hover { background: var(--bg-secondary); }
.sub-products-table .part-number { font-weight: 600; color: #059669; }

/* About Page */
.about-page { padding: 120px 0 60px; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-size: 36px; color: #4caf50; margin-bottom: 20px; }
.about-text h3 { font-size: 24px; color: #4caf50; margin-bottom: 15px; }
.about-text p { color: var(--gray); margin-bottom: 20px; line-height: 1.8; }
.about-image { height: 400px; background: linear-gradient(135deg, #4caf50 0%, var(--secondary) 100%); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 100px; color: var(--card-bg); }
.advantages { padding: 80px 0; }
.advantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.advantage-card { background: var(--card-bg); border: 1px solid var(--border-color); border-radius: 12px; padding: 30px; }
.advantage-card h3 { font-size: 20px; color: #4caf50; margin-bottom: 15px; }
.advantage-card p { color: var(--gray); font-size: 14px; line-height: 1.8; }

/* Contact Page */
.contact-page { padding: 120px 0 60px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info { background: var(--bg-secondary); padding: 40px; border-radius: 12px; }
.contact-info h2 { font-size: 28px; color: #4caf50; margin-bottom: 30px; }
.contact-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; }
.contact-icon { width: 40px; height: 40px; background: #4caf50; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--card-bg); font-size: 18px; flex-shrink: 0; }
.contact-text h4 { font-size: 16px; color: var(--dark); margin-bottom: 5px; }
.contact-text p { color: var(--gray); font-size: 14px; }
.contact-form { background: var(--card-bg); padding: 40px; border-radius: 12px; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.contact-form h2 { font-size: 28px; color: #4caf50; margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 8px; color: var(--dark); }
.form-group input, .form-group textarea { width: 100%; padding: 12px 16px; border: 1px solid var(--border-color); border-radius: 6px; font-size: 14px; font-family: inherit; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #059669; }
.submit-btn { width: 100%; padding: 14px; background: #4caf50; color: var(--card-bg); border: none; border-radius: 6px; font-size: 16px; font-weight: 600; cursor: pointer; transition: background 0.3s; }
.submit-btn:hover { background: var(--secondary); }

/* Footer */
.footer { background: var(--dark); color: var(--card-bg); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { font-size: 24px; margin-bottom: 15px; }
.footer-brand p { color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-col h4 { font-size: 16px; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.7); font-size: 14px; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--card-bg); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); font-size: 14px; }

/* No Products */
.no-products { text-align: center; padding: 60px 20px; color: var(--gray); }
.no-products h3 { font-size: 24px; margin-bottom: 10px; }

/* Loading */
.loading { text-align: center; padding: 60px 20px; color: var(--gray); }

/* Additional Styles for v3 */
.category-image { width: 100%; height: 140px; overflow: hidden; border-radius: 8px; margin-bottom: 15px; background: linear-gradient(135deg, var(--bg-secondary) 0%, #e2e8f0 100%); }
.category-image img { width: 100%; height: 100%; object-fit: cover; }
.category-icon { font-size: 48px; margin-bottom: 15px; display: block; }
.product-card-actions { padding: 0 20px 20px; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-outline { background: transparent; border: 1px solid #059669; color: #059669; }
.btn-outline:hover { background: #059669; color: var(--card-bg); }
.request-quote-btn { display: inline-block; padding: 14px 32px; background: #4caf50; color: var(--card-bg); border-radius: 6px; font-weight: 600; transition: all 0.3s; }
.request-quote-btn:hover { background: var(--secondary); transform: translateY(-2px); }
.certifications { padding: 80px 0; background: var(--card-bg); }
.certifications-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.certification-card { text-align: center; padding: 40px 30px; background: var(--bg-secondary); border-radius: 12px; }
.cert-icon { width: 60px; height: 60px; background: #48bb78; color: var(--card-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 28px; font-weight: bold; }
.certification-card h3 { font-size: 20px; color: #4caf50; margin-bottom: 10px; }
.certification-card p { color: var(--gray); font-size: 14px; }
.trusted-by { padding: 60px 0; background: var(--bg-secondary); text-align: center; }
.trusted-desc { color: var(--gray); font-size: 16px; max-width: 700px; margin: 0 auto; }
.inquiry-product-info { background: var(--bg-secondary); padding: 15px 20px; border-radius: 8px; margin-bottom: 20px; }
.inquiry-product-info p { margin: 0; color: var(--dark); font-size: 14px; }
.inquiry-product-info strong { color: #4caf50; }
.form-success { text-align: center; padding: 40px 20px; }
.success-icon { width: 80px; height: 80px; background: #48bb78; color: var(--card-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 40px; }
.form-success h3 { font-size: 28px; color: #4caf50; margin-bottom: 10px; }
.form-success p { color: var(--gray); margin-bottom: 30px; }
.about-more { margin-top: 20px; }
@media (max-width: 768px) {
    .certifications-grid { grid-template-columns: 1fr; }
    .category-image { height: 120px; }
}

/* B2B Inquiry Form Styles */
.form-prompt {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 24px;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border-left: 4px solid #059669;
    border-radius: 4px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 0;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
    font-size: 14px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    color: var(--dark);
    background: var(--card-bg);
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.15);
}
.form-group input[type="file"] {
    padding: 8px 14px;
    background: var(--card-bg);
    border: 1px dashed var(--border-color);
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
}
.file-input-wrapper {
    position: relative;
}
.file-hint {
    display: block;
    font-size: 12px;
    color: var(--gray);
    margin-top: 4px;
}
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Product Inquiry Form */
.product-inquiry-form {
    padding: 60px 0;
}
.inquiry-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.inquiry-form-container .section-title {
    text-align: center;
    margin-bottom: 10px;
}
.inquiry-intro {
    text-align: center;
    color: var(--gray);
    margin-bottom: 30px;
}
.inquiry-product-header {
    background: var(--bg-secondary);
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
}
.inquiry-product-header .product-label {
    color: var(--gray);
    margin-right: 10px;
}
.inquiry-product-header strong {
    color: #4caf50;
}
.inquiry-submit-btn {
    background: #059669 !important;
    font-size: 16px !important;
    padding: 16px 32px !important;
}
.inquiry-submit-btn:hover {
    background: var(--secondary) !important;
}

/* ===== NEW STYLES FOR PRODUCT DETAIL & TRUST ELEMENTS ===== */

/* Breadcrumb Navigation */
.breadcrumb-wrapper {
    background: var(--bg-secondary);
    padding: 15px 0;
    margin-top: 70px;
    border-bottom: 1px solid var(--border-color);
}
.breadcrumb {
    font-size: 14px;
    color: var(--gray);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.breadcrumb a {
    color: #059669;
    transition: color 0.3s;
}
.breadcrumb a:hover {
    color: #4caf50;
    text-decoration: underline;
}
.breadcrumb-separator {
    color: var(--gray);
}
.breadcrumb span:last-child {
    color: var(--dark);
    font-weight: 500;
}

/* Loading Spinner */
.loading {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray);
    grid-column: 1 / -1;
}
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: #059669;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Not Found State */
.no-products {
    text-align: center;
    padding: 80px 20px;
}
.not-found-icon {
    font-size: 80px;
    margin-bottom: 20px;
}
.no-products h3 {
    font-size: 28px;
    color: #4caf50;
    margin-bottom: 10px;
}
.no-products p {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 20px;
}

/* Product Detail Enhancements */
.product-detail-image {
    position: relative;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 400px;
}
.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 500px;
}
.img-placeholder-large {
    font-size: 120px;
    opacity: 0.5;
}
.category-badge {
    display: inline-block;
    background: #059669;
    color: var(--card-bg);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}
.product-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.request-quote-btn {
    flex: 1;
    min-width: 200px;
}
.browse-more-btn {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #4caf50;
    border: 2px solid #4caf50;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}
.browse-more-btn:hover {
    background: #4caf50;
    color: var(--card-bg);
}

/* ===== TRUST ELEMENTS FOR INDEX PAGE ===== */

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #4caf50 0%, var(--secondary) 100%);
    color: var(--card-bg);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item {
    padding: 30px 20px;
}
.stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
}
.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
}
.stat-label {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
}
.stat-suffix {
    font-size: 32px;
}

/* Industry Logos Section */
.industry-section {
    padding: 80px 0;
    background: var(--card-bg);
}
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.industry-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: var(--bg-secondary);
    border-radius: 12px;
    transition: all 0.3s;
}
.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.industry-icon {
    width: 50px;
    height: 50px;
    background: #4caf50;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.industry-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
}

/* Certifications Badges */
.cert-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 0;
}
.cert-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 30px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s;
}
.cert-badge:hover {
    border-color: #059669;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.cert-badge-icon {
    font-size: 40px;
}
.cert-badge-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
}
.cert-badge-sub {
    font-size: 12px;
    color: var(--gray);
}

/* ===== ABOUT PAGE ENHANCEMENTS ===== */

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #059669;
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    padding: 20px 0;
    width: 50%;
}
.timeline-item:nth-child(odd) {
    padding-right: 60px;
    text-align: right;
}
.timeline-item:nth-child(even) {
    padding-left: 60px;
    margin-left: 50%;
}
.timeline-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #059669;
    border-radius: 50%;
    top: 25px;
    border: 4px solid var(--card-bg);
    box-shadow: 0 0 0 3px #059669;
}
.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}
.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}
.timeline-year {
    font-size: 24px;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 5px;
}
.timeline-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}
.timeline-desc {
    font-size: 14px;
    color: var(--gray);
}

/* Factory Section */
.factory-section {
    padding: 80px 0;
}
.factory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.factory-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.factory-image {
    height: 180px;
    background: linear-gradient(135deg, #4caf50 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--card-bg);
    position: relative;
}
.factory-image-placeholder {
    font-size: 14px;
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    padding: 4px 8px;
    border-radius: 4px;
}
.factory-content {
    padding: 20px;
}
.factory-content h4 {
    font-size: 16px;
    color: #4caf50;
    margin-bottom: 8px;
}
.factory-content p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.testimonial-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
}
.testimonial-quote {
    font-size: 48px;
    color: #059669;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
    line-height: 1;
}
.testimonial-text {
    font-size: 15px;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 20px;
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--card-bg);
    font-size: 20px;
    font-weight: 600;
}
.testimonial-info h5 {
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 3px;
}
.testimonial-info span {
    font-size: 13px;
    color: var(--gray);
}

/* ===== APPLICATIONS PAGE ENHANCEMENTS ===== */

.applications-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.application-card-enhanced {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.application-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.app-header {
    padding: 25px;
    background: linear-gradient(135deg, #4caf50 0%, var(--secondary) 100%);
    color: var(--card-bg);
}
.app-icon {
    font-size: 40px;
    margin-bottom: 10px;
}
.app-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}
.app-subtitle {
    font-size: 14px;
    opacity: 0.9;
}
.app-body {
    padding: 25px;
    flex: 1;
}
.app-description {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}
.app-products {
    margin-bottom: 20px;
}
.app-products-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}
.app-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.app-tag {
    background: var(--bg-secondary);
    color: #059669;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}
.app-footer {
    padding: 20px 25px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}
.btn-app-products {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #059669;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}
.btn-app-products:hover {
    color: #4caf50;
    gap: 12px;
}
.btn-app-products i {
    transition: transform 0.3s;
}
.btn-app-products:hover i {
    transform: translateX(5px);
}

/* ===== SEARCH OVERLAY STYLES ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
}
.search-overlay.active {
    display: flex;
}
.search-container {
    background: var(--card-bg);
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    margin: 0 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}
.search-header {
    display: flex;
    align-items: center;
    padding: 0;
    border-bottom: 1px solid var(--border-color);
}
.search-input {
    flex: 1;
    padding: 20px 24px;
    border: none;
    font-size: 18px;
    outline: none;
    background: transparent;
    color: var(--dark);
}
.search-input::placeholder {
    color: var(--gray);
}
.search-close {
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--gray);
    cursor: pointer;
    transition: color 0.3s;
}
.search-close:hover {
    color: var(--dark);
}
.search-results {
    max-height: 400px;
    overflow-y: auto;
}
.search-hint {
    padding: 40px 24px;
    text-align: center;
    color: var(--gray);
    font-size: 14px;
}
.search-no-results {
    padding: 40px 24px;
    text-align: center;
    color: var(--gray);
    font-size: 16px;
}
.search-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.2s;
    cursor: pointer;
}
.search-result-item:hover {
    background: var(--bg-secondary);
}
.search-result-item:last-of-type {
    border-bottom: none;
}
.search-result-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.search-result-placeholder {
    font-size: 24px;
    color: var(--gray);
}
.search-result-info {
    flex: 1;
    min-width: 0;
}
.search-result-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-result-category {
    font-size: 13px;
    color: var(--gray);
}
.search-view-all {
    display: block;
    padding: 16px 24px;
    text-align: center;
    background: var(--bg-secondary);
    color: #059669;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}
.search-view-all:hover {
    background: #e2e8f0;
}
.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: var(--dark);
    transition: all 0.3s;
}
.search-icon:hover {
    background: var(--bg-secondary);
    color: #059669;
}

/* ===== RESPONSIVE STYLES ===== */

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .factory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .applications-grid-enhanced {
        grid-template-columns: 1fr;
    }
    .timeline::before {
        left: 20px;
    }
    .timeline-item {
        width: 100%;
        padding-left: 60px !important;
        padding-right: 0 !important;
        text-align: left !important;
        margin-left: 0 !important;
    }
    .timeline-item .timeline-dot {
        left: 10px !important;
        right: auto !important;
    }
}

@media (max-width: 767px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-number {
        font-size: 36px;
    }
    .industry-grid,
    .factory-grid {
        grid-template-columns: 1fr;
    }
    .cert-badges {
        gap: 15px;
    }
    .cert-badge {
        padding: 15px 20px;
    }
    .product-actions {
        flex-direction: column;
    }
    .request-quote-btn,
    .browse-more-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #25D366;
    border-radius: 50%;
    z-index: -1;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: #fff;
    color: #333;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateX(10px);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
    .whatsapp-tooltip {
        display: none;
    }
}


/* ===== CONTACT MAP ===== */
.contact-map {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ===== DOWNLOADS PAGE ===== */
.page-header {
    background: linear-gradient(135deg, #4caf50 0%, var(--secondary) 100%);
    color: var(--card-bg);
    padding: 150px 0 80px;
    text-align: center;
}
.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}
.page-subtitle {
    font-size: 20px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}
.downloads-page {
    padding: 80px 0;
}
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.download-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 25px;
    transition: all 0.3s;
}
.download-card:hover {
    border-color: #059669;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}
.download-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.download-icon i {
    font-size: 32px;
    color: #059669;
}
.download-content {
    flex: 1;
}
.download-content h3 {
    font-size: 20px;
    color: #4caf50;
    margin-bottom: 10px;
    font-weight: 600;
}
.download-content p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}
.download-meta {
    margin-bottom: 15px;
}
.file-size {
    font-size: 13px;
    color: var(--gray);
}
.file-size i {
    margin-right: 5px;
    color: #059669;
}
.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #4caf50;
    color: var(--card-bg);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
}
.download-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}
.download-btn i {
    font-size: 16px;
}
/* Part Numbers Section */
.part-numbers-section {
    margin-top: 30px;
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 20px;
}
.part-numbers-section h3 {
    font-size: 18px;
    color: #4caf50;
    margin-bottom: 15px;
    font-weight: 600;
}
.table-responsive {
    overflow-x: auto;
}
.part-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 400px;
}
.part-table th, .part-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    white-space: nowrap;
}
.part-table th {
    background: #4caf50;
    color: var(--card-bg);
    font-weight: 600;
    position: sticky;
    top: 0;
}
.part-table tr:hover {
    background: rgba(0,0,0,0.02);
}
.part-table .part-number-cell {
    font-weight: 600;
    color: #059669;
}
/* Active nav link */
.nav-link.active {
    color: #059669;
    font-weight: 600;
}
/* Responsive */
@media (max-width: 992px) {
    .downloads-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 36px;
    }
    .page-subtitle {
        font-size: 16px;
    }
    .download-card {
        flex-direction: column;
        text-align: center;
    }
    .download-icon {
        margin: 0 auto;
    }
}

/* Cart Icon in Header */
.cart-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--dark);
    transition: color 0.3s;
    margin-right: 10px;
}
.cart-icon:hover {
    color: #059669;
}
.cart-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #e53e3e;
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}
.cart-badge:empty,
.cart-badge[style*="display: none"] {
    display: none;
}

/* Cart Page */
.cart-page {
    padding: 120px 0 60px;
    min-height: 70vh;
}
.empty-cart {
    text-align: center;
    padding: 80px 20px;
}
.empty-cart-icon {
    color: var(--gray);
    margin-bottom: 20px;
}
.empty-cart h2 {
    font-size: 24px;
    color: var(--dark);
    margin-bottom: 10px;
}
.empty-cart p {
    color: var(--gray);
    margin-bottom: 30px;
}
.cart-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
}
.cart-item-image {
    width: 80px;
    height: 80px;
    background: var(--bg-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-item-details {
    min-width: 0;
}
.cart-item-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}
.cart-item-part {
    font-size: 13px;
    color: #059669;
    margin-bottom: 5px;
}
.cart-item-price {
    font-size: 14px;
    color: var(--gray);
}
.cart-item-quantity {
    text-align: center;
}
.cart-item-quantity label {
    display: block;
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 8px;
}
.cart-item-subtotal {
    text-align: right;
    min-width: 100px;
}
.cart-item-subtotal label {
    display: block;
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 8px;
}
.subtotal-value {
    font-size: 18px;
    font-weight: 700;
    color: #4caf50;
}
.cart-item-remove {
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
    padding: 8px;
    transition: color 0.3s;
}
.cart-item-remove:hover {
    color: #e53e3e;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}
.quantity-selector input {
    width: 50px;
    text-align: center;
    border: none;
    padding: 8px 0;
    font-size: 14px;
    -moz-appearance: textfield;
}
.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.qty-btn {
    background: var(--bg-secondary);
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}
.qty-btn:hover {
    background: var(--border-color);
}

/* Cart Summary */
.cart-summary {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 25px;
    position: sticky;
    top: 90px;
}
.cart-summary h3 {
    font-size: 20px;
    color: #4caf50;
    margin-bottom: 20px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}
.summary-total {
    font-size: 24px;
    font-weight: 700;
    color: #4caf50;
}
.price-note {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.5;
}
.btn-block {
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
}
.btn-success {
    background: #38a169;
    color: white;
}
.btn-success:hover {
    background: #2f855a;
}

/* Product Price Display */
.product-price-section {
    margin-bottom: 20px;
}
.price-display {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
}
.price-label {
    font-size: 14px;
    color: var(--gray);
}
.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #38a169;
}
.price-unit {
    font-size: 14px;
    color: var(--gray);
}
.price-note {
    font-size: 13px;
    color: var(--gray);
}

/* Part Number Selector */
.part-number-selector {
    margin-top: 15px;
}
.part-number-selector label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
}
.part-number-selector select {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 14px;
    background: white;
}

/* Product Cart Controls */
.product-cart-controls {
    margin: 20px 0;
}
.quantity-selector-container {
    margin-bottom: 15px;
}
.quantity-selector-container label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
}
.quantity-selector.product-qty {
    max-width: 150px;
}
.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.add-to-cart-btn {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Product Card Price */
.product-price {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #38a169;
    margin-bottom: 8px;
}
.product-card-actions {
    display: flex;
    gap: 8px;
    padding: 12px 15px;
    border-top: 1px solid var(--border-color);
}
.add-cart-btn {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* RFQ Form */
.rfq-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
}
.rfq-form-header {
    text-align: center;
    margin-bottom: 30px;
}
.rfq-form-header h2 {
    font-size: 28px;
    color: #4caf50;
    margin-bottom: 10px;
}
.rfq-cart-summary {
    background: var(--bg-secondary);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}
.rfq-cart-summary h4 {
    font-size: 16px;
    color: #4caf50;
    margin-bottom: 15px;
}
.rfq-cart-item {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}
.rfq-item-name {
    font-weight: 500;
}
.rfq-item-part {
    color: #059669;
    font-size: 12px;
}
.rfq-item-qty {
    color: var(--gray);
}
.rfq-item-price {
    color: var(--gray);
}
.rfq-item-subtotal {
    font-weight: 600;
    color: #4caf50;
}
.rfq-cart-total {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    margin-top: 10px;
}
.form-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}

/* RFQ Success */
.rfq-success {
    text-align: center;
    padding: 80px 20px;
}
.success-icon {
    width: 80px;
    height: 80px;
    background: #38a169;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 30px;
}
.rfq-success h2 {
    font-size: 28px;
    color: #4caf50;
    margin-bottom: 15px;
}
.rfq-success p {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 30px;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--dark);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 14px;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Responsive Cart */
@media (max-width: 992px) {
    .cart-content {
        grid-template-columns: 1fr;
    }
    .cart-summary {
        position: static;
    }
}
@media (max-width: 768px) {
    .cart-item {
        grid-template-columns: 60px 1fr;
        gap: 15px;
    }
    .cart-item-image {
        width: 60px;
        height: 60px;
    }
    .cart-item-quantity,
    .cart-item-subtotal {
        grid-column: 2;
    }
    .cart-item-remove {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
    }
    .rfq-cart-item {
        grid-template-columns: 1fr;
        gap: 5px;
    }
}

/* About Page - Trust Elements */

/* === Trust Stats Bar === */
.trust-stats-bar {
    padding: 50px 0;
    background: linear-gradient(135deg, #4caf50 0%, var(--secondary) 100%);
    color: var(--card-bg);
}
.trust-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.trust-stat-item {
    padding: 25px 20px;
}
.trust-stat-number {
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}
.trust-stat-suffix {
    font-size: 28px;
}
.trust-stat-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

/* === Client Industries Grid === */
.client-industries {
    padding: 80px 0;
    background: var(--card-bg);
}
.client-industries .section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 16px;
    margin-top: -30px;
    margin-bottom: 50px;
}
.industries-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.industry-trust-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 25px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    text-align: center;
}
.industry-trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #059669;
}
.industry-trust-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4caf50 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}
.industry-trust-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
}

/* === Enhanced Factory Section === */
.factory-enhanced {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.factory-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.factory-highlight-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.factory-highlight-icon {
    width: 50px;
    height: 50px;
    background: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}
.factory-highlight-number {
    font-size: 28px;
    font-weight: 800;
    color: #4caf50;
    margin-bottom: 5px;
}
.factory-highlight-label {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}
.factory-equipment-list {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}
.factory-equipment-list h4 {
    font-size: 18px;
    color: #4caf50;
    margin-bottom: 20px;
    text-align: center;
}
.equipment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.equipment-tag {
    background: var(--bg-secondary);
    color: var(--dark);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
}
.equipment-tag:hover {
    background: #4caf50;
    color: var(--card-bg);
    border-color: #4caf50;
}
.factory-facility-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.factory-facility-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}
.factory-facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.factory-facility-img {
    height: 160px;
    background: linear-gradient(135deg, #4caf50 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: rgba(255,255,255,0.6);
}
.factory-facility-body {
    padding: 20px;
}
.factory-facility-body h4 {
    font-size: 16px;
    color: #4caf50;
    margin-bottom: 8px;
}
.factory-facility-body p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 10px;
}
.factory-facility-detail {
    font-size: 12px;
    color: #059669;
    font-weight: 500;
}

/* === Team Section === */
.team-section {
    padding: 80px 0;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.team-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: #059669;
}
.team-avatar {
    height: 200px;
    background: linear-gradient(135deg, #4caf50 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.team-avatar-initials {
    width: 90px;
    height: 90px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--card-bg);
    border: 3px solid rgba(255,255,255,0.4);
}
.team-avatar-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, rgba(26,54,93,0.8), transparent);
}
.team-body {
    padding: 25px;
    text-align: center;
}
.team-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}
.team-role {
    font-size: 13px;
    color: #059669;
    font-weight: 600;
    margin-bottom: 15px;
}
.team-bio {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}
.team-contact-btn {
    display: inline-block;
    padding: 10px 24px;
    background: #4caf50;
    color: var(--card-bg);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}
.team-contact-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* === Quality Process === */
.quality-process {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.quality-process-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 40px;
    margin-bottom: 40px;
    position: relative;
}
.quality-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 15px;
    position: relative;
}
.quality-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: #059669;
}
.quality-step:last-child::after {
    display: none;
}
.quality-step-number {
    width: 60px;
    height: 60px;
    background: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--card-bg);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}
.quality-step-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.quality-step-desc {
    font-size: 12px;
    color: var(--gray);
    line-height: 1.5;
}
.quality-capabilities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.quality-cap-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
}
.quality-cap-icon {
    font-size: 28px;
    margin-bottom: 10px;
}
.quality-cap-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}
.quality-cap-value {
    font-size: 13px;
    color: #059669;
    font-weight: 600;
}

/* === ISO Certification Banner === */
.iso-banner {
    padding: 40px 0;
    background: linear-gradient(135deg, #4caf50 0%, var(--secondary) 100%);
    color: var(--card-bg);
    text-align: center;
}
.iso-banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.iso-badge {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    border: 2px solid rgba(255,255,255,0.3);
}
.iso-text h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}
.iso-text p {
    font-size: 14px;
    opacity: 0.85;
}

/* === Technical Resources === */
.tech-resources {
    padding: 80px 0;
}
.tech-resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.tech-resource-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: all 0.3s;
}
.tech-resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: #059669;
}
.tech-resource-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.tech-resource-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
}
.tech-resource-desc {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    flex: 1;
}
.tech-resource-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #4caf50;
    color: var(--card-bg);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}
.tech-resource-btn:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}
.tech-resource-format {
    font-size: 11px;
    color: var(--gray);
    background: var(--bg-secondary);
    padding: 3px 8px;
    border-radius: 4px;
    align-self: flex-start;
}

/* === Home Trust Elements === */
.home-trust-bar {
    padding: 50px 0;
    background: linear-gradient(135deg, #4caf50 0%, var(--secondary) 100%);
    color: var(--card-bg);
}
.home-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}
.home-trust-item {
    padding: 20px 15px;
}
.home-trust-icon {
    font-size: 36px;
    margin-bottom: 10px;
}
.home-trust-number {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}
.home-trust-suffix {
    font-size: 24px;
}
.home-trust-label {
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
}

.home-industry-strip {
    padding: 40px 0;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border-color);
}
.home-industry-strip .section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 15px;
    margin-top: -30px;
    margin-bottom: 30px;
}
.home-industry-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}
.home-industry-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--bg-secondary);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    transition: all 0.3s;
}
.home-industry-tag:hover {
    background: #4caf50;
    color: var(--card-bg);
}
.home-industry-tag-icon {
    font-size: 18px;
}

.home-certifications-strip {
    padding: 50px 0;
    background: var(--bg-secondary);
}
.home-cert-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.home-cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    transition: all 0.3s;
}
.home-cert-item:hover {
    border-color: #059669;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
.home-cert-icon {
    width: 40px;
    height: 40px;
    background: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.home-cert-text {
    display: flex;
    flex-direction: column;
}
.home-cert-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}
.home-cert-desc {
    font-size: 12px;
    color: var(--gray);
}

/* About Page - Trust Elements Responsive */
@media (max-width: 991px) {
    .trust-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .factory-highlights { grid-template-columns: repeat(3, 1fr); }
    .factory-facility-cards { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .quality-process-flow { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .quality-process-flow::after { display: none; }
    .quality-capabilities { grid-template-columns: repeat(2, 1fr); }
    .tech-resources-grid { grid-template-columns: repeat(2, 1fr); }
    .home-trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .trust-stats-grid,
    .industries-trust-grid,
    .factory-highlights,
    .factory-facility-cards,
    .team-grid,
    .quality-capabilities,
    .tech-resources-grid,
    .home-trust-grid { grid-template-columns: 1fr; }
    .quality-process-flow { grid-template-columns: 1fr; }
    .iso-banner-inner { flex-direction: column; gap: 20px; }
    .home-cert-grid { flex-direction: column; align-items: center; }
}
/* ===== TESTIMONIALS & TRUST SECTIONS ===== */

/* Trusted Institutions Section */
.trusted-institutions-section {
    padding: 80px 0;
    background: var(--card-bg);
}
.institutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.institution-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
}
.institution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.institution-icon {
    width: 70px;
    height: 70px;
    background: #4caf50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 15px;
}
.institution-type {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 5px;
}
.institution-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.4;
}

/* Customer Testimonials Section */
.customer-testimonials-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.testimonial-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
}
.testimonial-quote {
    font-size: 48px;
    color: #059669;
    opacity: 0.3;
    position: absolute;
    top: 15px;
    left: 20px;
    line-height: 1;
}
.testimonial-stars {
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 20px;
}
.testimonial-text {
    font-size: 15px;
    color: var(--dark);
    line-height: 1.7;
    margin-bottom: 20px;
    padding-left: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 20px;
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #4caf50 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--card-bg);
    font-size: 18px;
    font-weight: 600;
}
.testimonial-info h5 {
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 3px;
}
.testimonial-info span {
    font-size: 13px;
    color: var(--gray);
}
.testimonial-product-tag {
    display: inline-block;
    background: var(--bg-secondary);
    color: #059669;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    margin-top: 10px;
    margin-left: 20px;
}

/* Home Trust Banner */
.home-trust-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #4caf50 0%, var(--secondary) 100%);
    color: var(--card-bg);
}
.home-trust-banner h2 {
    color: var(--card-bg);
}
.home-trust-banner-subtitle {
    color: rgba(255,255,255,0.9);
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
}
.home-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.home-testimonial-card {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 25px;
    backdrop-filter: blur(10px);
}
.home-testimonial-text {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.95;
}
.home-testimonial-author {
    font-size: 13px;
    opacity: 0.8;
}
.home-client-types {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}
.home-client-type-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}
.home-client-type-tag-icon {
    font-size: 16px;
}

/* Case Studies Section */
.case-studies-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.case-study-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}
.case-study-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.case-study-header {
    padding: 25px;
    background: linear-gradient(135deg, #4caf50 0%, var(--secondary) 100%);
    color: var(--card-bg);
}
.case-study-industry {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 8px;
}
.case-study-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}
.case-study-product {
    font-size: 13px;
    opacity: 0.9;
}
.case-study-body {
    padding: 25px;
}
.case-study-section {
    margin-bottom: 15px;
}
.case-study-section:last-child {
    margin-bottom: 0;
}
.case-study-label {
    font-size: 12px;
    font-weight: 600;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}
.case-study-content {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}
.case-study-result {
    background: var(--bg-secondary);
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 13px;
    color: #4caf50;
    font-weight: 500;
}

/* Case Studies Page */
.case-studies-page {
    padding: 120px 0 80px;
}
.case-studies-page-header {
    text-align: center;
    margin-bottom: 50px;
}
.case-studies-page-header h1 {
    font-size: 36px;
    color: #4caf50;
    margin-bottom: 15px;
}
.case-studies-page-header p {
    font-size: 16px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Team Section Enhancements */
.team-section {
    padding: 80px 0;
    background: var(--card-bg);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.team-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.team-avatar {
    height: 200px;
    background: linear-gradient(135deg, #4caf50 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.team-avatar-initials {
    font-size: 60px;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
}
.team-avatar-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1);
}
.team-body {
    padding: 25px;
    text-align: center;
}
.team-name {
    font-size: 18px;
    font-weight: 700;
    color: #4caf50;
    margin-bottom: 5px;
}
.team-role {
    font-size: 14px;
    color: #059669;
    margin-bottom: 15px;
}
.team-bio {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 20px;
}
.team-contact-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #4caf50;
    color: var(--card-bg);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.3s;
}
.team-contact-btn:hover {
    background: var(--secondary);
}

/* Responsive */
@media (max-width: 991px) {
    .trust-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .factory-highlights { grid-template-columns: repeat(3, 1fr); }
    .factory-facility-cards { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .quality-process-flow { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .quality-process-flow::after { display: none; }
    .quality-capabilities { grid-template-columns: repeat(2, 1fr); }
    .tech-resources-grid { grid-template-columns: repeat(2, 1fr); }
    .home-trust-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .institutions-grid { grid-template-columns: repeat(3, 1fr); }
    .home-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .case-studies-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .trust-stats-grid,
    .industries-trust-grid,
    .factory-highlights,
    .factory-facility-cards,
    .team-grid,
    .quality-capabilities,
    .tech-resources-grid,
    .home-trust-grid,
    .testimonials-grid,
    .institutions-grid,
    .home-testimonials-grid,
    .case-studies-grid { grid-template-columns: 1fr; }
    .quality-process-flow { grid-template-columns: 1fr; }
    .iso-banner-inner { flex-direction: column; gap: 20px; }
    .home-cert-grid { flex-direction: column; align-items: center; }
    .section-title { font-size: 28px; }
}


/* ===== ENHANCED SEARCH STYLES v2 ===== */
.enhanced-search-container {
    max-width: 700px;
}
.search-body {
    max-height: 500px;
    overflow-y: auto;
}
.search-input-wrapper {
    display: flex;
    align-items: center;
    flex: 1;
    padding-left: 20px;
}
.search-icon-svg {
    color: var(--gray);
    margin-right: 12px;
    flex-shrink: 0;
}
.enhanced-search-input {
    padding-left: 0;
}
.search-results-container {
    padding: 0;
}
.search-results-section {
    border-bottom: 1px solid var(--border-color);
}
.search-results-section:last-child {
    border-bottom: none;
}
.results-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 24px;
    background: var(--bg-secondary);
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.view-all-link {
    color: #059669;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
}
.view-all-link:hover {
    text-decoration: underline;
}
.search-result-item.blog-result,
.search-result-item.app-result {
    padding: 14px 24px;
}
.search-result-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.blog-icon {
    background: #e6f3ff;
    color: #0066cc;
}
.app-icon {
    background: #fff3e6;
    color: #cc6600;
}
.search-result-price {
    font-size: 14px;
    font-weight: 600;
    color: #4caf50;
    margin-top: 4px;
}
.search-result-price .price-note {
    font-size: 12px;
    font-weight: 400;
    color: var(--gray);
}
.search-highlight {
    background: #fef3c7;
    padding: 0 2px;
    border-radius: 2px;
}
.search-history-section {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
}
.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
}
.clear-history {
    background: none;
    border: none;
    color: #059669;
    font-size: 12px;
    cursor: pointer;
    text-transform: none;
}
.clear-history:hover {
    text-decoration: underline;
}
.history-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.history-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--bg-secondary);
    border-radius: 20px;
    font-size: 13px;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.2s;
}
.history-item:hover {
    background: #4caf50;
    color: var(--card-bg);
}
.history-item svg {
    color: var(--gray);
}
.history-item:hover svg {
    color: var(--card-bg);
}
.search-suggestions {
    padding: 16px 24px;
}
.suggestions-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.suggestion-item {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border-radius: 6px;
    font-size: 13px;
    color: var(--dark);
    margin-right: 8px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: all 0.2s;
}
.suggestion-item:hover {
    background: #4caf50;
    color: var(--card-bg);
}
.search-categories {
    padding: 24px;
    text-align: center;
}
.no-results {
    padding: 40px 24px;
    text-align: center;
    color: var(--gray);
    font-size: 15px;
}


/* ===== ENHANCED PRODUCT DETAIL STYLES ===== */
.specs-container {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    margin: 20px 0;
}
.specs-title {
    font-size: 20px;
    font-weight: 700;
    color: #4caf50;
    padding: 20px 24px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    margin: 0;
}
.spec-section {
    border-bottom: 1px solid var(--border-color);
}
.spec-section:last-of-type {
    border-bottom: none;
}
.spec-section-header {
    font-size: 13px;
    font-weight: 600;
    color: #059669;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 24px 8px;
    background: linear-gradient(to right, var(--bg-secondary), transparent);
}
.spec-section .spec-table {
    margin: 0;
}
.spec-section .spec-table th {
    background: transparent;
    width: 45%;
}
.specs-footer {
    padding: 16px 24px;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
}
.spec-quality-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--card-bg);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #059669;
    border: 1px solid #059669;
}
.spec-quality-badge svg {
    color: #059669;
}
.product-applications-section {
    margin: 20px 0;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
}
.product-applications-section .specs-title {
    background: transparent;
    padding: 0 0 16px;
    border: none;
}
.applications-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.app-tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    color: var(--dark);
    transition: all 0.2s;
}
.app-tag:hover {
    background: #4caf50;
    color: var(--card-bg);
    border-color: #4caf50;
}

/* ===== VIRTUAL FACTORY TOUR STYLES ===== */
.factory-tour-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}
.factory-tour-section .section-subtitle {
    text-align: center;
    font-size: 24px;
    color: #4caf50;
    margin-bottom: 10px;
}
.factory-tour-desc {
    text-align: center;
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 30px;
}
.factory-tour-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.factory-tour-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.factory-tour-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}
.factory-tour-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.factory-tour-item:hover img {
    transform: scale(1.05);
}
.factory-tour-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(26, 54, 93, 0.95), rgba(26, 54, 93, 0.7), transparent);
    color: var(--card-bg);
    transform: translateY(60px);
    transition: transform 0.3s;
}
.factory-tour-item:hover .factory-tour-overlay {
    transform: translateY(0);
}
.factory-tour-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 6px;
}
.factory-tour-icon {
    font-size: 20px;
}
.factory-tour-detail {
    font-size: 13px;
    opacity: 0.9;
    margin: 0;
}
@media (max-width: 992px) {
    .factory-tour-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .factory-tour-grid {
        grid-template-columns: 1fr;
    }
    .factory-tour-overlay {
        transform: translateY(0);
        padding: 15px;
    }
}

/* ===== CHAT WIDGET STYLES ===== */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.chat-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent, #3182ce);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.4);
    transition: all 0.3s;
    color: white;
}

.chat-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(49, 130, 206, 0.5);
}

.chat-toggle-btn.active {
    background: var(--primary, #1a365d);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 360px;
    max-width: calc(100vw - 40px);
    height: 500px;
    max-height: calc(100vh - 120px);
    background: var(--white, #ffffff);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    display: none;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary, #1a365d) 0%, var(--secondary, #2c5282) 100%);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.chat-header-info p {
    margin: 4px 0 0;
    font-size: 12px;
    opacity: 0.85;
}

.chat-minimize-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.chat-minimize-btn:hover {
    opacity: 1;
}

.chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.faq-section h5 {
    font-size: 13px;
    color: var(--gray, #718096);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--light, #ebf8ff);
    border: 1px solid var(--border, #e2e8f0);
    border-radius: 10px;
    padding: 12px 14px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s;
    width: 100%;
}

.faq-item:hover {
    background: var(--accent, #3182ce);
    border-color: var(--accent, #3182ce);
    color: white;
}

.faq-question {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.faq-answers {
    padding: 8px 0;
}

.faq-answer-item {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 12px;
}

.faq-answer-question {
    font-weight: 600;
    color: var(--primary, #1a365d);
    font-size: 14px;
    margin-bottom: 8px;
}

.faq-answer-text {
    font-size: 14px;
    color: var(--dark, #1a202c);
    line-height: 1.6;
}

.back-to-faq-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--accent, #3182ce);
    font-size: 13px;
    cursor: pointer;
    padding: 8px 0;
    transition: color 0.2s;
}

.back-to-faq-btn:hover {
    color: var(--primary, #1a365d);
}

.chat-messages {
    display: none;
}

.chat-footer {
    background: #f7fafc;
    padding: 16px;
    border-top: 1px solid var(--border, #e2e8f0);
}

.no-answer-text {
    font-size: 12px;
    color: var(--gray, #718096);
    text-align: center;
    margin-bottom: 10px;
}

.contact-buttons {
    display: flex;
    gap: 10px;
}

.contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background: #128C7E;
    color: white;
}

.email-btn {
    background: var(--primary, #1a365d);
    color: white;
}

.email-btn:hover {
    background: var(--secondary, #2c5282);
    color: white;
}

@media (max-width: 480px) {
    .chat-window {
        width: calc(100vw - 30px);
        right: -10px;
        height: 450px;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
}

/* ===== REQUEST QUOTE FLOATING BUTTON ===== */
.request-quote-float {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 998;
}

.quote-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent, #3182ce) 0%, var(--secondary, #2c5282) 100%);
    color: white;
    padding: 14px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.4);
    transition: all 0.3s;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.quote-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(49, 130, 206, 0.5);
}

.quote-btn .quote-icon {
    font-size: 18px;
}

@keyframes quote-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(49, 130, 206, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(49, 130, 206, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(49, 130, 206, 0);
    }
}

.quote-btn {
    animation: quote-pulse 2s infinite;
}

.quote-btn:hover {
    animation: none;
}

@media (max-width: 768px) {
    .request-quote-float {
        right: 10px;
    }
    
    .quote-btn {
        padding: 12px 14px;
        font-size: 12px;
    }
}

/* ===== MOBILE RESPONSIVE V9 - PHOTONEDGE ===== */

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--dark);
    cursor: pointer;
    padding: 8px;
    line-height: 1;
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: block; }
    .nav { position: relative; }
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--card-bg);
        flex-direction: column;
        padding: 15px 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        gap: 0;
        z-index: 1000;
    }
    .nav-list li { padding: 12px 0; border-bottom: 1px solid var(--border-color); }
    .nav-list li:last-child { border-bottom: none; }
    .nav-list.active { display: flex; }
    .lang-switcher { margin-top: 10px; }
}

/* Hero Mobile */
@media (max-width: 768px) {
    .hero h1 { font-size: 28px; letter-spacing: 0; }
    .hero .subtitle { font-size: 16px; }
    .hero .company { font-size: 14px; }
    .hero { padding: 120px 0 60px; }
    .hero-btns { flex-direction: column; gap: 12px; }
    .hero-btns .btn { width: 100%; text-align: center; }
}

/* Product Detail Mobile */
@media (max-width: 768px) {
    .product-detail-grid { grid-template-columns: 1fr; gap: 30px; }
    .product-detail-image { height: 280px; }
    .product-detail-info h1 { font-size: 22px; }
}

/* Table Responsive Mobile */
@media (max-width: 768px) {
    .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .spec-table, .part-table { min-width: 400px; }
}

/* Products Grid Mobile */
@media (max-width: 767px) {
    .products-grid { grid-template-columns: 1fr; }
    .product-card { padding: 15px; }
}
@media (min-width: 480px) and (max-width: 767px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Request Quote Float Mobile */
@media (max-width: 768px) {
    .request-quote-float { 
        right: auto; left: 50%; top: auto; bottom: 90px; 
        transform: translateX(-50%);
    }
    .quote-btn { 
        writing-mode: horizontal-tb; text-orientation: initial;
        padding: 10px 20px; font-size: 13px;
    }
}

/* Footer Mobile */
@media (max-width: 767px) {
    .footer-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .footer-brand { text-align: center; }
}


/* Factory hero image in about.html */
.factory-hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    max-height: 400px;
}
.factory-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.factory-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px 30px;
    color: white;
}
.factory-hero-overlay p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

/* Factory facility card images */
.factory-facility-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}
.factory-facility-img {
    height: auto;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7fa;
    border-radius: 8px 8px 0 0;
}
.factory-facility-card .factory-facility-img img {
    border-radius: 8px 8px 0 0;
}
.factory-img-placeholder {
    height: 200px;
    font-size: 48px;
    background: linear-gradient(135deg, #e8ecf1, #d1d8e0);
}

/* Homepage facility showcase */
.home-facility-showcase {
    padding: 30px 0 40px;
    background: #f8f9fb;
}
.facility-showcase-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 16px;
    max-height: 360px;
}
.facility-showcase-main img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
.facility-showcase-side {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.facility-showcase-side img {
    width: 100%;
    height: 172px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* Mobile responsive for facility showcase */
@media (max-width: 768px) {
    .factory-hero-image img {
        height: 250px;
    }
    .factory-facility-img img {
        height: 180px;
    }
    .facility-showcase-grid {
        grid-template-columns: 1fr;
        max-height: none;
    }
    .facility-showcase-main img {
        height: 220px;
    }
    .facility-showcase-side {
        flex-direction: row;
    }
    .facility-showcase-side img {
        height: 140px;
    }
}

/* Mobile responsive for product categories, features, applications grids */
@media (max-width: 991px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .applications-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 767px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .applications-grid {
        grid-template-columns: 1fr;
    }
}

/* Client Logo Wall */
.client-logo-section {
    padding: 60px 0;
    background: var(--card-bg);
    text-align: center;
}

.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
    margin-top: 40px;
    opacity: 0.7;
}

.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    transition: opacity 0.3s;
}

.client-logo-item:hover {
    opacity: 1;
}

.client-logo-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-dark);
    letter-spacing: 0.5px;
}

@media (max-width: 991px) {
    .client-logo-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .client-logo-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    .client-logo-text {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .client-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Enhanced Stats Bar */
.stats-bar-enhanced {
    background: linear-gradient(135deg, #4caf50 0%, #2980b9 100%);
    padding: 50px 0;
    color: var(--card-bg);
}

.stats-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item-enhanced {
    padding: 20px;
}

.stat-number-enhanced {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
}

.stat-label-enhanced {
    font-size: 16px;
    opacity: 0.9;
}

@media (max-width: 767px) {
    .stats-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stat-number-enhanced {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .stats-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Warranty Section */
.warranty-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.warranty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.warranty-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.warranty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.warranty-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.warranty-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.warranty-desc {
    color: var(--gray);
    line-height: 1.6;
}

@media (max-width: 767px) {
    .warranty-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .warranty-section {
        padding: 50px 0;
    }
    .warranty-card {
        padding: 30px 20px;
    }
}

/* Enhanced Certification Badges */
.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--card-bg);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin: 8px;
}

.cert-badge-icon {
    font-size: 24px;
}

.cert-badge-text {
    font-weight: 600;
    color: var(--gray-dark);
}

/* Enhanced Contact Page */
.contact-info-enhanced {
    background: var(--bg-secondary);
    padding: 60px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.contact-info-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    color: #4caf50;
}

.contact-info-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.contact-info-content {
    color: var(--gray);
    line-height: 1.8;
}

.contact-hours {
    margin-top: 10px;
    font-size: 14px;
    color: var(--gray);
}

@media (max-width: 767px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-info-enhanced {
        padding: 40px 0;
    }
}

/* Client Industry Grid */
.client-industry-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:20px;max-width:900px;margin:0 auto;}
.client-industry-item{text-align:center;padding:20px;background:var(--card-bg);border-radius:10px;box-shadow:0 2px 8px rgba(0,0,0,0.06);transition:all 0.3s;}
.client-industry-item:hover{transform:translateY(-3px);box-shadow:0 6px 16px rgba(0,0,0,0.1);}
.client-industry-icon{font-size:36px;margin-bottom:10px;}
.client-industry-text{font-size:14px;font-weight:500;color:#4caf50;}

/* Featured Products */
.featured-products{padding:80px 0;background:var(--card-bg);}
.featured-products-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-bottom:30px;}
.featured-product-card{background:var(--card-bg);border:1px solid var(--border-color);border-radius:12px;overflow:hidden;transition:all 0.3s;cursor:pointer;}
.featured-product-card:hover{transform:translateY(-5px);box-shadow:0 10px 30px rgba(0,0,0,0.1);}
.featured-product-img{width:100%;height:180px;object-fit:cover;background:var(--bg-secondary);}
.featured-product-info{padding:16px;}
.featured-product-category{font-size:12px;color:#059669;text-transform:uppercase;letter-spacing:0.5px;margin-bottom:6px;}
.featured-product-name{font-size:16px;font-weight:600;color:#4caf50;margin-bottom:8px;line-height:1.3;}
.featured-product-price{font-size:14px;color:var(--gray);}
.featured-product-actions{display:flex;gap:8px;margin-top:12px;}
.featured-product-actions .btn{padding:8px 16px;font-size:13px;flex:1;}
.featured-view-all{text-align:center;margin-top:20px;}
.featured-view-all .btn{padding:14px 40px;}

img[loading="lazy"] {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
}

/* ================================
   Product Compare Styles
   ================================ */

.compare-section {
    padding: 40px 0;
}

.compare-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.compare-header h2 {
    margin: 0;
    color: #333;
    font-size: 1.5rem;
}

.compare-actions {
    display: flex;
    gap: 10px;
}

.compare-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.compare-table th,
.compare-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.compare-table .param-col {
    width: 180px;
    background: #f8f9fa;
    font-weight: 600;
    text-align: left !important;
    color: #555;
}

.compare-table .product-col {
    width: 250px;
    min-width: 200px;
    position: relative;
}

.compare-product-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 15px;
    border-radius: 8px;
    background: #f5f5f5;
    padding: 10px;
}

.compare-product-name {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.4;
}

.btn-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    border: none;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-remove:hover {
    background: #cc0000;
    transform: scale(1.1);
}

.compare-table .param-name {
    background: #f8f9fa;
    font-weight: 500;
    text-align: left !important;
    color: #666;
}

.compare-table .param-value {
    color: #333;
    font-size: 0.95rem;
}

.compare-table tbody tr:hover {
    background: #fafafa;
}

.compare-table tbody tr:nth-child(even) .param-name {
    background: #f0f2f5;
}

.empty-compare {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.empty-compare svg {
    color: #ccc;
    margin-bottom: 20px;
}

.empty-compare h3 {
    color: #666;
    margin-bottom: 10px;
}

.empty-compare p {
    color: #999;
    margin-bottom: 25px;
}

.compare-footer {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.compare-footer .btn {
    min-width: 200px;
}

/* Compare button in product card */
.compare-btn {
    transition: all 0.2s;
}

.compare-btn.active {
    background: #4caf50 !important;
    color: white !important;
    border-color: #4caf50 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .compare-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .compare-table .param-col {
        width: 120px;
    }
    
    .compare-table .product-col {
        width: 180px;
        min-width: 150px;
    }
    
    .compare-product-img {
        width: 80px;
        height: 80px;
    }
}

/* 更多深色模式覆盖 - 产品卡片和表单 */





















/* 规格表深色模式支持 */










/* 详情页对比按钮激活状态 */
#detailCompareBtn.active {
    background: #4caf50 !important;
    color: white !important;
    border-color: #4caf50 !important;
}

#detailCompareBtn.active svg {
    color: white !important;
}

