/* ==========================================
   Multi Sales Corporation - Premium B2B Industrial CSS
   Complete Content Integration Version
   ========================================== */

/* 1. COLOR SYSTEM */
:root {
    --primary-navy: #102A43;
    --footer-navy: #0B1F33;
    --primary-charcoal: #2F3A45;
    --secondary-steel-grey: #6B7280;
    --secondary-light-grey: #F5F7FA;
    --white: #FFFFFF;
    --accent-orange: #F97316;
    --accent-orange-hover: #ea6c10;

    --text-primary: #000000;
    --text-secondary: #000000;
    --slate-grey: #000000;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* 2. BASE */
body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--white);
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-navy);
}

h1 { font-size: 40px; }
h2 { font-size: 30px; }
h3 { font-size: 22px; }

a { transition: all 0.3s ease; }

/* 3. UTILITY CLASSES */
.bg-navy { background-color: var(--primary-navy) !important; }
.bg-charcoal { background-color: var(--primary-charcoal) !important; }
.bg-light-grey { background-color: var(--secondary-light-grey) !important; }
.text-orange { color: var(--accent-orange) !important; }
.text-navy { color: var(--primary-navy) !important; }
.text-muted,
.text-secondary,
.text-body-secondary,
.form-text {
    color: #000000 !important;
}
.bg-navy .text-muted,
.bg-navy .text-secondary,
.bg-navy .text-body-secondary,
.mega-footer .text-muted,
.page-header .text-muted,
.hero-content .text-muted {
    color: #CBD5E1 !important;
}

/* 4. BUTTONS */
.btn-orange {
    background-color: var(--accent-orange);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-orange:hover {
    background-color: var(--accent-orange-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

.btn-outline-white {
    background-color: transparent;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    border: 2px solid var(--white);
    padding: 10px 26px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--primary-navy);
    transform: translateY(-2px);
}

.btn-navy {
    background-color: var(--primary-navy);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.btn-navy:hover {
    background-color: #1a3d5c;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 42, 67, 0.35);
}

/* 5. STICKY HEADER (always white) */
.header-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1050;
    transition: all 0.4s ease;
    background-color: var(--white);
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    height: 80px;
}
.header-wrapper .navbar {
    height: 80px;
}
.header-wrapper.scrolled {
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.10);
}
.header-wrapper .navbar-brand {
    color: var(--primary-navy);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.6rem;
    transition: color 0.4s ease;
}
.header-wrapper.scrolled .navbar-brand {
    color: var(--primary-navy);
}
.header-wrapper .nav-link {
    color: var(--primary-navy) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 10px !important;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.header-wrapper.scrolled .nav-link {
    color: var(--primary-navy) !important;
}
.header-wrapper .nav-link:hover {
    color: var(--accent-orange) !important;
}
.header-wrapper .navbar-toggler-icon {
    filter: none !important;
}
.header-wrapper.scrolled .navbar-toggler-icon {
    filter: none !important;
}
.header-wrapper .navbar .container {
    max-width: 1400px;
    margin: auto;
}
.header-wrapper .navbar-nav {
    gap: 8px;
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .header-wrapper .nav-link {
        font-size: 13.5px !important;
        padding: 8px 6px !important;
    }
    .header-wrapper .navbar-nav {
        gap: 6px;
    }
    .header-wrapper .navbar-brand span {
        font-size: 1.1rem;
    }
}
@media (min-width: 1400px) {
    .header-wrapper .navbar-nav {
        gap: 15px;
    }
    .header-wrapper .nav-link {
        font-size: 15px !important;
        padding: 8px 10px !important;
    }
}
.header-wrapper .navbar-brand img {
    width: 220px;
}
.header-wrapper .dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
}
.header-wrapper .dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}
.header-wrapper .dropdown-item:hover {
    background-color: var(--secondary-light-grey);
    color: var(--accent-orange);
    padding-left: 25px;
}
.header-wrapper.scrolled .dropdown-toggle {
    color: var(--primary-navy) !important;
}

/* 6. HERO VIDEO SECTION */
.hero-video-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(16, 42, 67, 0.88) 0%, rgba(11, 31, 51, 0.78) 100%);
    z-index: -1;
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}
.hero-content h1 {
    color: var(--white) !important;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
}
.hero-content p {
    color: #CBD5E1;
    font-size: 1rem;
    margin-bottom: 22px;
    line-height: 1.65;
}
.hero-content .hero-sub {
    font-size: 0.95rem;
    color: #94A3B8;
    margin-bottom: 28px;
}
.hero-badge {
    display: inline-block;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    color: var(--accent-orange) !important;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

/* 7. SECTIONS */
.section-padding {
    padding: 70px 0;
}
.section-padding-sm {
    padding: 40px 0;
}
.section-padding-md {
    padding: 52px 0;
}
.about-img-box {
    height: 400px;
}
.section-title {
    font-size: 30px;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 14px;
    color: var(--primary-navy);
}
.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 60px;
    background-color: var(--accent-orange);
    border-radius: 2px;
}
.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}
.section-title.text-white {
    color: var(--white) !important;
}
.section-title.mx-auto::after {
    left: 50%;
    transform: translateX(-50%);
}

/* 8. STAT COUNTERS */
.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid transparent;
}
.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-top-color: var(--accent-orange);
}
.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-navy);
    margin-bottom: 8px;
}
.stat-item p {
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin: 0;
}

/* 9. PRODUCT CATEGORY CARDS (Home Page) */
.product-category-card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 35px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.product-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), #FF9A56);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.product-category-card:hover::before {
    transform: scaleX(1);
}
.product-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    border-color: transparent;
}
.product-category-card .pcc-icon {
    width: 65px;
    height: 65px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(249,115,22,0.1) 0%, rgba(249,115,22,0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.product-category-card .pcc-icon i {
    font-size: 28px;
    color: var(--accent-orange);
}
.product-category-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-navy);
}
.product-category-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}
.product-category-card .pcc-badge {
    display: inline-block;
    background: var(--secondary-light-grey);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    margin-bottom: 15px;
}
.product-category-card .pcc-link {
    display: block;
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.product-category-card:hover .pcc-link {
    padding-left: 5px;
}

/* 9.1 PRODUCT IMAGE PLACEHOLDER (Inner Pages) */
.product-img-placeholder {
    background: linear-gradient(135deg, var(--secondary-light-grey) 0%, #E8ECF1 100%);
    border-radius: 12px;
    height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #D1D5DB;
    transition: all 0.3s ease;
}
.product-img-placeholder i {
    font-size: 60px;
    color: #000000;
    margin-bottom: 15px;
}
.product-img-placeholder span {
    color: #000000;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 9.2 INDUSTRIES GRID */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.industry-card {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 35px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}
.industry-card i {
    color: var(--accent-orange);
    font-size: 48px;
    margin-bottom: 15px;
}
.industry-card h4 {
    color: var(--primary-navy);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}
.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: transparent;
}
@media (max-width: 991px) {
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .industry-grid { grid-template-columns: 1fr; }
}

/* 9.3 CERTIFICATION CARDS */
.cert-card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 35px 28px;
    text-align: center;
    transition: all 0.3s ease;
}
.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.cert-card .cert-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249,115,22,0.12) 0%, rgba(249,115,22,0.04) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.cert-card .cert-icon i {
    font-size: 32px;
    color: var(--accent-orange);
}
.cert-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* 9.4 MANUFACTURING MINI CARDS */
.mfg-mini-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}
.mfg-mini-card:hover {
    background: rgba(249,115,22,0.15);
    border-color: var(--accent-orange);
}
.mfg-mini-card i {
    color: var(--accent-orange);
    margin-right: 5px;
    font-size: 8px;
}

/* 10. MANUFACTURING TIMELINE */
.timeline-container {
    display: flex;
    overflow-x: auto;
    gap: 0;
    padding-bottom: 20px;
    scrollbar-width: thin;
}
.timeline-container::-webkit-scrollbar {
    height: 6px;
}
.timeline-container::-webkit-scrollbar-thumb {
    background: var(--secondary-steel-grey);
    border-radius: 3px;
}
.timeline-step {
    flex: 0 0 200px;
    padding: 25px 15px;
    border-top: 4px solid #E5E7EB;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}
.timeline-step:hover, .timeline-step.active {
    border-color: var(--accent-orange);
    background-color: var(--secondary-light-grey);
}
.timeline-step::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 25px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #D1D5DB;
    border: 3px solid var(--white);
    transition: all 0.3s ease;
}
.timeline-step:hover::before, .timeline-step.active::before {
    background: var(--accent-orange);
    transform: scale(1.3);
}
.timeline-step h6 {
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 5px;
}
.timeline-step p {
    font-size: 0.8rem;
    margin: 0;
}

/* 11. INFRASTRUCTURE */
.infra-block {
    display: flex;
    align-items: stretch;
}
.infra-block.reverse {
    flex-direction: row-reverse;
}
.infra-img {
    height: 450px;
    object-fit: cover;
    width: 100%;
}
.infra-content {
    padding: 60px;
    background: var(--secondary-light-grey);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* 12. PAGE HEADERS (inner pages) */
.page-header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, #1a3d5c 50%, var(--primary-charcoal) 100%);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.page-header h1 {
    color: var(--white) !important;
    font-size: 34px;
    margin-bottom: 10px;
    position: relative;
}
.page-header p {
    color: #E2E8F0;
    font-size: 0.95rem;
    position: relative;
}

/* 13. MEGA FOOTER */
.mega-footer {
    background-color: var(--footer-navy);
    color: #94A3B8;
    padding: 36px 0 14px;
    min-height: 0;
    font-size: 0.85rem;
}
.mega-footer h5 {
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 14px;
    position: relative;
    padding-bottom: 8px;
}
.mega-footer h5::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background-color: var(--accent-orange);
    border-radius: 2px;
}
.mega-footer a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
    margin-bottom: 6px;
    font-size: 0.82rem;
}
.mega-footer a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}
.mega-footer .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
    line-height: 1.4;
    font-size: 0.82rem;
}
.mega-footer .footer-contact i {
    flex-shrink: 0;
    margin-top: 2px;
}
.mega-footer .footer-contact a {
    display: inline;
    margin-bottom: 0;
    color: inherit;
    word-break: break-word;
}
.mega-footer .footer-contact a:hover {
    padding-left: 0;
}
.mega-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 14px;
    margin-top: 22px;
}
.mega-footer p {
    font-size: 0.82rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

/* 14. STICKY RFQ WIDGET */
.sticky-widget {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}
.sticky-widget a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-orange);
    color: var(--white);
    width: 60px;
    height: 140px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
    border-radius: 15px 0 0 15px;
    box-shadow: -4px 0 15px rgba(249,115,22,0.3);
    text-decoration: none;
    transition: all 0.3s ease;
}
.sticky-widget a:hover {
    background-color: var(--accent-orange-hover);
    color: white;
}

/* 15. WHATSAPP BUTTON */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    color: white;
}

/* 16. GALLERY */
.gallery-filters .btn {
    margin: 5px;
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
}
.gallery-filters .btn.active {
    background-color: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
}
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}
.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img {
    transform: scale(1.08);
}

/* Manufacturing photo grid — 4 per row, hover zoom, click lightbox */
.mfg-photo-card {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: #0B1F33;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    box-shadow: 0 8px 24px rgba(16, 42, 67, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.mfg-photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.mfg-photo-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 31, 51, 0.45);
    color: #fff;
    font-size: 1.75rem;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.mfg-photo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(16, 42, 67, 0.22);
}
.mfg-photo-card:hover img {
    transform: scale(1.12);
}
.mfg-photo-card:hover .mfg-photo-overlay {
    opacity: 1;
}
.mfg-photo-card:focus-visible {
    outline: 3px solid var(--accent-orange);
    outline-offset: 3px;
}
#mfgLightbox .modal-content {
    background: #0B1F33;
}
#mfgLightboxImg {
    max-width: 100%;
}

/* 17. CARDS GENERAL */
.card-custom {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}
.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* 18. FORM STYLING */
.form-control:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.15);
}

/* 19. PRODUCT CARDS (legacy) */
.product-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}
.product-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}
.product-card .card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .card-img {
    transform: scale(1.08);
}
.product-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 250px;
    background: rgba(16, 42, 67, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.product-card:hover .product-overlay {
    opacity: 1;
}

/* 20. AT A GLANCE (ABOUT PAGE) */
.glance-card {
    background-color: var(--white);
    border: 1px solid rgba(16, 42, 67, 0.05);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}
.glance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
    border-color: rgba(249, 115, 22, 0.2);
}
.glance-icon {
    font-size: 40px;
    margin-bottom: 15px;
}
.glance-label {
    font-size: 0.9rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}
.glance-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-navy);
}
.glance-sub {
    font-size: 0.8rem;
    color: #000000;
    margin-top: 5px;
}

/* 21. SPECS TABLE (PRODUCTS PAGE) */
.specs-table {
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    border-radius: 8px;
    overflow: hidden;
}
.specs-table thead {
    background-color: var(--primary-navy);
    color: var(--white);
}
.specs-table th {
    font-weight: 600;
    padding: 12px 20px;
    border: none;
}
.specs-table td {
    padding: 12px 20px;
    color: #000000;
    border-color: rgba(16, 42, 67, 0.05);
    vertical-align: middle;
}
.specs-table tr:hover td {
    background-color: rgba(249, 115, 22, 0.03);
    color: var(--primary-navy);
}

/* 22. RESPONSIVE */
@media (max-width: 1199.98px) {
    .header-wrapper {
        background-color: var(--white) !important;
        height: auto;
        min-height: 70px;
        box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    }
    .header-wrapper .navbar {
        height: auto;
        min-height: 70px;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .header-wrapper .navbar-toggler {
        border-color: rgba(16, 42, 67, 0.3) !important;
    }
    .header-wrapper .navbar-toggler-icon {
        filter: none !important;
    }
    .header-wrapper .navbar-collapse {
        background-color: var(--white);
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border: 1px solid #E5E7EB;
    }
    .header-wrapper .nav-link {
        color: var(--primary-navy) !important;
        padding: 12px 15px !important;
        border-bottom: 1px solid rgba(16,42,67,0.07);
        white-space: normal;
    }
    .header-wrapper .nav-link:last-child {
        border-bottom: none;
    }
    .header-wrapper .dropdown-menu {
        background-color: var(--secondary-light-grey);
        border: none;
        box-shadow: none;
    }
    .header-wrapper .dropdown-item {
        color: var(--primary-navy);
    }
    .header-wrapper .dropdown-item:hover {
        background-color: rgba(249,115,22,0.08);
        color: var(--accent-orange);
    }
}
@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    h1 { font-size: 36px; }
    h2 { font-size: 30px; }
    h3 { font-size: 24px; }
    .section-padding { padding: 60px 0; }
    .section-padding-md { padding: 48px 0; }
    .section-padding-sm { padding: 36px 0; }
    .about-img-box { height: 250px; }
    .section-title { font-size: 30px; }
    .infra-block, .infra-block.reverse {
        flex-direction: column;
    }
    .infra-img { height: 300px; }
    .infra-content { padding: 40px 20px; }
    .page-header { padding: 130px 0 50px; }
    .page-header h1 { font-size: 32px; }
    .product-img-placeholder { height: 280px; }
}

@media (max-width: 576px) {
    .hero-content h1 { font-size: 1.8rem; }
    .stat-item h3 { font-size: 2rem; }
    .timeline-step { flex: 0 0 160px; }
    .product-img-placeholder { height: 220px; }
    .product-img-placeholder i { font-size: 40px; }
    .page-header h1 { font-size: 26px; }
}

/* 21. FACILITY PAGE */
.facility-stat-box {
    background: var(--secondary-light-grey);
    border-radius: 12px;
    padding: 20px 18px;
    text-align: center;
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}
.facility-stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    border-color: var(--accent-orange);
}

.facility-infra-card {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 35px 28px;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.facility-infra-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), #FF9A56);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.facility-infra-card:hover::before { transform: scaleX(1); }
.facility-infra-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.09);
    border-color: transparent;
}
.facility-infra-icon {
    width: 65px;
    height: 65px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(249,115,22,0.12) 0%, rgba(249,115,22,0.04) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.facility-infra-icon i {
    font-size: 28px;
    color: var(--accent-orange);
}
.facility-infra-card h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-navy);
}

.facility-cap-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
}
.facility-cap-card:hover {
    background: rgba(249,115,22,0.15);
    border-color: var(--accent-orange);
}

.facility-process-flow {
    display: flex;
    align-items: flex-start;
    gap: 0;
    flex-wrap: wrap;
    justify-content: center;
}
.facility-process-step {
    flex: 1;
    min-width: 150px;
    max-width: 200px;
    text-align: center;
    padding: 25px 15px;
    position: relative;
}
.fps-number {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-orange);
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.fps-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(249,115,22,0.12) 0%, rgba(249,115,22,0.04) 100%);
    border: 2px solid rgba(249,115,22,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}
.fps-icon i {
    font-size: 26px;
    color: var(--accent-orange);
}
.facility-process-step:hover .fps-icon {
    background: var(--accent-orange);
    border-color: var(--accent-orange);
}
.facility-process-step:hover .fps-icon i {
    color: white;
}
.facility-process-step h6 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}
.facility-process-arrow {
    display: flex;
    align-items: center;
    padding-top: 35px;
    font-size: 1.4rem;
    color: var(--accent-orange);
    opacity: 0.5;
}

.facility-location-tag {
    background: var(--white);
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 10px 15px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-navy);
    transition: all 0.3s ease;
}
.facility-location-tag:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .facility-process-flow {
        flex-direction: column;
        align-items: center;
    }
    .facility-process-arrow {
        transform: rotate(90deg);
        padding: 0;
        margin: 5px 0;
    }
    .facility-process-step {
        max-width: 100%;
        min-width: unset;
        width: 100%;
    }
}

/* 23. BLOG ARTICLE (HTML content) */
.blog-article-card {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    padding: 36px 40px;
    box-shadow: 0 8px 28px rgba(16, 42, 67, 0.06);
}
.blog-article-body {
    font-size: 1.02rem;
    line-height: 1.8;
    color: #000;
}
.blog-article-body > *:first-child {
    margin-top: 0;
}
.blog-article-body h1,
.blog-article-body h2,
.blog-article-body h3,
.blog-article-body h4 {
    font-family: var(--font-heading);
    color: var(--primary-navy);
    font-weight: 700;
    line-height: 1.3;
    margin: 1.75rem 0 0.85rem;
}
.blog-article-body h1 { font-size: 1.75rem; }
.blog-article-body h2 {
    font-size: 1.45rem;
    padding-bottom: 0.45rem;
    border-bottom: 2px solid rgba(249, 115, 22, 0.35);
}
.blog-article-body h3 { font-size: 1.2rem; }
.blog-article-body h4 { font-size: 1.05rem; }
.blog-article-body p {
    margin: 0 0 1.1rem;
    color: #000;
}
.blog-article-body ul,
.blog-article-body ol {
    margin: 0 0 1.2rem;
    padding-left: 1.35rem;
    color: #000;
}
.blog-article-body li {
    margin-bottom: 0.45rem;
}
.blog-article-body li::marker {
    color: var(--accent-orange);
}
.blog-article-body a {
    color: var(--accent-orange);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.blog-article-body a:hover {
    color: var(--accent-orange-hover);
}
.blog-article-body strong,
.blog-article-body b {
    color: var(--primary-navy);
    font-weight: 700;
}
.blog-article-body blockquote {
    margin: 1.4rem 0;
    padding: 14px 18px;
    border-left: 4px solid var(--accent-orange);
    background: var(--secondary-light-grey);
    color: #000;
    font-style: italic;
}
.blog-article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}
.blog-article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0;
    font-size: 0.95rem;
}
.blog-article-body th,
.blog-article-body td {
    border: 1px solid #E5E7EB;
    padding: 10px 12px;
    text-align: left;
    color: #000;
}
.blog-article-body th {
    background: var(--primary-navy);
    color: #fff;
}
.blog-article-body hr {
    margin: 1.75rem 0;
    border: 0;
    border-top: 1px solid #E5E7EB;
}
@media (max-width: 767.98px) {
    .blog-article-card {
        padding: 22px 18px;
    }
    .blog-article-body h2 { font-size: 1.25rem; }
}
