:root {
    --orange: #f37820;
    --orange-dark: #d96518;
    --orange-light: #ff9f4d;
    --blue: #0095d9;
    --blue-dark: #0078b3;
    --blue-darker: #005c8a;
    --navy: #0b2b46;
    --navy-dark: #071c2e;
    --ink: #142130;
    --gray: #dde5ec;
    --gray-light: #f8fafc;
    --white: #ffffff;
    --font-heading: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
    --font-body: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --grad-brand: linear-gradient(135deg, var(--blue) 0%, var(--blue) 20%, var(--navy) 100%);
    --grad-accent: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 55%, var(--orange-dark) 100%);
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: #4a5568;
}

h1, h2, h3, h4, h5, h6,
.section-title, .ms-new-title, .navbar-brand {
    font-family: var(--font-heading);
    color: var(--ink);
}

/* Navbar */
.navbar {
    background: var(--grad-brand);
    box-shadow: 0 4px 20px rgba(11, 43, 70, .15);
    transition: all .35s ease;
    padding-top: .85rem;
    padding-bottom: .85rem;
    border: 0px solid transparent;
}



.navbar.navbar-floating {
    top: 14px !important;
    max-width: 1320px;
    margin: 0 auto;
    width: calc(100% - 24px);
    border-radius: 16px;
    background: rgba(255, 255, 255, .88) !important;
    border: 1px solid rgba(0, 88, 125, 0.25);
    box-shadow: 0 10px 30px rgba(11, 43, 70, .12);
    backdrop-filter: blur(10px);
}

.navbar.navbar-floating .nav-link,
.navbar.navbar-floating .nav-link:hover {
    color: var(--navy) !important;
}

.navbar.navbar-floating .btn-nav-cta {
    background: var(--grad-brand);
    box-shadow: 0 6px 18px rgba(0, 149, 217, .35);
}

.navbar.navbar-floating .btn-nav-cta:hover {
    background: linear-gradient(135deg, #29b0f0 0%, var(--blue) 100%);
    box-shadow: 0 10px 24px rgba(0, 149, 217, .45);
}

.navbar.navbar-floating .navbar-brand img {
    background: transparent;
    padding: 5px;
}


.navbar .nav-link {
    color: var(--white) !important;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-left: .8rem !important;
    padding-right: .8rem !important;
    transition: color .25s ease, transform .25s ease;
}

.navbar-nav .nav-item {
    margin: 0 .32rem;
}

.navbar .nav-link:hover {
    color: var(--white) !important;
    transform: scale(1.06);
}

.btn-nav-cta {
    display: inline-flex;
    align-items: center;
    background: var(--grad-accent);
    color: var(--white) !important;
    text-decoration: none !important;
    border-radius: 8px;
    padding: 10px 22px;
    font-weight: 700;
    font-size: .95rem;
    box-shadow: 0 6px 18px rgba(243, 120, 32, .35);
    transition: all .3s;
}

.btn-nav-cta:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(243, 120, 32, .45);
}


.navbar-brand {
    transition: opacity .3s;
    display: flex;
    align-items: center;
}

/* Mega Menu - Produk */
.dropdown-mega {
    position: static;
}

.mega-caret {
    font-size: .65rem;
    margin-left: 4px;
    transition: transform .25s ease;
    vertical-align: middle;
}

.dropdown-mega:hover .mega-caret {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: 1320px;
    max-width: 90vw;
    background: var(--white);
    border: 1px solid rgba(0, 88, 125, 0.25);
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(11, 43, 70, .18);
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    z-index: 500;
}

.dropdown-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-body {
    display: flex;
    gap: 32px;
}

.mega-menu-grid {
    display: flex;
    gap: 32px;
    flex: 1;
}

.mega-menu-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 26px;
    min-width: 0;
}

.mega-preview {
    width: 380px;
    flex-shrink: 0;
    border-left: 1px solid var(--gray);
    padding-left: 32px;
}

.mega-preview img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--gray-light), var(--gray));
}

.mega-preview h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.mega-preview p {
    font-size: .85rem;
    color: #888;
    line-height: 1.5;
    margin-bottom: 0;
}

.mega-col-title {
    font-family: var(--font-heading);
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .4px;
    padding-bottom: 8px;
    margin-bottom: 0px;
    display: block;
}

@media (max-width: 991.98px) {
    .mega-col-title {
        cursor: pointer;
        user-select: none;
        font-size: .8rem;
        text-transform: uppercase;
        letter-spacing: .4px;
        color: var(--navy);
        padding: 0px;
        margin-bottom: 5px;
    }
}

.mega-col-caret {
    display: none;
    float: right;
    font-size: .8rem;
    transition: transform .25s ease;
}

.mega-col {
    display: flex;
    flex-direction: column;
}

.mega-col a {
    display: block;
    color: #555;
    font-size: .92rem;
    text-decoration: none !important;
    padding: 7px 10px;
    margin: 0 -10px;
    border-radius: 8px;
    line-height: 1.4;
    transition: color .2s ease, background .2s ease;
}

.mega-col a:hover {
    color: var(--blue);
    background: rgba(0, 149, 217, .08);
}

.mega-menu-footer {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--gray);
    text-align: right;
}

.mega-view-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--orange);
    font-weight: 700;
    font-size: .88rem;
    text-decoration: none !important;
}

.mega-view-all:hover {
    color: var(--orange-dark);
}

.navbar.navbar-floating .mega-col-title {
    color: var(--navy);
}

/* Mega Menu - Industri */
.mega-menu-industri {
    width: 720px;
}

.industri-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industri-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 18px 10px;
    border-radius: 14px;
    text-decoration: none !important;
    transition: all .25s ease;
}

.industri-item:hover {
    background: var(--gray-light);
    transform: translateY(-4px);
}

.industri-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(0, 149, 217, .1);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all .25s ease;
}

.industri-item:hover .industri-icon {
    background: var(--grad-accent);
    color: var(--white);
}

.industri-item span {
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
}

@media (max-width: 991.98px) {
    .industri-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}


/* Title Page - komponen global: label kecil + heading besar, rata kiri */
.title-page {
    text-align: left;
    margin-bottom: 32px;
}

.title-page-label {
    color: var(--blue);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.title-page-title {
    color: var(--navy);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0;
}

@media (max-width: 575.98px) {
    .title-page-title {
        font-size: 1.6rem;
    }
}


/* Custom hamburger toggler (animates into X) */
.custom-toggler {
    border: none;
    background: transparent;
    padding: 4px;
    width: 30px;
    height: 22px;
    display: inline-flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-toggler:focus {
    box-shadow: none;
    outline: none;
}

.toggler-bar {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--white);
    border-radius: 2px;
    transition: transform .3s ease, opacity .3s ease, background .3s ease;
}

.navbar.navbar-floating .toggler-bar {
    background: var(--navy);
}

.custom-toggler[aria-expanded="true"] .toggler-bar-1 {
    transform: translateY(10px) rotate(45deg);
}

.custom-toggler[aria-expanded="true"] .toggler-bar-2 {
    opacity: 0;
}

.custom-toggler[aria-expanded="true"] .toggler-bar-3 {
    transform: translateY(-10px) rotate(-45deg);
}

.navbar-brand:hover {
    opacity: 0.85;
}

.navbar-brand img {
    height: 45px;
    background: var(--white);
    padding: 6px 12px;
    border-radius: 8px;
}

/* Hero */
.hero {
    background: var(--white);
    color: var(--navy);
    padding: 80px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(243, 120, 32, .06) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroPulse 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 0, 0, .03) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroPulse 10s ease-in-out infinite reverse;
}

@keyframes heroPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: .6;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tagline {
    color: var(--orange);
    font-size: .95rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--navy);
}

.hero h1 .highlight {
    color: var(--orange);
    position: relative;
    display: inline-block;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--orange);
    opacity: .3;
    border-radius: 4px;
    z-index: -1;
}

.hero .lead {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.7;
    max-width: 480px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--gray);
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.hero-stat-label {
    font-size: .8rem;
    color: #888;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(11, 43, 70, .12);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform .5s ease;
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.hero-image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--orange);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: .9rem;
    box-shadow: 0 8px 25px rgba(243, 120, 32, .4);
}

.hero-floating-card {
    position: absolute;
    top: 20px;
    right: -20px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-radius: 14px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
    animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-floating-card .icon {
    width: 40px;
    height: 40px;
    background: #111;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.hero-floating-card .text {
    color: #333;
    font-weight: 700;
    font-size: .85rem;
}

.hero-floating-card .sub {
    color: #888;
    font-size: .75rem;
}

.hero-slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.hero-slider-dot {
    display: block;
    width: 10px;
    height: 10px;
    flex: 0 0 10px;
    min-width: 10px;
    min-height: 10px;

    padding: 0;
    margin: 0;

    border: 0;
    border-radius: 50%;
    background: var(--gray);

    appearance: none;
    -webkit-appearance: none;

    line-height: 0;
    font-size: 0;
    cursor: pointer;
    transition: .3s;
}

.hero-slider-dot.active {
    background: var(--orange);
    transform: scale(1.3);
}

.btn-outline-white {
    border: 2px solid var(--navy);
    color: var(--navy);
    padding: 14px 36px;
    font-weight: 600;
    border-radius: 10px;
    background: transparent;
    transition: all .3s;
}

.btn-outline-white:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-accent {
    background: var(--grad-accent);
    color: var(--white);
    border: none;
    padding: 14px 36px;
    font-weight: 600;
    border-radius: 10px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(243, 120, 32, .35);
}

.btn-accent:hover {
    background: var(--grad-accent);
    filter: brightness(1.08);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(243, 120, 32, .45);
}

.btn-accent::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .6s, height .6s;
}

.btn-accent:hover::after {
    width: 300px;
    height: 300px;
}

/* Coverflow 3D - hidden, replaced by hero image */
.coverflow-wrap {
    display: none;
}

.hero h1 {
    font-size: 3.6rem;
    font-weight: 800;
}

.hero .lead {
    font-size: 1.2rem;
    opacity: .9;
}

.hero .text-orange {
    color: var(--orange);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-outline-white {
    border: 2px solid var(--navy);
    color: var(--navy);
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 10px;
    background: transparent;
    transition: all .3s;
}

.btn-outline-white:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-accent {
    background: var(--grad-accent);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    font-weight: 600;
    border-radius: 10px;
    transition: all .3s;
    position: relative;
    overflow: hidden;
}

.btn-accent:hover {
    filter: brightness(1.08);
    color: var(--white);
}

.btn-accent::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width .6s, height .6s;
}

.btn-accent:hover::after {
    width: 300px;
    height: 300px;
}

/* Coverflow 3D */
.coverflow-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.coverflow {
    width: 100%;
    max-width: 560px;
    height: 350px;
    perspective: 900px;
    position: relative;
    overflow: hidden;
}

.coverflow-track {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(.22, 1, .36, 1);
}

.coverflow-slide {
    position: absolute;
    width: 380px;
    height: 300px;
    left: 50%;
    top: 50%;
    margin-left: -190px;
    margin-top: -150px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .35);
    transition: all 0.6s cubic-bezier(.22, 1, .36, 1);
}

.coverflow-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.coverflow-slide.active {
    transform: translateX(0) translateZ(0) rotateY(0) scale(1);
    z-index: 5;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.coverflow-slide.prev-1 {
    transform: translateX(-60px) translateZ(-60px) rotateY(8deg) scale(0.88);
    z-index: 4;
    opacity: 0.6;
    filter: brightness(0.55);
}

.coverflow-slide.prev-2 {
    transform: translateX(-100px) translateZ(-120px) rotateY(14deg) scale(0.72);
    z-index: 3;
    opacity: 0.3;
    filter: brightness(0.4);
}

.coverflow-slide.prev-3 {
    transform: translateX(-130px) translateZ(-180px) rotateY(18deg) scale(0.6);
    z-index: 2;
    opacity: 0;
}

.coverflow-slide.next-1 {
    transform: translateX(60px) translateZ(-60px) rotateY(-8deg) scale(0.88);
    z-index: 4;
    opacity: 0.6;
    filter: brightness(0.55);
}

.coverflow-slide.next-2 {
    transform: translateX(100px) translateZ(-120px) rotateY(-14deg) scale(0.72);
    z-index: 3;
    opacity: 0.3;
    filter: brightness(0.4);
}

.coverflow-slide.next-3 {
    transform: translateX(130px) translateZ(-180px) rotateY(-18deg) scale(0.6);
    z-index: 2;
    opacity: 0;
}

.coverflow-slide.hidden {
    opacity: 0;
    pointer-events: none;
}

.coverflow-zone {
    position: absolute;
    top: 0;
    width: 20%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s;
}

.coverflow-zone i {
    font-size: 2.5rem;
    color: var(--orange);
    transition: all .4s;
    opacity: 0;
    text-shadow: 0 0 15px rgba(243, 120, 32, .4);
}

.coverflow-zone-left {
    left: 0;
}

.coverflow-zone-right {
    right: 0;
}

.coverflow-zone-left:hover {
    background: linear-gradient(90deg, rgba(243, 120, 32, .12) 0%, transparent 100%);
}

.coverflow-zone-right:hover {
    background: linear-gradient(-90deg, rgba(243, 120, 32, .12) 0%, transparent 100%);
}

.coverflow-zone:hover i {
    opacity: 1;
    transform: scale(1.15);
}

.coverflow-zone:active i {
    transform: scale(0.9);
}

.coverflow-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.coverflow-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    cursor: pointer;
    transition: all .3s;
}

.coverflow-dot.active {
    background: var(--orange);
    transform: scale(1.3);
}

/* Marquee */
.marquee-section {
    padding: 30px 0;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 15s linear infinite;
    align-items: center;
}

.marquee-item {
    flex-shrink: 0;
    width: 165px;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 16px;
}

.marquee-item img {
    max-width: 143px;
    max-height: 72px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all .3s;
}

.marquee-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

/* Section Titles */
.section-title {
    color: var(--ink);
    font-weight: 700;
    margin-bottom: 12px;
}

.text-orange {
    color: var(--orange);
}

/* Masalah Solusi Timeline */
.ms-new {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.ms-new-bg {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(243, 120, 32, .06) 0%, transparent 70%);
    border-radius: 50%;
}

.min-vh-50 {
    min-height: 50vh;
    display: flex;
    align-items: center;
}

.ms-new-tag {
    display: inline-block;
    background: rgba(243, 120, 32, .12);
    color: var(--orange);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.ms-new-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 16px;
    line-height: 1.2;
}

.ms-new-desc {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.ms-new-timeline {
    position: relative;
    padding: 20px 0;
}

.ms-tl-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.ms-tl-header-left,
.ms-tl-header-right {
    flex: 1;
}

.ms-tl-header-left {
    text-align: right;
    padding-right: 30px;
}

.ms-tl-header-right {
    text-align: left;
    padding-left: 30px;
}

.ms-tl-header-center {
    width: 40px;
}


.ms-tl-pain {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 14px;
}

.ms-tl-pain .ms-tl-icon {
    flex-shrink: 0;
}

.ms-tl-pain .ms-tl-text {
    flex: 1;
    min-width: 0;
}

.ms-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.ms-badge-danger {
    background: rgba(243, 120, 32, .12);
    color: var(--orange);
    border: 2px solid rgba(243, 120, 32, .3);
    font-size: 1.3rem;
}

.ms-badge-logo {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, .1);
    padding: 10px 20px;
}

.ms-badge-logo img {
    height: 35px;
    width: auto;
    display: block;
}

.ms-tl-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gray);
    transform: translateX(-50%);
    border-radius: 3px;
    z-index: 1;
}

.ms-tl-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 30px;
    position: relative;
}

.ms-tl-item:last-child {
    margin-bottom: 0;
}

.ms-tl-left,
.ms-tl-right {
    flex: 1;
    padding: 0 20px;
}

.ms-tl-left {
    text-align: right;
}

.ms-tl-right {
    text-align: left;
}

.ms-tl-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    flex-shrink: 0;
    transition: all .4s;
}

.ms-tl-dot-inner {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--orange);
}

.ms-tl-item:hover .ms-tl-dot {
    border-color: var(--orange);
    transform: scale(1.2);
}

.ms-tl-pain,
.ms-tl-fix {
    display: flex;
    align-items: flex-start;
    background: #fff;
    gap: 14px;
    padding: 20px 24px;
    border-radius: 14px;
    transition: all .4s;
    border: 1px solid transparent;
}

.ms-tl-pain {
    background: rgba(243, 120, 32, .06);
    border-color: rgba(243, 120, 32, .25);
    border-left: 4px solid var(--orange);
}

.ms-tl-pain .ms-tl-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(243, 120, 32, .12);
    color: var(--orange-dark);
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.ms-tl-fix {
    background: rgba(0, 149, 217, .04);
    border-color: rgba(0, 149, 217, .25);
    border-left: 4px solid var(--blue);
}

.ms-tl-fix .ms-tl-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 149, 217, .12);
    color: var(--blue-dark);
    border: 2px solid var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.ms-tl-text strong {
    display: block;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 4px;
}

.ms-tl-pain .ms-tl-text strong {
    color: var(--ink);
}

.ms-tl-text p {
    margin: 0;
    font-size: .88rem;
    color: #888;
    line-height: 1.5;
}

.ms-tl-item:hover .ms-tl-pain {
    transform: translateX(-10px);
    box-shadow: 0 8px 25px rgba(243, 120, 32, .12);
    border-color: var(--orange);
}

.ms-tl-item:hover .ms-tl-fix {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 149, 217, .15);
    border-color: var(--blue);
}

/* Stats */
.stats-section {
    padding: 60px 0;
    background: var(--grad-accent);
    border-bottom: none;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(11, 43, 70, .15) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-section::after {
    content: '';
    position: absolute;
    right: 12%;
    bottom: -70px;
    width: 260px;
    height: 260px;
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 50% 50% 50% 4%;
    transform: rotate(-12deg);
    pointer-events: none;
}

.stats-arch-2 {
    position: absolute;
    right: 22%;
    bottom: -45px;
    width: 190px;
    height: 190px;
    border: 2px solid rgba(255, 255, 255, .4);
    border-radius: 50% 50% 50% 4%;
    transform: rotate(-12deg);
    pointer-events: none;
}

.stats-arch-3 {
    position: absolute;
    left: 8%;
    top: -50px;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255, 255, 255, .25);
    border-radius: 50% 50% 50% 4%;
    transform: rotate(168deg);
    pointer-events: none;
}

.stat-item {
    padding: 30px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    color: rgba(255, 255, 255, .9);
    font-size: 1rem;
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Icons - handled by Bootstrap Icons CDN */

/* Tentang Kami */
.tentang-grid-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.tentang-grid-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 12px;
}

.tentang-grid-sub {
    color: #666;
    font-size: 1.05rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.tg-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    border-radius: 14px;
    padding: 28px 24px;
    transition: all .4s;
    border: 1px solid rgba(0, 0, 0, .06);
}

.tg-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .1);
    border-color: var(--orange);
}

.tg-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(0, 149, 217, .12);
    color: var(--blue-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    transition: all .4s;
}

.tg-card:hover .tg-icon {
    background: rgba(243, 120, 32, .12);
    color: var(--orange-dark);
    transform: rotate(-5deg) scale(1.05);
}

.tg-text h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.tg-text p {
    margin: 0;
    font-size: .9rem;
    color: #888;
    line-height: 1.6;
}

/* Produk */
.produk-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.produk-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--navy);
}

.produk-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 32px;
    border-radius: 50px;
    border: 2px solid var(--navy);
    background: transparent;
    color: var(--navy);
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    transition: all .3s;
}

.filter-btn:hover {
    background: var(--navy);
    color: var(--white);
}

.filter-btn.active {
    background: var(--grad-accent);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(243, 120, 32, .35);
}

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

.produk-card {
    text-align: left;
    padding: 0;
    background: var(--white);
    border-radius: 14px;
    box-shadow: none;
    overflow: hidden;
    transition: all .35s ease;
}

.produk-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(11, 43, 70, .05);
}

.produk-img {
    width: 100%;
    height: 250px;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    margin-bottom: 0;
    background: linear-gradient(135deg, var(--gray-light), var(--gray));
    display: flex;
    align-items: center;
    justify-content: center;
}

.produk-card.hide {
    display: none;
}

.produk-card.show {
    animation: fadeUp .4s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.produk-img i {
    font-size: 3rem;
    color: #999;
    opacity: 0.5;
}

.produk-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

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

.produk-body {
    padding: 16px 18px 18px;
    text-align: left;
}

.produk-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.produk-card p {
    font-size: .82rem;
    color: #888;
    line-height: 1.5;
    margin-bottom: 10px;
}

.produk-link {
    display: inline-block;
    color: var(--blue);
    font-size: .82rem;
    font-weight: 600;
    text-decoration: none;
    transition: color .3s;
}

.produk-link:hover {
    color: var(--orange);
}

/* Portfolio */
.portfolio-section {
    padding: 80px 0;
    background: var(--white);
}

.portfolio-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--navy);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: linear-gradient(135deg, var(--gray), var(--gray-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-item i {
    font-size: 3rem;
    color: #999;
    opacity: 0.4;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity .4s;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay span {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, .9);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color .3s;
}

.lightbox-close:hover {
    color: var(--orange);
}

/* Testimonial */
.testimonial-section {
    padding: 80px 0;
    background: var(--gray-light);
}

.testimonial-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--navy);
}

.testimonial-swiper {
    padding-bottom: 50px;
    padding-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
}

.testimonial-swiper .swiper-slide {
    height: auto;
}

.testimonial-swiper .swiper-pagination-bullet {
    background: var(--gray);
    opacity: 1;
    width: 9px;
    height: 9px;
}

.testimonial-swiper .swiper-pagination-bullet-active {
    background: var(--orange);
    width: 24px;
    border-radius: 5px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all .4s;
    border: 1px solid transparent;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    border-color: var(--orange);
}

.testimonial-stars {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #FFC107;
}

.testimonial-quote {
    font-size: .95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.testimonial-name {
    font-weight: 700;
    color: var(--navy);
    font-size: .95rem;
}

.testimonial-role {
    font-size: .82rem;
    color: #888;
}

/* Shipping / Pengiriman - Redesigned */
.pengiriman-wrap-section {
    background: var(--navy);
    padding: 60px 0;
}

.pengiriman-section {
    padding: 60px 0;
    background: var(--white);
    border-radius: 24px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray);
}

.pengiriman-section::before {
    content: '';
    display: none;
}

.pengiriman-section::after {
    content: '';
    display: none;
}

.pengiriman-badge {
    display: inline-block;
    background: var(--orange);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.pengiriman-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 16px;
}

.pengiriman-title span {
    color: var(--orange);
}

.pengiriman-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    max-width: 500px;
}

.pengiriman-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.pengiriman-stat {
    text-align: center;
    padding: 24px 16px;
    background: var(--gray-light);
    border-radius: 16px;
    border: 1px solid var(--gray);
    transition: transform 0.3s, background 0.3s;
}

.pengiriman-stat:hover {
    transform: translateY(-5px);
    background: var(--white);
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.pengiriman-stat-icon {
    width: 56px;
    height: 56px;
    background: #111;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.4rem;
    color: var(--white);
}

.pengiriman-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.pengiriman-stat-label {
    font-size: .85rem;
    color: #666;
    font-weight: 500;
}

.pengiriman-features {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 32px;
}

.pengiriman-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-light);
    padding: 10px 14px;
    border-radius: 50px;
    color: #333;
    font-weight: 600;
    font-size: .8rem;
    border: 1px solid var(--gray);
    white-space: nowrap;
}

.pengiriman-feature i {
    font-size: 1.1rem;
    color: var(--orange);
}

@media (max-width: 480px) {
    .pengiriman-features {
        flex-wrap: wrap;
    }
}


.shipping-map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(0, 0, 0, .03) 0%, transparent 60%);
}

.indonesia-map {
    width: 172%;
    height: auto;
    position: relative;
    z-index: 1;
}

.map-island {
    fill: #999999;
    opacity: .15;
    transition: all .4s;
}

.shipping-map-wrapper:hover .map-island {
    fill: #999999;
    opacity: .30;
}

.map-dot {
    fill: #666;
    opacity: .4;
}

.map-dot-main {
    fill: var(--orange);
    opacity: .8;
}

@keyframes pulse {

    0%,
    100% {
        opacity: .5;
    }

    50% {
        opacity: 1;
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

.hub-logo-popup {
    opacity: 1;
    pointer-events: none;
}

#indonesiaMap text {
    font-family: 'Segoe UI', sans-serif;
}

.map-marker text {
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
}

.map-marker:hover text {
    opacity: 1;
}

.shipping-route {
    fill: none;
    stroke: #999;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 5 5;
    opacity: .35;
    animation: routeFlow 1.2s linear infinite;
}

@keyframes routeFlow {
    to {
        stroke-dashoffset: -20;
    }
}


.project-section {
    padding: 80px 0;
    background: var(--gray-light);
}

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

.project-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: none;
    transition: all .35s ease;
    border: 1px solid transparent;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(11, 43, 70, .12);
}

.project-thumb {
    width: 100%;
    height: 190px;
    overflow: hidden;
}

.project-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.project-card:hover .project-thumb img {
    transform: scale(1.08);
}

.project-card-body {
    padding: 16px 18px 20px;
    text-align: left;
}

.project-card-body h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.project-card-body p {
    font-size: .84rem;
    color: #888;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Modal Detail (white, Instagram-style split layout) ===== */
.project-modal .modal-dialog {
    max-width: 900px;
}

.project-modal .modal-content {
    border: none;
    border-radius: 18px;
    overflow: visible;
    background: var(--white);
}

.project-modal .modal-body {
    padding: 0;
    display: flex;
}

.project-modal-img {
    width: 45%;
    flex-shrink: 0;
    background: var(--gray-light);
    position: relative;
    overflow: hidden;
    border-radius: 18px 0 0 18px;
}

.project-modal-img img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(1);
    object-fit: cover;
    border-radius: inherit;
    transition: transform .5s cubic-bezier(.2, .8, .2, 1), object-fit .5s ease;
}

@media (min-width: 992px) {
    .project-modal-img.zoomed {
        overflow: visible;
    }

    .project-modal-img.zoomed img {
        position: absolute;
        top: 50%;
        left: 50%;
        width: auto;
        height: auto;
        max-width: 160%;
        max-height: 160%;
        transform: translate(-50%, -50%) scale(1.15);
        object-fit: contain;
        background: transparent;
        border-radius: 14px;
        box-shadow: 0 25px 60px rgba(11, 43, 70, .35);
        z-index: 20;
    }
}

@media (max-width: 767.98px) {
    .project-modal .modal-body {
        flex-direction: column;
    }

    .project-modal-img,
    .project-modal-info {
        width: 100%;
    }

    .project-modal-img {
        border-radius: 18px 18px 0 0;
        min-height: 300px;
        overflow: hidden !important;
    }

    .project-modal-info {
        border-radius: 0 0 18px 18px;
    }

    .project-modal-img img,
    .project-modal-img.zoomed img {
        position: absolute;
        inset: 0;
        top: 0;
        left: 0;
        transform: none !important;
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
        background: transparent;
        box-shadow: none;
        z-index: auto;
        transition: none;
    }
}


@media (max-width: 575.98px) {
    .project-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .project-hero h1 {
        font-size: 1.8rem;
    }
}



.project-modal-info {
    width: 55%;
    padding: 36px 40px;
    overflow-y: auto;
    max-height: 80vh;
    background: var(--white);
    border-radius: 0 18px 18px 0;
}

.project-modal .modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 2px 8px rgba(11, 43, 70, .2);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--navy);
    z-index: 5;
    cursor: pointer;
}

.project-modal-info h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
}

.project-modal-info .project-desc {
    color: #555;
    font-size: .92rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.project-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--gray);
}

.project-detail-list li {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid var(--gray);
    font-size: .88rem;
}

.project-detail-list li span:first-child {
    color: #888;
    font-weight: 600;
}

.project-detail-list li span:last-child {
    color: var(--navy);
    font-weight: 700;
    text-align: right;
}

.project-modal-cta {
    margin-top: 28px;
    text-align: center;
}

@media (max-width: 767.98px) {
    .project-modal .modal-body {
        flex-direction: column;
    }

    .project-modal-img,
    .project-modal-info {
        width: 100%;
    }

    .project-modal-img {
        border-radius: 18px 18px 0 0;
    }

    .project-modal-info {
        border-radius: 0 0 18px 18px;
    }

    .project-modal-img img {
        min-height: 240px;
    }

    .project-modal-img:hover {
        overflow: hidden;
    }

    .project-modal-img:hover img {
        transform: none;
        object-fit: cover;
    }
}


/* ===== Produk Page Hero ===== */
.produk-page-hero {
    padding: 60px 0 40px;
    background: var(--white);
    text-align: center;
}

.produk-page-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
}

.produk-page-hero p {
    font-size: 1rem;
    color: #666;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== Filter ===== */
.produk-filter-section {
    background: var(--white);
    padding: 24px 0;
    position: sticky;
    top: 100px;
    z-index: 100;
    border-bottom: 1px solid var(--gray);
}

.produk-filter-wrap {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.produk-filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 2px solid var(--gray);
    background: var(--white);
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

.produk-filter-btn:hover,
.produk-filter-btn.active {
    border-color: var(--navy);
    background: var(--navy);
    color: var(--white);
}

/* ===== Grid ===== */
.produk-page-section {
    padding: 60px 0 80px;
    background: var(--gray-light);
}

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

.produk-page-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(11, 43, 70, 0.07);
}

.produk-page-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px rgba(11, 43, 70, 0.14);
}

.produk-page-card.hidden { display: none; }

.produk-page-card.selected {
    outline: 3px solid var(--blue-accent);
    outline-offset: 3px;
    box-shadow: 0 0 0 6px rgba(0, 120, 200, 0.12);
}

.produk-page-thumb {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.produk-page-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.produk-page-card:hover .produk-page-thumb img { transform: scale(1.06); }

.produk-page-body { padding: 16px 18px 20px; }

.produk-page-body .kategori-tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--blue-accent);
    margin-bottom: 6px;
}

.produk-page-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0;
}

/* ===== Modal ===== */
#produkPageModal .modal-dialog { max-width: 1000px; }

#produkPageModal .modal-content {
    border: none;
    border-radius: 18px;
    overflow: visible;
    background: var(--white);
}

#produkPageModal .modal-close-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 2px 8px rgba(11, 43, 70, 0.2);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--navy);
    z-index: 10;
    cursor: pointer;
}

.produk-page-modal-body {
    display: flex;
    padding: 0;
}

.produk-page-modal-left {
    width: 50%;
    flex-shrink: 0;
    background: var(--gray-light);
    position: relative;
    overflow: hidden;
    border-radius: 18px 0 0 18px;
}

.produk-page-modal-left img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(1);
    object-fit: cover;
    border-radius: inherit;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (min-width: 992px) {
    .produk-page-modal-left.zoomed { overflow: visible; }

    .produk-page-modal-left.zoomed img {
        position: absolute;
        top: 50%;
        left: 50%;
        width: auto;
        height: auto;
        max-width: 160%;
        max-height: 160%;
        transform: translate(-50%, -50%) scale(1.15);
        object-fit: contain;
        background: transparent;
        border-radius: 14px;
        box-shadow: 0 25px 60px rgba(11, 43, 70, 0.35);
        z-index: 20;
    }
}

.produk-page-modal-body {
    display: flex;
    padding: 0;
}

.produk-page-modal-right {
    width: 50%;
    padding: 36px 40px;
    max-height: 80vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: 0 18px 18px 0;
    /* Clip hanya konten kanan */
    clip-path: inset(0 0 0 0 round 0 18px 18px 0);
}

.produk-page-modal-right .modal-kategori {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue-accent);
    margin-bottom: 8px;
}

.produk-page-modal-right h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}

.produk-page-modal-right .modal-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.75;
    margin-bottom: 20px;
}

/* ===== Badges ===== */
.modal-badge-group { margin-bottom: 18px; }

.modal-badge-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.modal-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    margin: 3px 3px 3px 0;
}

.modal-badge.cocok    { background: #e8f4fd; color: var(--blue-accent); }
.modal-badge.material { background: #f0f4f8; color: var(--navy); }

/* ===== Contoh Produksi ===== */
.modal-contoh-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy);
    margin: 20px 0 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gray);
}

.modal-contoh-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.modal-contoh-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.modal-contoh-item p {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--navy);
    margin: 6px 0 2px;
}

.modal-contoh-item span {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.5;
}

.produk-page-modal-cta { margin-top: 24px; }

/* ===== Sticky Label ===== */
.modal-img-sticky-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 10px 16px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: 5;
}

.modal-img-sticky-label.visible {
    opacity: 1;
    transform: translateY(0);
}

.modal-img-sticky-cat {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--blue-accent);
    margin-bottom: 2px;
}

.modal-img-sticky-nama {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--navy);
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    .produk-page-grid      { grid-template-columns: repeat(2, 1fr); }
    .produk-filter-section { top: 90px; }
}

@media (max-width: 767.98px) {
    .produk-page-hero h1   { font-size: 2rem; }
    .produk-page-grid      { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .produk-filter-section { top: 0px; }

    #produkPageModal .modal-dialog {
        margin: 0;
        display: flex;
        align-items: flex-end;
        min-height: 100vh;
        padding: 30px 0 0 0;
    }

    #produkPageModal .modal-content {
        border-radius: 18px 18px 0 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        max-height: calc(100vh - 30px);
        width: 100%;
    }

    .produk-page-modal-body {
        flex-direction: column;
        overflow: hidden;
        flex: 1;
    }

    .produk-page-modal-left {
        width: 100%;
        border-radius: 0;
        min-height: calc(100vw * 0.75);
        max-height: 60vh;
        overflow: hidden !important;
    }

    .produk-page-modal-left img,
    .produk-page-modal-left.zoomed img {
        position: absolute;
        inset: 0;
        top: 0;
        left: 0;
        transform: none !important;
        width: 100%;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        object-fit: cover;
        box-shadow: none;
        z-index: auto;
        transition: none;
    }

    .produk-page-modal-right {
        width: 100%;
        padding: 24px 20px;
        max-height: unset;
        overflow-y: auto;
        flex: 1;
        border-radius: 0;
    }
    .produk-page-modal-cta {
        margin-top: 24px;
        padding-bottom: 24px;
    }

   .produk-filter-section {
        position: relative;
    }

    .produk-filter-wrap {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 4px;
        padding-right: 40px; /* ruang untuk arrow */
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .produk-filter-wrap::-webkit-scrollbar { display: none; }

    .produk-filter-btn { flex-shrink: 0; }

    /* Arrow indicator */
    .produk-filter-section::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        bottom: 0;
        width: 60px;
        background: linear-gradient(to right, transparent, var(--white) 70%);
        pointer-events: none;
    }

    .produk-filter-arrow {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--navy);
        font-size: 0.8rem;
        pointer-events: none;
        z-index: 2;
    }
}


/* CTA */
.cta-section {
    background: var(--gray-light);
    padding: 0px 0 90px;   /* kasih ruang di bawah buat card nongol */
    z-index: 1;
}

.cta-card {
    position: relative; 
    z-index: 2;
    background: var(--white);
    border-radius: 28px;
    padding: 60px 50px;
    max-width: 860px;
    margin: 0 auto;
    box-shadow: 0 25px 60px rgba(11, 43, 70, .15);
}

.cta-card h2 {
    color: var(--ink);
    font-size: 2.1rem;
}

.text-blue-accent {
    color: var(--blue);
}

.cta-card p {
    color: #666;
}

.cta-card .btn-accent {
    animation: glow 2s ease-in-out infinite alternate;
    margin-bottom: 12px;
}
.cta-card .btn-outline-white {
    margin-bottom: 12px;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(243, 120, 32, .4);
    }

    to {
        box-shadow: 0 0 25px rgba(243, 120, 32, .8);
    }
}

/* Footer */
footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, .75);
    padding: 140px 0 20px;
    margin-top: -180px; 
    position: relative; 
    z-index: 0;
}

footer a {
    color: #fff;
    text-decoration: none;
    transition: color .3s;
}

footer a:hover {
    color: var(--orange-light);
}

footer h6 {
    letter-spacing: 1px;
}

footer p {
    margin-bottom: 8px;
}

/* Responsive for tabs */ 
@media (max-width: 991.98px) {
    /* Panel menu mobile: bener-bener lepas (position absolute), lebar sama kayak navbar floating */
    #navbarNav {
        position: absolute;
        top: calc(100% + 12px);
        left: 50%;
        transform: translateX(-50%);
        width: calc(100vw - 45px);
        max-width: 1320px;
        background: var(--white);
        border-radius: 16px;
        box-shadow: 0 20px 50px rgba(11, 43, 70, .25);
        border: 1px solid rgba(0, 88, 125, 0.25);
        max-height: 80vh;
        overflow-y: auto;
        margin: 0;
        padding: 16px 16px 20px;
        z-index: 2000;
    }

    .navbar .nav-link,
    .navbar.navbar-floating .nav-link {
        color: var(--navy) !important;
    }

    .navbar .nav-link:hover,
    .navbar.navbar-floating .nav-link:hover {
        color: var(--navy) !important;
    }

    /* Arrow di menu yang punya submenu (Produk, Industri) */
    .mega-caret {
        display: inline-block;
        margin-left: auto;
        transition: transform .25s ease;
    }

    .dropdown-toggle-mega {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    .dropdown-mega.mega-open .mega-caret {
        transform: rotate(180deg);
    }

    /* Submenu collapsed by default, expand saat parent diklik */
    .mega-menu {
        position: static;
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        max-width: 100%;
        border: none;
        box-shadow: none;
        border-radius: 12px;
        background: var(--gray-light);
        padding: 0 10px;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease, padding .35s ease, margin .35s ease;
    }

    .dropdown-mega.mega-open .mega-menu {
        max-height: 2000px;
        padding: 16px 10px;
        margin-top: 8px;
        margin-bottom: 4px;
    }

    .dropdown-mega:hover .mega-menu {
        transform: none;
    }

    .mega-menu-body {
        flex-direction: column;
        gap: 0;
    }

    .mega-menu-grid {
        flex-direction: column;
        gap: 14px;
        padding: 5px 15px 0px 15px;
    }

    .mega-menu-col {
        gap: 14px;
    }

    .mega-preview {
        display: none;
    }

    .mega-col-caret {
        display: inline-block;
    }

    .mega-col-title {
        cursor: pointer;
        user-select: none;
        font-size: .8rem;
        text-transform: uppercase;
        letter-spacing: .4px;
        color: var(--navy);
    }

    .mega-col.active .mega-col-caret {
        transform: rotate(180deg);
    }

    .mega-col-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
    }

    .mega-col.active .mega-col-links {
        max-height: 600px;
    }

    .mega-col a {
        font-size: .95rem;
        color: #555;
        padding: 8px 10px;
        margin: 0px;
        border-radius: 8px;
    }

    .mega-col a:hover,
    .mega-col a:active {
        color: var(--blue);
        background: rgba(0, 149, 217, .08);
    }

    .btn-nav-cta {
        display: flex;
        width: max-content;
        margin: 12px auto 0;
    }

    .mega-menu-footer {
        border-top-color: rgba(11, 43, 70, .12);
        text-align: left;
        padding: 15px 0px 10px 10px;
    }

    .industri-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .industri-item {
        flex-direction: row;
        text-align: left;
        padding: 12px;
        gap: 12px;
        border: 1px solid rgba(11, 43, 70, .1);
        border-radius: 10px;
    }

    .industri-item span {
        color: var(--navy);
        font-size: .78rem;
        line-height: 1.3;
    }

    .industri-icon {
        width: 40px;
        height: 40px;
        font-size: 1.05rem;
        flex-shrink: 0;
    }

    .hero {
        padding: 80px 0 60px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero .lead {
        max-width: 100%;
    }

    .hero-content .btn {
        display: block;
        width: 100%;
        margin-bottom: 12px;
    }

    .hero-content .btn:last-child {
        margin-bottom: 0;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image-wrapper {
        transform: none;
        margin-top: 40px;
    }

    .hero-image-wrapper img {
        height: 300px;
    }

    .hero-floating-card {
        display: none;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .shipping-title {
        font-size: 2rem;
    }

    .shipping-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .shipping-feature {
        flex: 1 1 45%;
        font-size: .9rem;
    }

    .shipping-feature i {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .shipping-map-wrapper {
        padding: 20px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .ms-tl-item {
        flex-direction: row;
        align-items: stretch;
        gap: 4px;
    }

    .ms-tl-icon,
    .ms-tl-pain .ms-tl-icon,
    .ms-tl-fix .ms-tl-icon {
        width: 34px;
        height: 34px;
        font-size: 1rem;
        border-radius: 8px;
    }

    .ms-tl-icon {
        margin-bottom: 10px;
    }

    .ms-tl-left .ms-tl-icon,
    .ms-tl-right .ms-tl-icon {
        border-width: 1px;
    }

    .ms-tl-left,
    .ms-tl-right {
        padding: 0 8px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .ms-tl-pain,
    .ms-tl-fix {
        flex-direction: column;
        align-items: flex-start;
        gap:4px;
    }

    .ms-tl-text {
        text-align: left;
    }

    .ms-tl-item:hover .ms-tl-pain,
    .ms-tl-item:hover .ms-tl-fix {
        transform: none;
    }
    

    .ms-tl-header {
        gap: 8px;
    }

    .ms-badge-danger {

        font-size: 1rem !important;
    }

    .ms-badge-logo {
        padding: 6px 12px !important;
    }

    .ms-badge-logo img {
        height: 35px !important;
    }

    .ms-tl-left,
    .ms-tl-right {
        text-align: center !important;
    }

    .ms-tl-header-left,
    .ms-tl-header-right {
        text-align: center !important;
        padding: 0 !important;
    }

    .ms-new-left{
        margin-bottom: 30px;
    }

    .ms-tl-line {
        display: none;
    }

    .ms-tl-dot {
        display: none;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .produk-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    footer .col-md-4 {
        margin-bottom: 30px;
    }
}

/* Extra small mobile devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    /* 1. Padding bawah menu mobile */
    #navbarNav {
        padding-bottom: 20px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .produk-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .marquee-item {
        margin: 0 9px;
    }
}



/* ===== Project Page ===== */
.project-hero {
    background: var(--white);
    padding: 60px 0 50px;
}

.project-hero h1 {
    color: var(--navy);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.project-hero p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 480px;
}

.project-hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.project-hero-gallery {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    height: 100%;
}

.project-hero-gallery-item {
    position: relative;
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 15px 30px rgba(11, 43, 70, .12);
}

.project-hero-gallery-item:nth-child(2) {
    margin-top: 30px;
}

.project-hero-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-hero-gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(11, 43, 70, .75) 100%);
}

.project-hero-tag {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    background: rgba(255, 255, 255, .95);
    color: var(--navy);
    font-size: .72rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
}

@media (max-width: 991.98px) {
    .project-hero-gallery {
        margin-top: 40px;
    }

    .project-hero-gallery-item {
        height: 280px;
    }
}

@media (max-width: 767.98px) {
    .project-hero {
        padding: 40px 0 40px;
        text-align: left;
    }

    .project-hero h1 {
        font-size: 2rem;
    }

    .project-hero p {
        margin-left: 0;
        margin-right: 0;
    }

    .project-hero-btns {
        justify-content: left;
    }

    .project-hero-gallery {
            display: flex;
            margin-top: 32px;
            gap: 0;
        }

        .project-hero-gallery-item {
            height: 200px;
            border-radius: 12px;
            margin-right: -30px;
        }

        .project-hero-gallery-item:last-child {
            margin-right: 0;
        }

        .project-hero-gallery-item:nth-child(1) { z-index: 1; }
        .project-hero-gallery-item:nth-child(2) { z-index: 2; margin-top: 20px; }
        .project-hero-gallery-item:nth-child(3) { z-index: 3; }
    }


/* Portfolio hover overlay - desktop only */
/* ===== Portfolio Modal ===== */
#portfolioModal .modal-dialog {
    max-width: 780px;
}

#portfolioModal .modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
}

.portfolio-modal-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.portfolio-modal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-modal-img:hover img {
    transform: scale(1.04);
}

.btn-outline-navy {
    border: 2px solid var(--navy);
    color: var(--navy);
    font-weight: 700;
    padding: 12px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-navy:hover {
    background: var(--navy);
    color: var(--white);
}

/* Overlay panel */
.portfolio-modal-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    max-width: 320px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 12px 40px rgba(11, 43, 70, 0.25);
    transform: translateX(calc(100% + 30px));
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease;
    pointer-events: none;
}

.portfolio-modal-img:hover .portfolio-modal-overlay {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}

.portfolio-modal-overlay-inner h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.portfolio-modal-overlay-inner p {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 14px;
}

.portfolio-modal-detail {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #eee;
}

.portfolio-modal-detail li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.78rem;
}

.portfolio-modal-detail li span:first-child {
    color: #999;
    font-weight: 600;
}

.portfolio-modal-detail li span:last-child {
    color: var(--navy);
    font-weight: 700;
    text-align: right;
}

@media (max-width: 767.98px) {
    .portfolio-modal-img {
        aspect-ratio: unset;
        min-height: 260px;
        border-radius: 0;
    }

    .portfolio-modal-overlay {
        position: static;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: auto;
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
        background: var(--white);
        padding: 24px 20px;
    }

    #portfolioModal .modal-content {
        border-radius: 18px;
        overflow: hidden;
    }

    .portfolio-modal-overlay-inner h4 {
        font-size: 1.1rem;
    }
}

/* ===== Produk Modal ===== */

.produk-card {
    cursor: pointer;
}
#produkModal .modal-dialog {
    max-width: 600px;
}

#produkModal .modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
}

#produkModal .modal-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(11, 43, 70, 0.2);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--navy);
    z-index: 10;
    cursor: pointer;
}

.produk-modal-img {
    width: 100%;
    overflow: hidden;
}

.produk-modal-img img {
    width: 100%;
    height: 100%;
    display: block;
    background: #f8f8f8;
}

.produk-modal-info {
    padding: 22px 24px 28px;
    background: var(--white);
}

.produk-modal-info h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.produk-modal-info p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}



#industryProdukModal .modal-dialog {
    max-width: 480px;
}

#industryProdukModal .modal-content {
    border: none;
    border-radius: 18px;
    overflow: hidden;
}

#industryProdukModal .modal-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 8px rgba(11, 43, 70, 0.2);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--navy);
    z-index: 10;
    cursor: pointer;
}

#industryProdukModal .modal-dialog {
    max-width: 600px;
}

.industri-produk-card {
    cursor: pointer;
}

.floating-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.floating-wa:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37,211,102,0.5);
    color: #fff;
}