/* ==========================================================================
   Company Profile — Public Site Styles
   Header mengikuti design/navbar.jpeg: dua bar navy (top bar + navbar).
   Bar full-width, konten dibatasi 1140px (space kiri-kanan di dalam bar).
   ========================================================================== */

:root {
    --vv-navy-900: #1B2C6E;
    --vv-navy-800: #253B94;
    --vv-navy-700: #2E4AAE;
    --vv-cyan: #E0B424;
    --vv-cyan-dark: #C79A15;
    --vv-orange: #E0B424;
    --vv-orange-dark: #C79A15;
    --vv-danger: #E0B424;
    --vv-border: rgba(255, 255, 255, 0.12);
    --vv-muted: rgba(255, 255, 255, 0.64);
}

body {
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background: #f4f6f9;
    color: #0b1d2f;
}

a {
    text-decoration: none;
}

/* Container terpusat — bar full-width, konten dibatasi di tengah */
.vv-container {
    width: 100%;
    max-width: 1140px;
    margin-inline: auto;
    padding-inline: 1.5rem;
}

/* ==========================================================================
   Header
   ========================================================================== */

.vv-header {
    position: sticky;
    top: 0;
    z-index: 1030;
}

.vv-header.is-scrolled {
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

/* --------------------------------------------------------------------------
   Top bar
   -------------------------------------------------------------------------- */

.vv-topbar {
    background: var(--vv-navy-900);
    color: #fff;
    font-size: 0.78rem;
    border-bottom: 1px solid var(--vv-border);
}

.vv-topbar-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-height: 40px;
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
    flex-wrap: wrap;
}

.vv-topbar-info {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.vv-topbar-info li {
    display: flex;
    align-items: center;
    padding: 0 0.85rem;
    border-right: 1px solid var(--vv-border);
    line-height: 1.2;
}

.vv-topbar-info li:first-child {
    padding-left: 0;
}

.vv-topbar-info li:last-child {
    border-right: 0;
}

.vv-topbar-info a {
    color: #fff;
}

.vv-topbar-info a:hover {
    color: var(--vv-cyan);
}

.vv-topbar .vv-label {
    font-weight: 800;
    letter-spacing: 0.03em;
    margin-right: 0.35rem;
}

.vv-topbar .vv-label--info {
    color: var(--vv-cyan);
}

.vv-topbar .vv-label--emergency {
    color: var(--vv-orange);
}

/* Search pill (dengan tombol Search di dalam) */
.vv-search {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: auto;
}

.vv-search-icon {
    position: absolute;
    left: 0.85rem;
    color: var(--vv-cyan);
    font-size: 1rem;
    pointer-events: none;
}

.vv-search-input {
    width: 210px;
    border: 1px solid var(--vv-border);
    background: #1E2F73;
    color: #fff;
    font-size: 0.78rem;
    padding: 0.4rem 4.6rem 0.4rem 2.35rem;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s ease, width 0.2s ease;
}

.vv-search-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

.vv-search-input:focus {
    border-color: var(--vv-cyan);
    width: 250px;
}

.vv-search-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    border: 0;
    background: var(--vv-cyan);
    color: #1B2C6E;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0 0.85rem;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.vv-search-btn:hover {
    background: var(--vv-cyan-dark);
}

/* Tombol quote (pill oranye) */
.vv-btn-quote {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--vv-orange);
    color: #1B2C6E;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.vv-btn-quote:hover {
    background: var(--vv-orange-dark);
    color: #1B2C6E;
    transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   Main navbar
   -------------------------------------------------------------------------- */

.vv-navbar {
    background: var(--vv-navy-800);
}

.vv-navbar-inner {
    display: flex;
    align-items: center;
    min-height: 54px;
    gap: 1rem;
}

/* Brand / logo (teks berdampingan: bagian 1 cyan, bagian 2 putih) */
.vv-brand {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0;
    flex-shrink: 0;
}

.vv-brand img {
    height: 32px;
    width: auto;
}

.vv-brand-text {
    display: inline-flex;
    align-items: baseline;
    font-weight: 900;
    font-size: 1.12rem;
    letter-spacing: 0.02em;
    line-height: 1;
    white-space: nowrap;
}

.vv-brand-1 {
    color: var(--vv-cyan);
    margin-right: 0.15rem;
}

.vv-brand-2 {
    color: #fff;
}

/* Toggler (mobile) */
.vv-toggler {
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--vv-border);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    width: 40px;
    height: 34px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.vv-toggler:hover {
    background: var(--vv-navy-700);
}

/* Menu list */
.vv-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vv-item {
    position: relative;
}

.vv-item-row {
    display: flex;
    align-items: stretch;
}

.vv-link {
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.73rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.7rem 0.85rem;
    transition: color 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.vv-link:hover,
.vv-link:focus {
    color: var(--vv-cyan);
    background: rgba(255, 255, 255, 0.05);
}

.vv-item.active > .vv-item-row > .vv-link {
    color: var(--vv-cyan);
    box-shadow: inset 0 -3px 0 var(--vv-cyan);
}

.vv-caret {
    font-size: 0.6rem;
    margin-left: 0.35rem;
    transition: transform 0.2s ease;
}

/* Submenu toggle (mobile only) */
.vv-sub-toggle {
    display: none;
    background: transparent;
    border: 0;
    border-left: 1px solid var(--vv-border);
    color: #fff;
    width: 46px;
    cursor: pointer;
    font-size: 0.85rem;
}

.vv-sub-toggle[aria-expanded="true"] .bi-chevron-down {
    transform: rotate(180deg);
}

/* Dropdown panel (navy gelap, item putih bold — sesuai design) */
.vv-dropdown {
    list-style: none;
    margin: 0;
    padding: 0;
    background: var(--vv-navy-700);
    min-width: 260px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
}

.vv-dropdown-link {
    display: block;
    color: #fff;
    font-weight: 700;
    font-size: 0.78rem;
    padding: 0.7rem 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.15s ease, background 0.15s ease, padding-left 0.15s ease;
}

.vv-dropdown li:last-child > .vv-dropdown-link {
    border-bottom: 0;
}

.vv-dropdown-link:hover,
.vv-dropdown-link:focus,
.vv-dropdown-link.active {
    color: var(--vv-cyan);
    background: rgba(255, 255, 255, 0.05);
    padding-left: 1.35rem;
}

/* ==========================================================================
   Desktop (>= 992px): menu horizontal + dropdown saat hover
   ========================================================================== */

@media (min-width: 992px) {
    .vv-collapse {
        display: flex !important;
        flex: 1;
        justify-content: flex-end;
    }

    /* Blok kontak mobile hanya tampil di drawer mobile */
    .vv-mobile-extras {
        display: none !important;
    }

    .vv-menu {
        display: flex;
        align-items: stretch;
    }

    .vv-item-row {
        display: block;
    }

    .vv-link {
        height: 54px;
    }

    .vv-sub-toggle {
        display: none !important;
    }

    .vv-dropdown {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1040;
    }

    .vv-item:hover > .vv-dropdown,
    .vv-item:focus-within > .vv-dropdown {
        display: block !important;
    }

    .vv-topbar .vv-search {
        margin-left: 1rem;
    }
}

/* ==========================================================================
   Mobile (< 992px): drawer + submenu akordeon, extras di ATAS menu
   ========================================================================== */

@media (max-width: 991.98px) {
    .vv-navbar-inner {
        min-height: 50px;
    }

    .vv-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--vv-navy-800);
        border-top: 1px solid var(--vv-border);
        max-height: calc(100vh - 50px);
        overflow-y: auto;
        box-shadow: 0 14px 24px rgba(0, 0, 0, 0.4);
        padding: 0;
    }

    .vv-item {
        border-bottom: 1px solid var(--vv-border);
    }

    .vv-link {
        flex: 1;
        padding: 0.9rem 1rem;
        border-radius: 0;
        text-transform: none;
        font-size: 0.95rem;
        letter-spacing: 0.02em;
    }

    .vv-item.active > .vv-item-row > .vv-link {
        box-shadow: inset 3px 0 0 var(--vv-cyan);
    }

    .vv-sub-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .vv-dropdown {
        background: var(--vv-navy-900);
    }

    .vv-dropdown-link {
        padding: 0.72rem 1.1rem 0.72rem 2rem;
        font-size: 0.88rem;
    }

    .vv-dropdown-link:hover,
    .vv-dropdown-link:focus {
        padding-left: 2.25rem;
    }

    /* Kontak & CTA di dalam drawer (di atas menu) */
    .vv-mobile-extras {
        display: flex;
        flex-direction: column;
        gap: 0.85rem;
        padding: 1rem 1.25rem 1.1rem;
        background: var(--vv-navy-900);
        border-bottom: 1px solid var(--vv-border);
    }

    .vv-mobile-portal {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        color: var(--vv-cyan);
        font-weight: 800;
        font-size: 0.85rem;
    }

    .vv-mobile-contact {
        display: flex;
        align-items: center;
        gap: 0.65rem;
    }

    .vv-ic-info {
        color: var(--vv-cyan);
        font-size: 1.1rem;
    }

    .vv-ic-danger {
        color: var(--vv-orange);
        font-size: 1.1rem;
    }

    .vv-mobile-contact small {
        display: block;
        font-size: 0.65rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.06em;
        color: var(--vv-muted);
        line-height: 1.1;
    }

    .vv-mobile-contact a {
        color: #fff;
        font-weight: 700;
        font-size: 0.95rem;
    }

    .vv-search-mini {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        border: 1px solid var(--vv-border);
        background: #1E2F73;
        border-radius: 4px;
        padding: 0.45rem 0.8rem;
        color: var(--vv-muted);
    }

    .vv-search-mini input {
        border: 0;
        outline: 0;
        background: transparent;
        width: 100%;
        font-size: 0.82rem;
        color: #fff;
    }

    .vv-search-mini input::placeholder {
        color: rgba(255, 255, 255, 0.55);
    }

    .vv-btn-quote--block {
        width: 100%;
    }
}

/* ==========================================================================
   Hero & Footer
   ========================================================================== */

.vv-hero {
    background: linear-gradient(135deg, var(--vv-navy-800) 0%, #33479F 60%, var(--vv-cyan-dark) 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.vv-hero h1 {
    font-weight: 800;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    letter-spacing: -0.02em;
}

.vv-hero p {
    opacity: 0.85;
    max-width: 640px;
    margin: 0 auto;
}

.vv-footer {
    background: var(--vv-navy-900);
    color: rgba(255, 255, 255, 0.75);
    padding: 2.5rem 0;
    font-size: 0.85rem;
}

.vv-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.vv-footer .vv-brand-text {
    font-size: 1.05rem;
}

/* Ikon sosmed / kontak di footer */
.vv-footer-socials {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.vv-footer-social {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.vv-footer-social:hover {
    background: var(--vv-cyan, #12B5CB);
    border-color: var(--vv-cyan, #12B5CB);
    color: #fff;
    transform: translateY(-2px);
}

/* ==========================================================================
   Hero Slider
   ========================================================================== */

.vv-hero-slider {
    position: relative;
    background: #0e1f54;
    overflow: hidden;
}

.vv-hero-track {
    position: relative;
    display: flex;
    width: 100%;
    will-change: transform;
    transition: transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Generic horizontal slider track (reuse untuk industries slider) */
.vv-slider-track {
    position: relative;
    display: flex;
    width: 100%;
    will-change: transform;
    transition: transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.vv-slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.vv-slide.is-active {
    pointer-events: auto;
}

.vv-hero-slide {
    flex: 0 0 100%;
    min-width: 100%;
    display: flex;
    align-items: center;
    pointer-events: none;
    background: radial-gradient(circle at 80% 20%, #33479F 0%, #1B2C6E 45%, #16245a 100%);
}

.vv-hero-slide.is-active {
    pointer-events: auto;
}
.vv-hero-slide.is-active {
    pointer-events: auto;
}

.vv-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
    min-height: 520px;
    padding-block: 3.5rem;
    width: 100%;
}

/* 1 gambar (samping kiri) — container hanya untuk posisi, tanpa frame */
.vv-hero-images {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
}

/* Gambar hero — mengisi kolom kiri (lebih besar), rasio natural */
.vv-hero-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

/* Animasi gambar: fade-in saat slide aktif + efek naik-turun (floating) */
@keyframes vv-hero-img-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes vv-hero-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-18px); }
}

.vv-hero-slide.is-active .vv-hero-img {
    animation: vv-hero-img-in 0.8s ease both,
               vv-hero-float 5s ease-in-out infinite;
}

/* Konten teks kanan — vertikal di tengah (karena grid stretch) */
.vv-hero-content {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vv-hero-title {
    font-size: clamp(1.9rem, 3.6vw, 2.8rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.vv-hero-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.8rem;
    max-width: 480px;
}

.vv-hero-actions {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.vv-hero-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.85rem;
    transition: transform 0.2s ease, filter 0.2s ease, background 0.2s ease;
}

.vv-hero-btn--gold {
    background: var(--vv-cyan);
    color: #1B2C6E;
}

.vv-hero-btn--gold:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
    color: #1B2C6E;
}

.vv-hero-btn--ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.vv-hero-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Navigasi */
.vv-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.2rem;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.2s ease;
}

.vv-hero-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.vv-hero-arrow--prev { left: 1rem; }
.vv-hero-arrow--next { right: 1rem; }

.vv-hero-dots {
    position: absolute;
    bottom: 1.4rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 5;
}

.vv-hero-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    appearance: none;
    aspect-ratio: 1;
    min-width: 0;
    min-height: 0;
    flex-shrink: 0;
    line-height: 1;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.vv-hero-dot.is-active {
    background: var(--vv-cyan);
    transform: scale(1.3);
}

/* Fallback hero (tanpa slide) */
.vv-hero--fallback {
    background: linear-gradient(135deg, #1B2C6E 0%, #33479F 60%, var(--vv-cyan-dark) 100%);
    color: #fff;
    padding: 5rem 0;
    text-align: center;
}

.vv-hero--fallback p {
    opacity: 0.85;
    max-width: 640px;
    margin: 0.5rem auto 0;
}

/* Responsive slider */
@media (max-width: 991.98px) {
    .vv-hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        min-height: auto;
        padding-block: 2.5rem;
    }

    .vv-hero-images {
        order: 2;
    }

    .vv-hero-content {
        order: 1;
        text-align: center;
    }

    .vv-hero-actions {
        justify-content: center;
    }

    .vv-hero-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 575.98px) {
    .vv-hero-title {
        font-size: 1.6rem;
    }

    .vv-hero-btn {
        padding: 0.6rem 1.3rem;
        font-size: 0.78rem;
    }
}

/* ==========================================================================
   Products page
   ========================================================================== */

.vv-page-head {
    background: linear-gradient(135deg, #1B2C6E 0%, #33479F 100%);
    color: #fff;
    padding: 3rem 0 2.5rem;
    text-align: center;
}

.vv-page-head h1 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.vv-page-head p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.vv-products-section {
    padding: 3rem 0;
}

.vv-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.vv-product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e3eaf2;
    box-shadow: 0 4px 14px rgba(16, 42, 67, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.vv-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(16, 42, 67, 0.14);
}

.vv-product-card-img {
    aspect-ratio: 4 / 3;
    background: #f7fafc;
    overflow: hidden;
}

.vv-product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vv-product-card-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #b8c5d6;
    font-size: 2.5rem;
}

.vv-product-card-body {
    padding: 1.2rem;
}

.vv-product-card-body h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #16324f;
    margin-bottom: 0.4rem;
}

.vv-product-card-body p {
    font-size: 0.85rem;
    color: #51677d;
    margin-bottom: 0.8rem;
}

.vv-product-card-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: #253B94;
}

.vv-empty {
    text-align: center;
    padding: 3rem 0;
    color: #889;
}

.vv-empty i {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
    opacity: 0.4;
}

/* Product detail */
.vv-product-detail {
    padding: 2rem 0 3rem;
}

.vv-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #889;
    margin-bottom: 1.5rem;
}

.vv-breadcrumb a {
    color: #253B94;
    font-weight: 600;
}

.vv-breadcrumb i {
    font-size: 0.6rem;
}

.vv-product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Section head untuk section landing (services, dsb.) */
.vv-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.vv-section-title {
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 900;
    color: #16324f;
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

.vv-section-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: #253B94;
    white-space: nowrap;
}

.vv-section-link:hover {
    text-decoration: underline;
}

.vv-product-detail-img {
    border-radius: 14px;
    overflow: hidden;
    background: #f7fafc;
    aspect-ratio: 4 / 3;
}

.vv-product-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vv-product-detail-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #b8c5d6;
    font-size: 3rem;
}

.vv-product-detail-content h1 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 900;
    color: #16324f;
    margin-bottom: 1rem;
}

.vv-product-detail-desc {
    color: #51677d;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.vv-product-detail-desc p {
    margin-bottom: 0.8rem;
}

.vv-product-detail-desc h2,
.vv-product-detail-desc h3 {
    color: #16324f;
    font-size: 1.1rem;
    font-weight: 800;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
}

.vv-product-detail-desc ul,
.vv-product-detail-desc ol {
    padding-left: 1.4rem;
    margin-bottom: 0.8rem;
}

.vv-product-detail-desc a {
    color: #253B94;
    text-decoration: underline;
}

.vv-product-detail-desc blockquote {
    border-left: 4px solid #E0B424;
    padding-left: 1rem;
    margin: 0.8rem 0;
    color: #51677d;
    font-style: italic;
}

.vv-product-detail-desc pre {
    background: #f4f6f9;
    border: 1px solid #e3eaf2;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    overflow-x: auto;
    font-family: "Courier New", monospace;
    font-size: 0.85rem;
    margin: 0.8rem 0;
}

.vv-product-detail-desc code {
    background: #f4f6f9;
    padding: 0.1rem 0.35rem;
    border-radius: 4px;
    font-family: "Courier New", monospace;
    font-size: 0.85rem;
}

.vv-product-detail-desc img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 0.8rem 0;
}

.vv-product-detail-desc iframe {
    max-width: 100%;
    border-radius: 8px;
    margin: 0.8rem 0;
}

@media (max-width: 767.98px) {
    .vv-product-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* Industry banner (detail page — legacy, dipakai saat tidak ada overlay).
   Gambar tampil utuh mengikuti rasio aslinya (tidak di-crop). */
.vv-industry-banner {
    width: 100%;
    background: #1B2C6E;
}
.vv-industry-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Hero banner overlay (detail industri): gambar tampil utuh (height mengikuti
   rasio asli gambar, tanpa object-fit: cover agar tidak terpotong), judul
   di-overlay di bagian bawah gambar sehingga tidak pernah tertutup header sticky. */
.vv-ind-detail-hero {
    position: relative;
    min-height: clamp(300px, 42vw, 480px);
    overflow: hidden;
    background: #16245a;
}
.vv-ind-detail-hero img {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
}
.vv-ind-detail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 24, 68, 0.55) 0%, rgba(13, 24, 68, 0.25) 45%, rgba(13, 24, 68, 0.85) 100%);
}
.vv-ind-detail-hero-inner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
    color: #fff;
}
.vv-ind-detail-hero-inner h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0.6rem 0 0;
}
.vv-breadcrumb--light {
    color: rgba(255, 255, 255, 0.85);
}
.vv-breadcrumb--light a {
    color: rgba(255, 255, 255, 0.85);
}
.vv-breadcrumb--light a:hover {
    color: var(--vv-cyan, #12B5CB);
}
.vv-breadcrumb--light span {
    color: #fff;
    font-weight: 700;
}
@media (max-width: 767.98px) {
    .vv-ind-detail-hero {
        min-height: 280px;
    }
    .vv-ind-detail-hero-inner {
        padding-bottom: 1.8rem;
    }
}

/* ==========================================================================
   About section (landing page)
   ========================================================================== */
.vv-about-section {
    padding: 4rem 0;
    background: #fff;
}

.vv-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vv-about-media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vv-about-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(27, 44, 110, 0.18);
}

.vv-about-img-placeholder {
    width: 100%;
    padding: 5rem 0;
    display: grid;
    place-items: center;
    color: #b8c5d6;
    font-size: 4rem;
    background: #f4f6f9;
    border-radius: 14px;
}

.vv-about-content {
    padding-inline: 1rem;
}

.vv-about-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--vv-cyan);
    margin-bottom: 0.6rem;
}

.vv-about-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: #1B2C6E;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.vv-about-summary {
    font-size: 1rem;
    line-height: 1.65;
    color: #51677d;
    margin-bottom: 1.6rem;
}

.vv-about-actions {
    display: flex;
    gap: 0.9rem;
    flex-wrap: wrap;
}

.vv-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.6rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.85rem;
    background: var(--vv-cyan);
    color: #1B2C6E;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.vv-about-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-2px);
}

/* About detail page */
.vv-about-detail {
    padding: 2rem 0 3.5rem;
}

.vv-about-detail-media {
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 2rem;
}

.vv-about-detail-media img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-height: 480px;
}

.vv-about-detail-desc {
    color: #51677d;
    font-size: 1rem;
    line-height: 1.75;
}

.vv-about-detail-desc p {
    margin-bottom: 1rem;
}

.vv-about-detail-desc h2,
.vv-about-detail-desc h3 {
    color: #16324f;
    margin: 1.2rem 0 0.6rem;
}

.vv-about-detail-desc ul,
.vv-about-detail-desc ol {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}

.vv-about-detail-desc a {
    color: #253B94;
    text-decoration: underline;
}

.vv-about-detail-desc blockquote {
    border-left: 4px solid var(--vv-cyan);
    padding-left: 1rem;
    color: #33475d;
}

.vv-about-detail-desc pre,
.vv-about-detail-desc code {
    background: #f4f6f9;
    border: 1px solid #e3eaf2;
    border-radius: 6px;
    font-size: 0.85rem;
}

.vv-about-detail-desc img {
    max-width: 100%;
    height: auto;
}

.vv-about-detail-desc iframe {
    max-width: 100%;
    border-radius: 8px;
}

.vv-about-detail-cta {
    text-align: center;
}

@media (max-width: 767.98px) {
    .vv-about-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vv-about-media {
        order: 2;
    }

    .vv-about-content {
        order: 1;
        text-align: center;
    }

    .vv-about-actions {
        justify-content: center;
    }

    .vv-about-detail-cta {
        display: block;
        margin-top: 1rem;
    }
}

/* ==========================================================================
   Footer lengkap: 3 kolom (brand+about+sosmed | quick links | kontak+maps)
   ========================================================================== */
.vv-footer {
    padding: 3.5rem 0 1.5rem;
}

.vv-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.vv-footer-logo {
    display: inline-block;
}

.vv-footer-logo img {
    height: 44px;
    width: auto;
    display: block;
}

.vv-footer-appname {
    color: #fff;
    font-weight: 800;
    font-size: 1.05rem;
    margin: 0.8rem 0 0.4rem;
}

.vv-footer-about {
    max-width: 340px;
    line-height: 1.65;
    margin-bottom: 1.1rem;
}

.vv-footer-title {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--vv-cyan, #12B5CB);
    margin-bottom: 1.1rem;
}

.vv-footer-links,
.vv-footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.6rem;
}

.vv-footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.vv-footer-links a:hover {
    color: var(--vv-cyan, #12B5CB);
    padding-left: 4px;
}

.vv-footer-contact li {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    line-height: 1.55;
}

.vv-footer-contact i {
    color: var(--vv-cyan, #12B5CB);
    margin-top: 2px;
}

.vv-footer-contact a {
    color: #fff;
    text-decoration: none;
}

.vv-footer-contact a:hover {
    color: var(--vv-cyan, #12B5CB);
}

.vv-footer-map {
    margin-top: 1.1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.vv-footer-map iframe {
    display: block;
    width: 100%;
    height: 180px;
    border: 0;
}

.vv-footer-bottom {
    text-align: center;
    padding-top: 1.4rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 991.98px) {
    .vv-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .vv-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575.98px) {
    .vv-footer {
        padding: 2.5rem 0 1.2rem;
    }

    .vv-footer-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
}
/* ==========================================================================
   About section â€” extended: tinggi + grafis animasi
   ========================================================================== */
.vv-about-section {
    padding: 6.5rem 0;
    position: relative;
    overflow: hidden;
}

.vv-about-grid {
    position: relative;
    z-index: 2;
}

/* Blob gradien melayang di latar belakang */
.vv-about-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    z-index: 1;
    pointer-events: none;
}

.vv-about-blob--cyan {
    width: 340px;
    height: 340px;
    background: rgba(18, 181, 203, 0.35);
    top: -60px;
    left: -80px;
    animation: vvBlobDrift 11s ease-in-out infinite;
}

.vv-about-blob--navy {
    width: 420px;
    height: 420px;
    background: rgba(27, 44, 110, 0.16);
    bottom: -110px;
    right: -60px;
    animation: vvBlobDrift 13s ease-in-out infinite reverse;
}

/* Media: lebih tinggi + gambar melayang lembut */
.vv-about-media {
    position: relative;
    min-height: 420px;
}

.vv-about-img,
.vv-about-img-placeholder {
    animation: vvAboutFloat 6s ease-in-out infinite;
}

.vv-about-img-placeholder {
    padding: 9rem 0;
}

/* Ring garis putus-putus yang berputar di belakang gambar */
.vv-about-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 430px;
    height: 430px;
    margin: -215px 0 0 -215px;
    border: 2px dashed rgba(27, 44, 110, 0.22);
    border-radius: 50%;
    animation: vvSpinSlow 30s linear infinite;
    pointer-events: none;
}

.vv-about-ring::before {
    content: "";
    position: absolute;
    inset: 26px;
    border: 2px dotted rgba(18, 181, 203, 0.45);
    border-radius: 50%;
    animation: vvSpinSlow 18s linear infinite reverse;
}

/* Badge ikon melayang di sekitar gambar */
.vv-about-badge {
    position: absolute;
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 14px 30px rgba(27, 44, 110, 0.2);
    color: var(--vv-cyan);
    font-size: 1.5rem;
    z-index: 3;
    animation: vvBadgeFloat 5s ease-in-out infinite;
}

.vv-about-badge--1 {
    top: 4%;
    right: 6%;
}

.vv-about-badge--2 {
    bottom: 10%;
    left: 0;
    animation-delay: 1.2s;
}

.vv-about-badge--3 {
    top: 46%;
    right: -14px;
    animation-delay: 2.4s;
    background: var(--vv-cyan);
    color: #1B2C6E;
}

/* Reveal saat scroll */
[data-vv-reveal] {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-vv-reveal].is-visible {
    opacity: 1;
    transform: none;
}

[data-vv-reveal][data-vv-delay="1"] { transition-delay: 0.12s; }
[data-vv-reveal][data-vv-delay="2"] { transition-delay: 0.24s; }
[data-vv-reveal][data-vv-delay="3"] { transition-delay: 0.36s; }
[data-vv-reveal][data-vv-delay="4"] { transition-delay: 0.48s; }

/* Keyframes */
@keyframes vvAboutFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@keyframes vvBadgeFloat {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50% { transform: translateY(-12px) rotate(4deg); }
}

@keyframes vvSpinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes vvBlobDrift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -26px) scale(1.08); }
}

/* Responsif + aksesibilitas */
@media (max-width: 991.98px) {
    .vv-about-media {
        min-height: 360px;
    }

    .vv-about-ring {
        width: 340px;
        height: 340px;
        margin: -170px 0 0 -170px;
    }
}

@media (max-width: 767.98px) {
    .vv-about-section {
        padding: 4.5rem 0;
    }

    .vv-about-ring {
        display: none;
    }

    .vv-about-badge {
        width: 52px;
        height: 52px;
        font-size: 1.2rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vv-about-blob,
    .vv-about-badge,
    .vv-about-ring,
    .vv-about-ring::before,
    .vv-about-img,
    .vv-about-img-placeholder {
        animation: none;
    }

    [data-vv-reveal] {
        opacity: 1;
        transform: none;
        transition: none;
    }
}