/* ============================================
   GLOBAL
   ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    background-color: #ffffff;
    color: #111111;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Inria Sans', sans-serif; }

.container { width: 1200px; margin: 0 auto; }
.container-hero { padding-left: 60px; }
.tc { text-align: center; }

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #EFEFEF; }
::-webkit-scrollbar-thumb { background-color: #AAAAAA; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background-color: var(--primary-color, #FBA212); }

/* ============================================
   NAVBAR
   ============================================ */
header {
    background-color: #F0F0F0;
    border-bottom: 1px solid #E5E5E5;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

header.header-transparent {
    position: fixed;
    top: 0;
    background-color: transparent !important;
    border-bottom: none !important;
}

header.scrolled {
    background-color: rgba(255,255,255,0.85) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(200,200,200,0.3) !important;
}

header.header-transparent.scrolled nav > ul > li > a { color: #111111 !important; }

.nav-container {
    height: 80px;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area { display: flex; align-items: center; gap: 15px; }
.logo-img { height: 40px; }

nav ul { list-style: none; display: flex; gap: 30px; }

nav ul li a {
    text-decoration: none;
    color: #111111;
    font-weight: 600;
    font-size: 15px;
    padding-bottom: 5px;
    border-bottom: 3px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

nav a:hover { color: var(--primary-color, #FBA212); }

nav a.active {
    color: #111111;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color, #FBA212);
    padding-bottom: 5px;
}

.header-transparent nav a { color: #ffffff; font-weight: 500; }
.header-transparent nav a.active { color: #ffffff; border-color: var(--primary-color, #FBA212); }
.header-transparent nav a:hover { color: var(--primary-color, #FBA212); }

/* Mobile Burger Icon */
.mobile-burger { display: none; font-size: 24px; color: #111; cursor: pointer; transition: all 0.3s; }
.header-transparent .mobile-burger { color: #fff; }
.header-transparent.scrolled .mobile-burger { color: #111; }

/* Nav Right Area — toggle + burger grouped */
.nav-right-area { display: flex; align-items: center; gap: 20px; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Inter', sans-serif;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.wa-icon-box {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    position: relative;
    z-index: 2;
}

.wa-text-box {
    background: #112D4E;
    color: #fff;
    padding: 0 22px 0 15px;
    height: 52px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-left: -5px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}

@media (max-width: 768px) {
    .whatsapp-float { bottom: 90px; right: 20px; }
    .wa-text-box { display: none; }
    .wa-icon-box { border-radius: 50%; width: 60px; height: 60px; font-size: 30px; }
}

/* ============================================
   THEME TOGGLE SWITCH
   ============================================ */
.theme-toggle { cursor: pointer; user-select: none; -webkit-tap-highlight-color: transparent; }

.toggle-track {
    position: relative;
    width: 52px;
    height: 28px;
    background: #E0E0E0;
    border-radius: 14px;
    display: flex;
    align-items: center;
    padding: 0 6px;
    justify-content: space-between;
    transition: background 0.4s ease;
}

.toggle-icon {
    font-size: 12px;
    z-index: 1;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.icon-moon { color: #555; opacity: 1; }
.icon-sun  { color: #ccc; opacity: 0.4; }

.toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.4s cubic-bezier(0.68, -0.15, 0.265, 1.35), background 0.3s ease;
}

/* Dark state */
.theme-toggle.is-dark .toggle-track { background: #333; }
.theme-toggle.is-dark .icon-moon { color: #666; opacity: 0.4; }
.theme-toggle.is-dark .icon-sun  { color: var(--primary-color, #FBA212); opacity: 1; }
.theme-toggle.is-dark .toggle-thumb {
    transform: translateX(24px);
    background: var(--primary-color, #FBA212);
    box-shadow: 0 2px 10px rgba(var(--primary-rgb, 251, 162, 18),0.5);
}

.header-transparent .icon-moon { color: rgba(255,255,255,0.7); }
.header-transparent .toggle-track { background: rgba(255,255,255,0.15); }
.header-transparent.scrolled .icon-moon { color: #555; }
.header-transparent.scrolled .toggle-track { background: #E0E0E0; }

/* Dropdown */
.has-dropdown { position: relative; }


.nav-dropdown {
    display: block;
    visibility: hidden;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.3s ease;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    min-width: 200px;
    padding: 10px 0;
    z-index: 100;
    list-style: none;
    border-radius: 0 0 4px 4px;
}

.has-dropdown:hover .nav-dropdown { visibility: visible; opacity: 1; transform: translateY(0); }
.nav-dropdown li { width: 100%; margin-bottom: 0 !important; }

header.header-transparent nav ul.nav-dropdown li a,
nav ul.nav-dropdown li a {
    display: block;
    padding: 12px 20px !important;
    color: #111111 !important;
    font-weight: 500 !important;
    border-bottom: none !important;
    font-size: 14px;
}

header.header-transparent nav ul.nav-dropdown li a:hover,
nav ul.nav-dropdown li a:hover,
header.header-transparent nav ul.nav-dropdown li a.active,
nav ul.nav-dropdown li a.active {
    background-color: #f5f5f5;
    color: var(--primary-color, #FBA212) !important;
    border-bottom: none !important;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
#backToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color, #FBA212);
    color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb, 251, 162, 18),0.4);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
    z-index: 999;
}

#backToTop.show { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { background-color: #111111; transform: translateY(-5px); box-shadow: 0 8px 25px rgba(17,17,17,0.3); }

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25,1,0.5,1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* ============================================
   PREMIUM PAGE BANNER (Modern Refactor)
   ============================================ */
.page-banner {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #111;
}

.page-banner .banner-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
    animation: kenBurns 20s infinite alternate;
}

@keyframes kenBurns {
    from { transform: scale(1); }
    to { transform: scale(1.15); }
}

.page-banner .banner-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 2;
}

.banner-content { 
    position: relative; 
    z-index: 3; 
    padding-top: 40px;
    animation: bannerFadeUp 1s cubic-bezier(0.2, 1, 0.3, 1);
}

@keyframes bannerFadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Breadcrumb Sleek */
.banner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.banner-breadcrumb a { color: var(--primary-color, #FBA212); text-decoration: none; transition: 0.3s; }
.banner-breadcrumb a:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
.banner-breadcrumb i { font-size: 10px; opacity: 0.5; }

.banner-title {
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.banner-title span { 
    color: var(--primary-color, #FBA212); 
    position: relative;
    display: inline-block;
}

.banner-title span::after {
    content: '';
    position: absolute;
    bottom: 5px; left: 0;
    width: 100%; height: 8px;
    background: rgba(var(--primary-rgb, 251, 162, 18), 0.2);
    z-index: -1;
}

/* Specific Page Overrides if needed */
.about-banner-content {
    justify-content: flex-start !important;
    align-items: flex-end !important;
    padding-bottom: 60px;
}

/* Standardizing other hero sections to match */
.pw-hero, .page-banner {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #111;
}

.pw-hero-bg, .page-banner .banner-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.6;
    animation: kenBurns 20s infinite alternate;
}

.pw-hero-overlay, .page-banner .banner-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 2;
}

.pw-hero-content, .banner-content { 
    position: relative; 
    z-index: 3; 
    padding-top: 40px;
    animation: bannerFadeUp 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.pw-hero-title, .banner-title {
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.pw-eyebrow, .banner-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background-color: #F0F0F0;
    border-top: 1px solid #D9D9D9;
    padding: 60px 0 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.social-icons { display: flex; gap: 12px; }

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #111111;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s;
}

.social-icons a:hover { background-color: var(--primary-color, #FBA212); }

.contact-item { display: flex; gap: 15px; margin-bottom: 20px; }
.contact-item i { margin-top: 3px; color: #111111; }
.contact-item div { font-size: 13px; line-height: 1.6; font-family: 'Inter', sans-serif; }
.contact-item a { color: #111111; text-decoration: none; transition: 0.3s; }
.contact-item a:hover { color: var(--primary-color, #FBA212); }

.links-grid ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 15px 10px; }
.links-grid a { text-decoration: none; color: #111111; font-size: 13px; transition: color 0.3s; }
.links-grid a:hover { color: var(--primary-color, #FBA212); }

.footer-bottom {
    border-top: 1px solid #D9D9D9;
    padding: 24px 0;
    font-size: 13px;
    color: #111111;
    text-align: center;
}

/* ============================================
   OUR CUSTOMER SLIDER (index.html)
   ============================================ */
.our-customer { background-color: #ffffff; padding: 70px 0; }

.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 26px;
    text-align: center;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-underline { width: 100px; height: 3px; background-color: #111111; margin: 0 auto 50px auto; }

.customer-slider { width: 100%; overflow: hidden; position: relative; padding: 20px 0; }

.customer-track {
    display: flex;
    width: calc((160px + 60px) * 20);
    animation: scroll 30s linear infinite;
    gap: 60px;
    align-items: center;
}

.customer-track img {
    width: 160px;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.8;
    transition: transform 0.3s, filter 0.3s, opacity 0.3s;
    flex-shrink: 0;
}

.customer-track img:hover { filter: grayscale(0%); opacity: 1; transform: scale(1.05); }

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-1 * (160px + 60px) * 10)); }
}

/* ============================================
   HOME PAGE
   ============================================ */
.modern-home-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay-dark {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 2;
}

.hero-content-modern { position: relative; z-index: 3; max-width: 900px; }

.hero-badge {
    display: inline-block;
    background: rgba(var(--primary-rgb, 251, 162, 18),0.2);
    border: 1px solid rgba(var(--primary-rgb, 251, 162, 18),0.5);
    color: var(--primary-color, #FBA212);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.hero-title-mega {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.highlight-orange { color: var(--primary-color, #FBA212); }

.hero-desc-modern {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-action-btns { display: flex; gap: 20px; }

.btn-primary-modern {
    background: var(--primary-color, #FBA212);
    color: #111;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 15px;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(var(--primary-rgb, 251, 162, 18),0.2);
}

.btn-primary-modern:hover { background: #fff; color: var(--primary-color, #FBA212); transform: translateY(-3px); }

.btn-outline-modern {
    background: transparent;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 15px;
    padding: 16px 35px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-modern:hover { background: #fff; color: #111; border-color: #fff; transform: translateY(-3px); }

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: #fff;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* Home Intro */
.modern-home-intro { background: #ffffff; padding: 120px 0; }

.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }

.image-composition { position: relative; padding-bottom: 40px; }

.img-main {
    width: 65%;
    height: 550px;
    object-fit: cover;
    border-radius: 20px 80px 20px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.img-float {
    width: 55%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    position: absolute;
    right: 15px;
    bottom: -10px;
    border: 15px solid #ffffff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    z-index: 3;
}

.experience-float {
    position: absolute;
    top: 80px;
    right: 5%;
    background: linear-gradient(135deg, var(--primary-color, #FBA212), #E68A00);
    color: #fff;
    padding: 35px 45px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(var(--primary-rgb, 251, 162, 18),0.35);
    z-index: 4;
    animation: float 4s ease-in-out infinite;
}

.experience-float h2 {
    font-family: 'Inter', sans-serif;
    font-size: 52px;
    font-weight: 900;
    margin: 0;
    line-height: 1;
}

.experience-float p {
    margin: 8px 0 0 0;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.intro-subtitle { font-family: 'Inter', sans-serif; color: var(--primary-color, #FBA212); font-weight: 800; letter-spacing: 2px; margin-bottom: 15px; }

.intro-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #111;
    line-height: 1.2;
    margin-bottom: 25px;
}

.intro-text { font-family: 'Inter', sans-serif; font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 40px; }

.intro-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #F8F9FA;
    padding: 20px;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-item:hover { transform: translateX(10px); background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.feature-item i {
    width: 60px; height: 60px;
    background: #111;
    color: var(--primary-color, #FBA212);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    border-radius: 12px;
    flex-shrink: 0;
}

.feature-item h4 { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 800; margin-bottom: 5px; }
.feature-item p { font-family: 'Inter', sans-serif; font-size: 14px; color: #666; }
.mt-3 { margin-top: 15px; }

/* Panoramic Plant Section (home) */
.plant-panoramic-section {
    padding: 120px 0;
    background: #f4f5f7;
    position: relative;
}

.plant-section-header {
    text-align: center;
    margin-bottom: 70px;
}

.plant-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color, #FBA212);
    background: rgba(251,162,18,0.1);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.plant-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #111;
    margin-bottom: 16px;
    line-height: 1.1;
}

.plant-section-title span { color: var(--primary-color, #FBA212); }

.plant-section-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #777;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.plant-panoramic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.plant-pano-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.10);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s ease;
    cursor: pointer;
    aspect-ratio: 3/4;
    display: flex;
    flex-direction: column;
}

.plant-pano-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 40px 80px rgba(0,0,0,0.18);
}

/* Image fills the whole card */
.plant-pano-img {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.plant-pano-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.plant-pano-card:hover .plant-pano-img img { transform: scale(1.08); }

/* Gradient overlay from transparent to dark at bottom */
.plant-pano-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.0) 0%,
        rgba(0,0,0,0.15) 40%,
        rgba(0,0,0,0.80) 75%,
        rgba(0,0,0,0.95) 100%
    );
    transition: background 0.5s ease;
}

.plant-pano-card:hover .plant-pano-overlay {
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.0) 0%,
        rgba(0,0,0,0.25) 35%,
        rgba(17,17,17,0.88) 70%,
        rgba(17,17,17,0.98) 100%
    );
}

/* Big decorative number top-left */
.plant-pano-number {
    position: absolute;
    top: 24px;
    left: 28px;
    font-family: 'Inter', sans-serif;
    font-size: 80px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,0.12);
    z-index: 2;
    letter-spacing: -4px;
    transition: color 0.4s ease;
    user-select: none;
}

.plant-pano-card:hover .plant-pano-number { color: rgba(251,162,18,0.2); }

/* Info panel at the bottom */
.plant-pano-info {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    z-index: 3;
    padding: 32px 30px;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.plant-pano-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color, #FBA212);
    background: rgba(251,162,18,0.15);
    border: 1px solid rgba(251,162,18,0.4);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    backdrop-filter: blur(4px);
}

.plant-pano-name {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.plant-pano-addr {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.plant-pano-addr i {
    color: var(--primary-color, #FBA212);
    margin-top: 2px;
    flex-shrink: 0;
}

.plant-pano-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #111;
    background: var(--primary-color, #FBA212);
    padding: 9px 20px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(8px);
    box-shadow: 0 5px 15px rgba(251,162,18,0.35);
}

.plant-pano-card:hover .plant-pano-btn {
    opacity: 1;
    transform: translateY(0);
}

.plant-pano-btn:hover {
    background: #fff;
    color: #111;
    transform: translateY(-2px) !important;
}

/* ============================================
   ABOUT US PAGE
   ============================================ */
.modern-about-wrapper { background-color: #F8F9FA; padding: 100px 0; overflow: hidden; }

.modern-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.modern-about-image { position: relative; border-radius: 20px; overflow: visible; }

.modern-about-image img.main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.modern-about-image:hover img.main-img { transform: scale(1.02); }

.experience-badge {
    position: absolute;
    bottom: -30px; right: -30px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px 40px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.8);
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.experience-badge .years { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 42px; color: var(--primary-color, #FBA212); line-height: 1; }
.experience-badge .text { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; color: #111; text-align: center; text-transform: uppercase; margin-top: 5px; }

.modern-about-text h2 { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 42px; color: #111; margin-bottom: 15px; line-height: 1.2; }
.modern-about-text h2 span { color: var(--primary-color, #FBA212); }
.modern-about-text .underline { width: 80px; height: 4px; background: var(--primary-color, #FBA212); margin-bottom: 30px; border-radius: 2px; }
.modern-about-text p { font-family: 'Inter', sans-serif; font-size: 16px; color: #555; line-height: 1.8; margin-bottom: 20px; }

/* Commitments */
.commitments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 100px; }

.commit-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.commit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: var(--primary-color, #FBA212);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: -1;
}

.commit-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.commit-card:hover::before { transform: scaleX(1); }

.commit-card i {
    font-size: 40px;
    color: var(--primary-color, #FBA212);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px; height: 80px;
    background: rgba(var(--primary-rgb, 251, 162, 18),0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.commit-card:hover i { background: var(--primary-color, #FBA212); color: #fff; transform: rotateY(180deg); }
.commit-card h4 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 20px; color: #111; margin-bottom: 15px; }
.commit-card p { font-family: 'Inter', sans-serif; font-size: 14px; color: #666; line-height: 1.7; }

/* Vision Mission Glow */
.vm-glow-container { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; position: relative; padding: 40px 0; }

.vm-glow-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(var(--primary-rgb, 251, 162, 18),0.2) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    filter: blur(40px);
}

.vm-glow-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,1);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    z-index: 1;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.vm-glow-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(var(--primary-rgb, 251, 162, 18),0.15); background: rgba(255,255,255,0.9); }

.vm-glow-header { display: flex; align-items: center; margin-bottom: 25px; gap: 20px; }

.vm-glow-header i {
    font-size: 32px;
    color: #111;
    background: var(--primary-color, #FBA212);
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(var(--primary-rgb, 251, 162, 18),0.3);
}

.vm-glow-header h3 { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 32px; color: #111; margin: 0; }
.vm-glow-card p { font-family: 'Inter', sans-serif; font-size: 16px; color: #555; line-height: 1.8; }

/* ============================================
   PENGHARGAAN / AWARDS PAGE
   ============================================ */
.awards-page { background-color: #F8F8F8; padding: 80px 0; overflow: hidden; }

.timeline-wrapper { position: relative; max-width: 900px; margin: 0 auto; padding: 40px 0; }

.timeline-line {
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 4px; height: 100%;
    background-color: #DDE2E5;
    border-radius: 2px;
}

.timeline-year-block { text-align: center; margin: 50px 0 40px 0; position: relative; z-index: 2; }
.timeline-year-block:first-child { margin-top: 0; }

.timeline-year-badge {
    display: inline-block;
    background-color: #111111;
    color: var(--primary-color, #FBA212);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 22px;
    padding: 10px 30px;
    border-radius: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    border: 4px solid #F8F8F8;
    letter-spacing: 1px;
}

.timeline-card-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    position: relative;
    width: 100%;
}

.timeline-card-wrapper.left { flex-direction: row-reverse; }
.timeline-spacer { width: 45%; }

.timeline-dot {
    width: 50px; height: 50px;
    background-color: var(--primary-color, #FBA212);
    border: 4px solid #F8F8F8;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #111111;
    font-size: 20px;
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    box-shadow: 0 4px 10px rgba(var(--primary-rgb, 251, 162, 18),0.4);
}

.timeline-card {
    width: 45%;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-bottom: 4px solid #111111;
    transition: all 0.4s ease;
    text-align: left;
    position: relative;
}

.award-image { width: 100%; height: 200px; object-fit: cover; border-radius: 6px; margin-bottom: 20px; background-color: #F0F0F0; transition: transform 0.4s ease; }

.timeline-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); border-bottom-color: var(--primary-color, #FBA212); }
.timeline-card:hover .award-image { opacity: 0.95; transform: scale(1.02); }
.timeline-card h3 { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 20px; color: #111111; margin-bottom: 5px; }
.timeline-card h5 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; color: var(--primary-color, #FBA212); margin-bottom: 15px; }
.timeline-card p { font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.6; color: #555555; }

.timeline-card-wrapper:not(.left) .timeline-card::before {
    content: '';
    position: absolute;
    top: 50%; left: -12px;
    transform: translateY(-50%);
    border-width: 12px 12px 12px 0;
    border-style: solid;
    border-color: transparent #ffffff transparent transparent;
}

.timeline-card-wrapper.left .timeline-card::before {
    content: '';
    position: absolute;
    top: 50%; right: -12px;
    transform: translateY(-50%);
    border-width: 12px 0 12px 12px;
    border-style: solid;
    border-color: transparent transparent transparent #ffffff;
}

/* ============================================
   OUR CUSTOMER PAGE
   ============================================ */
.modern-customer-profile { background-color: #ffffff; padding: 120px 0; }

.customer-profile-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 80px; align-items: center; }
.customer-profile-text p strong { color: #111; }

.customer-stats { display: flex; gap: 30px; margin-top: 40px; padding-top: 40px; border-top: 1px solid #EEE; }

.stat-box { text-align: center; }
.stat-box h3 { font-family: 'Inter', sans-serif; font-size: 42px; font-weight: 900; color: var(--primary-color, #FBA212); line-height: 1; margin-bottom: 5px; }
.stat-box h3 span { font-size: 24px; color: #111; }
.stat-box p { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: #555; margin: 0; }

.global-reach-card {
    background: #111;
    border-radius: 24px;
    padding: 60px 50px;
    color: #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.global-reach-card::before {
    content: '';
    position: absolute;
    top: -30%; right: -30%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(var(--primary-rgb, 251, 162, 18),0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.global-reach-card > * { position: relative; z-index: 1; }
.globe-icon { font-size: 50px; color: var(--primary-color, #FBA212); margin-bottom: 25px; }
.global-reach-card h3 { font-family: 'Inter', sans-serif; font-size: 28px; font-weight: 800; margin-bottom: 15px; }
.global-reach-card p { font-family: 'Inter', sans-serif; font-size: 15px; color: #bbb; line-height: 1.6; margin-bottom: 30px; }

.country-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.country-list li { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
.country-list li i { color: var(--primary-color, #FBA212); }

.modern-partners-showcase { background-color: #F8F9FA; }

.modern-logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; }

.logo-tile {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.02);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 160px;
}

.logo-tile:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }
.logo-tile img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(100%); opacity: 0.6; transition: all 0.4s ease; }
.logo-tile:hover img { filter: grayscale(0%); opacity: 1; transform: scale(1.1); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.modern-contact-wrapper { background-color: #F8F9FA; padding: 100px 0; }

.modern-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    overflow: hidden;
}

.contact-info-panel { background: #111111; color: #ffffff; padding: 60px; position: relative; overflow: hidden; }

.contact-info-panel::before {
    content: '';
    position: absolute;
    top: -50%; right: -50%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-rgb, 251, 162, 18),0.2) 0%, rgba(17,17,17,0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.contact-info-panel h2 { font-family: 'Inter', sans-serif; font-size: 38px; font-weight: 800; margin-bottom: 10px; position: relative; z-index: 1; }
.contact-info-panel h2 span { color: var(--primary-color, #FBA212); }

.info-card { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 35px; position: relative; z-index: 1; }

.info-card .icon-box {
    width: 50px; height: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    color: var(--primary-color, #FBA212);
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-card:hover .icon-box { background: var(--primary-color, #FBA212); color: #111; transform: translateY(-3px); }
.info-text h4 { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; color: #ffffff; margin-bottom: 5px; }
.info-text p { font-family: 'Inter', sans-serif; font-size: 14px; color: #aaaaaa; line-height: 1.6; }

.modern-form-panel { padding: 60px; }
.modern-form-panel h3 { font-family: 'Inter', sans-serif; font-size: 28px; font-weight: 800; color: #111; margin-bottom: 30px; }

.modern-input-group { position: relative; margin-bottom: 25px; }

.modern-input-group input,
.modern-input-group textarea {
    width: 100%;
    padding: 15px;
    background: #fdfdfd;
    border: 2px solid #EFEFEF;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #111;
    outline: none;
    transition: all 0.3s ease;
}

.modern-input-group textarea { min-height: 140px; resize: vertical; }

.modern-input-group label {
    position: absolute;
    left: 15px; top: 50%;
    transform: translateY(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #888;
    transition: all 0.3s ease;
    pointer-events: none;
}

.modern-input-group textarea ~ label { top: 25px; }

.modern-input-group input:focus,
.modern-input-group textarea:focus,
.modern-input-group input:not(:placeholder-shown),
.modern-input-group textarea:not(:placeholder-shown) {
    border-color: var(--primary-color, #FBA212);
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(var(--primary-rgb, 251, 162, 18),0.1);
}

.modern-input-group input:focus ~ label,
.modern-input-group textarea:focus ~ label,
.modern-input-group input:not(:placeholder-shown) ~ label,
.modern-input-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    left: 10px;
    font-size: 12px;
    color: var(--primary-color, #FBA212);
    background: #ffffff;
    padding: 0 5px;
    font-weight: 600;
}

.modern-send-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color, #FBA212);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(var(--primary-rgb, 251, 162, 18),0.2);
}

.modern-send-btn:hover { background: #111; color: var(--primary-color, #FBA212); transform: translateY(-3px); box-shadow: 0 15px 25px rgba(17,17,17,0.2); }

/* ============================================
   NEWS PAGE
   ============================================ */
.modern-news-wrapper { background-color: #F8F9FA; padding: 80px 0 120px 0; }

.news-section-header { margin-bottom: 50px; text-align: center; }
.news-section-header h2 { font-family: 'Inter', sans-serif; font-size: 38px; font-weight: 800; color: #111; }
.news-section-header h2 span { color: var(--primary-color, #FBA212); }
.news-section-header .underline { width: 80px; height: 4px; background: var(--primary-color, #FBA212); margin: 15px auto 0 auto; border-radius: 2px; }

.modern-news-featured {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    margin-bottom: 60px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.modern-news-featured:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.1); }

.news-featured-img { position: relative; height: 100%; min-height: 350px; }
.news-featured-img img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.modern-news-featured:hover .news-featured-img img { transform: scale(1.05); }

.news-date-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: var(--primary-color, #FBA212);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 15px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(var(--primary-rgb, 251, 162, 18),0.3);
    z-index: 2;
}

.news-featured-content { padding: 50px; display: flex; flex-direction: column; justify-content: center; }

.news-meta { display: flex; gap: 20px; margin-bottom: 15px; font-family: 'Inter', sans-serif; font-size: 13px; color: #888; font-weight: 500; }
.news-meta i { color: var(--primary-color, #FBA212); margin-right: 5px; }

.news-featured-content h3 { font-family: 'Inter', sans-serif; font-size: 28px; font-weight: 800; line-height: 1.3; margin-bottom: 20px; }
.news-featured-content h3 a, .news-card-body h4 a { color: #111; text-decoration: none; transition: color 0.3s ease; }
.news-featured-content h3 a:hover, .news-card-body h4 a:hover { color: var(--primary-color, #FBA212); }
.news-featured-content p { font-family: 'Inter', sans-serif; font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 30px; }

.modern-read-more {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    align-self: flex-start;
}

.modern-read-more::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0%; height: 2px; background: var(--primary-color, #FBA212); transition: width 0.3s ease; }
.modern-read-more:hover::after { width: 100%; }
.modern-read-more i { color: var(--primary-color, #FBA212); transition: transform 0.3s ease; }
.modern-read-more:hover i { transform: translateX(5px); }

.modern-news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }

.modern-news-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.modern-news-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

.news-card-img-wrapper { position: relative; height: 220px; overflow: hidden; }
.news-card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.modern-news-card:hover .news-card-img-wrapper img { transform: scale(1.05); }

.news-card-body { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.news-card-body h4 { font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 800; line-height: 1.4; margin-bottom: 15px; }
.news-card-body p { font-family: 'Inter', sans-serif; font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 25px; flex-grow: 1; }

/* ============================================
   NEWS DETAIL PAGE
   ============================================ */
.article-hero-banner {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.article-hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 1; }

.article-hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(17,17,17,1) 0%, rgba(17,17,17,0.5) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 2;
}

.article-hero-content { position: relative; z-index: 3; padding-bottom: 80px; max-width: 900px; margin: 0 auto; text-align: center; }

.article-category {
    display: inline-block;
    background: var(--primary-color, #FBA212);
    color: #111;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.article-title { font-family: 'Inter', sans-serif; font-size: 48px; font-weight: 800; color: #ffffff; line-height: 1.2; margin-bottom: 30px; }

.article-meta-modern { display: flex; justify-content: center; align-items: center; gap: 25px; font-family: 'Inter', sans-serif; color: #ddd; font-size: 14px; }
.meta-item { display: flex; align-items: center; gap: 8px; }
.meta-item i { color: var(--primary-color, #FBA212); }

.modern-article-wrapper { background: #F8F9FA; padding: 60px 0 100px 0; }

.article-grid { display: grid; grid-template-columns: 2.5fr 1fr; gap: 50px; }

.modern-back-btn { display: inline-flex; align-items: center; gap: 10px; color: #555; text-decoration: none; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 15px; margin-bottom: 40px; transition: color 0.3s ease; }
.modern-back-btn:hover { color: var(--primary-color, #FBA212); }

.modern-article-body { background: #fff; padding: 60px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.04); }
.modern-article-body .lead-text { font-size: 18px; font-weight: 600; color: #222; margin-bottom: 30px; line-height: 1.8; }
.modern-article-body p { font-family: 'Inter', sans-serif; font-size: 16px; color: #444; line-height: 1.9; margin-bottom: 25px; }
.modern-article-body h3 { font-family: 'Inter', sans-serif; font-size: 26px; font-weight: 800; color: #111; margin: 40px 0 20px 0; }

.modern-gallery { margin: 40px 0; }
.gallery-main img { width: 100%; border-radius: 12px; height: 400px; object-fit: cover; margin-bottom: 15px; }
.gallery-thumbs { display: flex; gap: 15px; }
.gallery-thumbs img { width: 150px; height: 90px; object-fit: cover; border-radius: 8px; cursor: pointer; transition: transform 0.3s ease, opacity 0.3s ease; opacity: 0.7; }
.gallery-thumbs img:hover { transform: translateY(-3px); opacity: 1; }

.quote-block { background: rgba(var(--primary-rgb, 251, 162, 18),0.1); border-left: 5px solid var(--primary-color, #FBA212); padding: 30px; margin: 40px 0; border-radius: 0 12px 12px 0; }
.quote-block i { font-size: 30px; color: var(--primary-color, #FBA212); margin-bottom: 15px; }
.quote-block p { font-family: 'Inter', sans-serif; font-size: 18px !important; font-style: italic; font-weight: 500; color: #222 !important; margin: 0 !important; }

.modern-author-box { display: flex; align-items: center; gap: 25px; background: #111; color: #fff; padding: 40px; border-radius: 20px; margin-top: 50px; }
.author-avatar { width: 80px; height: 80px; background: var(--primary-color, #FBA212); color: #111; font-size: 40px; display: flex; justify-content: center; align-items: center; border-radius: 50%; flex-shrink: 0; }
.author-details h4 { font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 5px; }
.author-details p { font-family: 'Inter', sans-serif; font-size: 14px; color: #bbb; line-height: 1.6; }

.sidebar-widget { background: #fff; padding: 30px; border-radius: 16px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); margin-bottom: 30px; }
.sidebar-widget h4 { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 18px; color: #111; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid #EEE; }

.modern-social-share { display: flex; flex-direction: column; gap: 10px; }
.share-btn { display: flex; align-items: center; gap: 15px; padding: 12px 20px; border-radius: 8px; text-decoration: none; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; color: #fff; transition: transform 0.3s ease; }
.share-btn:hover { transform: translateX(5px); }
.share-btn.tw { background: #1DA1F2; }
.share-btn.fb { background: #1877F2; }
.share-btn.wa { background: #25D366; }
.share-btn.ln { background: #333; }

.related-news-list { list-style: none; display: flex; flex-direction: column; gap: 15px; }
.related-news-list li { display: flex; gap: 15px; align-items: center; }
.related-news-list img { width: 70px; height: 70px; object-fit: cover; border-radius: 8px; }
.related-txt a { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: #111; text-decoration: none; line-height: 1.4; display: block; margin-bottom: 5px; transition: color 0.3s ease; }
.related-txt a:hover { color: var(--primary-color, #FBA212); }
.related-txt span { font-family: 'Inter', sans-serif; font-size: 12px; color: #888; }

/* ============================================
   GALLERY PAGE
   ============================================ */
.modern-gallery-wrapper { background-color: #F8F9FA; padding: 100px 0; }

.gallery-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 15px; margin-bottom: 50px; }

.filter-btn { background: transparent; border: 2px solid #E0E0E0; padding: 10px 25px; border-radius: 30px; font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; color: #555; cursor: pointer; transition: all 0.3s ease; }
.filter-btn.active, .filter-btn:hover { background: var(--primary-color, #FBA212); border-color: var(--primary-color, #FBA212); color: #fff; box-shadow: 0 5px 15px rgba(var(--primary-rgb, 251, 162, 18),0.3); }

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

.gallery-item { position: relative; border-radius: 16px; overflow: hidden; height: 300px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.1); }

.gallery-item-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(17,17,17,0.7); display: flex; flex-direction: column; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.4s ease; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay i { font-size: 40px; color: var(--primary-color, #FBA212); margin-bottom: 15px; transform: translateY(20px); transition: transform 0.4s ease; }
.gallery-item:hover .gallery-item-overlay i { transform: translateY(0); }

.gallery-item-overlay h4 { font-family: 'Inter', sans-serif; color: #fff; font-size: 20px; font-weight: 800; transform: translateY(20px); transition: transform 0.4s ease; transition-delay: 0.1s; text-align: center; }
.gallery-item:hover .gallery-item-overlay h4 { transform: translateY(0); }

.gallery-item-overlay p { font-family: 'Inter', sans-serif; color: var(--primary-color, #FBA212); font-size: 14px; font-weight: 600; margin-top: 5px; transform: translateY(20px); transition: transform 0.4s ease; transition-delay: 0.15s; }
.gallery-item:hover .gallery-item-overlay p { transform: translateY(0); }

/* ============================================
   FACILITY PAGE
   ============================================ */
.modern-facility-section { padding: 100px 0; background: #ffffff; }
.modern-facility-section.bg-gray { background: #f8f9fa; }

.facility-mega-title { font-family: 'Inter', sans-serif; font-size: 42px; font-weight: 900; letter-spacing: -1px; line-height: 1.2; color: #111; margin-bottom: 40px; text-transform: uppercase; }

.pristine-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 60px; }
.pristine-split.reverse { direction: rtl; }
.pristine-split.reverse > * { direction: ltr; }

.collage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; height: 100%; }
.collage-grid img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; border-radius: 20px; box-shadow: 0 15px 30px rgba(0,0,0,0.05); }
.collage-hero { grid-column: span 2; height: 350px !important; }

.capsule-board { background: #111; border-radius: 24px; padding: 40px; color: #fff; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.capsule-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; }
.capsule-header h3 { font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 800; }
.capsule-total { background: var(--primary-color, #FBA212); color: #111; padding: 5px 12px; border-radius: 20px; font-weight: 800; font-size: 13px; font-family: 'Inter', sans-serif; }

.capsule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

.m-capsule { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 15px; display: flex; align-items: center; transition: transform 0.3s ease, background 0.3s ease; }
.m-capsule:hover { transform: translateY(-5px); background: rgba(255,255,255,0.1); }

.m-ton { background: var(--primary-color, #FBA212); color: #111; width: 45px; height: 45px; display: flex; justify-content: center; align-items: center; border-radius: 10px; font-family: 'Inter', sans-serif; font-weight: 900; font-size: 13px; margin-right: 15px; flex-shrink: 0; }
.m-detail { flex-grow: 1; }
.m-detail h4 { font-family: 'Inter', sans-serif; font-size: 14px; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 140px; }
.m-detail span { font-family: 'Inter', sans-serif; font-size: 11px; color: #aaa; }
.m-qty { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 16px; color: var(--primary-color, #FBA212); }

.clean-text-block { padding-right: 30px; }
.clean-text-block h3 { font-family: 'Inter', sans-serif; font-size: 26px; font-weight: 800; color: #111; margin-bottom: 15px; display: flex; align-items: center; gap: 15px; }
.clean-text-block h3 i { color: var(--primary-color, #FBA212); font-size: 24px; }
.clean-text-block p { font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 30px; }

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

.neat-surface-card { border-radius: 20px; overflow: hidden; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.06); height: 320px; }
.neat-surface-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.neat-surface-card:hover img { transform: scale(1.08); }

.neat-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 60px 25px 25px 25px; background: linear-gradient(to top, rgba(17,17,17,0.95), transparent); color: #fff; font-family: 'Inter', sans-serif; transform: translateY(10px); transition: transform 0.3s ease; }
.neat-surface-card:hover .neat-overlay { transform: translateY(0); }
.neat-overlay h4 { font-size: 18px; font-weight: 800; margin-bottom: 5px; color: var(--primary-color, #FBA212); }
.neat-overlay p { font-size: 13px; color: #ccc; }

/* ============================================
   PRODUCT 2 WHEELS PAGE
   ============================================ */
.product-section { padding: 60px 0 80px; }

.product-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #111;
}

.product-category-label { font-family: 'Inter', sans-serif; font-size: 18px; font-weight: 700; color: #111; margin-bottom: 20px; }

.product-card { background: #E2E2E2; border-radius: 8px; padding: 24px; margin-bottom: 30px; position: relative; }

.product-card-logo { position: absolute; top: 24px; right: 24px; background: #111; padding: 8px 16px; border-radius: 4px; display: flex; align-items: center; justify-content: center; min-width: 100px; height: 44px; }
.product-card-logo img { max-height: 28px; max-width: 90px; object-fit: contain; filter: brightness(0) invert(1); }

.product-main-display { background: #111; border-radius: 6px; width: 100%; height: 340px; display: flex; align-items: center; justify-content: center; overflow: hidden; margin-bottom: 16px; }
.product-main-display img { max-width: 100%; max-height: 100%; object-fit: contain; transition: opacity 0.3s ease; }

.thumb-row { display: flex; align-items: center; gap: 10px; }

.thumb-nav-btn { width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid #bbb; background: #fff; color: #333; font-size: 13px; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.25s ease; }
.thumb-nav-btn:hover { background: var(--primary-color, #FBA212); border-color: var(--primary-color, #FBA212); color: #fff; }

.thumb-list { display: flex; gap: 10px; flex: 1; overflow: hidden; }

.thumb-item { width: 72px; height: 72px; background: #D8D8D8; border-radius: 6px; border: 2px solid transparent; display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; overflow: hidden; transition: all 0.25s ease; }
.thumb-item img { max-width: 100%; max-height: 100%; object-fit: contain; }
.thumb-item:hover { border-color: var(--primary-color, #FBA212); }
.thumb-item.active { border-color: #111; background: #fff; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .container { width: 100%; padding: 0 40px; }
}

@media (max-width: 900px) {
    .nav-container { padding: 0 20px; }
    .footer-grid { grid-template-columns: 1fr; }
    .modern-split-grid { grid-template-columns: 1fr; gap: 40px; }
    .commitments-grid { grid-template-columns: 1fr; }
    .vm-glow-container { grid-template-columns: 1fr; }
    .modern-contact-grid { grid-template-columns: 1fr; }
    .contact-info-panel, .modern-form-panel { padding: 40px 20px; }
    .modern-plant-grid { grid-template-columns: 1fr; }
    .modern-news-featured { grid-template-columns: 1fr; }
    .news-featured-img { min-height: 250px; }
    .news-featured-content { padding: 30px; }
    .modern-news-grid { grid-template-columns: 1fr; }
    .modern-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .pristine-split, .pristine-split.reverse { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
    .pristine-split.reverse > * { direction: ltr; }
    .neat-surface-grid { grid-template-columns: 1fr; }
    .capsule-grid { grid-template-columns: 1fr; }
    .customer-profile-grid { grid-template-columns: 1fr; }
    .modern-logo-grid { grid-template-columns: repeat(2, 1fr); }
    .intro-grid { grid-template-columns: 1fr; }
    .hero-title-mega { font-size: 48px; }
    .hero-action-btns { flex-direction: column; }
    .article-grid { grid-template-columns: 1fr; }
    .article-title { font-size: 36px; }
    .timeline-line { left: 30px; }
    .timeline-dot { left: 30px; }
    .timeline-year-block { text-align: left; padding-left: 60px; }
    .timeline-card-wrapper, .timeline-card-wrapper.left { flex-direction: column; align-items: flex-end; }
    .timeline-spacer { display: none; }
    .timeline-card { width: calc(100% - 80px); }
    .timeline-card-wrapper:not(.left) .timeline-card::before,
    .timeline-card-wrapper.left .timeline-card::before { left: -12px; right: auto; border-width: 12px 12px 12px 0; border-color: transparent #ffffff transparent transparent; }
}

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

/* ============================================
   PRODUCT 2 WHEELS — DARK VIEWER
   ============================================ */

/* Page base */
body.pw-page { background: #F2F2F2; }

/* Hero */
.pw-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.pw-hero-bg {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}
.pw-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.pw-hero-content {
    position: relative; z-index: 2;
    padding-bottom: 60px;
}
.pw-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(var(--primary-rgb, 251, 162, 18),0.12);
    border: 1px solid rgba(var(--primary-rgb, 251, 162, 18),0.35);
    color: var(--primary-color, #FBA212);
    font-size: 11px; font-weight: 800;
    letter-spacing: 3px; text-transform: uppercase;
    padding: 6px 16px; border-radius: 50px;
    margin-bottom: 18px;
}
.pw-hero-title {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin: 0;
    text-transform: uppercase;
}
.pw-hero-title span { color: var(--primary-color, #FBA212); }
.pw-hero-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    margin-top: 12px;
    font-weight: 400;
}

/* Section */
.pw-section {
    padding: 80px 0 100px;
    background: #F2F2F2;
}

/* Client tabs */
/* Grid System Upgrade */
.pw-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.pw-tab {
    padding: 10px 24px;
    border-radius: 12px;
    border: 1px solid #E5E5E5;
    background: #fff;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #888;
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.5px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
}

.pw-tab::after {
    content: '';
    position: absolute; bottom: 0; left: 0; width: 100%; height: 3px;
    background: var(--primary-color, #FBA212);
    transform: translateY(3px);
    transition: transform 0.3s ease;
}

.pw-tab img {
    height: 22px; max-width: 80px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.6);
    transition: all 0.3s ease;
}

.pw-tab:hover { 
    border-color: var(--primary-color, #FBA212); 
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.pw-tab.active {
    border-color: var(--primary-color, #FBA212);
    background: #fff;
    color: #111;
    box-shadow: 0 8px 25px rgba(var(--primary-rgb, 251, 162, 18),0.15);
}

.pw-tab.active::after { transform: translateY(0); }
.pw-tab.active img { filter: grayscale(0) opacity(1); }

/* Panel Animation */
.pw-panel { display: none; }
.pw-panel.active { display: block; animation: pwSlideIn 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards; }

@keyframes pwSlideIn {
    from { opacity: 0; transform: translateY(20px); filter: blur(10px); }
    to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

/* Grid & Viewer */
.pw-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: stretch;
}

.pw-viewer {
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    display: flex; flex-direction: column;
}

.pw-viewer-stage {
    position: relative;
    height: 480px;
    display: flex; align-items: center; justify-content: center;
    /* Tech Grid Pattern */
    background-color: #f8f9fa;
    background-image: 
        linear-gradient(rgba(251, 162, 18, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(251, 162, 18, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    overflow: hidden;
}

/* Viewfinder Accents */
.pw-viewer-stage::before {
    content: '';
    position: absolute; top: 20px; left: 20px; right: 20px; bottom: 20px;
    border: 1px solid rgba(0,0,0,0.03);
    pointer-events: none;
}

/* Corner Brackets */
.pw-viewer-stage::after {
    content: '';
    position: absolute; top: 15px; left: 15px; width: 40px; height: 40px;
    border-top: 2px solid var(--primary-color, #FBA212);
    border-left: 2px solid var(--primary-color, #FBA212);
    opacity: 0.3; pointer-events: none;
}

.pw-stage-bottom-r {
    position: absolute; bottom: 15px; right: 15px; width: 40px; height: 40px;
    border-bottom: 2px solid var(--primary-color, #FBA212);
    border-right: 2px solid var(--primary-color, #FBA212);
    opacity: 0.3; pointer-events: none;
}

/* Scanning Line Animation */
.pw-scan-line {
    position: absolute; top: 0; left: 0; width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color, #FBA212), transparent);
    opacity: 0.2;
    animation: pwScan 4s linear infinite;
    z-index: 2;
}

@keyframes pwScan {
    0% { top: 0; }
    100% { top: 100%; }
}

.pw-viewer-stage img {
    max-width: 85%; max-height: 380px;
    object-fit: contain;
    position: relative; z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pw-viewer-stage:hover img { transform: scale(1.05) translateY(-5px); }

.pw-part-tag {
    position: absolute; bottom: 30px; left: 30px; z-index: 3;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 10px 20px; border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex; align-items: center; gap: 10px;
}
.pw-part-tag::before {
    content: ''; width: 8px; height: 8px; border-radius: 50%;
    background: var(--primary-color, #FBA212);
    animation: blink 2s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.8); } }

.pw-part-tag span {
    font-size: 13px; font-weight: 800;
    color: #111; letter-spacing: 0.5px; text-transform: uppercase;
}

/* Thumbnails */
.pw-thumbstrip {
    display: flex; align-items: center; gap: 15px;
    padding: 20px 30px;
    background: #fff;
    border-top: 1px solid #f0f0f0;
}
.pw-thumb-scroll { 
    display: flex; gap: 12px; flex: 1; 
    overflow-x: auto; 
    padding: 5px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}
.pw-thumb-scroll::-webkit-scrollbar { display: none; } /* Chrome/Safari */
.pw-thumb {
    width: 72px; height: 72px;
    border-radius: 14px;
    border: 2px solid #F0F0F0;
    background: #F9FAFB;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}
.pw-thumb img { max-width: 80%; max-height: 80%; object-fit: contain; transition: transform 0.3s; }
.pw-thumb:hover { border-color: var(--primary-color, #FBA212); transform: translateY(-3px); }
.pw-thumb.active {
    border-color: var(--primary-color, #FBA212);
    background: #fff;
    box-shadow: 0 8px 20px rgba(var(--primary-rgb, 251, 162, 18),0.2);
}

/* Sidebar Terminal Style */
.pw-sidebar { display: flex; flex-direction: column; gap: 20px; }

.pw-tech-card {
    background: #111827;
    border-radius: 24px;
    padding: 35px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.pw-client-logo {
    height: 45px; max-width: 160px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    margin-bottom: 30px;
}

.pw-spec-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 20px;
}

.pw-spec-item {
    display: flex; flex-direction: column; gap: 6px;
}

.pw-spec-label {
    font-size: 10px; font-weight: 800; color: #6B7280;
    text-transform: uppercase; letter-spacing: 1.5px;
}

.pw-spec-value {
    font-size: 15px; font-weight: 700; color: #F9FAFB;
    display: flex; align-items: center; gap: 10px;
}

.pw-spec-value i { color: var(--primary-color, #FBA212); font-size: 12px; }

.pw-blueprint-hint {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 11px; color: #4B5563; font-style: italic;
    display: flex; align-items: center; gap: 8px;
}

@media (max-width: 900px) {
    .pw-grid { grid-template-columns: 1fr; }
    .pw-viewer-stage { height: 350px; }
    .pw-tech-card { padding: 25px; }
}

/* ============================================
   MOBILE RESPONSIVENESS
   ============================================ */
@media (max-width: 1250px) {
    .container { width: 100%; padding: 0 20px; }
}

@media (max-width: 991px) {
    /* Navbar */
    .nav-container { padding: 0 20px; flex-direction: row; justify-content: space-between; align-items: center; }
    .mobile-burger { display: flex; }
    
    nav#navMenu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    nav#navMenu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        padding: 10px 0 30px 0;
    }
    
    nav ul { flex-direction: column; width: 100%; text-align: left; gap: 0; }
    nav ul li { width: 100%; }
    nav ul li a { 
        padding: 18px 30px; 
        display: block; 
        border-bottom: 1px solid #F0F0F0; 
        color: #111 !important; 
        font-size: 16px;
        font-weight: 600;
        border-left: 4px solid transparent;
    }
    nav ul li a.active { border-left-color: var(--primary-color, #FBA212); border-bottom: 1px solid #F0F0F0; background: #fafafa; }
    
    /* Sub-dropdown */
    .has-dropdown .nav-dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #F8F9FA;
        display: none;
        padding: 0;
        min-width: 100%;
        border-radius: 0;
    }
    nav#navMenu.active .has-dropdown:hover .nav-dropdown { display: block; }
    .nav-dropdown li a { padding: 15px 30px 15px 50px !important; font-size: 14px !important; border-bottom: 1px solid #EBEBEB !important; }
    
    /* Fix Language Switcher on Mobile (outside navMenu) */
    .lang-switcher .nav-dropdown {
        position: absolute;
        top: 100%;
        right: -10px;
        left: auto;
        background: #ffffff;
        display: block;
        min-width: 120px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        border-radius: 4px;
        visibility: hidden;
        opacity: 0;
        transform: translateY(15px);
    }
    .lang-switcher.has-dropdown:hover .nav-dropdown,
    .lang-switcher.has-dropdown:active .nav-dropdown {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        display: block;
    }
    .nav-right-area { gap: 10px; }
    
    /* Hero */
    .container-hero { padding-left: 20px; }
    .hero-content-modern { padding-left: 0; text-align: center !important; margin: 0 auto; }
    .hero-title-mega { font-size: 40px !important; }
    .hero-desc-modern { font-size: 15px; max-width: 100% !important; }
    .hero-action-btns { justify-content: center; }
    
    /* Intro */
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .intro-right { text-align: center; }
    .img-main { width: 100%; height: auto; border-radius: 20px; }
    .img-float { position: static; width: 80%; display: block; margin: 20px auto 0; border: none; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
    
    /* Plants */
    .plant-panoramic-grid { grid-template-columns: 1fr; }
    .plant-pano-card { aspect-ratio: 4/3; }
    .plant-section-title { font-size: 32px; }
    .plant-pano-btn { opacity: 1; transform: translateY(0); }
    
    /* Footer */
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .contact-item { justify-content: center; }
    .social-icons { justify-content: center; }
    
    /* About Us */
    .modern-split-grid { grid-template-columns: 1fr; }
    .commitments-grid { grid-template-columns: 1fr; }
    .vm-glow-container { grid-template-columns: 1fr; }
    
    /* Customer */
    .customer-profile-grid { grid-template-columns: 1fr; }
    .customer-stats { flex-direction: column; }
    .modern-logo-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }

    /* Awards */
    .timeline-card-wrapper { flex-direction: column !important; margin-bottom: 30px; }
    .timeline-card { width: 100%; }
    .timeline-spacer { display: none; }
    .timeline-line { left: 20px; }
    .timeline-dot { left: 20px; }
    .timeline-card-wrapper:not(.left) .timeline-card::before, .timeline-card-wrapper.left .timeline-card::before { display: none; }
    
    /* Facility */
    .pristine-split { grid-template-columns: 1fr !important; }
    .neat-surface-grid { grid-template-columns: 1fr; }
    
    /* Contact */
    .modern-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .logo-img { height: 26px; }
    .nav-right-area { gap: 8px; }
    .lang-switcher { margin-left: 0 !important; }
    .hero-title-mega { font-size: 32px !important; }
    .btn-primary-modern, .btn-outline-modern { width: 100%; text-align: center; justify-content: center; display: flex; }
    .hero-action-btns { flex-direction: column; gap: 10px; }
}

@media (max-width: 480px) {
    .modern-logo-grid { grid-template-columns: repeat(1, 1fr); }
    .banner-title { font-size: 32px; }
    .pw-spec-list li { font-size: 11px; }
}

/* ============================================
   PREMIUM DARK MODE — Corporate Industrial
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
    --dm-bg:         #1B1D21;
    --dm-bg-raised:  #22252A;
    --dm-bg-card:    #272A30;
    --dm-bg-input:   #2C2F36;
    --dm-border:     rgba(255,255,255,0.06);
    --dm-border-hover: rgba(var(--primary-rgb, 251, 162, 18),0.3);
    --dm-text:       #D4D4D8;
    --dm-text-muted: #8B8D94;
    --dm-text-head:  #F0F0F2;
    --dm-accent:     var(--primary-color, #FBA212);
    --dm-accent-dim: rgba(var(--primary-rgb, 251, 162, 18),0.12);
    --dm-shadow:     0 10px 30px rgba(0,0,0,0.25);
    --dm-shadow-sm:  0 4px 12px rgba(0,0,0,0.2);
    --dm-radius:     16px;
    --dm-transition: 0.35s ease;
}

/* ---- Smooth transition on everything ---- */
html[data-theme="dark"] *,
html[data-theme="dark"] *::before,
html[data-theme="dark"] *::after {
    transition: background-color var(--dm-transition),
                color var(--dm-transition),
                border-color var(--dm-transition),
                box-shadow var(--dm-transition);
}

/* ---- Base ---- */
html[data-theme="dark"] body { background-color: var(--dm-bg) !important; color: var(--dm-text) !important; }

/* ---- Scrollbar ---- */
html[data-theme="dark"] ::-webkit-scrollbar-track { background: var(--dm-bg-raised); }
html[data-theme="dark"] ::-webkit-scrollbar-thumb { background-color: #444; }

/* ---- Typography ---- */
html[data-theme="dark"] h1, html[data-theme="dark"] h2, html[data-theme="dark"] h3,
html[data-theme="dark"] h4, html[data-theme="dark"] h5, html[data-theme="dark"] h6 { color: var(--dm-text-head) !important; }
html[data-theme="dark"] p { color: var(--dm-text) !important; }
html[data-theme="dark"] a:not(.btn-primary-modern):not(.btn-outline-modern):not(.modern-send-btn):not(.share-btn) { color: var(--dm-text); }
html[data-theme="dark"] .intro-subtitle { color: var(--dm-accent) !important; }
html[data-theme="dark"] .highlight-orange { color: var(--dm-accent) !important; }

/* ---- Header / Navbar ---- */
html[data-theme="dark"] header { background-color: var(--dm-bg-raised); border-bottom-color: var(--dm-border); }
html[data-theme="dark"] header.header-transparent { background-color: transparent !important; }
html[data-theme="dark"] header.scrolled {
    background-color: rgba(27,29,33,0.92) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--dm-border) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
html[data-theme="dark"] header.header-transparent.scrolled nav > ul > li > a { color: var(--dm-text) !important; }
html[data-theme="dark"] nav ul li a { color: var(--dm-text); }
html[data-theme="dark"] nav a:hover { color: var(--dm-accent); }
html[data-theme="dark"] nav a.active { color: var(--dm-text-head); border-bottom-color: var(--dm-accent); }
html[data-theme="dark"] .mobile-burger { color: var(--dm-text); }
html[data-theme="dark"] .header-transparent .mobile-burger { color: #fff; }

/* Toggle track on dark */
html[data-theme="dark"] .toggle-track { background: #333; }
html[data-theme="dark"] .header-transparent .toggle-track { background: rgba(255,255,255,0.12); }

/* ---- Dropdown ---- */
html[data-theme="dark"] .nav-dropdown {
    background: var(--dm-bg-card);
    border: 1px solid var(--dm-border);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}
html[data-theme="dark"] header.header-transparent nav ul.nav-dropdown li a,
html[data-theme="dark"] nav ul.nav-dropdown li a { color: var(--dm-text) !important; }
html[data-theme="dark"] header.header-transparent nav ul.nav-dropdown li a:hover,
html[data-theme="dark"] nav ul.nav-dropdown li a:hover,
html[data-theme="dark"] header.header-transparent nav ul.nav-dropdown li a.active,
html[data-theme="dark"] nav ul.nav-dropdown li a.active {
    background-color: var(--dm-bg-input);
    color: var(--dm-accent) !important;
}

/* ---- Back To Top ---- */
html[data-theme="dark"] #backToTop { background-color: var(--dm-accent); color: var(--dm-bg); }

/* ---- Page Banner ---- */
html[data-theme="dark"] .page-banner .banner-overlay { background: rgba(0,0,0,0.85); }

/* ---- FOOTER ---- */
html[data-theme="dark"] footer { background-color: #15171A; border-top-color: var(--dm-border); }
html[data-theme="dark"] .footer-col h4 { color: var(--dm-text-head); }
html[data-theme="dark"] .social-icons a { background-color: var(--dm-bg-card); color: var(--dm-text); }
html[data-theme="dark"] .social-icons a:hover { background-color: var(--dm-accent); color: var(--dm-bg); }
html[data-theme="dark"] .contact-item i { color: var(--dm-accent); }
html[data-theme="dark"] .contact-item a { color: var(--dm-text-muted); }
html[data-theme="dark"] .contact-item a:hover { color: var(--dm-accent); }
html[data-theme="dark"] .links-grid a { color: var(--dm-text-muted); }
html[data-theme="dark"] .links-grid a:hover { color: var(--dm-accent); }
html[data-theme="dark"] .footer-bottom { border-top-color: var(--dm-border); color: var(--dm-text-muted); }

/* ---- Our Customer Slider (home) ---- */
html[data-theme="dark"] .our-customer { background-color: var(--dm-bg) !important; }
html[data-theme="dark"] .section-underline { background-color: #444; }
html[data-theme="dark"] .customer-track img { filter: grayscale(100%) brightness(1.5); }

/* ---- HOME PAGE ---- */
html[data-theme="dark"] .modern-home-intro { background: var(--dm-bg) !important; }
html[data-theme="dark"] .intro-title { color: var(--dm-text-head); }
html[data-theme="dark"] .intro-text { color: var(--dm-text-muted); }
html[data-theme="dark"] .img-float { border-color: var(--dm-bg); }

html[data-theme="dark"] .feature-item { background: var(--dm-bg-card); }
html[data-theme="dark"] .feature-item:hover { background: var(--dm-bg-input); box-shadow: var(--dm-shadow-sm); }
html[data-theme="dark"] .feature-item i { background: var(--dm-bg); }
html[data-theme="dark"] .feature-item h4 { color: var(--dm-text-head); }
html[data-theme="dark"] .feature-item p { color: var(--dm-text-muted); }

/* Plant Cards */
html[data-theme="dark"] .plant-panoramic-section { background: var(--dm-bg-raised) !important; }
html[data-theme="dark"] .plant-section-title { color: var(--dm-text) !important; }
html[data-theme="dark"] .plant-section-desc { color: var(--dm-text-muted) !important; }
html[data-theme="dark"] .plant-pano-card {
    background: var(--dm-bg-card);
    border-color: var(--dm-border);
    box-shadow: var(--dm-shadow);
}
html[data-theme="dark"] .modern-plant-card:hover { box-shadow: var(--dm-shadow); border-color: var(--dm-border-hover); }
html[data-theme="dark"] .plant-body h4 { color: var(--dm-text-head); }
html[data-theme="dark"] .plant-body p { color: var(--dm-text-muted); }

/* ---- ABOUT US ---- */
html[data-theme="dark"] .modern-about-wrapper { background-color: var(--dm-bg) !important; }
html[data-theme="dark"] .modern-about-text h2 { color: var(--dm-text-head); }
html[data-theme="dark"] .modern-about-text p { color: var(--dm-text-muted); }
html[data-theme="dark"] .experience-badge { background: rgba(34,37,42,0.9); border-color: var(--dm-border); }
html[data-theme="dark"] .experience-badge .text { color: var(--dm-text); }

html[data-theme="dark"] .commit-card {
    background: var(--dm-bg-card);
    border-color: var(--dm-border);
    box-shadow: var(--dm-shadow-sm);
}
html[data-theme="dark"] .commit-card:hover { box-shadow: var(--dm-shadow); }
html[data-theme="dark"] .commit-card h4 { color: var(--dm-text-head); }
html[data-theme="dark"] .commit-card p { color: var(--dm-text-muted); }
html[data-theme="dark"] .commit-card i { background: var(--dm-accent-dim); }

html[data-theme="dark"] .vm-glow-card {
    background: rgba(39,42,48,0.8);
    border-color: var(--dm-border);
    box-shadow: var(--dm-shadow-sm);
}
html[data-theme="dark"] .vm-glow-card:hover { box-shadow: var(--dm-shadow); background: rgba(39,42,48,0.95); }
html[data-theme="dark"] .vm-glow-header h3 { color: var(--dm-text-head); }
html[data-theme="dark"] .vm-glow-card p { color: var(--dm-text-muted); }

/* ---- PENGHARGAAN ---- */
html[data-theme="dark"] .awards-page { background-color: var(--dm-bg) !important; }
html[data-theme="dark"] .timeline-line { background-color: #333; }
html[data-theme="dark"] .timeline-year-badge { background-color: var(--dm-bg-card); border-color: var(--dm-bg); }
html[data-theme="dark"] .timeline-dot { background-color: var(--dm-accent); border-color: var(--dm-bg); }
html[data-theme="dark"] .timeline-card {
    background-color: var(--dm-bg-card);
    border-bottom-color: #444;
    box-shadow: var(--dm-shadow-sm);
}
html[data-theme="dark"] .timeline-card:hover { border-bottom-color: var(--dm-accent); box-shadow: var(--dm-shadow); }
html[data-theme="dark"] .timeline-card h3 { color: var(--dm-text-head); }
html[data-theme="dark"] .timeline-card p { color: var(--dm-text-muted); }
html[data-theme="dark"] .timeline-card-wrapper:not(.left) .timeline-card::before { border-right-color: var(--dm-bg-card); }
html[data-theme="dark"] .timeline-card-wrapper.left .timeline-card::before { border-left-color: var(--dm-bg-card); }

/* ---- OUR CUSTOMER PAGE ---- */
html[data-theme="dark"] .modern-customer-profile { background-color: var(--dm-bg) !important; }
html[data-theme="dark"] .customer-profile-text p strong { color: var(--dm-text-head); }
html[data-theme="dark"] .customer-stats { border-top-color: var(--dm-border); }
html[data-theme="dark"] .stat-box h3 span { color: var(--dm-text-muted); }
html[data-theme="dark"] .stat-box p { color: var(--dm-text-muted); }

html[data-theme="dark"] .global-reach-card { background: var(--dm-bg-card); box-shadow: var(--dm-shadow); }
html[data-theme="dark"] .global-reach-card p { color: var(--dm-text-muted); }

html[data-theme="dark"] .modern-partners-showcase { background-color: var(--dm-bg-raised) !important; }
html[data-theme="dark"] .logo-tile {
    background: var(--dm-bg-card);
    border-color: var(--dm-border);
    box-shadow: var(--dm-shadow-sm);
}
html[data-theme="dark"] .logo-tile:hover { box-shadow: var(--dm-shadow); border-color: var(--dm-border-hover); }
html[data-theme="dark"] .logo-tile img { filter: grayscale(100%) brightness(2); opacity: 0.5; }
html[data-theme="dark"] .logo-tile:hover img { filter: grayscale(0%) brightness(1); opacity: 1; }

/* ---- CONTACT PAGE ---- */
html[data-theme="dark"] .modern-contact-wrapper { background-color: var(--dm-bg) !important; }
html[data-theme="dark"] .modern-contact-grid {
    background: var(--dm-bg-card);
    box-shadow: var(--dm-shadow);
}
html[data-theme="dark"] .contact-info-panel { background: #15171A; }
html[data-theme="dark"] .modern-form-panel h3 { color: var(--dm-text-head); }
html[data-theme="dark"] .modern-input-group input,
html[data-theme="dark"] .modern-input-group textarea {
    background: var(--dm-bg-input);
    border-color: var(--dm-border);
    color: var(--dm-text);
}
html[data-theme="dark"] .modern-input-group label { color: var(--dm-text-muted); }
html[data-theme="dark"] .modern-input-group input:focus,
html[data-theme="dark"] .modern-input-group textarea:focus {
    border-color: var(--dm-accent);
    background: var(--dm-bg);
    box-shadow: 0 4px 15px rgba(var(--primary-rgb, 251, 162, 18),0.08);
}
html[data-theme="dark"] .modern-input-group input:focus ~ label,
html[data-theme="dark"] .modern-input-group textarea:focus ~ label,
html[data-theme="dark"] .modern-input-group input:not(:placeholder-shown) ~ label,
html[data-theme="dark"] .modern-input-group textarea:not(:placeholder-shown) ~ label {
    background: var(--dm-bg-card);
    color: var(--dm-accent);
}

/* ---- NEWS PAGE ---- */
html[data-theme="dark"] .modern-news-wrapper { background-color: var(--dm-bg) !important; }
html[data-theme="dark"] .news-section-header h2 { color: var(--dm-text-head); }
html[data-theme="dark"] .modern-news-featured {
    background: var(--dm-bg-card);
    box-shadow: var(--dm-shadow);
}
html[data-theme="dark"] .news-featured-content h3 a { color: var(--dm-text-head); }
html[data-theme="dark"] .news-featured-content p { color: var(--dm-text-muted); }
html[data-theme="dark"] .modern-read-more { color: var(--dm-text); }
html[data-theme="dark"] .modern-news-card {
    background: var(--dm-bg-card);
    box-shadow: var(--dm-shadow-sm);
}
html[data-theme="dark"] .modern-news-card:hover { box-shadow: var(--dm-shadow); }
html[data-theme="dark"] .news-card-body h4 a { color: var(--dm-text-head); }
html[data-theme="dark"] .news-card-body p { color: var(--dm-text-muted); }

/* ---- NEWS DETAIL ---- */
html[data-theme="dark"] .modern-article-wrapper { background: var(--dm-bg) !important; }
html[data-theme="dark"] .modern-article-body { background: var(--dm-bg-card); box-shadow: var(--dm-shadow-sm); }
html[data-theme="dark"] .modern-article-body .lead-text { color: var(--dm-text); }
html[data-theme="dark"] .modern-article-body p { color: var(--dm-text-muted); }
html[data-theme="dark"] .modern-article-body h3 { color: var(--dm-text-head); }
html[data-theme="dark"] .quote-block { background: var(--dm-accent-dim); }
html[data-theme="dark"] .quote-block p { color: var(--dm-text) !important; }
html[data-theme="dark"] .sidebar-widget { background: var(--dm-bg-card); box-shadow: var(--dm-shadow-sm); }
html[data-theme="dark"] .sidebar-widget h4 { color: var(--dm-text-head); border-bottom-color: var(--dm-border); }
html[data-theme="dark"] .related-txt a { color: var(--dm-text); }
html[data-theme="dark"] .modern-back-btn { color: var(--dm-text-muted); }

/* ---- GALLERY PAGE ---- */
html[data-theme="dark"] .modern-gallery-wrapper { background-color: var(--dm-bg) !important; }
html[data-theme="dark"] .filter-btn { border-color: #444; color: var(--dm-text-muted); }
html[data-theme="dark"] .filter-btn:hover, html[data-theme="dark"] .filter-btn.active { background: var(--dm-accent); border-color: var(--dm-accent); color: #fff; }
html[data-theme="dark"] .gallery-item { box-shadow: var(--dm-shadow-sm); }

/* ---- FACILITY PAGE ---- */
html[data-theme="dark"] .modern-facility-section { background: var(--dm-bg) !important; }
html[data-theme="dark"] .modern-facility-section.bg-gray { background: var(--dm-bg-raised) !important; }
html[data-theme="dark"] .facility-mega-title { color: var(--dm-text-head); }
html[data-theme="dark"] .clean-text-block h3 { color: var(--dm-text-head); }
html[data-theme="dark"] .clean-text-block p { color: var(--dm-text-muted); }
html[data-theme="dark"] .capsule-board { background: #15171A; }
html[data-theme="dark"] .neat-surface-card { box-shadow: var(--dm-shadow-sm); }

/* ---- PRODUCT VIEWER (4-wheels, 2-wheels etc.) ---- */
html[data-theme="dark"] body.pw-page { background: var(--dm-bg); }
html[data-theme="dark"] .pw-section { background: var(--dm-bg); }
html[data-theme="dark"] .pw-tab { background: var(--dm-bg-card); border-color: var(--dm-border); color: var(--dm-text-muted); }
html[data-theme="dark"] .pw-tab:hover { border-color: var(--dm-border-hover); }
html[data-theme="dark"] .pw-viewer {
    background: var(--dm-bg-card);
    border-color: var(--dm-border);
    box-shadow: var(--dm-shadow-sm);
}
html[data-theme="dark"] .pw-viewer-stage { background: radial-gradient(ellipse at center, #2a2a2a 0%, var(--dm-bg-card) 100%); }
html[data-theme="dark"] .pw-thumbstrip { background: var(--dm-bg-raised); border-top-color: var(--dm-border); }
html[data-theme="dark"] .pw-thumb { background: var(--dm-bg-input); border-color: var(--dm-border); }
html[data-theme="dark"] .pw-thumb:hover { border-color: var(--dm-border-hover); background: var(--dm-bg-card); }
html[data-theme="dark"] .pw-thumb.active { border-color: var(--dm-accent); background: var(--dm-accent-dim); }
html[data-theme="dark"] .pw-scroll-btn { background: var(--dm-bg-input); border-color: var(--dm-border); color: var(--dm-text); }
html[data-theme="dark"] .pw-scroll-btn:hover { background: var(--dm-accent); border-color: var(--dm-accent); color: #fff; }

html[data-theme="dark"] .pw-client-card {
    background: var(--dm-bg-card);
    border-color: var(--dm-border);
    box-shadow: var(--dm-shadow-sm);
}
html[data-theme="dark"] .pw-client-card h3 { color: var(--dm-text-head); }
html[data-theme="dark"] .pw-client-card p { color: var(--dm-text-muted); }
html[data-theme="dark"] .pw-client-logo { filter: brightness(1.8); }
html[data-theme="dark"] .pw-stat { background: var(--dm-bg-input); border-color: var(--dm-border); }
html[data-theme="dark"] .pw-stat .lbl { color: var(--dm-text-muted); }
html[data-theme="dark"] .pw-spec-card {
    background: var(--dm-bg-card);
    border-color: var(--dm-border);
    box-shadow: var(--dm-shadow-sm);
}
html[data-theme="dark"] .pw-spec-title { color: var(--dm-accent); }
html[data-theme="dark"] .pw-spec-list li { color: var(--dm-text); }

/* ---- Product 2-Wheels classic ---- */
html[data-theme="dark"] .product-section { background: var(--dm-bg); }
html[data-theme="dark"] .product-section-title { color: var(--dm-text-head); }
html[data-theme="dark"] .product-category-label { color: var(--dm-text-head); }
html[data-theme="dark"] .product-card { background: var(--dm-bg-card); }
html[data-theme="dark"] .thumb-item { background: var(--dm-bg-input); }
html[data-theme="dark"] .thumb-item.active { background: var(--dm-bg-card); border-color: var(--dm-accent); }
html[data-theme="dark"] .thumb-nav-btn { background: var(--dm-bg-card); border-color: var(--dm-border); color: var(--dm-text); }

/* ---- Mobile Menu Dark Override ---- */
@media (max-width: 991px) {
    html[data-theme="dark"] nav#navMenu { background: var(--dm-bg-raised); }
    html[data-theme="dark"] nav ul li a { 
        border-bottom-color: var(--dm-border) !important; 
        color: var(--dm-text) !important; 
    }
    html[data-theme="dark"] nav ul li a.active { background: var(--dm-bg-card); border-left-color: var(--dm-accent); }
    html[data-theme="dark"] .has-dropdown .nav-dropdown { background: var(--dm-bg) !important; }
    html[data-theme="dark"] .nav-dropdown li a { border-bottom-color: var(--dm-border) !important; }
}


/* ============================================
   MODERN FOOTER SYSTEM
   ============================================ */
footer.modern-footer {
    position: relative;
    background: #0D0D11 !important; /* Timed elegantly with dark mode */
    color: #E5E7EB;
    font-family: 'Inter', sans-serif;
    margin-top: 80px;
    padding-top: 60px !important;
    border-top: none !important; /* Removes legacy border */
    overflow: hidden;
}

/* Base Layout */
.modern-footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 45px;
    padding-top: 10px;
    padding-bottom: 40px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
    opacity: 0.95;
    display: block;
}

.footer-desc {
    font-size: 14.5px;
    line-height: 1.8;
    color: #9CA3AF;
    margin-bottom: 25px;
    max-width: 95%;
}

.footer-heading {
    color: #FFFFFF;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
    font-family: 'Inria Sans', sans-serif;
    letter-spacing: 0.5px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: var(--primary-color, #FBA212);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-links:hover .footer-heading::after {
    width: 55px;
}

/* Lists */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 16px;
    display: block;
}

.footer-links ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links ul li a i {
    font-size: 10px;
    margin-right: 10px;
    color: var(--primary-color, #FBA212);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-links ul li a:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}

.footer-links ul li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info */
.contact-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-box .icon-wrap {
    width: 36px;
    height: 36px;
    background: rgba(var(--primary-rgb, 251, 162, 18), 0.1);
    color: var(--primary-color, #FBA212);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contact-box:hover .icon-wrap {
    background: var(--primary-color, #FBA212);
    color: #111;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb, 251, 162, 18), 0.3);
}

.contact-text span {
    display: block;
    color: #FFFFFF;
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-text p, .contact-text a {
    margin: 0;
    color: #9CA3AF;
    font-size: 13.5px;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-text a:hover {
    color: var(--primary-color, #FBA212);
}

/* Social Icons */
.modern-social-icons {
    display: flex;
    gap: 12px;
}

.modern-social-icons .social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.modern-social-icons .social-btn:hover {
    background: var(--primary-color, #FBA212);
    border-color: var(--primary-color, #FBA212);
    color: #111;
    transform: translateY(-5px) rotate(8deg);
    box-shadow: 0 8px 18px rgba(var(--primary-rgb, 251, 162, 18), 0.35);
}

/* Bottom Bar */
.footer-bottom-bar {
    background: #08080A;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 22px 0;
}

.flex-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    color: #6B7280;
    font-size: 13px;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.legal-links a {
    color: #6B7280;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #FFFFFF;
}

.legal-links .divider {
    width: 4px;
    height: 4px;
    background: #4B5563;
    border-radius: 50%;
}

/* Utilities */
.pb-4 { padding-bottom: 20px; }
.mb-3 { margin-bottom: 15px; }

/* Responsive Grid Adjustments */
@media (max-width: 991px) {
    .modern-footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px 30px;
    }
}

@media (max-width: 768px) {
    .modern-footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .flex-bottom {
        flex-direction: column;
        text-align: center;
    }
    .legal-links {
        justify-content: center;
        margin-top: 8px;
    }
}
/* ============================================
   AUTOMATION PRODUCT GALLERY PAGE
   ============================================ */
.auto-gallery-section {
    padding: 100px 0 120px;
    background: #fafafa;
}

.auto-gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.auto-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-color, #FBA212);
    background: rgba(251,162,18,0.1);
    padding: 7px 20px;
    border-radius: 30px;
    margin-bottom: 18px;
}

.auto-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #111;
    line-height: 1.15;
    margin-bottom: 14px;
}

.auto-section-title span { color: var(--primary-color, #FBA212); }

.auto-section-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #777;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.auto-product-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    cursor: pointer;
}

.auto-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.13);
}

.auto-card-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f0f0f0;
}

.auto-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.auto-product-card:hover .auto-card-img-wrap img {
    transform: scale(1.08);
}

.auto-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(17,17,17,0.92) 0%,
        rgba(17,17,17,0.5) 50%,
        rgba(17,17,17,0.05) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px 16px;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.auto-product-card:hover .auto-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.auto-card-overlay-inner {
    text-align: center;
    width: 100%;
}

.auto-overlay-icon {
    display: block;
    color: var(--primary-color, #FBA212);
    font-size: 20px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.auto-product-card:hover .auto-overlay-icon {
    transform: scale(1.2);
}

.auto-part-name {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: 0.3px;
    margin-bottom: 5px;
}

.auto-part-client {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-color, #FBA212);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(var(--primary-rgb, 251, 162, 18), 0.15);
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(var(--primary-rgb, 251, 162, 18), 0.3);
}

.auto-card-info {
    padding: 14px 16px 16px;
    border-top: 1px solid #f0f0f0;
}

.auto-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.auto-card-client {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.auto-card-client i { font-size: 10px; color: var(--primary-color, #FBA212); }

.auto-empty-state {
    text-align: center;
    padding: 80px 0;
    color: #bbb;
}

.auto-empty-state i {
    font-size: 50px;
    margin-bottom: 16px;
    display: block;
    color: #ddd;
}

.auto-empty-state p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
}

@media (max-width: 1024px) {
    .auto-product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .auto-product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .auto-section-title { font-size: 30px; }
    .auto-gallery-section { padding: 60px 0 80px; }
}

@media (max-width: 480px) {
    .auto-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .auto-card-overlay { padding: 16px 10px; }
    .auto-part-name { font-size: 13px; }
}

/* ---- Dark Mode Overrides for Automation ---- */
html[data-theme="dark"] .auto-gallery-section { background: var(--dm-bg); }
html[data-theme="dark"] .auto-section-title { color: var(--dm-text-head); }
html[data-theme="dark"] .auto-section-desc { color: var(--dm-text-muted); }
html[data-theme="dark"] .auto-product-card { background: var(--dm-bg-card); border-color: var(--dm-border); }
html[data-theme="dark"] .auto-card-img-wrap { background: var(--dm-bg-input); }
html[data-theme="dark"] .auto-card-info { border-top-color: var(--dm-border); background: var(--dm-bg-card); }
html[data-theme="dark"] .auto-card-title { color: var(--dm-text-head); }
html[data-theme="dark"] .auto-card-client { color: var(--dm-text-muted); }
html[data-theme="dark"] .auto-empty-state { color: var(--dm-text-muted); }
html[data-theme="dark"] .auto-empty-state i { color: var(--dm-border); }

/* ============================================
   AWARDS ACCORDION PAGE
   ============================================ */
.award-accordion-container {
    max-width: 1100px;
    margin: 0 auto 60px;
    text-align: left;
}

.award-accordion-item {
    margin-bottom: 20px;
    background: #fff;
    border: 1px solid #eaeaea;
}

.award-accordion-header {
    background: #2b2b2b;
    color: #fff;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.award-accordion-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.award-accordion-expand {
    background: #FFC107;
    color: #000;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

/* Active State */
.award-accordion-item.active .award-accordion-header {
    background: #FFC107;
    color: #000;
}

.award-accordion-item.active .award-accordion-expand {
    display: none;
}

.award-accordion-controls {
    display: none;
    align-items: center;
}

.award-accordion-item.active .award-accordion-controls {
    display: flex;
}

.award-btn {
    background: #FFC107;
    border: none;
    border-left: 2px solid #fff;
    color: #000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}
.award-btn:hover { background: #e0a800; }

.award-accordion-body {
    display: none;
    padding: 30px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-top: none;
}

.award-accordion-item.active .award-accordion-body {
    display: block;
}

.award-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.award-carousel::-webkit-scrollbar { display: none; }

.award-card {
    min-width: 300px;
    max-width: 320px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background: transparent;
}

.award-card-img-wrapper {
    width: 100%;
    height: 220px;
    background: #fdfdfd;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.award-card-img-wrapper img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.award-card-title {
    background: #fff;
    color: #000;
    font-weight: 700;
    font-size: 15px;
    padding: 15px 10px;
    text-align: center;
    width: 85%;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-top: -30px;
    position: relative;
    z-index: 2;
    border: 1px solid #f1f1f1;
}

/* AWARD MODAL */
.award-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
}
.award-modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    position: relative;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    animation: modalPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes modalPop {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
.award-modal-close {
    position: absolute;
    top: 15px; right: 15px;
    background: #FFC107;
    color: #000;
    border: none;
    border-radius: 50%;
    width: 32px; height: 32px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.award-modal-close:hover {
    transform: scale(1.1);
}
.award-modal-content img {
    width: 100%;
    max-height: 60vh;
    height: auto;
    object-fit: contain;
    background: #fdfdfd;
    padding: 30px;
    border-bottom: 1px solid #eaeaea;
}
.award-modal-text {
    padding: 30px;
    text-align: center;
}
.award-modal-badge {
    display: inline-block;
    background: #FFC107;
    color: #000;
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
}
.award-modal-text h3 {
    margin: 0 0 8px 0;
    font-size: 22px;
    font-weight: 800;
    color: #111;
}
.award-modal-text h5 {
    margin: 0 0 15px 0;
    color: #666;
    font-size: 15px;
    font-weight: 600;
}
.award-modal-text p {
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}

/* ============================================
   CERTIFICATE GALLERY PAGE
   ============================================ */
.certificate-gallery {
    padding: 60px 0 100px;
}

.certificate-year-group {
    margin-bottom: 60px;
}

.certificate-year-title {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.certificate-year-title::after {
    content: '';
    flex-grow: 1;
    height: 2px;
    background: #eaeaea;
}

.certificate-year-badge {
    background: var(--primary-color, #FBA212);
    color: #000;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 16px;
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.certificate-card {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.certificate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(var(--primary-rgb, 251, 162, 18), 0.15);
    border-color: rgba(var(--primary-rgb, 251, 162, 18), 0.3);
}

.cert-img-frame {
    width: 100%;
    aspect-ratio: 3/4;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

.cert-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.certificate-card:hover .cert-img-frame img {
    transform: scale(1.05);
}

.cert-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

.certificate-card:hover .cert-overlay {
    opacity: 1;
}

.cert-overlay-btn {
    background: var(--primary-color, #FBA212);
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.certificate-card:hover .cert-overlay-btn {
    transform: translateY(0);
}

.cert-info {
    padding-top: 15px;
    text-align: center;
}

.cert-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
    line-height: 1.4;
}

.cert-giver {
    font-size: 13px;
    color: #777;
    font-weight: 500;
}
