/* premium clients */
.mwm-premium-clients-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 15px 80px 15px;
    font-family: 'Roboto', sans-serif;
}

/* teks intro */
.premium-intro-box {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.premium-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #0056b3; 
    text-transform: uppercase;
    margin: 0 0 20px 0 !important;
}

.premium-divider {
    width: 60px;
    height: 4px;
    background: #33C9FF;
    margin: 0 auto 30px auto;
}

.premium-desc {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px !important;
    text-align: justify;
}

/* grid klien */
.premium-client-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.premium-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 25px 30px 25px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 86, 179, 0.08); 
    border: 1px solid rgba(0, 86, 179, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

/* animasi floating logo */
@keyframes floatLogo {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); } 
    100% { transform: translateY(0px); }
}

.floating-logo-wrapper {
    width: 100%;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    animation: floatLogo 4s ease-in-out infinite; 
}

.floating-logo-wrapper img {
    max-width: 85%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.8); 
    transition: all 0.4s ease;
}

/* info klien & scope tag */
.premium-card-info {
    text-align: center;
    width: 100%;
    z-index: 2;
}

.client-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #0a1930;
    margin: 0 0 20px 0 !important;
}

/* label scope */
.scope-tag {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* highlight mhi */
.special-scope {
    background: #f0f7ff;
    border-color: #bae6fd;
}

.tag-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.special-scope .tag-label { color: #0056b3; }

.tag-value {
    font-size: 13px;
    color: #334155;
    font-weight: 500;
    line-height: 1.4;
}

/* garis bawah hover */
.accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #33C9FF;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

/* hover effects */
.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 86, 179, 0.15);
    border-color: #33C9FF;
}

.premium-card:hover .accent-line {
    transform: scaleX(1); 
}

.premium-card:hover .floating-logo-wrapper img {
    filter: grayscale(0%) opacity(1); 
    transform: scale(1.1);
}

/* responsive */
@media (max-width: 991px) {
    .premium-client-grid { grid-template-columns: repeat(2, 1fr); }
    .premium-desc { text-align: left; }
}

@media (max-width: 600px) {
    .premium-client-grid { grid-template-columns: 1fr; }
    .premium-heading { font-size: 24px; }
    .premium-card { padding: 30px 20px; }
}

/* produk kami */
.mwm-products-section { 
    padding: 100px 5%; 
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.mwm-product-grid { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 50px; 
    justify-content: center; 
    max-width: 1200px;
    margin: 0 auto;
}

.mwm-product-box { 
    flex: 1 1 300px; 
    background: #ffffff; 
    border: 1px solid #e6edf5; 
    padding: 40px 30px; 
    text-align: center; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    position: relative;
}

/* hover box */
.mwm-product-box:hover { 
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(10, 35, 66, 0.12);
    border-color: #33C9FF;
}

/* wadah img */
.mwm-img-blueprint {
    position: relative;
    margin-bottom: 30px;
    padding: 25px;
    border: 2px dashed rgba(51, 201, 255, 0.35);
    background-color: rgba(51, 201, 255, 0.04);
    border-radius: 8px;
    overflow: visible;
}

/* img produk */
.mwm-floating-product {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(0px 18px 25px rgba(10, 35, 66, 0.18));
    animation: mwm-float 6s ease-in-out infinite;
}

/* delay animasi */
.mwm-product-box:nth-child(2) .mwm-floating-product {
    animation-delay: 1s;
}
.mwm-product-box:nth-child(3) .mwm-floating-product {
    animation-delay: 2s;
}

/* hover img */
.mwm-product-box:hover .mwm-floating-product {
    transform: translateY(-15px) scale(1.03) rotate(1deg);
    filter: drop-shadow(0px 30px 40px rgba(10, 35, 66, 0.25));
}

/* keyframes float */
@keyframes mwm-float {
    0% {
        transform: translateY(0px);
    }
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(-18px);
    }
    75% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* typo */
.mwm-product-box h3 { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 22px; 
    color: #0a2342; 
    margin-bottom: 15px; 
    font-weight: 700; 
}

.mwm-product-box p {
    font-family: 'Roboto', sans-serif;
    color: #718096;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.mwm-product-box a { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 14px; 
    font-weight: 700; 
    color: #33C9FF; 
    text-decoration: none; 
    text-transform: uppercase; 
    transition: all 0.3s ease;
}

.mwm-product-box a:hover { 
    color: #0a2342; 
}

/* about section */
.mwm-cad-light {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 15px 100px 15px;
    font-family: 'Roboto', sans-serif;
    color: #1e293b;
    background: #ffffff;
}

/* heading */
.cad-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #0056b3;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 15px 0 !important;
}

/* divider */
.cad-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: #33C9FF;
    margin: 20px auto 40px auto;
}

/* profile */
.profile-section {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 86, 179, 0.08);
    border: 1px solid rgba(0, 86, 179, 0.1);
    margin-bottom: 80px;
}

.cad-text p {
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
    text-align: justify;
    color: #475569;
}

/* gallery */
.cad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 80px;
}

.cad-frame {
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 86, 179, 0.08);
    border: 1px solid rgba(0, 86, 179, 0.1);
    transition: all 0.4s ease;
}

.cad-frame img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 4px;
    transition: 0.4s ease;
}

.cad-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 86, 179, 0.15);
    border-color: #33C9FF;
}

.cad-label {
    margin-top: 15px;
    font-size: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-align: center;
    color: #0a1930;
}

/* visi misi */
.vm-section {
    display: flex;
    gap: 35px;
    margin-bottom: 80px;
}

.cad-vm-box {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 86, 179, 0.08);
    border: 1px solid rgba(0, 86, 179, 0.1);
    transition: all 0.4s ease;
}

.cad-vm-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 86, 179, 0.15);
    border-color: #33C9FF;
}

.cad-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #0056b3;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.cad-list {
    list-style: none;
    padding: 0;
}

.cad-list li {
    font-size: 15px;
    margin-bottom: 12px;
    color: #475569;
    position: relative;
    padding-left: 20px;
}

.cad-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #33C9FF;
    font-weight: bold;
}

/* closing */
.cad-closing-box {
    background: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 86, 179, 0.08);
    border: 1px solid rgba(0, 86, 179, 0.1);
}

.closing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    margin: 50px 0;
}

.closing-item {
    display: flex;
    align-items: flex-start;
}

.closing-icon {
    font-size: 22px;
    margin-right: 15px;
}

.closing-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #0a1930;
    margin-bottom: 10px;
}

.closing-content span {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
}

.closing-text-outro {
    margin-top: 40px;
}

.closing-text-outro p {
    font-size: 15px;
    line-height: 1.9;
    color: #475569;
    text-align: justify;
}

/* responsive */
@media (max-width: 991px) {
    .vm-section {
        flex-direction: column;
    }

    .closing-grid {
        grid-template-columns: 1fr;
    }
}

/* produk grid */
.mwm-produk-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 15px;
    font-family: 'Roboto', sans-serif;
    background: #ffffff;
}

/* header */
.produk-header { text-align: center; max-width: 800px; margin: 0 auto 50px auto; }
.produk-kicker { font-family: 'Montserrat', sans-serif; font-size: 14px; font-weight: 800; color: #33C9FF; letter-spacing: 3px; text-transform: uppercase; display: block; margin-bottom: 10px; }
.produk-title { font-family: 'Montserrat', sans-serif; font-size: 34px; font-weight: 900; color: #0a2342; line-height: 1.2; margin: 0 0 20px 0 !important; text-transform: uppercase; }
.produk-divider { width: 60px; height: 4px; background: #0056b3; margin: 0 auto 25px auto; }
.produk-desc { font-size: 16px; line-height: 1.8; color: #475569; }

/* tabs */
.produk-tabs-wrapper { width: 100%; }
.produk-tabs-wrapper input[type="radio"] { display: none; }

/* nav tab */
.produk-tab-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-tab {
    padding: 12px 25px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #475569;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-tab:hover { background: #e2e8f0; color: #0056b3; }

/* tab aktif */
#tab-safety:checked ~ .produk-tab-nav label[for="tab-safety"],
#tab-baja:checked ~ .produk-tab-nav label[for="tab-baja"],
#tab-mekanikal:checked ~ .produk-tab-nav label[for="tab-mekanikal"],
#tab-packaging:checked ~ .produk-tab-nav label[for="tab-packaging"] {
    background: #0056b3;
    color: #ffffff;
    border-color: #0056b3;
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.2);
}

/* konten tab */
.produk-pane { display: none; animation: fadeProduk 0.5s ease; }
@keyframes fadeProduk { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

#tab-safety:checked ~ .produk-content-area #pane-safety,
#tab-baja:checked ~ .produk-content-area #pane-baja,
#tab-mekanikal:checked ~ .produk-content-area #pane-mekanikal,
#tab-packaging:checked ~ .produk-content-area #pane-packaging {
    display: block;
}

/* grid produk */
.produk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 25px;
}

/* card produk */
.produk-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.produk-card:hover {
    border-color: #33C9FF;
    box-shadow: 0 15px 30px rgba(0, 86, 179, 0.1);
    transform: translateY(-5px);
}

/* wadah foto & animasi */
.img-box {
    width: 100%;
    height: 200px;
    background: #f8fafc; 
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

@keyframes barang-melayang {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.img-melayang {
    max-width: 75%;
    max-height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 15px 10px rgba(0,0,0,0.15));
    animation: barang-melayang 3s ease-in-out infinite;
    z-index: 2;
}

@keyframes bayangan-napas {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(0.8); opacity: 0.2; }
}

.img-shadow {
    width: 60px;
    height: 8px;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    position: absolute;
    bottom: 20px;
    filter: blur(4px);
    animation: bayangan-napas 3s ease-in-out infinite;
    z-index: 1;
}

/* teks produk */
.tag-kategori { font-size: 11px; font-weight: 700; color: #94a3b8; text-transform: uppercase; display: block; margin-bottom: 8px; }
.nama-barang { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 800; color: #0a2342; margin: 0 0 20px 0 !important; line-height: 1.4; min-height: 44px; }

/* tombol wa */
.tanya-btn {
    display: block; width: 100%; padding: 12px 0; background: #f1f5f9; color: #0056b3; font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 800; text-transform: uppercase; border-radius: 6px; text-decoration: none; transition: all 0.3s ease; border: 1px solid #cbd5e1;
}

.produk-card:hover .tanya-btn { background: #0056b3; color: #ffffff; border-color: #0056b3; }

/* responsive */
@media (max-width: 991px) { .produk-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
    .produk-grid { grid-template-columns: repeat(2, 1fr); }
    .img-box { height: 160px; } .img-melayang { max-height: 100px; }
    .nama-barang { font-size: 14px; min-height: 40px; } .tanya-btn { font-size: 11px; padding: 10px 0; }
}
@media (max-width: 480px) { .produk-grid { grid-template-columns: 1fr; } }