/* ==========================
   TETSU HERO
========================== */

.tm-hero{
    min-height: 700px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#eef6fe;
    position:relative;
}

.tm-hero-content{
    width:50%;
    padding-left:8%;
    padding-right:60px;
    z-index:2;
}

.tm-hero-title{
    font-size:45px;
    line-height:1.15;
    font-weight:800;
    color:#1d1d1f;
    margin-bottom:30px;
    text-transform: capitalize;
}

.tm-hero-title-small-margin {
    font-size:45px;
    line-height:1.15;
    font-weight:800;
    color:#1d1d1f;
    margin-bottom:10px;
    text-transform: capitalize;
}
.tm-hero-description {
    font-size: 18px;
}

.tm-hero-title span{
    color:#1d6fd6;
}

.tm-hero-desc{
    max-width:650px;
    font-size:18px;
    line-height:1.7;
    color:#4d5562;
    margin-bottom:40px;
}

.tm-hero-actions{
    display:flex;
    gap:20px;
    margin-bottom:45px;
}

.tm-btn-primary{
    background:var(--acm-primary-green);
    color:#fff !important;
    padding:16px 34px;
    border-radius:999px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:12px;
}

.tm-btn-primary:hover{
    background:#33703a;
}

.tm-btn-outline{
    border:1.5px solid #777;
    color:#333 !important;
    padding:16px 34px;
    border-radius:999px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#fff;
}

.tm-hero-features{
    display:flex;
    gap:35px;
    flex-wrap:wrap;
}

.tm-feature{
    display:flex;
    align-items:center;
    gap:10px;
    color:#344054;
    font-weight:600;
    font-size: 14px;
}

.tm-feature i{
    color:#1d6fd6;
    font-size:20px;
}

/* RIGHT IMAGE */

.tm-hero-image{
    width:45%;
    height:700px;
    position:relative;
    overflow:hidden;
}

.tm-hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* CURVE SHAPE */

.tm-hero-image::before{
    content:"";
    position:absolute;
    left:-180px;
    top:-50px;
    width:320px;
    height:120%;
    background:#f3f5f8;
    border-radius:50%;
    z-index:2;
}
.tm-hero-right{
    position:relative;
    width:50%;
    height:750px;
    overflow:hidden;
}

/* gambar yang bisa diganti */
.tm-hero-bg{
    position:absolute;
    inset:0;

    width:100%;
    height:100%;

    object-fit:cover;

    z-index:1;
}

/* shape permanen */
.tm-hero-shape{
    position:absolute;

    top:0;
    left:0;

    height:100%;
    width:auto;

    z-index:2;

    pointer-events:none;
}

@media(max-width:991px){

    .tm-hero{
        flex-direction:column;
    }

    .tm-hero-content{
        width:100%;
        padding:60px 30px;
    }

    .tm-hero-image{
        width:100%;
        height:450px;
    }

    .tm-hero-image::before{
        display:none;
    }

    .tm-hero-title{
        font-size:42px;
    }

    .tm-hero-desc{
        font-size:18px;
    }
}

.overlap-section{
    position: relative;
    margin-top: -10em;
    z-index: 20;
}

.section-accent{
    width:6rem;          /* ±96px */
    height:0.3125rem;    /* 5px */
    background:var(--acm-primary-green);
    border-radius:999px;
    margin-top:0.75rem;
}

.section-title-center {margin-bottom: 30px;}
.section-title-center h2{
    line-height: 35px;
    font-size: 30px;
    margin-bottom: 0px;
}

/* Contact Section */
.contact-section {
    height: 275px;
    background-image: url('../images/img__0x0.png');
    position:relative;
    background:#0270D6;
    overflow:hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: start;
}


/* background image layer */
.contact-section::before{
    content:"";
    position:absolute;

    inset:0;

    background-image:var(--contact-bg);
    background-size:cover;
    background-position:center;

    opacity:0.2;

    z-index:0;
}


/* content tetap di atas */
.contact-section > *{
    position:relative;
    z-index:1;
}


.feature-product-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-product-carousel {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    scroll-behavior: smooth;
    flex: 1;
}

.feature-product-item {
    min-width: 220px;
    text-align: center;
    flex-shrink: 0;
}

.feature-arrow {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #f3f3f3;
    cursor: pointer;
    font-size: 24px;
    transition: 0.3s;
}

.feature-arrow:hover {
    background: #ddd;
}

/* PRODUCT STYLE */
.product-gallery-wrapper{
    display:flex;
    gap:16px;
    align-items:center;
}

.product-main-section{
    display:flex;
    flex-direction:column;
    align-items:center;
}

.product-specification-link{
    margin-top:16px;
    text-align:center;
}

/* Kolom thumbnail */
.product-gallery-thumbs{
    display:flex;
    flex-direction:column;
    gap:10px;
    flex-shrink:0;
}

/* Thumbnail */
.gallery-thumb{
    width:90px;
    height:90px;
    object-fit:cover;
    cursor:pointer;
    border:1px solid #ddd;
    border-radius:8px;
    transition:.2s;
    padding: 0.75rem;
}

.gallery-thumb:hover{
    opacity:.8;
}

/* Area gambar utama */
.product-main-image{
    width:450px;
    height:450px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:#fff;
    border:0px solid #e5e7eb;
    border-radius:12px;
    overflow:hidden;
}

.product-main-image img{
    width:75%;
    height:75%;
    object-fit:contain;
}

.gallery-thumb.active{
    border:2px solid #0d6efd;
}
.single-product-title {margin-bottom: 20px;}

.single-product-content h2, h2.product-title {
    font-size: 26px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 0px;
}
.single-product-content h3{
    font-size: 20px;
    font-weight: 600;
}

.product-specification-link{
    text-align:center;
    margin-top:16px;
}

.product-specification-link a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    text-decoration:none;
}

.documentation-table{
    width:100%;
    border-collapse:separate;
    border-spacing:0;
    background:#fff;
    overflow:hidden;
}

.documentation-table thead th{
    padding:16px 20px!important;
    font-size:12px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.04em;
    color:#232323;
    background:#9fd7f8;
    border:none;
    margin:0;
    line-height:1.2;
    vertical-align:middle;
}

.documentation-table thead th:first-child{
    text-align:left;
}

.documentation-table thead th:last-child{
    text-align:center;
    width:180px;
}

.documentation-table tbody td{
    padding:18px 20px;
    border:none;
    vertical-align:middle;
}

.documentation-table tbody tr{
    transition:background .2s ease;
}

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

/* separator antar row */
.documentation-table tbody tr:not(:last-child) td{
    border-bottom:1px solid #f1f5f9;
}

/* document title */
.documentation-table tbody td:first-child{
    font-size:14px;
    font-weight:500;
    color:#111827;
}

/* kolom download */
.documentation-table tbody td:last-child{
    text-align:center;
}


.download-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;

    min-width:120px;
    height:40px;

    padding:0 16px;

    border:1px solid #e5e7eb;
    border-radius:10px;

    background:#fff;
    color:#111827;
    text-decoration:none;
    font-size:14px;
    font-weight:500;

    transition:all .2s ease;
}

.download-link:hover{
    background:#111827;
    border-color:#111827;
    color:#fff;
}

.download-link i{
    font-size:18px;
}

.document-info{
    display:flex;
    flex-direction:column;
    gap:4px;
}

.document-title{
    font-weight:500;
    color:#111827;
}

.document-meta{
    font-size:11px;
    color:#6b7280;
}

.accordion-item p{
    font-size: inherit;
}
.accordion-item h3{
    font-size: 20px;
    font-weight: 700;
}



/* =========================
   TABLET
========================= */
@media (max-width: 991px){

    .product-gallery-wrapper{
        gap:12px;
    }

    .product-main-image{
        width:350px;
        height:350px;
    }

    .gallery-thumb{
        width:75px;
        height:75px;
    }

    .single-product-content h2,
    h2.product-title{
        font-size:22px;
        line-height:28px;
    }

}

/* =========================
   MOBILE
========================= */
@media (max-width: 767px){

    /* Product Gallery */
    .product-gallery-wrapper{
        flex-direction:column-reverse;
        align-items:center;
        gap:16px;
    }

    /* Thumbnail jadi horizontal di bawah gambar */
    .product-gallery-thumbs{
        flex-direction:row;
        justify-content:center;
        flex-wrap:wrap;
        width:100%;
    }

    .gallery-thumb{
        width:70px;
        height:70px;
        padding:.5rem;
    }

    .product-main-image{
        width:100%;
        max-width:320px;
        height:320px;
    }

    .product-main-image img{
        width:80%;
        height:80%;
    }

    /* Product Title */
    .single-product-content h2,
    h2.product-title{
        font-size:22px;
        line-height:28px;
    }

    .single-product-content h3{
        font-size:18px;
    }

    /* Feature Product Carousel */
    .feature-product-wrapper{
        gap:10px;
    }

    .feature-product-carousel{
        gap:12px;
    }

    .feature-product-item{
        min-width:170px;
    }

    .feature-arrow{
        width:38px;
        height:38px;
        font-size:20px;
    }

}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px){

    .product-main-image{
        max-width:280px;
        height:280px;
    }

    .gallery-thumb{
        width:60px;
        height:60px;
    }

    .feature-product-item{
        min-width:150px;
    }

    .feature-arrow{
        width:34px;
        height:34px;
        font-size:18px;
    }

    .single-product-content h2,
    h2.product-title{
        font-size:20px;
        line-height:26px;
    }

}


.feature-product-item {
    text-align: left;
}

.product-thumb {
    text-align: center;
    margin-bottom: 1rem;
}

.product-thumb img {
    display: inline-block;
}
h4.product-list-card-title{
    font-size: 18px;
    line-height: 24px;
}

.feature-product-item .product-thumb img{
    width: 125px;
    height: auto;
}

h5.card-icon-title{margin-bottom: 0.3rem;}
.card-wt-icon p{margin-bottom: 0.3rem; line-height: 1rem;}



.hero-overlay{
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.95) 0%,
        rgba(255,255,255,0.85) 40%,
        rgba(255,255,255,0.45) 70%,
        rgba(255,255,255,0) 100%
    );
      backdrop-filter: blur(3px);
}

.text-dark-blue{
    color: #1D208B!important;
}

.tm-hero-eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--tm-primary);
    margin-bottom: 12px;
}

.section-md-title{
    font-size: 1.5rem;
}