* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #222;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}
/* HEADER */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.logo img {
    display: block;
    width: 165px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-nav a {
    font-size: 14px;
    transition: 0.3s;
}

.main-nav a:hover {
    opacity: 0.6;
}

/* =========================================
   JAS DROPDOWN
========================================= */

.nav-dropdown {
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    cursor: pointer;
    vertical-align: middle;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #0f0bf0;
    text-decoration: none;
    white-space: nowrap;
}

.nav-dropdown-menu a:hover {
    background: #0be6af;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.language {
    display: flex;
    gap: 8px;
}

.language a {
    font-size: 13px;
    font-weight: 600;
}


/* =========================================
   HERO SLIDESHOW
========================================= */

.hero {
    position: relative;
    height: calc(100vh - 80px);
    min-height: 600px;
    max-height: 850px;
    overflow: hidden;
    background: #111;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.42) 45%,
        rgba(0, 0, 0, 0.12) 100%
    );
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-content .container {
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.08;
    margin-bottom: 22px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
}

.hero-content .btn {
    background: #fff;
    color: #111;
    padding: 15px 30px;
}

.hero-content .btn:hover {
    background: #eee;
}


/* HERO DOTS */

.hero-dots {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    padding: 0;
}

.hero-dot.active {
    background: #fff;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    background: #222;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    opacity: 0.8;
}

/* =========================================
   ABOUT COMPANY
========================================= */

.about-company {
    padding: 110px 0;
    background: #ffffff;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
    align-items: center;
}


/* IMAGE */

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}


/* CONTENT */

.about-content {
    max-width: 600px;
}

.section-label {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #555;
}

.about-content h2 {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.1;
    margin-bottom: 28px;
    font-weight: 700;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}

.about-content .about-lead {
    font-size: 19px;
    line-height: 1.7;
    color: #222;
}


/* BUTTON */

.about-button {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 28px;
    background: #111;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-button:hover {
    background: #333;
    transform: translateY(-2px);
}


/* FOOTER */

.site-footer {
    background: #222;
    color: #fff;
    padding: 0;
    margin-top: 0;
}

.site-footer h3 {
    margin-bottom: 10px;
}

.site-footer p {
    margin-bottom: 10px;
    color: #ccc;
}


/* RESPONSIVE */

@media (max-width: 900px) {
    
    /* PRODUCTS */

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .product-image {
        height: 280px;
    }
    
    .product-detail {
        padding: 80px 0;
    }

    .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .product-detail-image img {
        height: 450px;
    }

    .product-features {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .product-detail-heading {
        margin-bottom: 45px;
    }

    .product-detail-image img {
        height: 320px;
    }

    .technical-row {
        grid-template-columns: 110px 1fr;
    }

    .technical-name {
        padding-bottom: 5px;
        padding-top: 20px;
    }

    .technical-value {
        padding-top: 5px;
    }

    .product-features {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 600px) {

    .products-section {
        padding: 80px 0;
    }

    .products-heading {
        margin-bottom: 40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 300px;
    }

    .header-inner {
        flex-wrap: wrap;
        padding: 20px 0;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .about-image img {
        height: 300px;
    }

    /* ABOUT */

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-content {
        max-width: 100%;
    }

} 

    .products-section {
        padding: 80px 0;
    }

    .products-heading {
        margin-bottom: 40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-image {
        height: 300px;
    }



    .header-inner {
        flex-wrap: wrap;
        padding: 20px 0;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-content h1 {
        font-size: 38px;
    }


    /* ABOUT */

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-content {
        max-width: 100%;
    }


/* =========================================
   OUR PRODUCTS
========================================= */

.products-section {
    padding: 110px 0;
    background: #f7f7f7;
}

.products-heading {
    max-width: 700px;
    margin-bottom: 60px;
}

.products-heading h2 {
    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.1;
    margin-bottom: 20px;
}

.products-heading p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
}


/* PRODUCT GRID */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* PRODUCT CARD */

.product-card {
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
}


/* PRODUCT IMAGE */

.product-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #eeeeee;
}

.product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}


/* OVERLAY */

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}


/* VIEW DETAILS */

.product-link {
    display: inline-block;
    padding: 13px 25px;

    background: #ffffff;
    color: #111;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 1px;

    transition: all 0.3s ease;
}

.product-link:hover {
    background: #111;
    color: #fff;
}


/* PRODUCT INFORMATION */

.product-info {
    position: relative;
    padding: 30px;
}

.product-number {
    display: block;

    margin-bottom: 10px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #888;
}

.product-info h3 {
    font-size: 26px;
    margin-bottom: 12px;
}

.product-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* =========================================
   PRODUCT DETAIL
========================================= */

.product-detail {
    padding: 100px 0;
    background: #ffffff;
}


/* PRODUCT HEADING */

.product-detail-heading {
    margin-bottom: 70px;
    max-width: 800px;
}

.product-detail-heading h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;
    margin-bottom: 15px;
    color: #111;
}

.product-detail-heading p {
    font-size: 22px;
    color: #666;
    letter-spacing: 1px;
}


/* MAIN PRODUCT */

.product-detail-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
}

/* LVL PRODUCT OVERVIEW */

.product-overview {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
}

@media (max-width: 900px) {

    .product-overview {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}


/* IMAGE */

.product-detail-image {
    overflow: hidden;
    background: #f5f5f5;
}

.product-detail-image img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
}


/* CONTENT */

.product-detail-content {
    max-width: 600px;
}

.product-detail-label {
    display: inline-block;
    margin-bottom: 15px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;

    color: #555;
}

.product-detail-content h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    margin-bottom: 25px;
}

.product-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
}


/* =========================================
   TECHNICAL SPECIFICATION
========================================= */

.technical-specification {
    margin-top: 110px;
}

.technical-heading {
    margin-bottom: 40px;
}

.technical-heading h2 {
    font-size: clamp(30px, 4vw, 46px);
    margin-top: 10px;
}


/* TABLE */

.technical-table {
    border-top: 1px solid #ddd;
}

.technical-row {
    display: grid;
    grid-template-columns: 40% 60%;

    min-height: 75px;

    border-bottom: 1px solid #ddd;

    align-items: center;
}

.technical-name {
    padding: 20px;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    color: #555;
}

.technical-value {
    padding: 20px;

    font-size: 17px;
    color: #222;
}


/* =========================================
   PRODUCT FEATURES
========================================= */

.product-features {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    gap: 1px;

    margin-top: 80px;

    background: #ddd;
}

.feature-box {
    background: #fff;
    padding: 30px 25px;
}

.feature-box h3 {
    font-size: 17px;
    margin-bottom: 15px;
    color: #111;
}

.feature-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}


/* BACK BUTTON */

.product-back {
    margin-top: 60px;
}

/* =========================================
   PRODUCT IMAGE LIGHTBOX
========================================= */

.lightbox-image {
    cursor: zoom-in;
}


.image-lightbox {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.90);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition: opacity 0.3s ease;

    z-index: 99999;
}


.image-lightbox.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.image-lightbox img {
    max-width: 90%;
    max-height: 90%;

    width: auto;
    height: auto;

    object-fit: contain;

    display: block;

    transform: scale(0.9);

    transition: transform 0.3s ease;
}


.image-lightbox.active img {
    transform: scale(1);
}


/* CLOSE BUTTON */

.lightbox-close {
    position: absolute;

    top: 25px;
    right: 30px;

    width: 45px;
    height: 45px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.2);

    color: white;

    font-size: 32px;
    line-height: 40px;

    cursor: pointer;

    z-index: 100000;
}


.lightbox-close:hover {
    background: white;
    color: black;
}

.registered {
    font-size: 0.55em;
    vertical-align: super;
    line-height: 0;
    margin-left: 1px;
}
/* =========================================
   BRAND / COMPANY NAME
========================================= */

.brand {
    display: flex;
    align-items: center;
    gap: 2px;
}

@font-face {
    font-family: "Dutch801Web";
    src: url("../fonts/dutcheb.woff2") format("woff2");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

.company-name {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.2px;
    color: #074acf;
}
/* =========================================
   PRODUCTS PAGE
========================================= */

.products-page {
    padding: 90px 0 110px;
    background: #f7f7f7;
}

.products-heading {
    max-width: 700px;
    margin-bottom: 55px;
}

.products-heading h1 {
    font-size: clamp(40px, 5vw, 64px);
    margin-bottom: 20px;
}

.products-heading p {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
}


/* PRODUCT GRID */

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* PRODUCT CARD */

.product-card {
    display: block;
    background: #fff;
    color: inherit;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.10);
}


/* PRODUCT IMAGE */

.product-card img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}


/* CONTENT */

.product-card-content {
    padding: 28px;
}

.product-number {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
}

.product-card h3 {
    margin-bottom: 12px;
    font-size: 27px;
}

.product-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.product-view {
    display: inline-block;
    margin-top: 18px;
    font-size: 14px;
    font-weight: 700;
    color: #0f47ee;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 600px) {

    .products-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================
   PRODUCT IMAGE LIGHTBOX
========================================= */

.product-detail-image {
    position: relative;
}

.product-detail-image img.lightbox-image {
    display: block;
    width: 100%;
    height: auto;
    cursor: zoom-in;
}


/* LIGHTBOX */

.image-lightbox {
    display: none;

    position: fixed;
    inset: 0;

    z-index: 9999;

    background: rgba(0, 0, 0, 0.90);

    align-items: center;
    justify-content: center;

    padding: 40px;
}


/* ACTIVE */

.image-lightbox.active {
    display: flex;
}


/* IMAGE */

.image-lightbox img {
    display: block;

    max-width: 95%;
    max-height: 90vh;

    width: auto;
    height: auto;

    object-fit: contain;

    cursor: zoom-out;
}


/* CLOSE BUTTON */

.lightbox-close {
    position: absolute;

    top: 20px;
    right: 30px;

    width: 45px;
    height: 45px;

    border: none;
    background: transparent;

    color: #fff;

    font-size: 42px;
    line-height: 1;

    cursor: pointer;

    z-index: 10000;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.spec-highlight {
    font-weight: 700;
    color: #0b2a6f;
    background: #eef3ff;
    padding: 3px 6px;
    border-radius: 3px;
}

/* =========================================
   PLYWOOD TECHNICAL SPECIFICATION
========================================= */

.technical-table {
    border-top: 1px solid #ddd;
}

.technical-row {
    display: grid;
    grid-template-columns: 16% 34% 16% 34%;

    min-height: 80px;

    border-bottom: 1px solid #ddd;

    align-items: center;
}

.technical-row-full {
    grid-template-columns: 16% 84%;
    align-items: start;
}

.technical-name {
    padding: 22px 20px;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;

    color: #555;
}

.technical-value {
    padding: 22px 20px;

    font-size: 16px;

    line-height: 1.5;

    color: #222;
}


/* THICKNESS */

.thickness-value {
    padding-top: 18px;
    padding-bottom: 18px;
}

.thickness-item {
    display: block;

    margin-bottom: 10px;
}

.thickness-item:last-child {
    margin-bottom: 0;
}


/* JAS / NON JAS */

.spec-highlight {
    display: inline-block;

    margin-right: 8px;

    font-weight: 700;

    color: #0b2a6f;
}


/* REGISTERED TRADEMARK */

.registered {
    font-size: 0.55em;
    vertical-align: super;
    line-height: 0;
    margin-left: 1px;
}
/* Jarak antara deskripsi produk dan Product Information */

.product-information {
    margin-top: 70px;
}
/* =========================================
   PRODUCTS DROPDOWN
========================================= */

.nav-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: block;
}


/* Dropdown awalnya tersembunyi */

.dropdown-menu {
    display: none;

    position: absolute;

    top: 100%;
    left: 0;

    min-width: 190px;

    background: #fff;

    border: 1px solid #ddd;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

    z-index: 9999;
}


/* Isi dropdown */

.dropdown-menu a {
    display: block;

    padding: 10px 15px;

    color: #222;

    text-decoration: none;

    font-size: 14px;

    white-space: nowrap;
}


/* Saat mouse diarahkan ke Products */

.nav-dropdown:hover .dropdown-menu {
    display: block;
}


/* Saat mouse diarahkan ke nama produk */

.dropdown-menu a:hover {
    background: #1131e9;

    color: #ffffff;
}
.dropdown-arrow {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg);
    margin-left: 2px;
    position: relative;
    top: -2px;
}

/* =========================================
   JAS PRODUCTS PAGE
========================================= */

.jas-products {
    padding: 80px 0;
    background: #ffffff;
}

.jas-products-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.jas-products-heading .section-label {
    display: block;
    margin-bottom: 15px;
}

.jas-products-heading h1 {
    margin: 0 0 20px;
    font-size: 42px;
    line-height: 1.2;
}

.jas-products-heading p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}


/* PRODUCT GRID */

.jas-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* PRODUCT CARD */

.jas-product-card {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.jas-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.10);
}


/* PRODUCT IMAGES */

.jas-product-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: #eeeeee;
}

.jas-product-image {
    overflow: hidden;
    background: #f5f5f5;
}

.jas-product-image img {
    display: block;
    width: 100%;
    height: auto;
}


/* PRODUCT CONTENT */

.jas-product-content {
    padding: 28px;
}

.jas-product-number {
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: 2px;
    color: #777;
}

.jas-product-content h2 {
    margin: 0 0 12px;
    font-size: 26px;
}

.jas-product-content p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 992px) {

    .jas-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .jas-products {
        padding: 50px 0;
    }

    .jas-products-heading h1 {
        font-size: 32px;
    }

    .jas-product-grid {
        grid-template-columns: 1fr;
    }

}

/* Hilangkan panah bawaan JAS */
.nav-dropdown-toggle::after {
    content: none !important;
}

/* =========================================
   ABOUT JAS
========================================= */

.jas-about {
    padding: 80px 0;
    background: #ffffff;
}


/* PAGE HEADER */

.jas-about-heading {
    max-width: 850px;
    margin: 0 auto 80px;
    text-align: center;
}

.jas-about-heading .section-label {
    display: block;
    margin-bottom: 15px;
}

.jas-about-heading h1 {
    margin: 0 0 20px;
    font-size: 44px;
    line-height: 1.2;
}

.jas-about-heading p {
    margin: 0;
    color: #666;
    line-height: 1.7;
}


/* MAIN SECTIONS */

.jas-about-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 70px;

    align-items: center;

    padding: 70px 0;

    border-top: 1px solid #e5e5e5;
}

.jas-about-section-reverse {
    grid-template-columns: 1fr 1.5fr;
}


/* CONTENT */

.jas-about-content .section-label {
    display: block;
    margin-bottom: 12px;
}

.jas-about-content h2 {
    margin: 0 0 25px;

    font-size: 32px;
    line-height: 1.3;
}

.jas-about-content p {
    margin: 0 0 18px;

    color: #555;

    line-height: 1.8;
}


/* HIGHLIGHT BOX */

.jas-about-highlight h3 {
    margin: 0 0 15px;

    font-size: 24px;
}

/* JAS BIG TEXT */

.jas-about-number {
    margin-bottom: 15px;

    font-size: 48px;
    font-weight: 700;

    letter-spacing: 3px;

    color: #0033cc;
}


/* LIST */

.jas-about-highlight ul {
    margin: 0;
    padding-left: 20px;

    color: #555;

    line-height: 2;
}


/* INDOTAMA SECTION */

.jas-about-indotama {
    margin-top: 20px;

    padding: 60px;

    text-align: center;

    background: #f7f7f7;
}

.jas-about-indotama .section-label {
    display: block;

    margin-bottom: 15px;
}

.jas-about-indotama h2 {
    margin: 0 0 25px;

    font-size: 32px;
}

.jas-about-indotama p {
    max-width: 850px;

    margin: 0 auto 15px;

    color: #555;

    line-height: 1.8;
}


/* MOBILE */

@media (max-width: 768px) {

    .jas-about {
        padding: 50px 0;
    }

    .jas-about-heading {
        margin-bottom: 50px;
    }

    .jas-about-heading h1 {
        font-size: 34px;
    }

    .jas-about-section,
    .jas-about-section-reverse {
        grid-template-columns: 1fr;

        gap: 35px;

        padding: 50px 0;
    }

    .jas-about-content h2 {
        font-size: 27px;
    }

    .jas-about-highlight {
        padding: 30px;
    }

    .jas-about-indotama {
        padding: 40px 25px;
    }

}

/* =========================================
   JAS ABOUT PAGE
========================================= */

.jas-about {
    padding: 80px 0;
}

.jas-about .container {
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================
   MAIN GRID
========================================= */

.jas-about-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 60px;
    align-items: start;
}


/* =========================================
   LEFT CONTENT
========================================= */

.jas-about-content {
    min-width: 0;
}

.jas-about-content .section-label {
    display: block;
    margin-bottom: 18px;
}

.jas-about-content h1 {
    font-size: 42px;
    line-height: 1.15;
    margin: 0 0 25px;
    font-weight: 600;
}

.jas-about-content > p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 22px;
}


/* =========================================
   INDOTAMA CERTIFICATION HIGHLIGHT
========================================= */

.jas-about-highlight {
    margin-top: 40px;
    padding: 35px 40px;
    background: #f6f6f6;
    border-left: 4px solid #003cff;
}

.jas-highlight-label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #444;
}

.jas-about-highlight h2 {
    margin: 0 0 22px;
    font-size: 30px;
    font-weight: 600;
}

.jas-about-highlight p {
    margin: 8px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}


/* =========================================
   VERIFICATION
========================================= */

.jas-verification {
    margin-top: 50px;
}

.jas-verification h2 {
    font-size: 30px;
    margin: 0 0 18px;
    font-weight: 600;
}

.jas-verification p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}


/* =========================================
   JPIC BUTTON
========================================= */

.jas-verify-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 22px;

    background: #111;
    color: #fff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.jas-verify-button:hover {
    background: #003cff;
    color: #fff;
}

.jas-verify-button span {
    font-size: 18px;
}


/* =========================================
   RIGHT SIDEBAR
========================================= */

.jas-about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* =========================================
   INFORMATION CARDS
========================================= */

.jas-info-card {
    padding: 30px 32px;

    background: #f6f6f6;

    border-left: 4px solid #003cff;
}

.jas-info-label {
    display: block;

    font-size: 11px;
    letter-spacing: 2px;

    color: #555;

    margin-bottom: 10px;
}

.jas-info-card h2 {
    margin: 0 0 10px;

    font-size: 32px;
    font-weight: 600;

    color: #003cff;
}

.jas-info-card p {
    margin: 0;

    font-size: 15px;
    line-height: 1.6;

    color: #555;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .jas-about {
        padding: 60px 20px;
    }

    .jas-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .jas-about-content h1 {
        font-size: 34px;
    }

}


@media (max-width: 600px) {

    .jas-about-content h1 {
        font-size: 28px;
    }

    .jas-about-highlight {
        padding: 25px;
    }

    .jas-verification h2 {
        font-size: 25px;
    }

    .jas-info-card {
        padding: 25px;
    }

}

/* =========================================
   JAS CERTIFICATION PAGE
========================================= */

.jas-certification {
    padding: 80px 0;
}

.jas-certification .container {
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================
   PAGE HEADING
========================================= */

.jas-certification-heading {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.jas-certification-heading .section-label {
    display: block;
    margin-bottom: 18px;
}

.jas-certification-heading h1 {
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 20px;
    font-weight: 600;
}

.jas-certification-heading p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}


/* =========================================
   CERTIFICATION MAIN
========================================= */

.jas-certification-main {
    display: grid;
    grid-template-columns: 0.8fr 1.5fr;
    gap: 50px;
    align-items: stretch;
    margin-bottom: 60px;
}


/* =========================================
   JAS CERTIFICATION MAIN - COMPACT
========================================= */

.jas-certification-main {
    display: flex;
    flex-direction: column;
    gap: 20px;
}


/* =========================================
   CERTIFICATE ROW
========================================= */

.jas-certificate-row {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 20px;
    align-items: stretch;
}


/* =========================================
   CERTIFICATE LOGO
========================================= */

.jas-certificate-logo {
    background: #f7f7f7;
    border-left: 4px solid #003cff;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 190px;
    padding: 20px;
}


.jas-certificate-logo img {
    max-width: 150px;
    max-height: 150px;

    width: auto;
    height: auto;

    display: block;
}


/* =========================================
   CERTIFICATE INFORMATION
========================================= */
.jas-certification-label {
    display: block;

    margin-bottom: 8px;

    font-size: 10px;
    letter-spacing: 2.2px;

    color: #555;
}

/* =========================================
   CERTIFICATION DETAILS
========================================= */

.jas-certification-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 35px;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 25px;
}

.jas-detail-item strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #222;
}


.jas-detail-item span {
    display: block;

    margin-bottom: 7px;

    font-size: 10px;

    letter-spacing: 2px;

    color: #777;
}

.jas-logo-item img {

    max-width: 140px;

    max-height: 140px;

    width: auto;

    height: auto;

    display: block;
}

.jas-logo-box {
    width: 100%;
    min-height: 320px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f6f6f6;

    border-left: 4px solid #003cff;

    padding: 40px;

    box-sizing: border-box;
}

.jas-logo-box img {
    max-width: 220px;
    max-height: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
}


/* =========================================
   CERTIFICATION INFORMATION
========================================= */

.jas-certification-info {
    background: #f6f6f6;

    padding: 40px;

    border-left: 4px solid #003cff;

    box-sizing: border-box;
}

.jas-certification-label {
    display: block;

    font-size: 11px;
    letter-spacing: 2px;

    color: #555;

    margin-bottom: 12px;
}

.jas-certification-info h2 {
    margin: 0 0 20px;
    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;
}

.jas-certification-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 30px;
    max-width: 750px;
}


/* =========================================
   CERTIFICATION DETAILS
========================================= */

.jas-certification-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 35px;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 25px;
}

.jas-detail-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* =========================================
   COMMITMENT TEXT
========================================= */

.jas-certification-text {
    max-width: 850px;

    margin: 0 auto 60px;

    text-align: center;
}

.jas-certification-text h2 {
    font-size: 30px;

    margin: 0 0 22px;

    font-weight: 600;
}

.jas-certification-text p {
    font-size: 15px;

    line-height: 1.8;

    color: #555;

    margin: 0 0 18px;
}


/* =========================================
   INDEPENDENT VERIFICATION
========================================= */

.jas-certification-verification {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 35px 40px;

    background: #f6f6f6;

    border-left: 4px solid #003cff;

    box-sizing: border-box;
}

/* JAS VERIFICATION - MOBILE */

@media (max-width: 900px) {

    .jas-certification-verification {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

}

.jas-verification-label {
    display: block;

    font-size: 11px;

    letter-spacing: 2px;

    color: #555;

    margin-bottom: 10px;
}

.jas-verification-content h2 {
    margin: 0 0 12px;

    font-size: 28px;

    font-weight: 600;
}

.jas-verification-content p {
    margin: 0;

    max-width: 650px;

    font-size: 15px;

    line-height: 1.7;

    color: #555;
}


/* =========================================
   VERIFICATION BUTTON
========================================= */

.jas-certification-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 22px;

    background: #111;

    color: #fff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.jas-certification-button:hover {
    background: #003cff;

    color: #fff;
}

.jas-certification-button span {
    font-size: 18px;
}


/* =========================================
   JAS CERTIFICATION RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .jas-certificate-row {
        grid-template-columns: 220px 1fr;
        gap: 20px;
    }

    .jas-certification-info {
        padding: 30px;
    }

    .jas-certification-details {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 650px) {

    .jas-certificate-row {
        grid-template-columns: 1fr;
    }

    .jas-certificate-logo {
        min-height: 200px;
    }

    .jas-certification-info {
        padding: 25px;
    }

    .jas-certification-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}

/* =========================================
   HOME - JAS CERTIFICATION
========================================== */

.home-jas {
    padding: 90px 0;
    background: #f7f7f7;
}

.home-jas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}


/* LEFT */

.home-jas-label {
    display: block;
    margin-bottom: 15px;

    font-size: 12px;
    letter-spacing: 4px;
    color: #555;
}

.home-jas-info h2 {
    margin: 0 0 20px;

    font-size: 38px;
    line-height: 1.2;
    color: #222;
}

.home-jas-info p {
    max-width: 600px;

    margin-bottom: 30px;

    font-size: 15px;
    line-height: 1.8;
    color: #666;
}


/* BUTTON */

.home-jas-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 22px;

    background: #111;
    color: #fff;

    text-decoration: none;

    font-size: 13px;
    letter-spacing: 0.5px;

    transition: 0.3s;
}

.home-jas-button:hover {
    background: #003cff;
}

.home-jas-button span {
    font-size: 18px;
}


/* RIGHT CARD */

.home-jas-card {
    display: flex;
    align-items: center;
    gap: 35px;

    padding: 45px;

    background: #fff;

    border-left: 4px solid #003cff;
}


/* JAS LOGO */

.home-jas-logo {
    width: 120px;
    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 3px solid #111;
    border-radius: 50%;

    font-size: 32px;
    font-weight: 700;

    color: #111;

    flex-shrink: 0;
}


/* DETAILS */

.home-jas-details > span {
    font-size: 11px;
    letter-spacing: 3px;
    color: #777;
}

.home-jas-details h3 {
    margin: 10px 0 25px;

    font-size: 24px;
    color: #222;
}


/* META */

.home-jas-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.home-jas-meta small {
    display: block;

    margin-bottom: 6px;

    font-size: 10px;
    letter-spacing: 2px;
    color: #888;
}

.home-jas-meta strong {
    font-size: 15px;
    color: #222;
}


/* =========================================
   RESPONSIVE
========================================== */

@media (max-width: 768px) {

    .home-jas {
        padding: 60px 20px;
    }

    .home-jas-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .home-jas-info h2 {
        font-size: 30px;
    }

    .home-jas-card {
        padding: 30px;
        flex-direction: column;
        align-items: flex-start;
    }

    .home-jas-meta {
        grid-template-columns: 1fr;
        gap: 20px;
    }

}

.main-nav a sup {
    font-size: 0.65em;
    position: relative;
    top: -0.2em;
    margin-left: 1px;
    font-weight: 600;
}

/* =========================================
   FSC PRODUCTS
========================================= */

.fsc-products {
    padding: 80px 0 100px;
}


/* =========================================
   FSC PRODUCTS HEADING
========================================= */

.fsc-products-heading {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.fsc-products-heading .section-label {
    display: block;
    margin-bottom: 16px;
}

.fsc-products-heading h1 {
    margin: 0 0 20px;
}

.fsc-products-heading p {
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.8;
}


/* =========================================
   FSC PRODUCT GRID
========================================= */

.fsc-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}


/* =========================================
   FSC PRODUCT CARD
========================================= */

.fsc-product-card {
    background: #ffffff;
    border: 1px solid #e2e2e2;
    overflow: hidden;
}


/* =========================================
   FSC PRODUCT IMAGES
========================================= */

.fsc-product-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #e5e5e5;
}

.fsc-product-image {
    background: #f5f5f5;
    overflow: hidden;
}

.fsc-product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}


/* =========================================
   FSC PRODUCTS
========================================= */

.fsc-products {
    padding: 80px 0 100px;
}


/* =========================================
   FSC PRODUCTS HEADING
========================================= */

.fsc-products-heading {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.fsc-products-heading .section-label {
    display: block;
    margin-bottom: 16px;
}

.fsc-products-heading h1 {
    margin: 0 0 20px;
}

.fsc-products-heading p {
    max-width: 760px;
    margin: 0 auto;
    line-height: 1.8;
}


/* =========================================
   FSC PRODUCT GRID
========================================= */

.fsc-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* =========================================
   FSC PRODUCT CARD
========================================= */

.fsc-product-card {
    background: #ffffff;
    border: 1px solid #e2e2e2;
    overflow: hidden;
}


/* =========================================
   FSC PRODUCT IMAGE
========================================= */

.fsc-product-image {
    width: 100%;
    height: 300px;
    background: #f5f5f5;
    overflow: hidden;
}

.fsc-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* =========================================
   FSC PRODUCT CONTENT
========================================= */

.fsc-product-content {
    padding: 30px;
}

.fsc-product-number {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 10px;
}

.fsc-product-content h2 {
    margin: 0 0 15px;
    font-size: 28px;
}

.fsc-product-content p {
    margin: 0;
    line-height: 1.8;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .fsc-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 600px) {

    .fsc-products {
        padding: 60px 0 70px;
    }

    .fsc-products-heading {
        margin-bottom: 40px;
    }

    .fsc-product-grid {
        grid-template-columns: 1fr;
    }

    .fsc-product-image {
        height: 260px;
    }

    .fsc-product-content {
        padding: 25px;
    }

}

/* =========================================
   FSC ABOUT
========================================= */

.fsc-about {
    padding: 80px 0 100px;
}


/* =========================================
   FSC ABOUT INTRO
========================================= */

.fsc-about-intro {
    max-width: 850px;
    margin-bottom: 80px;
}

.fsc-about-intro .section-label {
    display: block;
    margin-bottom: 18px;
}

.fsc-about-intro h1 {
    margin: 0 0 25px;
}

.fsc-about-intro p {
    max-width: 780px;
    line-height: 1.8;
    margin: 0;
}


/* =========================================
   FSC ABOUT BLOCK
========================================= */

.fsc-about-block {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: stretch;
    margin-bottom: 80px;
}

.fsc-about-reverse {
    grid-template-columns: 0.8fr 1.2fr;
}


/* =========================================
   FSC ABOUT TEXT
========================================= */

.fsc-about-text {
    padding: 20px 0;
}

.fsc-about-label {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 18px;
}

.fsc-about-text h2 {
    margin: 0 0 25px;
    font-size: 34px;
}

.fsc-about-text p {
    margin: 0 0 20px;
    line-height: 1.8;
}


/* =========================================
   FSC ABOUT CARD
========================================= */

.fsc-about-card {
    background: #f5f5f5;
    border-left: 4px solid #003cff;
    padding: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.fsc-about-card span {
    font-size: 46px;
    font-weight: 700;
    color: #003cff;
    margin-bottom: 20px;
}

.fsc-about-card h3 {
    font-size: 26px;
    margin: 0 0 18px;
}

.fsc-about-card p {
    margin: 0;
    line-height: 1.8;
}


/* =========================================
   FSC COMMITMENT
========================================= */

.fsc-about-commitment {
    background: #f5f5f5;
    border-left: 4px solid #003cff;
    padding: 55px 60px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.fsc-about-commitment .section-label {
    display: block;
    margin-bottom: 18px;
}

.fsc-about-commitment h2 {
    margin: 0 0 25px;
    font-size: 34px;
}

.fsc-about-commitment p {
    max-width: 800px;
    margin: 0 auto 18px;
    line-height: 1.8;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .fsc-about-block,
    .fsc-about-reverse {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}


@media (max-width: 600px) {

    .fsc-about {
        padding: 60px 0 70px;
    }

    .fsc-about-intro {
        margin-bottom: 60px;
    }

    .fsc-about-text h2 {
        font-size: 28px;
    }

    .fsc-about-card {
        padding: 35px;
    }

    .fsc-about-card span {
        font-size: 38px;
    }

    .fsc-about-commitment {
        padding: 40px 25px;
    }

    .fsc-about-commitment h2 {
        font-size: 28px;
    }

}

.fsc-about-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 10px;
    padding: 13px 20px;

    background: #111;
    color: #fff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition: 0.3s ease;
}

.fsc-about-button:hover {
    background: #003cff;
    color: #fff;
}

.fsc-about-button span {
    font-size: 18px;
}

/* =========================================
   FSC ABOUT INTRO
========================================= */

.fsc-about-intro-grid {

    display: grid;

    grid-template-columns: 1fr 300px;

    align-items: center;

    gap: 70px;

}


.fsc-about-intro-text {

    max-width: 850px;

}


.fsc-about-logo {
    display: flex;

    justify-content: flex-start;
    align-items: flex-start;

    padding-top: 10px;
    padding-left: 10px;
}

.fsc-about-logo img {
    width: 170px;
    height: auto;
    display: block;
}

/* FSC ABOUT INTRO - MOBILE */

@media (max-width: 900px) {

    .fsc-about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}

/* =========================================
   HOME FSC CERTIFICATION
========================================= */

.home-fsc {
    padding: 100px 0;
    background: #f7f7f7;
}


.home-fsc-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}


.home-fsc-info {
    max-width: 600px;
}


.home-fsc-label {
    display: block;
    margin-bottom: 20px;

    font-size: 11px;
    letter-spacing: 4px;

    color: #444;
}


.home-fsc-info h2 {
    margin: 0 0 25px;

    font-size: 42px;
    line-height: 1.15;

    font-weight: 600;
    color: #222;
}


.home-fsc-info p {
    margin: 0 0 30px;

    max-width: 560px;

    font-size: 15px;
    line-height: 1.8;

    color: #666;
}


/* BUTTON */

.home-fsc-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;

    padding: 16px 22px;

    background: #111;
    color: #fff;

    text-decoration: none;

    font-size: 12px;
    letter-spacing: .5px;

    transition: .3s ease;
}


.home-fsc-button span {
    font-size: 18px;
    line-height: 1;
}


.home-fsc-button:hover {
    background: #003cff;
}


/* CARD */

.home-fsc-card {
    display: grid;

    grid-template-columns: 180px 1fr;

    align-items: center;

    background: #fff;

    border-left: 4px solid #003cff;

    min-height: 240px;
}


/* LOGO */

.home-fsc-logo {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;
}


.home-fsc-logo img {
    width: 125px;
    height: auto;

    display: block;
}


/* DETAILS */

.home-fsc-details {
    padding: 35px 35px 35px 20px;
}


.home-fsc-details > span {
    display: block;

    margin-bottom: 10px;

    font-size: 10px;
    letter-spacing: 3px;

    color: #555;
}


.home-fsc-details h3 {
    margin: 0 0 30px;

    font-size: 25px;
    line-height: 1.3;

    font-weight: 600;

    color: #222;
}


/* META */

.home-fsc-meta {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

    padding-top: 20px;

    border-top: 1px solid #ddd;
}


.home-fsc-meta small {
    display: block;

    margin-bottom: 7px;

    font-size: 9px;
    letter-spacing: 2px;

    color: #777;
}


.home-fsc-meta strong {
    display: block;

    font-size: 15px;
    font-weight: 600;

    color: #222;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .home-fsc-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}


@media (max-width: 600px) {

    .home-fsc {
        padding: 70px 0;
    }


    .home-fsc-info h2 {
        font-size: 34px;
    }


    .home-fsc-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }


    .home-fsc-logo {
        padding: 30px 20px 15px;
    }


    .home-fsc-details {
        padding: 20px 25px 30px;
    }


    .home-fsc-meta {
        grid-template-columns: 1fr;
    }

}

/* =========================================
   HOME CERTIFICATIONS
========================================= */

.home-certifications {
    padding: 100px 0;
    background: #ffffff;
}


/* =========================================
   HEADING
========================================= */

.home-certifications-heading {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.home-certifications-heading .section-label {
    display: block;
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 4px;
    color: #444;
}

.home-certifications-heading h2 {
    margin: 0 0 20px;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 600;
    color: #222;
}

.home-certifications-heading p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}


/* =========================================
   CERTIFICATION MARQUEE
========================================= */

.home-certifications-marquee {
    width: 100%;

    overflow: hidden;

    position: relative;

    margin: 0 auto;
}


.home-certifications-viewport {
    width: 100%;

    overflow: hidden;
}


.home-certifications-list {
    display: flex;

    flex-wrap: nowrap;

    gap: 20px;

    width: max-content;

    will-change: transform;

    animation:
        certificationMarquee
        25s
        linear
        infinite;
}


/* =========================================
   CERTIFICATION ITEM
========================================= */

.home-certification-item {
    min-height: 180px;

    padding: 30px 25px;

    flex: 0 0 360px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    background: #f7f7f7;

    border-top: 2px solid #003cff;

    text-align: center;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}


.home-certification-item:hover {
    transform: translateY(-5px);

    background: #f3f3f3;
}


/* =========================================
   LOGO
========================================= */

.home-certification-item img {
    width: 180px;

    max-width: 100%;

    height: 95px;

    object-fit: contain;

    display: block;

    margin-bottom: 18px;
}


/* =========================================
   LABEL
========================================= */

.home-certification-item span {
    font-size: 12px;

    font-weight: 600;

    letter-spacing: 2px;

    color: #333;
}

/* =========================================
   CERTIFICATION MARQUEE RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .home-certification-item {
        flex-basis: 300px;
    }

}


@media (max-width: 600px) {

    .home-certifications {
        padding: 70px 0;
    }


    .home-certifications-heading h2 {
        font-size: 32px;
    }


    .home-certification-item {
        flex-basis: 280px;
    }

}


/* =========================================
   CONTINUOUS MARQUEE
========================================= */

@keyframes certificationMarquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}

/* =========================================
   LANGUAGE DROPDOWN
========================================= */

.language-dropdown {
    position: relative;
    display: inline-block;
}


/* =========================================
   CURRENT LANGUAGE
========================================= */

.language-current {
    display: flex;
    align-items: center;
    gap: 6px;

    padding: 8px 0;

    border: none;
    background: transparent;

    font-family: inherit;
    font-size: 17px;

    color: #222;

    cursor: pointer;
}

.language-current:hover {
    color: #003cff;
}

.language-current-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.language-current-flag img {
    width: 22px;
    height: 15px;

    object-fit: cover;

    display: block;
}

.language-arrow {
    font-size: 11px;
    line-height: 1;

    margin-left: 1px;

    transition: transform 0.2s ease;
}


/* =========================================
   DROPDOWN MENU
========================================= */

.language-menu {
    position: absolute;

    top: calc(100% + 8px);
    right: 0;

    min-width: 170px;

    background: #ffffff;

    border: 1px solid #eeeeee;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    padding: 7px 0;

    opacity: 0;
    visibility: hidden;

    transform: translateY(8px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;

    z-index: 9999;
}


/* =========================================
   SHOW DROPDOWN
========================================= */

.language-dropdown:hover .language-menu {
    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}


.language-dropdown:hover .language-arrow {
    transform: rotate(180deg);
}


/* =========================================
   LANGUAGE OPTION
========================================= */

.language-option {
    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px 16px;

    color: #333;

    text-decoration: none;

    font-size: 13px;

    transition: 0.2s ease;
}


.language-option:hover {
    background: #f7f7f7;

    color: #003cff;
}


/* =========================================
   LANGUAGE FLAG
========================================= */

.language-flag {
    width: 24px;
    min-width: 24px;

    display: inline-flex;

    align-items: center;
    justify-content: center;
}


.language-flag img {
    width: 22px;
    height: 15px;

    object-fit: cover;

    display: block;
}


/* =========================================
   CURRENT LANGUAGE FLAG
========================================= */

.language-current-flag {
    display: inline-flex;

    align-items: center;
    justify-content: center;
}


.language-current-flag img {
    width: 22px;
    height: 15px;

    object-fit: cover;

    display: block;
}


/* =========================================
   LANGUAGE NAME
========================================= */

.language-name {
    display: inline-block;

    width: auto;
}

.fsc-trademark {
    font-size: 0.3em;
    vertical-align: super;
    position: relative;
    top: -0.1em;
    margin-left: 1px;
    line-height: 0;
}

/* =========================================
   FSC PRODUCT CERTIFICATION
========================================= */

.fsc-product-certification {
    margin-top: 70px;
    display: flex;
    align-items: center;
}

.fsc-product-certification img {
    width: 140px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* =========================================
   FSC VERIFICATION BUTTON
========================================= */

.fsc-certification-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 12px 18px;

    border: 1px solid #222;
    background: #ffffff;

    color: #222;

    text-decoration: none;

    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.5px;

    transition: all 0.25s ease;
}

.fsc-certification-button:hover {
    background: #0609e6;
    color: #ffffff;
}

/* =========================================
   CONTACT PAGE
========================================= */

.contact-page {
    padding: 90px 0 100px;
    background: #ffffff;
}


/* =========================================
   CONTACT HEADING
========================================= */

.contact-heading {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.contact-heading .section-label {
    display: block;
    margin-bottom: 18px;

    font-size: 11px;
    letter-spacing: 4px;
    color: #444;
}

.contact-heading h1 {
    margin: 0 0 22px;

    font-size: 42px;
    line-height: 1.15;
    font-weight: 600;
    color: #222;
}

.contact-heading p {
    max-width: 700px;
    margin: 0 auto;

    font-size: 14px;
    line-height: 1.8;
    color: #666;
}


/* =========================================
   CONTACT OPTIONS
========================================= */

.contact-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;

    margin-bottom: 70px;
}


/* =========================================
   CONTACT CARD
========================================= */

.contact-card {
    position: relative;

    padding: 42px;

    background: #f7f7f7;

    border-left: 4px solid #003cff;
}

.contact-number {
    display: block;

    margin-bottom: 25px;

    font-size: 11px;
    letter-spacing: 3px;
    color: #555;
}

.contact-label {
    display: block;

    margin-bottom: 15px;

    font-size: 10px;
    letter-spacing: 3px;
    color: #555;
}

.contact-card h2 {
    margin: 0 0 18px;

    font-size: 27px;
    line-height: 1.25;
    font-weight: 600;
    color: #222;
}

.contact-card p {
    max-width: 500px;

    margin: 0;

    font-size: 14px;
    line-height: 1.8;
    color: #666;
}


/* =========================================
   CONTACT ACTIONS
========================================= */

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 32px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 13px 18px;

    background: #111;
    color: #ffffff;

    text-decoration: none;

    font-size: 11px;
    letter-spacing: 0.7px;

    transition: all 0.25s ease;
}

.contact-button span {
    font-size: 16px;
    line-height: 1;
}

.contact-button:hover {
    background: #003cff;
    color: #ffffff;
}


/* =========================================
   OUTLINE BUTTON
========================================= */

.contact-button-outline {
    background: transparent;
    color: #222;

    border: 1px solid #222;
}

.contact-button-outline:hover {
    background: #111;
    color: #ffffff;
}


/* =========================================
   COMPANY CONTACT
========================================= */

.contact-company {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;

    padding: 45px;

    background: #f7f7f7;

    border-top: 2px solid #003cff;
}

.contact-company-info h2 {
    margin: 0 0 12px;

    font-size: 26px;
    line-height: 1.3;
    font-weight: 600;
    color: #222;
}

.contact-company-info p {
    margin: 0;

    font-size: 13px;
    color: #777;
}


/* =========================================
   COMPANY DETAILS
========================================= */

.contact-company-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.contact-detail span {
    display: block;

    margin-bottom: 10px;

    font-size: 9px;
    letter-spacing: 2px;
    color: #777;
}

.contact-detail strong {
    display: block;

    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
    color: #222;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .contact-options {
        grid-template-columns: 1fr;
    }

    .contact-company {
        grid-template-columns: 1fr;
        gap: 40px;
    }

}


@media (max-width: 600px) {

    .contact-page {
        padding: 70px 0;
    }

    .contact-heading {
        margin-bottom: 50px;
    }

    .contact-heading h1 {
        font-size: 32px;
    }

    .contact-card {
        padding: 30px;
    }

    .contact-company {
        padding: 30px;
    }

    .contact-company-details {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-button {
        width: 100%;
    }

}

.contact-detail-link {
    color: #222;
    text-decoration: none;
    transition: 0.25s ease;
}

.contact-detail-link:hover {
    color: #003cff;
}

/* =========================================
   COMPANY LOCATION
========================================= */

.contact-location {
    margin-top: 90px;
    padding-bottom: 80px;
}


/* =========================================
   LOCATION HEADING
========================================= */

.contact-location-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}


.contact-location-heading .contact-label {
    display: block;

    margin-bottom: 18px;

    font-size: 11px;

    letter-spacing: 4px;

    color: #555;

    font-weight: 500;
}


.contact-location-heading h2 {
    margin: 0 0 18px;

    font-size: 34px;

    line-height: 1.2;

    font-weight: 600;

    color: #222;
}


.contact-location-heading p {
    margin: 0;

    font-size: 14px;

    line-height: 1.8;

    color: #777;
}


/* =========================================
   GOOGLE MAP
========================================= */

.contact-map {
    width: 90%;
    max-width: 950px;
    height: 360px;

    margin: 0 auto;

    overflow: hidden;

    border: 1px solid #e5e5e5;

    background: #f5f5f5;
}

.contact-map iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: #040a5f;

    color: #ffffff;

    margin-top: 0;
}


/* =========================================
   FOOTER CONTAINER
========================================= */

.footer-container {
    width: 92%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0 25px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    column-gap: 80px;
    box-sizing: border-box;
}


/* =========================================
   FOOTER LOGO
========================================= */

.footer-logo {
    margin-bottom: 5px;
}

.footer-logo img {
    width: 200px;
    height: auto;
    display: block;
}

/* =========================================
   FOOTER COLUMN
========================================= */

.footer-column h3 {
    margin: 0 0 10px;

    font-size: 17px;

    font-weight: 600;

    color: #fafaff;
}


.footer-column h4 {
    margin: 0 0 20px;

    font-size: 11px;

    font-weight: 500;

    letter-spacing: 3px;

    color: #bbbbbb;
}


/* =========================================
   COMPANY DESCRIPTION
========================================= */

.footer-tagline {
    margin: 0 0 12px;

    font-size: 13px;

    color: #bbbbbb;
}


.footer-description {
    max-width: 360px;

    margin: 0;

    font-size: 13px;

    line-height: 1.6;

    color: #999999;
}

/* =========================================
   QUICK LINKS
========================================= */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 100px 100px;
    column-gap: 25px;
    row-gap: 11px;
}


.footer-links li {
    margin: 0;
}


.footer-links a {
    color: #bbbbbb;

    text-decoration: none;

    font-size: 13px;

    transition: color 0.2s ease;
}


.footer-links a:hover {
    color: #ffffff;
}


/* =========================================
   CONTACT
========================================= */

.footer-contact p {
    margin: 0 0 5px;
    font-size: 13px;
    line-height: 1.45;
    color: #aaaaaa;
}

.footer-contact {
    justify-self: end;
    width: 100%;
    max-width: 330px;
    position: relative;
    right: -100px;
}


.footer-contact a {
    color: #aaaaaa;

    text-decoration: none;

    transition: color 0.2s ease;
}


.footer-contact a:hover {
    color: #ffffff;
}


/* =========================================
   WHATSAPP BUTTON
========================================= */

.footer-whatsapp {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 8px;

    padding: 11px 16px;

    border: 1px solid #555555;

    color: #ffffff !important;

    font-size: 10px;

    letter-spacing: 1.5px;

    text-decoration: none;

    transition:
        background 0.2s ease,
        border-color 0.2s ease;
}


.footer-whatsapp span {
    font-size: 15px;

    line-height: 1;
}


.footer-whatsapp:hover {
    background: #003cff;

    border-color: #003cff;
}

/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    border-top: 1px solid #333333;

    width: 100%;
    margin: 0;
    padding: 0;

    box-sizing: border-box;
}


.footer-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 5px 40px 0px;
    display: grid;
    grid-template-columns: 1.6fr 0.8fr 1fr;
    gap: 30px;
}


.footer-bottom p {
    margin: 0;

    font-size: 12px;

    font-weight: 500;

    color: #999999;

    white-space: nowrap;
}


/* =========================================
   FOOTER LANGUAGES
========================================= */

.footer-languages span {
    font-size: 10px;

    font-weight: 500;

    letter-spacing: 1.5px;

    color: #888888;
}


.footer-languages span {
    font-size: 10px;

    letter-spacing: 1px;

    color: #777777;
}

/* =========================================
   FOOTER DESKTOP - 3 KOLOM SEJAJAR
========================================= */

@media (min-width: 801px) {

    .site-footer .footer-container {
        grid-template-columns: 1.6fr 0.8fr 1fr;
        column-gap: 60px;
        row-gap: 0;
    }

    .site-footer .footer-company {
        grid-column: auto;
    }

}


    .footer-company {
        justify-self: start;
        position: relative;
left: -100px;

        grid-column: 1 / -1;
    }



@media (max-width: 550px) {

    .footer-container {

        grid-template-columns: 1fr;

        gap: 35px;

        padding: 45px 25px;
    }


    .footer-company {
        justify-self: start;
        position: relative;
left: -100px;

        grid-column: auto;
    }


    .footer-links {

        grid-template-columns: 1fr 1fr;
    }


    .footer-bottom-container {

        padding: 18px 25px;

        flex-direction: column;

        align-items: flex-start;

        gap: 12px;
    }

}

/* =========================================
   COMPANY PROFILE
========================================= */

.company-profile {
    padding: 90px 0 100px;

    background: #ffffff;
}


/* =========================================
   PAGE HEADING
========================================= */

.company-profile-heading {
    max-width: 850px;

    margin: 0 auto 75px;

    text-align: center;
}


.company-profile-heading .section-label {
    display: block;

    margin-bottom: 18px;

    font-size: 11px;

    letter-spacing: 4px;

    color: #444;
}


.company-profile-heading h1 {
    margin: 0 0 18px;

    font-size: 42px;

    line-height: 1.15;

    font-weight: 600;

    color: #222;
}


.company-profile-heading p {
    margin: 0;

    font-size: 15px;

    color: #777;

    line-height: 1.7;
}


/* =========================================
   COMPANY INTRO
========================================= */

.company-profile-intro {
    display: grid;

    grid-template-columns: 1.2fr 0.8fr;

    gap: 70px;

    align-items: center;

    margin-bottom: 100px;
}


.company-profile-text {
    max-width: 650px;
}


.company-profile-label {
    display: block;

    margin-bottom: 18px;

    font-size: 11px;

    letter-spacing: 4px;

    color: #444;
}


.company-profile-text h2 {
    margin: 0 0 25px;

    font-size: 34px;

    line-height: 1.2;

    font-weight: 600;

    color: #222;
}


.company-profile-text p {
    margin: 0 0 20px;

    font-size: 14px;

    line-height: 1.9;

    color: #666;
}


/* =========================================
   COMPANY CARD
========================================= */

.company-profile-card {
    padding: 45px;

    background: #f7f7f7;

    border-left: 4px solid #003cff;
}


.company-profile-card > span {
    display: block;

    margin-bottom: 20px;

    font-size: 13px;

    letter-spacing: 4px;

    color: #003cff;

    font-weight: 500;
}


.company-profile-card h3 {
    margin: 0 0 20px;

    font-size: 26px;

    line-height: 1.3;

    font-weight: 600;

    color: #222;
}


.company-profile-card p {
    margin: 0;

    font-size: 13px;

    line-height: 1.8;

    color: #666;
}


/* =========================================
   OUR BUSINESS
========================================= */

.company-business {
    padding-top: 20px;

    border-top: 1px solid #eeeeee;
}


.company-business-heading {
    max-width: 700px;

    margin-bottom: 50px;
}


.company-business-heading .section-label {
    display: block;

    margin-bottom: 18px;

    font-size: 11px;

    letter-spacing: 4px;

    color: #444;
}


.company-business-heading h2 {
    margin: 0;

    font-size: 32px;

    line-height: 1.25;

    font-weight: 600;

    color: #222;
}


/* =========================================
   BUSINESS GRID
========================================= */

.company-business-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.company-business-item {
    padding: 35px 30px;

    border: 1px solid #e5e5e5;

    background: #ffffff;

    border-top: 2px solid #003cff;
}


.company-business-number {
    display: block;

    margin-bottom: 22px;

    font-size: 10px;

    letter-spacing: 3px;

    color: #777;
}


.company-business-item h3 {
    margin: 0 0 15px;

    font-size: 21px;

    font-weight: 600;

    color: #222;
}


.company-business-item p {
    margin: 0;

    font-size: 13px;

    line-height: 1.8;

    color: #666;
}


/* =========================================
   COMPANY STANDARDS
========================================= */

.company-standards {
    margin-top: 90px;

    padding: 50px;

    background: #f7f7f7;

    border-left: 4px solid #003cff;
}


.company-standards-text {
    max-width: 850px;
}


.company-standards-text .section-label {
    display: block;

    margin-bottom: 18px;

    font-size: 11px;

    letter-spacing: 4px;

    color: #444;
}


.company-standards-text h2 {
    margin: 0 0 20px;

    font-size: 30px;

    line-height: 1.3;

    font-weight: 600;

    color: #222;
}


.company-standards-text p {
    margin: 0;

    font-size: 14px;

    line-height: 1.9;

    color: #666;
}


/* =========================================
   COMPANY RESPONSIVE
========================================= */

@media (max-width: 800px) {

    .company-profile {
        padding: 70px 0 80px;
    }


    .company-profile-heading h1 {
        font-size: 34px;
    }


    .company-profile-intro {
        grid-template-columns: 1fr;

        gap: 40px;
    }


    .company-business-grid {
        grid-template-columns: 1fr;
    }


    .company-standards {
        padding: 35px;
    }

}


@media (max-width: 550px) {

    .company-profile-heading {
        margin-bottom: 55px;
    }


    .company-profile-heading h1 {
        font-size: 30px;
    }


    .company-profile-text h2 {
        font-size: 28px;
    }


    .company-profile-card {
        padding: 30px;
    }


    .company-standards {
        padding: 30px 25px;
    }

}

/* =========================================
   COMPANY DROPDOWN
========================================= */

.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .nav-dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform:
        translateX(-50%)
        translateY(0);
}

.nav-dropdown-menu a {

    display: block;

    padding: 10px 18px;

    color: #333;

    text-decoration: none;

    font-size: 13px;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}


.nav-dropdown-menu a:hover {

    background: #f7f7f7;

    color: #003cff;
}

/* =========================================
   CAREER PAGE
========================================= */

.career-page {
    padding: 90px 0 100px;
    background: #ffffff;
}


/* =========================================
   CAREER HEADING
========================================= */

.career-heading {
    max-width: 850px;
    margin: 0 auto 80px;
    text-align: center;
}

.career-heading .section-label {
    display: block;
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 4px;
    color: #444;
}

.career-heading h1 {
    margin: 0 0 20px;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 600;
    color: #222;
}

.career-heading p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: #777;
}


/* =========================================
   CAREER INTRO
========================================= */

.career-intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 100px;
}

.career-intro-text {
    max-width: 650px;
}

.career-label {
    display: block;
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 4px;
    color: #444;
}

.career-intro-text h2 {
    margin: 0 0 25px;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 600;
    color: #222;
}

.career-intro-text p {
    margin: 0 0 20px;
    font-size: 14px;
    line-height: 1.9;
    color: #666;
}


/* =========================================
   CAREER HIGHLIGHT
========================================= */

.career-highlight {
    padding: 45px;
    background: #f7f7f7;
    border-left: 4px solid #003cff;
}

.career-highlight > span {
    display: block;
    margin-bottom: 20px;
    font-size: 11px;
    letter-spacing: 3px;
    color: #003cff;
}

.career-highlight h3 {
    margin: 0 0 20px;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 600;
    color: #222;
}

.career-highlight p {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    color: #666;
}


/* =========================================
   SECTION HEADING
========================================= */

.career-section-heading {
    max-width: 750px;
    margin-bottom: 50px;
}

.career-section-heading .section-label {
    display: block;
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 4px;
    color: #444;
}

.career-section-heading h2 {
    margin: 0 0 18px;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 600;
    color: #222;
}

.career-section-heading p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #777;
}


/* =========================================
   WHY WORK WITH US
========================================= */

.career-benefits {
    padding-top: 20px;
    margin-bottom: 100px;
    border-top: 1px solid #eeeeee;
}

.career-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.career-benefit-item {
    padding: 35px 30px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-top: 2px solid #003cff;
}

.career-number {
    display: block;
    margin-bottom: 22px;
    font-size: 10px;
    letter-spacing: 3px;
    color: #777;
}

.career-benefit-item h3 {
    margin: 0 0 15px;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 600;
    color: #222;
}

.career-benefit-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    color: #666;
}


/* =========================================
   CAREER OPPORTUNITIES
========================================= */

.career-opportunities {
    margin-bottom: 90px;
}

.career-job-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.career-job-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 35px 40px;
    background: #f7f7f7;
    border-left: 4px solid #003cff;
}

.career-job-info {
    max-width: 750px;
}

.career-job-info > span {
    display: block;
    margin-bottom: 12px;
    font-size: 10px;
    letter-spacing: 3px;
    color: #777;
}

.career-job-info h3 {
    margin: 0 0 12px;
    font-size: 23px;
    line-height: 1.3;
    font-weight: 600;
    color: #222;
}

.career-job-info p {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    color: #666;
}


/* =========================================
   APPLY BUTTON
========================================= */

.career-apply-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-width: 145px;
    padding: 15px 20px;
    background: #111111;
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.career-apply-button span {
    font-size: 17px;
    line-height: 1;
}

.career-apply-button:hover {
    background: #003cff;
}


/* =========================================
   APPLICATION
========================================= */

.career-application {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 50px;
    background: #f7f7f7;
    border-left: 4px solid #003cff;
}

.career-application-content {
    max-width: 750px;
}

.career-application-content .section-label {
    display: block;
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 4px;
    color: #444;
}

.career-application-content h2 {
    margin: 0 0 18px;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 600;
    color: #222;
}

.career-application-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.8;
    color: #666;
}

.career-application-action {
    flex-shrink: 0;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .career-intro {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .career-benefits-grid {
        grid-template-columns: 1fr;
    }

    .career-job-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .career-application {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 600px) {

    .career-page {
        padding: 70px 0 80px;
    }

    .career-heading {
        margin-bottom: 60px;
    }

    .career-heading h1 {
        font-size: 32px;
    }

    .career-intro-text h2 {
        font-size: 28px;
    }

    .career-highlight {
        padding: 30px;
    }

    .career-benefit-item {
        padding: 30px 25px;
    }

    .career-job-item {
        padding: 30px 25px;
    }

    .career-application {
        padding: 35px 25px;
    }

}

/* =========================================
   FOOTER SOCIAL MEDIA
========================================= */

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
}

.footer-social a {
    width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #555;

    color: #cccccc;
    text-decoration: none;

    font-size: 10px;

    transition: 0.3s ease;
}

.footer-social a:hover {
    color: #ffffff;
    border-color: #ffffff;
}

/* =========================================
   FOOTER SOCIAL ICON
========================================= */

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social .social-icon {

    width: 30px;
    height: 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #555555;
    color: #bbbbbb;

    text-decoration: none;
    transition: all 0.25s ease;

}

.footer-social .social-icon svg {

    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;

}

.footer-social .social-icon:hover {

    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);

}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.footer-social .social-icon {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #f5ebeb00;

    transition: 0.25s ease;
}

.footer-social .social-icon img {
    width: 28px;
    height: 28px;

    object-fit: contain;
}

.footer-social .social-icon:hover {
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* =========================================
   COMMITMENT PAGE
========================================= */

.commitment-container {
    max-width: 1080px;

    margin: 0 auto;

    padding-left: 40px;
    padding-right: 40px;
}


/* =========================================
   COMMITMENT HERO
========================================= */

.commitment-hero {
    padding: 85px 0 70px;

    text-align: center;

    background: #ffffff;
}


.commitment-hero .commitment-container {
    max-width: 900px;
}


.commitment-label {
    display: block;

    margin-bottom: 18px;

    font-size: 11px;

    font-weight: 500;

    letter-spacing: 4px;

    color: #555555;
}


.commitment-hero h1 {
    margin: 0 0 22px;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 600;

    color: #292929;
}


.commitment-hero p {
    max-width: 760px;

    margin: 0 auto;

    font-size: 15px;

    line-height: 1.8;

    color: #777777;
}


/* =========================================
   CORE COMMITMENT
========================================= */

.commitment-core {
    padding: 20px 0 90px;

    background: #ffffff;
}


.commitment-intro {
    max-width: 720px;

    margin-bottom: 55px;
}


.commitment-intro h2 {
    margin: 0 0 18px;

    font-size: 30px;

    line-height: 1.3;

    font-weight: 600;

    color: #292929;
}


.commitment-intro p {
    margin: 0;

    font-size: 14px;

    line-height: 1.8;

    color: #777777;
}


/* =========================================
   COMMITMENT GRID
========================================= */

.commitment-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 24px;
}


/* =========================================
   COMMITMENT SECTIONS
========================================= */

.commitment-sections {
    width: 100%;

    border-top: 1px solid #e5e5e5;
}


/* =========================================
   COMMITMENT SECTION
========================================= */

.commitment-section {
    display: grid;

    grid-template-columns: 130px 1fr;

    column-gap: 45px;

    padding: 42px 0;

    border-bottom: 1px solid #e5e5e5;
}


/* =========================================
   LARGE NUMBER
========================================= */

.commitment-section-number {
    font-size: 42px;

    line-height: 1;

    font-weight: 400;

    letter-spacing: 2px;

    color: #b5b5b5;
}


/* =========================================
   CONTENT
========================================= */

.commitment-section-content {
    max-width: 850px;
}


.commitment-section-content h3 {
    margin: 0 0 18px;

    font-size: 20px;

    line-height: 1.4;

    font-weight: 600;

    color: #292929;
}


.commitment-section-content p {
    margin: 0;

    font-size: 14px;

    line-height: 1.85;

    color: #666666;
}


/* =========================================
   FSC SYMBOL
========================================= */

.commitment-section-content sup {
    font-size: 0.55em;

    position: relative;

    top: -0.25em;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 700px) {

    .commitment-section {
        grid-template-columns: 70px 1fr;

        column-gap: 20px;

        padding: 30px 0;
    }


    .commitment-section-number {
        font-size: 30px;
    }


    .commitment-section-content h3 {
        font-size: 18px;
    }


    .commitment-section-content p {
        font-size: 13px;

        line-height: 1.75;
    }

}


@media (max-width: 500px) {

    .commitment-section {
        grid-template-columns: 1fr;

        row-gap: 15px;
    }


    .commitment-section-number {
        font-size: 26px;
    }

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .commitment-card:nth-child(4),
    .commitment-card:nth-child(5) {
        grid-column: auto;
    }

}


@media (max-width: 600px) {

    .commitment-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .commitment-hero {
        padding: 60px 0 50px;
    }

    .commitment-hero h1 {
        font-size: 32px;
    }

    .commitment-hero p {
        font-size: 14px;
    }

    .commitment-core {
        padding-bottom: 60px;
    }

    .commitment-intro {
        margin-bottom: 35px;
    }

    .commitment-intro h2 {
        font-size: 25px;
    }

    .commitment-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================
   COMMITMENT PAGE LAYOUT
========================================= */

/* =========================================
   PAGE LAYOUT
========================================= */

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.site-footer {
    width: 100%;
    max-width: none;
}

/* =========================================
   OUR PARTNER
========================================= */

.commitment-partner {
    margin-top: 55px;

    padding: 35px 40px;

    border: 1px solid #12058a;

    background: #fefeff;
}


.commitment-partner .commitment-label {
    margin-bottom: 12px;

    font-size: 10px;

    letter-spacing: 3px;

    color: #777777;
}


.commitment-partner h3 {
    margin: 0 0 10px;

    font-size: 20px;

    font-weight: 600;

    color: #1b8007;
}


.commitment-partner p {
    margin: 0 0 22px;

    font-size: 13px;

    line-height: 1.7;

    color: #777777;
}


.partner-link {
    display: inline-flex;

    align-items: center;

    gap: 20px;

    padding: 11px 18px;

    border: 1px solid #f5f4f8;

    font-size: 10px;

    letter-spacing: 2px;

    color: #292929;

    text-decoration: none;

    transition: 0.3s ease;
}


.partner-link span {
    font-size: 16px;

    line-height: 1;
}


.partner-link:hover {
    border-color: #2a08eb;

    color: #292929;
}

/* =========================================
   COMPANY POLICY
========================================= */

.policy-container {
    max-width: 1000px;

    margin: 0 auto;

    padding-left: 30px;
    padding-right: 30px;
}


/* =========================================
   POLICY HERO
========================================= */

.policy-hero {
    padding: 70px 0 55px;
}


.policy-label {
    display: block;

    margin-bottom: 18px;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 4px;

    color: #777777;
}


.policy-hero h1 {
    margin: 0 0 18px;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 600;

    color: #292929;
}


.policy-hero p {
    max-width: 780px;

    margin: 0;

    font-size: 14px;

    line-height: 1.9;

    color: #777777;
}


/* =========================================
   POLICY CORE
========================================= */

.policy-core {
    padding: 20px 0 70px;
}


.policy-intro {
    margin-bottom: 55px;

    max-width: 800px;
}


.policy-intro h2 {
    margin: 0 0 18px;

    font-size: 28px;

    line-height: 1.4;

    font-weight: 600;

    color: #292929;
}


.policy-intro p {
    margin: 0;

    font-size: 14px;

    line-height: 1.9;

    color: #777777;
}


/* =========================================
   POLICY SECTIONS
========================================= */

.policy-sections {
    display: flex;

    flex-direction: column;
}


.policy-section {
    display: grid;

    grid-template-columns: 140px 1fr;

    column-gap: 30px;

    padding: 40px 0;

    border-top: 1px solid #e5e5e5;
}


.policy-section:last-child {
    border-bottom: 1px solid #e5e5e5;
}


/* =========================================
   POLICY NUMBER
========================================= */

.policy-section-number {
    font-size: 40px;

    line-height: 1;

    font-weight: 300;

    color: #b8b8b8;
}


/* =========================================
   POLICY CONTENT
========================================= */

.policy-section-content h3 {
    margin: 0 0 16px;

    font-size: 19px;

    line-height: 1.4;

    font-weight: 600;

    color: #292929;
}


.policy-section-content p {
    margin: 0;

    font-size: 13px;

    line-height: 1.9;

    color: #777777;
}

/* =========================================
   NEWS DETAIL
========================================= */

.news-detail-container {
    max-width: 1080px;

    margin: 0 auto;

    padding-left: 40px;
    padding-right: 40px;
}


/* =========================================
   NEWS HERO
========================================= */

.news-detail-hero {
    padding: 70px 0 50px;

    background: #ffffff;
}


.news-detail-label {
    display: block;

    margin-bottom: 18px;

    font-size: 10px;

    letter-spacing: 4px;

    color: #777777;
}


.news-detail-hero h1 {
    max-width: 850px;

    margin: 0 0 20px;

    font-size: 40px;

    line-height: 1.25;

    font-weight: 600;

    color: #292929;
}


.news-detail-meta {
    display: flex;

    gap: 8px;

    font-size: 12px;

    color: #999999;
}


/* =========================================
   NEWS CONTENT
========================================= */

.news-detail-content {
    padding: 20px 0 80px;

    background: #ffffff;
}


/* =========================================
   SLIDESHOW
========================================= */

.news-slideshow {
    position: relative;

    width: 100%;

    max-width: 1000px;

    margin: 0 auto 60px;

    overflow: hidden;

    background: #f4f4f4;
}


.news-slide {
    display: none;

    width: 100%;
}


.news-slide.active {
    display: block;
}


.news-slide img {
    display: block;

    width: 100%;

    height: 560px;

    object-fit: cover;
}


/* =========================================
   SLIDE BUTTON
========================================= */

.news-slide-prev,
.news-slide-next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 42px;

    height: 42px;

    border: 1px solid rgba(255,255,255,0.6);

    background: rgba(0,0,0,0.35);

    color: #ffffff;

    cursor: pointer;

    font-size: 18px;

    transition: 0.25s ease;
}


.news-slide-prev {
    left: 20px;
}


.news-slide-next {
    right: 20px;
}


.news-slide-prev:hover,
.news-slide-next:hover {
    background: rgba(0,0,0,0.65);
}


/* =========================================
   SLIDE DOTS
========================================= */

.news-slide img {
    display: block;

    width: 100%;

    height: auto;

    max-height: 400px;

    object-fit: contain;
}


.news-dot {
    width: 8px;

    height: 8px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,0.55);

    cursor: pointer;
}


.news-dot.active {
    background: #ffffff;
}


/* =========================================
   NEWS ARTICLE
========================================= */

.news-article {
    max-width: 820px;

    margin: 0 auto;
}


.news-article-category {
    display: block;

    margin-bottom: 15px;

    font-size: 10px;

    letter-spacing: 3px;

    color: #777777;
}


.news-article h2 {
    margin: 0 0 25px;

    font-size: 28px;

    line-height: 1.4;

    color: #292929;
}


.news-article p {
    margin: 0 0 20px;

    font-size: 14px;

    line-height: 1.9;

    color: #666666;
}

/* =========================================
   NEWS PAGE
========================================= */

.news-page-container {
    max-width: 1080px;

    margin: 0 auto;

    padding-left: 40px;
    padding-right: 40px;
}


/* =========================================
   NEWS HERO
========================================= */

.news-page-hero {
    padding: 70px 0 55px;

    background: #ffffff;
}


.news-page-label {
    display: block;

    margin-bottom: 18px;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 4px;

    color: #777777;
}


.news-page-hero h1 {
    margin: 0 0 18px;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 600;

    color: #292929;
}


.news-page-hero p {
    max-width: 760px;

    margin: 0;

    font-size: 14px;

    line-height: 1.9;

    color: #777777;
}


/* =========================================
   NEWS CONTENT
========================================= */

.news-page-content {
    padding: 15px 0 80px;

    background: #ffffff;
}


/* =========================================
   CATEGORY
========================================= */

.news-category {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 45px;

    border-bottom: 1px solid #e5e5e5;

    padding-bottom: 20px;
}


.news-category-button {
    padding: 10px 15px;

    border: 1px solid #dddddd;

    background: #ffffff;

    color: #777777;

    font-size: 10px;

    letter-spacing: 1.5px;

    cursor: pointer;

    transition: 0.3s ease;
}


.news-category-button:hover,
.news-category-button.active {
    background: #292929;

    color: #ffffff;

    border-color: #292929;
}


/* =========================================
   NEWS LIST
========================================= */

.news-list {
    display: flex;

    flex-direction: column;

    gap: 35px;
}


/* =========================================
   NEWS CARD
========================================= */

.news-card {
    display: grid;

    grid-template-columns: 42% 58%;

    border: 1px solid #e5e5e5;

    background: #ffffff;
}


.news-card-image {
    min-height: 320px;

    overflow: hidden;

    background: #f3f3f3;
}


.news-card-image img {
    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;
}


/* =========================================
   PLACEHOLDER
========================================= */

.news-image-placeholder {
    display: flex;

    align-items: center;

    justify-content: center;

    height: 100%;

    padding: 30px;

    text-align: center;

    font-size: 11px;

    letter-spacing: 2px;

    color: #999999;
}


/* =========================================
   NEWS CARD CONTENT
========================================= */

.news-card-content {
    padding: 40px 45px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.news-card-category {
    display: block;

    margin-bottom: 15px;

    font-size: 10px;

    letter-spacing: 3px;

    color: #777777;
}


.news-card-content h2 {
    margin: 0 0 18px;

    font-size: 27px;

    line-height: 1.35;

    font-weight: 600;

    color: #292929;
}


.news-card-content p {
    margin: 0 0 25px;

    font-size: 13px;

    line-height: 1.8;

    color: #777777;
}


/* =========================================
   READ MORE
========================================= */

.news-read-more {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    width: fit-content;

    font-size: 10px;

    letter-spacing: 2px;

    color: #292929;

    text-decoration: none;
}


.news-read-more span {
    font-size: 17px;

    line-height: 1;
}


.news-read-more:hover {
    opacity: 0.6;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .news-page-container {
        padding-left: 20px;
        padding-right: 20px;
    }


    .news-page-hero {
        padding: 55px 0 45px;
    }


    .news-page-hero h1 {
        font-size: 32px;
    }


    .news-category {
        gap: 8px;
    }


    .news-card {
        grid-template-columns: 1fr;
    }


    .news-card-image {
        min-height: auto;
    }


    .news-card-image img {
        height: auto;
    }


    .news-card-content {
        padding: 30px;
    }


    .news-card-content h2 {
        font-size: 23px;
    }

}

.hrd-activity {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 45px;
    padding: 60px 0;
    border-top: 1px solid #e5e5e5;
}

/* HRD ACTIVITY - MOBILE */

@media (max-width: 900px) {

    .hrd-activity {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}

.hrd-activity-number {
    font-size: 42px;
    font-weight: 300;
    color: #b5b5b5;
    line-height: 1;
}

.hrd-activity-content h2 {
    margin: 10px 0 25px;
}

/* =========================================
   COMPANY DOCUMENTATION
========================================= */

.documentation-intro {
    margin-bottom: 20px;
}


/* =========================================
   DOCUMENTATION ACTIVITY
========================================= */

.documentation-activity {

    display: grid;

    grid-template-columns: 100px 1fr;

    gap: 45px;

    padding: 60px 0;

    border-top: 1px solid #e5e5e5;

}

/* DOCUMENTATION ACTIVITY - MOBILE */

@media (max-width: 900px) {

    .documentation-activity {
        grid-template-columns: 1fr;
        gap: 30px;
    }

}


.documentation-activity:last-child {

    border-bottom: 1px solid #e5e5e5;

}


/* =========================================
   DOCUMENTATION NUMBER
========================================= */

.documentation-number {

    font-size: 42px;

    font-weight: 300;

    line-height: 1;

    color: #b5b5b5;

}


/* =========================================
   DOCUMENTATION CONTENT
========================================= */

.documentation-content {

    min-width: 0;

}


.documentation-content h2 {

    margin: 10px 0 10px;

    font-size: 24px;

    line-height: 1.4;

    font-weight: 600;

    color: #292929;

}


.documentation-content p {

    margin: 0 0 18px;

    max-width: 900px;

    font-size: 13px;

    line-height: 1.8;

    color: #777777;

}


/* =========================================
   DOCUMENTATION SUBTITLE
========================================= */

.documentation-subtitle {

    margin-bottom: 22px !important;

    font-size: 13px !important;

    font-weight: 500;

    color: #555555 !important;

}


/* =========================================
   DOCUMENTATION SLIDESHOW
========================================= */

.documentation-slideshow {

    position: relative;

    width: 100%;

    margin-top: 35px;

    overflow: hidden;

    background: #f5f5f5;

}


/* =========================================
   DOCUMENTATION SLIDE
========================================= */

.documentation-slide {

    display: none;

    width: 100%;

}


.documentation-slide.active {

    display: block;

}


.documentation-slide img {

    display: block;

    width: 100%;

    height: auto;

    max-height: 600px;

    object-fit: contain;

    margin: 0 auto;

}


/* =========================================
   DOCUMENTATION NAVIGATION
========================================= */

.documentation-prev,
.documentation-next {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 42px;

    height: 42px;

    border: none;

    background: rgba(0, 0, 0, 0.35);

    color: #ffffff;

    font-size: 18px;

    cursor: pointer;

    transition: 0.3s ease;

}


.documentation-prev {

    left: 15px;

}


.documentation-next {

    right: 15px;

}


.documentation-prev:hover,
.documentation-next:hover {

    background: rgba(0, 0, 0, 0.65);

}


/* =========================================
   DOCUMENTATION DOTS
========================================= */

.documentation-dots {

    position: absolute;

    left: 50%;

    bottom: 15px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 7px;

}


.documentation-dot {

    width: 8px;

    height: 8px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.65);

    cursor: pointer;

    transition: 0.3s ease;

}


.documentation-dot.active {

    background: #ffffff;

    transform: scale(1.25);

}


/* =========================================
   DOCUMENTATION PAGE SPACING
========================================= */

.news-detail-content {

    padding-bottom: 30px;

}

/* =========================================
   VISION & MISSION PAGE
========================================= */

.vision-mission-hero {
    padding: 70px 0 55px;
}


.vision-mission-container {
    max-width: 1000px;

    margin: 0 auto;

    padding: 0 30px;
}


.vision-mission-label {
    display: block;

    margin-bottom: 18px;

    font-size: 10px;

    font-weight: 500;

    letter-spacing: 4px;

    color: #777777;
}


.vision-mission-hero h1 {
    margin: 0 0 20px;

    font-size: 42px;

    line-height: 1.2;

    font-weight: 600;

    color: #292929;
}


.vision-mission-hero p {
    max-width: 720px;

    margin: 0;

    font-size: 13px;

    line-height: 1.9;

    color: #777777;
}


/* =========================================
   VISION & MISSION CONTENT
========================================= */

.vision-mission-content {
    padding: 10px 0 70px;
}


.vision-mission-section {
    display: grid;

    grid-template-columns: 120px 1fr;

    column-gap: 55px;

    padding: 45px 0;

    border-top: 1px solid #e5e5e5;
}


.vision-mission-section:last-child {
    border-bottom: 1px solid #e5e5e5;
}


/* =========================================
   NUMBER
========================================= */

.vision-mission-number {
    font-size: 30px;

    line-height: 1;

    font-weight: 300;

    color: #b8b8b8;

    letter-spacing: 1px;
}


/* =========================================
   SECTION CONTENT
========================================= */

.vision-mission-section-content {
    max-width: 760px;
}


.vision-mission-section-label {
    display: block;

    margin-bottom: 12px;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 4px;

    color: #777777;
}


.vision-mission-section-content h2 {
    margin: 0 0 18px;

    font-size: 24px;

    line-height: 1.35;

    font-weight: 600;

    color: #292929;
}


.vision-mission-section-content p {
    margin: 0 0 15px;

    font-size: 13px;

    line-height: 1.85;

    color: #777777;
}


.vision-mission-section-content p:last-child {
    margin-bottom: 0;
}


/* =========================================
   PRINCIPLE VALUES
========================================= */

.principle-list {
    margin-top: 25px;
}


.principle-item {
    display: grid;

    grid-template-columns: 80px 1fr;

    column-gap: 35px;

    padding: 25px 0;

    border-top: 1px solid #eeeeee;
}


.principle-item:last-child {
    border-bottom: 1px solid #eeeeee;
}


/* =========================================
   PRINCIPLE LETTER
========================================= */

.principle-letter {
    font-size: 42px;

    line-height: 1;

    font-weight: 300;

    color: #b8b8b8;

    letter-spacing: 2px;
}


/* =========================================
   PRINCIPLE CONTENT
========================================= */

.principle-content {
    padding-top: 3px;
}


.principle-content p {
    margin: 0;

    font-size: 13px;

    line-height: 1.85;

    color: #777777;
}


.principle-content strong {
    font-weight: 600;

    color: #292929;
}

/* =========================================
   HOME - VISION & MISSION
========================================= */

.home-vision-mission {
    padding: 100px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    background: #ffffff;
}


.home-vm-heading {
    max-width: 760px;
    margin-bottom: 60px;
}


.home-vm-heading h2 {
    margin: 14px 0 18px;

    font-size: 32px;
    line-height: 1.3;
    font-weight: 600;

    color: #292929;
}


.home-vm-heading p {
    margin: 0;

    max-width: 700px;

    font-size: 14px;
    line-height: 1.9;

    color: #777777;
}



/* =========================================
   VISION / MISSION / PRINCIPLE
========================================= */

.home-vm-content {
    border-top: 1px solid #e5e5e5;
}


.home-vm-item {
    display: grid;

    grid-template-columns: 80px 1fr;

    gap: 30px;

    padding: 32px 0;

    border-bottom: 1px solid #e5e5e5;
}


.home-vm-number {
    font-size: 13px;

    letter-spacing: 2px;

    color: #aaaaaa;
}


.home-vm-label {
    display: block;

    margin-bottom: 8px;

    font-size: 10px;

    letter-spacing: 3px;

    color: #777777;
}


.home-vm-item h3 {
    margin: 0 0 12px;

    font-size: 20px;

    line-height: 1.4;

    font-weight: 600;

    color: #292929;
}


.home-vm-item p {
    margin: 0;

    max-width: 850px;

    font-size: 13px;

    line-height: 1.8;

    color: #777777;
}



/* =========================================
   EXPLORE BUTTON
========================================= */

.home-vm-action {
    margin-top: 40px;
}


.home-vm-button {
    display: inline-flex;

    align-items: center;

    gap: 18px;

    padding: 14px 22px;

    border: 1px solid #292929;

    font-size: 10px;

    letter-spacing: 2px;

    text-decoration: none;

    color: #292929;

    transition: all 0.3s ease;
}


.home-vm-button span {
    font-size: 15px;

    transition: transform 0.3s ease;
}


.home-vm-button:hover {
    background: #292929;

    color: #ffffff;
}


.home-vm-button:hover span {
    transform: translateX(5px);
}

/* =========================================
   HERO VIDEO
========================================= */

.hero-slide video.hero-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* =========================================
   HERO VIDEO OVERLAY
========================================= */

.hero-slide video.hero-video + .hero-overlay {
    z-index: 1;
}


.hero-slide .hero-content {
    z-index: 2;
}


/* =========================================
   HERO SLIDE POSITION
========================================= */

.hero-slide {
    overflow: hidden;
}


/* =========================================
   HERO VIDEO MOBILE
========================================= */

@media (max-width: 768px) {

    .hero-slide video.hero-video {
        object-position: center center;
    }

}

/* =========================================
   COMPANY GALLERY
========================================= */

.gallery-page-hero {
    padding: 80px 0 55px;
}

.gallery-page-container {
    width: 86%;
    max-width: 1080px;
    margin: 0 auto;
}

.gallery-page-label,
.gallery-caption-label {
    display: block;

    margin-bottom: 14px;

    font-size: 10px;

    letter-spacing: 4px;

    color: #777;
}

.gallery-page-hero h1 {
    margin: 0 0 18px;

    font-size: 38px;

    line-height: 1.25;

    font-weight: 600;

    color: #292929;
}

.gallery-page-hero p {
    max-width: 720px;

    margin: 0;

    font-size: 13px;

    line-height: 1.9;

    color: #777;
}


/* =========================================
   GALLERY CONTAINER
========================================= */

.company-gallery {
    padding: 30px 0 100px;
}

.gallery-container {
    width: 86%;
    max-width: 1080px;
    margin: 0 auto;
}


/* =========================================
   SLIDESHOW
========================================= */

.gallery-slideshow {
    position: relative;

    width: 100%;

    height: 600px;

    overflow: hidden;

    background: #f3f3f3;
}


.gallery-slide {
    position: absolute;

    inset: 0;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.6s ease,
        visibility 0.6s ease;
}


.gallery-slide.active {
    opacity: 1;

    visibility: visible;

    z-index: 1;
}


.gallery-slide img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;
}


/* =========================================
   NAVIGATION
========================================= */

.gallery-prev,
.gallery-next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 5;

    width: 42px;

    height: 42px;

    border: 0;

    background: rgba(0, 0, 0, 0.35);

    color: #ffffff;

    font-size: 18px;

    cursor: pointer;

    transition: background 0.3s ease;
}


.gallery-prev {
    left: 20px;
}


.gallery-next {
    right: 20px;
}


.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(0, 0, 0, 0.65);
}


/* =========================================
   DOTS
========================================= */

.gallery-dots {
    position: absolute;

    left: 50%;

    bottom: 20px;

    transform: translateX(-50%);

    z-index: 5;

    display: flex;

    gap: 8px;
}


.gallery-dot {
    width: 7px;

    height: 7px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.55);

    cursor: pointer;
}


.gallery-dot.active {
    background: #ffffff;
}

/* =========================================
   COMPANY GALLERY - PHOTO IDENTITY
========================================= */

.gallery-slideshow {
    position: relative;
}

.gallery-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.gallery-slide img {
    position: relative;
    z-index: 1;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.gallery-photo-caption {
    position: absolute !important;

    left: 30px;
    bottom: 30px;

    z-index: 20 !important;

    display: flex !important;
    flex-direction: column;

    width: auto;
    max-width: 420px;

    padding: 12px 18px;

    background: rgba(0, 0, 0, 0.60);

    box-sizing: border-box;
}

.gallery-photo-caption span {
    display: block !important;

    margin: 0 0 5px 0;

    font-size: 9px;

    line-height: 1.4;

    letter-spacing: 3px;

    color: rgba(255, 255, 255, 0.80);
}

.gallery-photo-caption strong {
    display: block !important;

    margin: 0;

    font-size: 16px;

    line-height: 1.4;

    font-weight: 500;

    color: #ffffff;
}

/* =========================================
   FOOTER FULL WIDTH
========================================= */

.site-footer {
    position: relative;

    width: 100vw;
    max-width: none;

    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);

    box-sizing: border-box;

    flex-shrink: 0;
}


/* =========================================
   FOOTER CONTENT
========================================= */

.site-footer .footer-container {
    width: 86%;
    max-width: 1080px;

    margin-left: auto;
    margin-right: auto;

    box-sizing: border-box;
}


.site-footer .footer-bottom {
    width: 100%;
    box-sizing: border-box;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.site-footer .footer-bottom-container {
    width: 86%;
    max-width: 1080px;
    margin: 0 auto;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 0;
}


/* =========================================
   PAGE HEIGHT
========================================= */

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;

    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

/* =========================================
   FINAL FOOTER POSITION FIX
========================================= */

html {
    width: 100%;
    min-height: 100%;
    margin: 0 !important;
    padding: 0 !important;
}

body {
    width: 100%;
    min-height: 100vh;

    margin: 0 !important;
    padding: 0 !important;

    display: flex;
    flex-direction: column;
}


/* CONTENT */
main {
    flex: 1 0 auto;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}


/* FOOTER */
.site-footer {
    width: 100vw !important;
    max-width: none !important;

    margin-top: auto !important;
    margin-bottom: 0 !important;

    padding-bottom: 0;

    flex-shrink: 0;

    box-sizing: border-box;
}


/* FOOTER CONTAINER */
.site-footer .footer-container {
    margin-bottom: 0 !important;
}


/* FOOTER BOTTOM */
.site-footer .footer-bottom {
    margin-bottom: 0 !important;
}


/* REMOVE EXTRA SPACE AFTER FOOTER */
.site-footer:last-child {
    margin-bottom: 0 !important;
}


/* PREVENT HORIZONTAL OVERFLOW */
body {
    overflow-x: hidden;
}

/* =========================================
   FSC CERTIFICATE - IMAGE
========================================= */

.fsc-certificate-logo {
    width: 50%;
    max-width: 760px;
    margin: 25px auto 35px auto;
}

.fsc-certificate-logo img {
    display: block;
    width: 100%;
    height: auto;
}

/* =========================================
   FSC CERTIFICATE INFORMATION
========================================= */

.fsc-certificate-info {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 0 35px 0;
}

.fsc-certificate-info .certificate-label {
    display: block;
    margin-bottom: 8px;

    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: #777;
}

.fsc-certificate-info h2 {
    margin: 0 0 10px 0;

    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;

    color: #292929;
}

.fsc-certificate-info p {
    max-width: 700px;
    margin: 0;

    font-size: 14px;
    line-height: 1.8;

    color: #777;
}


/* =========================================
   CERTIFICATE DIVIDER
========================================= */

.certificate-divider {
    width: 100%;
    height: 1px;

    margin: 25px 0;

    background: #e5e5e5;
}


/* =========================================
   CERTIFICATE DETAILS
========================================= */

.certificate-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 40px;
}

.certificate-detail {
    display: flex;
    flex-direction: column;

    gap: 6px;
}

.certificate-detail span {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    color: #888;
}

.certificate-detail strong {
    font-size: 16px;
    font-weight: 600;

    color: #292929;
}

/* =========================================
   FSC VERIFICATION
========================================= */

.fsc-verification-section {
    padding: 45px 0 70px 0;

    border-top: 1px solid #e5e5e5;
}

.fsc-verification-box {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 50px;

    padding: 35px 40px;

    border: 1px solid #e1e1e1;
}

/* FSC VERIFICATION - MOBILE */

@media (max-width: 900px) {

    .fsc-verification-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

}

.fsc-verification-box .certificate-label {
    display: block;

    margin-bottom: 8px;

    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: #777;
}

.fsc-verification-box h2 {
    margin: 0 0 10px 0;

    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;

    color: #292929;
}

.fsc-verification-box p {
    max-width: 650px;

    margin: 0;

    font-size: 14px;
    line-height: 1.8;

    color: #777;
}


/* =========================================
   FSC VERIFICATION BUTTON
========================================= */

.fsc-certification-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 18px;

    flex-shrink: 0;

    padding: 14px 20px;

    border: 1px solid #292929;

    color: #06299c;

    font-size: 10px;
    letter-spacing: 1.5px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.fsc-certification-button span {
    font-size: 16px;
}

.fsc-certification-button:hover {
    background: #073caf;
    color: #fff;
}

/* =========================================
   POLYESTER PRODUCT DETAIL
========================================= */

.polyester-product-detail .product-detail-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 70px;
    align-items: center;
    width: 100%;
}

.polyester-product-detail .product-detail-image {
    width: 100%;
    max-width: 750px;
    min-width: 0;
    overflow: hidden;
}

.polyester-product-detail .product-detail-image img.lightbox-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.polyester-product-detail .product-detail-content {
    width: 100%;
    min-width: 0;
    max-width: 600px;
}

@media (max-width: 900px) {

    .polyester-product-detail .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .polyester-product-detail .product-detail-image {
        max-width: 100%;
    }

}

@media (max-width: 600px) {

    .polyester-product-detail .product-detail-image {
        max-width: 100%;
    }

}

/* =========================================
   POLYESTER PAGE CONTAINER
========================================= */

.polyester-product-detail > .container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}

@media (max-width: 600px) {

    .polyester-product-detail > .container {
        padding-left: 20px;
        padding-right: 20px;
    }

}

/* =========================================
   POLYESTER - CENTERED PRODUCT LAYOUT
========================================= */

.polyester-product-detail {
    width: 100%;
    overflow: hidden;
}

.polyester-product-detail > .container {
    width: 90%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

/* PRODUCT IMAGE + INFORMATION */
.polyester-product-detail .product-detail-wrapper {
    width: 100% !important;
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;

    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
    box-sizing: border-box;
}

/* IMAGE */
.polyester-product-detail .product-detail-image {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
}

.polyester-product-detail .product-detail-image img.lightbox-image {

    display: block;

    height: 650px;

    width: auto;

    max-width: 100%;

    object-fit: contain;

    margin: 0 auto;

}

/* PRODUCT INFORMATION */
.polyester-product-detail .product-detail-content {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* TECHNICAL SPECIFICATION */
.polyester-product-detail .technical-specification {
    width: 100%;
    max-width: 1200px;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box;
}

/* FEATURES */
.polyester-product-detail .product-features {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .polyester-product-detail > .container {
        width: 90%;
    }

    .polyester-product-detail .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .polyester-product-detail .product-detail-image {
        max-width: 750px;
    }

    .polyester-product-detail .product-detail-content {
        max-width: 750px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .polyester-product-detail > .container {
        width: 90%;
    }

    .polyester-product-detail .product-detail-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .polyester-product-detail .product-detail-image {
        max-width: 100%;
    }

    .polyester-product-detail .product-detail-content {
        max-width: 100%;
    }

    .polyester-product-detail .technical-specification {
        width: 100%;
    }

    .polyester-product-detail .product-features {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   COMPANY HISTORY
========================================= */

.history-page {
    padding: 0 0 100px;
}

.history-heading {
    padding: 0 0 70px;
}

.history-heading h1 {
    margin: 18px 0 12px;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 600;
}

.history-heading p {
    max-width: 760px;
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   HISTORY INTRO
========================================= */

.history-intro {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 70px;
    align-items: stretch;
    padding-bottom: 90px;
}

.history-intro-content {
    padding-right: 20px;
}

.history-label {
    display: block;
    margin-bottom: 18px;
    font-size: 11px;
    letter-spacing: 4px;
    color: #333;
}

.history-intro-content h2 {
    margin: 0 0 25px;
    font-size: 32px;
    line-height: 1.25;
    font-weight: 600;
}

.history-intro-content p {
    margin: 0 0 18px;
    max-width: 760px;
    color: #666;
    font-size: 15px;
    line-height: 1.9;
}

.history-intro-highlight {
    position: relative;
    padding: 45px 45px 45px 48px;
    background: #f7f7f7;
    border-left: 4px solid #1647ff;
}

.history-intro-highlight span {
    display: block;
    margin-bottom: 22px;
    color: #1647ff;
    font-size: 11px;
    letter-spacing: 4px;
}

.history-intro-highlight h3 {
    margin: 0 0 18px;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 600;
}

.history-intro-highlight p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   HISTORY SECTION
========================================= */

.history-section {
    padding-top: 70px;
    border-top: 1px solid #e5e5e5;
}

.history-section-heading {
    margin-bottom: 65px;
}

.history-section-heading h2 {
    margin: 18px 0 0;
    font-size: 34px;
    line-height: 1.2;
    font-weight: 600;
}


/* =========================================
   HISTORY TIMELINE
========================================= */

.history-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.history-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 150px;
    width: 1px;
    background: #dcdcdc;
}

.history-item {
    position: relative;
    display: grid;
    grid-template-columns: 120px 60px 1fr;
    gap: 0;
    min-height: 180px;
}

.history-year {
    padding-top: 2px;
    text-align: right;
    padding-right: 25px;
}

.history-year span {
    display: block;
    margin-bottom: 10px;
    color: #777;
    font-size: 10px;
    letter-spacing: 3px;
}

.history-year strong {
    display: block;
    color: #222;
    font-size: 20px;
    font-weight: 600;
}

.history-line {
    position: relative;
}

.history-dot {
    position: absolute;
    top: 5px;
    left: 50%;
    width: 12px;
    height: 12px;
    transform: translateX(-50%);
    border: 3px solid #fff;
    background: #1647ff;
    box-shadow: 0 0 0 1px #1647ff;
}

.history-content {
    padding: 0 0 65px 35px;
}

.history-content-label {
    display: block;
    margin-bottom: 15px;
    color: #1647ff;
    font-size: 10px;
    letter-spacing: 3px;
}

.history-content h3 {
    margin: 0 0 15px;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
}

.history-content p {
    max-width: 650px;
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.85;
}


/* =========================================
   HISTORY CLOSING
========================================= */

.history-closing {
    margin-top: 30px;
    padding: 55px 55px;
    background: #f7f7f7;
    border-left: 4px solid #1647ff;
}

.history-closing-content {
    max-width: 900px;
}

.history-closing h2 {
    margin: 18px 0 20px;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 600;
}

.history-closing p {
    margin: 0;
    color: #666;
    font-size: 15px;
    line-height: 1.9;
}


/* =========================================
   HISTORY RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .history-intro {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .history-intro-content {
        padding-right: 0;
    }

    .history-timeline::before {
        left: 110px;
    }

    .history-item {
        grid-template-columns: 85px 50px 1fr;
    }

    .history-year {
        padding-right: 18px;
    }

    .history-content {
        padding-left: 25px;
    }

}


@media (max-width: 600px) {

}

.footer-whatsapp-group {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 28px;
    margin-top: 3px;
}

.footer-whatsapp-item {
    width: 82px;
    min-height: 78px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    text-align: center;
    text-decoration: none;
    color: #ffffff;

    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* =========================================
   FOOTER WHATSAPP POPUP
========================================= */

.footer-whatsapp-group {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 28px;
    margin-top: 10px;
}

.footer-whatsapp-card {
    position: relative;
    width: 82px;
}

.footer-whatsapp-trigger {
    width: 82px;
    padding: 0;
    margin: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    background: transparent;
    border: 0;

    color: #ffffff;
    cursor: pointer;
    font-family: inherit;
}

.footer-whatsapp-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 5px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-whatsapp-icon img {
    width: 42px;
    height: 42px;

    object-fit: contain;
    display: block;
}

.footer-whatsapp-label {
    display: block;

    width: 100%;

    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 1.35;

    color: #bbbbbb;
    text-align: center;
}

.footer-whatsapp-trigger:hover .footer-whatsapp-icon {
    transform: translateY(-3px) scale(1.06);
}


/* =========================================
   WHATSAPP POPUP
========================================= */

.footer-whatsapp-popup {
    position: absolute;

    right: 0;
    bottom: calc(100% + 18px);

    width: 290px;

    background: #ffffff;
    color: #333333;

    border-radius: 12px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.22);

    overflow: hidden;

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(10px)
        scale(0.96);

    transform-origin: bottom right;

    transition:
        opacity 0.22s ease,
        visibility 0.22s ease,
        transform 0.22s ease;

    z-index: 50;

    pointer-events: none;
}


/* popup muncul ketika hover */

.footer-whatsapp-card:hover .footer-whatsapp-popup {
    opacity: 1;
    visibility: visible;

    transform:
        translateY(0)
        scale(1);

    pointer-events: auto;
}


/* =========================================
   POPUP HEADER
========================================= */

.footer-whatsapp-popup-header {
    min-height: 52px;

    padding: 0 14px 0 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #25D366;
    color: #ffffff;

    font-size: 12px;
    font-weight: 600;
}

.footer-whatsapp-close {
    width: 28px;
    height: 28px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;
    border-radius: 50%;

    background: rgba(0, 0, 0, 0.18);
    color: #ffffff;

    font-size: 20px;
    line-height: 1;

    cursor: pointer;
}


/* =========================================
   POPUP BODY
========================================= */

.footer-whatsapp-popup-body {
    padding: 18px 20px 8px;
}

.footer-whatsapp-popup-body p {
    margin: 0 0 10px;

    font-size: 13px;
    line-height: 1.65;

    color: #555555;
}

.footer-whatsapp-popup-body p:first-child {
    font-weight: 600;
    color: #333333;
}


/* =========================================
   OPEN CHAT BUTTON
========================================= */

.footer-whatsapp-open {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin: 8px 18px 18px;
    padding: 11px 15px;

    border-radius: 7px;

    background: #25D366;
    color: #ffffff;

    text-decoration: none;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 1.3px;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.footer-whatsapp-open:hover {
    background: #20bd5a;
    transform: translateY(-2px);
}

.footer-whatsapp-open span {
    font-size: 15px;
}

.footer-whatsapp-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.footer-whatsapp-icon svg {
    width: 29px;
    height: 29px;
    display: block;
}

.footer-whatsapp-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.footer-whatsapp-icon svg path:first-child {
    fill: #ffffff !important;
}

.footer-whatsapp-icon svg path:last-child {
    fill: #25D366 !important;
}

.footer-whatsapp-label {
    display: block;
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 1.2px;
    line-height: 1.4;
    color: #bbbbbb;
}

.footer-whatsapp-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    transition: transform 0.25s ease;
}

.footer-whatsapp-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.footer-whatsapp-item:hover .footer-whatsapp-icon {
    transform: scale(1.08);
}

/* =========================================
   FOOTER WHATSAPP - FINAL ALIGNMENT
========================================= */

.footer-whatsapp-group {
    display: flex;
    align-items: flex-start !important;
    justify-content: flex-start;
    gap: 28px;
}

.footer-whatsapp-item {
    width: 82px !important;
    height: 90px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;

    position: relative;
    top: 0 !important;

    box-sizing: border-box;
    text-align: center;
}

.footer-whatsapp-icon {
    width: 50px !important;
    height: 50px !important;

    flex: 0 0 50px !important;

    margin: 0 0 8px 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    position: relative;
    top: 0 !important;

    transform: none;
}

.footer-whatsapp-icon img {
    width: 50px !important;
    height: 50px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: block !important;
    object-fit: contain;
}

.footer-whatsapp-label {
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    display: block !important;

    font-size: 9px;
    line-height: 1.35;
    letter-spacing: 1px;

    text-align: center;
}

/* FINAL - SAMAKAN POSISI WHATSAPP */

.footer-whatsapp-group .footer-whatsapp-item:first-child {
    margin-top: 0 !important;
}

.footer-whatsapp-group .footer-whatsapp-item:nth-child(2) {
    margin-top: 0 !important;
}

/* =========================================
   FOOTER DESKTOP - COMPACT
========================================= */

@media (min-width: 801px) {

    .site-footer .footer-container {
        padding-top: 35px;
        padding-bottom: 20px;
    }

}

/* =========================================
   FLOATING WHATSAPP
========================================= */

.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 14px;

    z-index: 9999;
}

.floating-whatsapp-item {
    width: 70px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-decoration: none;

    color: #ffffff;

    transition: transform 0.25s ease;
}

.floating-whatsapp-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.floating-whatsapp-icon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.floating-whatsapp-label {
    margin-top: 6px;

    font-size: 8px;
    font-weight: 500;

    letter-spacing: 1px;
    line-height: 1.3;

    text-align: center;

    color: #555555;
}

.floating-whatsapp-item:hover {
    transform: translateY(-3px);
}

.floating-whatsapp-item:hover .floating-whatsapp-icon {
    transform: scale(1.08);
}

/* =========================================
   HOME CERTIFICATION - SLIDE REVEAL
========================================== */

.home-jas-card,
.home-fsc-card {
    position: relative;
    overflow: hidden;
}


/* REVEAL PANEL */

/* =========================================
   HOME CERTIFICATION - HORIZONTAL REVEAL
========================================== */

.home-jas-card,
.home-fsc-card {
    position: relative;
    overflow: hidden;
}


/* REVEAL PANEL */

.home-cert-reveal {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 220px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    color: #fff;
    text-decoration: none;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;

    transform: translateX(100%);

    transition: transform 0.4s ease;
}


/* JAS */

.home-jas-reveal {
    background: #003cff;
}


/* FSC */

.home-fsc-reveal {
    background: #2e7d32;
}


/* HOVER */

.home-jas-card:hover .home-jas-reveal,
.home-fsc-card:hover .home-fsc-reveal {
    transform: translateX(0);
}


/* ARROW */

.home-cert-reveal-arrow {
    font-size: 17px;
    line-height: 1;

    transition: transform 0.3s ease;
}


/* ARROW */

.home-jas-card:hover .home-cert-reveal-arrow,
.home-fsc-card:hover .home-fsc-reveal-arrow {
    transform: translateX(5px);
}


/* JAS */

.home-jas-reveal {
    background: #003cff;
}


/* FSC */

.home-fsc-reveal {
    background: #2e7d32;
}


/* HOVER */

.home-jas-card:hover .home-jas-reveal,
.home-fsc-card:hover .home-fsc-reveal {
    transform: translateY(0);
}


/* ARROW */

.home-cert-reveal-arrow {
    font-size: 17px;
    line-height: 1;

    transition: transform 0.3s ease;
}


/* ARROW ANIMATION */

.home-jas-card:hover .home-cert-reveal-arrow,
.home-fsc-card:hover .home-cert-reveal-arrow {
    transform: translateX(5px);
}

/* =========================================
   FOOTER - HEAD OFFICE & CONTACT US
========================================= */

.footer-contact-section {
    margin-bottom: 24px;
}

.footer-contact-section h4 {
    margin-bottom: 12px;
}


/* OFFICE ADDRESS */

.footer-office-address {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
    color: #aaaaaa;
}


/* CONTACT US */

.footer-contact-us {
    margin-top: 4px;
}

.footer-contact-line {
    margin: 0 0 7px;
    font-size: 13px;
    line-height: 1.6;
    color: #aaaaaa;
}

.footer-contact-label {
    color: #ffffff;
    font-weight: 500;
}

.footer-contact-line a {
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-line a:hover {
    color: #ffffff;
}

/* =========================================
   FOOTER BOTTOM - FINAL OVERRIDE
========================================= */

.site-footer .footer-bottom {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.site-footer .footer-bottom-container {
    width: 86% !important;
    max-width: 1080px !important;
    margin: 0 auto !important;
    padding: 12px 0 !important;

    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;

    box-sizing: border-box;
}


/* LANGUAGES */

.site-footer .footer-languages {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-end !important;

    gap: 14px !important;

    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

.site-footer .footer-languages span {
    display: inline-block !important;
    white-space: nowrap;
}

/* =========================================
   FOOTER WHATSAPP ICON - SIZE FIX
========================================= */

.site-footer .footer-whatsapp-icon img {
    width: 38px !important;
    height: 38px !important;

    object-fit: contain;
    display: block;
}

/* =========================================
   FOOTER MAIN - COMPACT DESKTOP
========================================= */

@media (min-width: 801px) {

    .site-footer .footer-container {
        padding-top: 30px;
        padding-bottom: 5px;
    }

}

/* =========================================
   FOOTER - COMPACT CONTACT
========================================= */

@media (min-width: 801px) {

    .site-footer .footer-contact {
        row-gap: 12px;
    }

    .site-footer .footer-contact-section {
        margin-bottom: 10px;
    }

    .site-footer .footer-contact-us {
        margin-top: 0;
        margin-bottom: 0;
    }

    .site-footer .footer-whatsapp-group {
        margin-top: 0;
        row-gap: 12px;
    }

}

/* =========================================
   RESPONSIVE HEADER
========================================= */

/* MOBILE MENU BUTTON - DEFAULT HIDDEN */
.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #222;
    transition: all 0.3s ease;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .header-inner {
        gap: 15px;
    }

    .main-nav {
        gap: 14px;
    }

    .main-nav a {
        font-size: 13px;
    }

    .company-name {
        font-size: 19px;
    }

    .logo img {
        width: 145px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .site-header {
        position: sticky;
        top: 0;
    }

    .header-inner {
        min-height: 70px;
        padding: 12px 0;
        position: relative;
        flex-wrap: wrap;
        gap: 0;
    }

    .brand {
        gap: 2px;
        min-width: 0;
    }

    .logo img {
        width: 125px;
    }

    .company-name {
        font-size: 16px;
        letter-spacing: -0.2px;
        white-space: nowrap;
    }


    /* HAMBURGER */

    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
        flex-shrink: 0;
    }


    /* MAIN NAVIGATION */

    .main-nav {
        display: none;
        order: 10;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 15px 0 5px;
        border-top: 1px solid #e5e5e5;
        margin-top: 12px;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav > a,
    .main-nav > .nav-dropdown {
        width: 100%;
    }

    .main-nav > a {
        padding: 12px 0;
    }


    /* DROPDOWN */

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-trigger,
    .nav-dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 12px 0;
        box-sizing: border-box;
    }

    .dropdown-menu,
    .nav-dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        border: none;
        box-shadow: none;
        background: #f7f7f7;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:hover .nav-dropdown-menu {
        display: none;
    }

    .nav-dropdown.active .dropdown-menu,
    .nav-dropdown.active .nav-dropdown-menu {
        display: block;
    }

    .dropdown-menu a,
    .nav-dropdown-menu a {
        padding: 10px 15px;
        font-size: 13px;
    }


    /* LANGUAGE */

    .language-dropdown {
        margin-left: auto;
        flex-shrink: 0;
    }

    .language-current {
        padding: 8px 0;
    }

    .language-menu {
        right: 0;
    }

}

/* =========================================
   MOBILE FOOTER FIX
========================================= */

@media (max-width: 768px) {

    .site-footer {
        width: 100%;
        overflow: hidden;
    }

    .site-footer .container {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding-left: 20px;
        padding-right: 20px;
    }

    .site-footer * {
        max-width: 100%;
        box-sizing: border-box;
    }

}

/* =========================================
   MOBILE FSC & JAS DROPDOWN FIX
========================================= */

@media (max-width: 768px) {

    .main-nav .nav-dropdown .nav-dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        margin: 0;
        padding: 0;

        background: #f7f7f7;
        border: none;
        box-shadow: none;

        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .main-nav .nav-dropdown.active .nav-dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

}

/* =========================================
   FOOTER RESPONSIVE - MOBILE
========================================= */

@media (max-width: 768px) {

    /* FOOTER CONTAINER */
    .site-footer .footer-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 40px 25px 35px;

        display: grid;
        grid-template-columns: 1fr;
        gap: 35px;

        box-sizing: border-box;
    }


    /* COMPANY */
    .site-footer .footer-company {
        position: static;
        left: auto;

        width: 100%;
        max-width: 100%;

        justify-self: stretch;
        grid-column: auto;
    }

    .site-footer .footer-logo img {
        max-width: 200px;
        width: 100%;
        height: auto;
    }

    .site-footer .footer-description {
        max-width: 100%;
    }


    /* QUICK LINKS */
    .site-footer .footer-links {
        width: 100%;
        grid-template-columns: 1fr 1fr;
        column-gap: 25px;
        row-gap: 12px;
    }


    /* CONTACT */
    .site-footer .footer-contact {
        position: static;
        right: auto;

        width: 100%;
        max-width: 100%;

        justify-self: stretch;
    }


    /* WHATSAPP FOOTER */
    .site-footer .footer-whatsapp-group {
        width: 100%;

        display: flex;
        justify-content: center;
        align-items: flex-start;

        gap: 35px;
        margin-top: 20px;
    }

    .site-footer .footer-whatsapp-item {
        width: 82px !important;
        flex: 0 0 82px;

        text-align: center;
    }


    /* FOOTER BOTTOM */
    .site-footer .footer-bottom-container {
        width: 100%;
        max-width: 100%;

        padding: 15px 20px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 10px;

        box-sizing: border-box;
    }

    .site-footer .footer-bottom p {
        white-space: normal;
        text-align: center;
        line-height: 1.5;
    }

    .site-footer .footer-languages {
        display: flex;
        justify-content: center;
        gap: 12px;
    }

}

/* =========================================
   FOOTER BOTTOM - FINAL MOBILE ALIGNMENT
========================================= */

@media (max-width: 768px) {

    .site-footer .footer-bottom-container {
        width: 100%;
        max-width: 100%;
        padding: 18px 20px 20px;

        display: flex;
        flex-direction: column;

        align-items: center;
        justify-content: center;

        gap: 10px;

        text-align: center;
        box-sizing: border-box;
    }

    .site-footer .footer-bottom p {
        width: 100%;
        max-width: 100%;
        margin: 0;

        text-align: center;
        white-space: normal;
        line-height: 1.5;
    }

    .site-footer .footer-languages {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: center;

        gap: 14px;
        margin: 0;
        padding: 0;
    }

}

/* =========================================
   FLOATING WHATSAPP - HIDE WHEN FOOTER VISIBLE
========================================= */

.floating-whatsapp {
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.floating-whatsapp.footer-visible {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* =========================================
   HEADER MOBILE - KEEP ALL ITEMS IN ONE ROW
========================================= */

@media (max-width: 768px) {

    .site-header .header-inner {
        flex-wrap: wrap;
        align-items: center;
    }

    .site-header .brand {
        flex: 1 1 auto;
        min-width: 0;
    }

    .site-header .company-name {
        min-width: 0;
        overflow: hidden;
        text-overflow: clip;
        white-space: nowrap;
    }

    .site-header .mobile-menu-toggle {
        flex: 0 0 42px;
        margin-left: 8px;
    }

    .site-header .language-dropdown {
        flex: 0 0 auto;
        margin-left: 8px;
    }

}

/* =========================================
   HEADER MOBILE - FINAL RESPONSIVE LAYOUT
========================================= */

@media (max-width: 768px) {

    .site-header .header-inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 36px auto;
        align-items: center;

        padding-left: 0;
        padding-right: 0;

        gap: 0;
        position: relative;
    }

    /* BRAND */
    .site-header .brand {
        min-width: 0;
        width: 100%;

        display: flex;
        align-items: center;

        gap: 2px;
    }

    .site-header .logo img {
        width: clamp(92px, 26vw, 125px);
        height: auto;
    }

    .site-header .company-name {
        min-width: 0;

        font-size: clamp(12.5px, 3.3vw, 16px);
        letter-spacing: -0.3px;

        white-space: nowrap;
        overflow: hidden;
        text-overflow: clip;
    }

    /* HAMBURGER */
    .site-header .mobile-menu-toggle {
        width: 36px;
        height: 36px;

        flex: none;

        margin: 0;
        padding: 6px;
    }

    .site-header .mobile-menu-toggle span {
        width: 22px;
    }

    /* LANGUAGE */
    .site-header .language-dropdown {
        position: static;

        margin: 0;
        padding: 0;

        flex: none;
    }

    /* MOBILE NAV */
    .site-header .main-nav {
        grid-column: 1 / -1;
        width: 100%;
    }

}

/* =========================================
   VISION & MISSION - MOBILE RWD
========================================= */

@media (max-width: 768px) {

    .vision-mission-section {
        grid-template-columns: 70px 1fr;
        column-gap: 20px;
    }

    .principle-item {
        grid-template-columns: 50px 1fr;
        column-gap: 15px;
    }

    .principle-letter {
        font-size: 34px;
    }

}

/* =========================================
   VISION & MISSION - PRINCIPLE MOBILE FIX
========================================= */

@media (max-width: 768px) {

    .vision-mission-section .principle-item {
        grid-template-columns: 45px 1fr !important;
        column-gap: 15px !important;
    }

}

/* =========================================
   COMPANY GALLERY - MOBILE
========================================= */

@media (max-width: 768px) {

    .gallery-slideshow {
        height: 420px;
    }

}

/* =========================================
   PRODUCT DETAIL - MOBILE FIX
========================================= */

@media (max-width: 768px) {

    .product-detail-wrapper {
        grid-template-columns: 1fr !important;
        gap: 45px !important;
    }

}

/* =========================================
   TECHNICAL SPECIFICATION - MOBILE FINAL
========================================= */

@media (max-width: 768px) {

    .technical-row {
        grid-template-columns: 35% 65% !important;
    }

    .technical-name {
        padding: 20px 15px !important;
        box-sizing: border-box;
    }

    .technical-value {
        padding: 20px 15px !important;
        box-sizing: border-box;
    }

}

/* =========================================
   PRODUCT FEATURES - MOBILE FINAL
========================================= */

@media (max-width: 768px) {

    .product-features {
        grid-template-columns: 1fr !important;
        gap: 1px;
        width: 100%;
    }

    .feature-box {
        padding: 25px 20px;
        box-sizing: border-box;
    }

    .feature-box h3 {
        font-size: 17px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .feature-box p {
        font-size: 14px;
        line-height: 1.7;
    }

}