/* ════════════════════════════════════════
   BRAND TOKENS & THEME VARIABLES
════════════════════════════════════════ */
:root {
    --b1: #0d2a5e;
    --b2: #1e5fc2;
    --b3: #4a9ade;
    --g1: #1a6e36;
    --g2: #22994a;
    --g3: #2ecc71;
    --gold: #c9a028;
    --fh: 'Outfit', sans-serif;
    --fd: 'Bebas Neue', sans-serif;
    --ease: cubic-bezier(.4, 0, .2, 1);
    --nav-h: 72px;
}

/* ── LIGHT (default) ── */
[data-theme="light"] {
    --bg-body: #ffffff;
    --bg-surf: #f4f7fb;
    --bg-card: #ffffff;
    --bg-nav: rgba(255, 255, 255, .97);
    --bg-modal: #ffffff;
    --bg-input: #f4f7fb;
    --bg-overlay: rgba(10, 18, 30, .55);
    --tx-1: #0f1923;
    --tx-2: #2a3f55;
    --tx-3: #4a6275;
    --tx-4: #7a96a8;
    --tx-5: #a0b4c0;
    --tx-m: #5a7288;
    --bd: rgba(30, 95, 194, .12);
    --bd-hv: rgba(30, 95, 194, .45);
    --bd-in: rgba(30, 95, 194, .18);
    --bd-g: rgba(34, 153, 74, .15);
    --hero-ov: linear-gradient(105deg, rgba(7, 16, 26, .93) 0%, rgba(10, 22, 40, .78) 55%, rgba(13, 30, 53, .5) 100%);
    --scan: rgba(74, 154, 222, .015);
    --corp-bg: #e8eef7;
}

/* Smooth theme transition */
*,
*::before,
*::after {
    transition: background-color .28s ease, border-color .28s ease, color .2s ease, box-shadow .28s ease;
}

/* Exclude media/interactive from transition */
img,
video,
.carousel-item img {
    transition: none !important;
}

/* ════════════════════════════════════════
   BASE
════════════════════════════════════════ */
html {
    scroll-behavior: smooth
}

body {
    font-family: var(--fh);
    background: var(--bg-body);
    color: var(--tx-1);
    overflow-x: hidden
}

a {
    text-decoration: none
}

button {
    font-family: var(--fh);
    cursor: pointer
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--bg-body)
}

::-webkit-scrollbar-thumb {
    background: var(--b2);
    border-radius: 3px
}

/* Text utilities */
.t1 {
    color: var(--tx-1) !important
}

.t2 {
    color: var(--tx-2) !important
}

.t3 {
    color: var(--tx-3) !important
}

.t4 {
    color: var(--tx-4) !important
}

.t5 {
    color: var(--tx-5) !important
}

.tm {
    color: var(--tx-m) !important
}

/* ════════════════════════════════════════
   THEME TOGGLE BUTTON
════════════════════════════════════════ */
.theme-btn {
    background: none;
    border: 1px solid var(--bd);
    color: var(--b3);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s, transform .3s !important;
}

.theme-btn:hover {
    background: rgba(74, 154, 222, .12);
    transform: rotate(20deg)
}

.theme-btn .i-dark {
    display: block
}

.theme-btn .i-light {
    display: none
}

[data-theme="light"] .theme-btn .i-dark {
    display: none
}

[data-theme="light"] .theme-btn .i-light {
    display: block
}

/* ════════════════════════════════════════
   NAVBAR — using Bootstrap Navbar + Offcanvas
════════════════════════════════════════ */
.nav-nof {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    transition: background .4s, box-shadow .4s;
}

.nav-nof.scrolled {
    background: var(--bg-nav);
    box-shadow: 0 2px 30px rgba(0, 0, 0, .18);
    backdrop-filter: blur(14px);
}

.nav-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    height: var(--nav-h);
    padding: 0 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px
}

.nav-logo img {
    height: 38px;
    width: auto
}

.nav-logo-text .nm {
    display: block;
    font-family: var(--fd);
    font-size: 15px;
    letter-spacing: 2px;
    color: var(--tx-1);
    line-height: 1;
}

.nav-logo-text .st {
    display: block;
    font-size: 9px;
    color: var(--b3);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    align-items: stretch
}

.nav-link-item {
    position: relative;
    display: flex;
    align-items: center
}

.nav-link-item>a {
    color: var(--tx-2);
    font-family: var(--fd);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 16px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .25s;
    position: relative;
}

.nav-link-item>a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(90deg, var(--b3), var(--g3));
    transform: scaleX(0);
    transition: transform .3s var(--ease);
}

.nav-link-item>a:hover,
.nav-link-item>a.active {
    color: var(--b3)
}

.nav-link-item>a:hover::after,
.nav-link-item>a.active::after {
    transform: scaleX(1)
}

/* Desktop Dropdown */
.nav-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--bg-nav);
    border: 1px solid var(--bd);
    border-top: 2px solid var(--b2);
    padding: 6px 0;
    z-index: 200;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .15);
}

.nav-link-item:hover .nav-dropdown {
    display: block;
    animation: ddSlide .18s var(--ease)
}

@keyframes ddSlide {
    from {
        opacity: 0;
        transform: translateY(-6px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--tx-2);
    font-size: 11px;
    letter-spacing: 1px;
    font-family: var(--fd);
    text-transform: uppercase;
    padding: 10px 18px;
    border-left: 2px solid transparent;
    transition: all .2s;
}

.nav-dropdown a:hover {
    color: var(--b3);
    border-left-color: var(--b2);
    background: rgba(74, 154, 222, .07)
}

.nav-dropdown a i {
    font-size: .8rem;
    color: var(--b3);
    opacity: .6
}

.nav-cta {
    display: flex;
    align-items: center;
    margin-left: 10px
}

.nav-cta a {
    background: linear-gradient(135deg, var(--b2), var(--b1));
    border: 1px solid rgba(74, 154, 222, .4);
    color: #fff;
    font-family: var(--fd);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0 20px;
    height: 42px;
    display: flex;
    align-items: center;
    transition: background .2s;
}

.nav-cta a:hover {
    background: linear-gradient(135deg, var(--b3), var(--b2))
}

/* Lang buttons */
.lang-btn {
    background: none;
    border: 1px solid var(--bd);
    color: var(--tx-4);
    font-family: var(--fd);
    font-size: 10px;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    transition: .2s;
    cursor: pointer;
}

.lang-btn.active,
.lang-btn:hover {
    border-color: var(--b2);
    color: var(--b3)
}

/* ── OFFCANVAS MOBILE NAV ── */
#navOffcanvas {
    background: var(--bg-nav)
}

#navOffcanvas .offcanvas-header {
    border-bottom: 1px solid var(--bd)
}

#navOffcanvas .btn-close {
    filter: invert(1) opacity(.5)
}

[data-theme="light"] #navOffcanvas .btn-close {
    filter: none
}

.offcanvas-nav-link {
    display: block;
    color: var(--tx-2);
    font-family: var(--fd);
    font-size: .88rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 0;
    border-bottom: 1px solid var(--bd);
    transition: color .2s;
}

.offcanvas-nav-link:hover {
    color: var(--b3)
}

.offcanvas-nav-link.sub {
    font-size: .72rem;
    letter-spacing: 1.5px;
    padding-left: 16px;
    color: var(--tx-4);
}

/* ════════════════════════════════════════
   SHARED / UTILITIES
════════════════════════════════════════ */
section {
    padding: 80px 0
}

.nof-tag {
    font-family: var(--fd);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--b3);
    margin-bottom: 10px;
}

.nof-h2 {
    font-family: var(--fd);
    font-size: clamp(2rem, 5vw, 3.8rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: .92;
}

.nof-h2.wt {
    color: var(--tx-1)
}

.nof-h2 em {
    color: var(--g3);
    font-style: normal
}

.nof-rule {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--b2), var(--g2));
    margin: 16px 0;
}

.btn-nof {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid var(--bd-in);
    color: var(--b3);
    font-family: var(--fd);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 11px 22px;
    transition: .2s;
}

.btn-nof:hover {
    background: var(--b2);
    color: #fff;
    border-color: var(--b2)
}

.btn-nof-detail {
    background: rgba(74, 154, 222, .1);
    border: 1px solid var(--bd-in);
    color: var(--b3);
    font-family: var(--fd);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: .2s;
}

.btn-nof-detail:hover {
    background: var(--b2);
    color: #fff;
    border-color: var(--b2)
}

.btn-nof-pdf {
    background: rgba(46, 204, 113, .08);
    border: 1px solid var(--bd-g);
    color: var(--g3);
    font-family: var(--fd);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: .2s;
}

.btn-nof-pdf:hover {
    background: var(--g2);
    color: #fff;
    border-color: var(--g2)
}

.info-hint {
    background: rgba(74, 154, 222, .05);
    border: 1px dashed var(--bd-in);
    border-radius: 3px;
    padding: 12px 16px;
}

.info-hint p {
    font-size: 13px;
    color: var(--tx-m);
    margin: 0
}

/* Fade-up on scroll */
.fu {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.fu.visible {
    opacity: 1;
    transform: none
}

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

.d4 {
    transition-delay: .4s
}

/* ════════════════════════════════════════
   HERO — Bootstrap Carousel
════════════════════════════════════════ */
#home {
    position: relative;
    min-height: 100vh;
    overflow: hidden
}

/* Stretch carousel + slides to full viewport */
#heroCarousel,
.carousel-inner,
.carousel-item {
    height: 100%
}

#heroCarousel {
    position: absolute;
    inset: 0;
    z-index: 0
}

.carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.hero-dark-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--hero-ov);
    pointer-events: none;
}

.hero-scan-lines {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, var(--scan) 2px, var(--scan) 4px);
}

.hero-content-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: var(--nav-h);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-pre {
    font-family: var(--fd);
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--b3);
    text-transform: uppercase;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-pre::before {
    content: '';
    width: 28px;
    height: 1px;
    background: linear-gradient(90deg, var(--b3), var(--g3))
}

.hero-h1 {
    font-family: var(--fd);
    font-size: clamp(3rem, 9vw, 7.5rem);
    line-height: .88;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

.hero-h1 .accent {
    color: var(--g3);
    display: block
}

.hero-divider {
    width: 52px;
    height: 2px;
    background: linear-gradient(90deg, var(--b2), var(--g2));
    margin: 20px 0;
}

.hero-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 32px;
}

.hero-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 24px;
    margin-top: 32px;
    row-gap: 14px;
}

.hero-stat {
    padding-right: 24px;
    margin-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, .15)
}

.hero-stat:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0
}

.hero-stat-n {
    font-family: var(--fd);
    font-size: 2rem;
    color: var(--b3);
    line-height: 1
}

.hero-stat-l {
    font-size: 9px;
    color: rgba(255, 255, 255, .5);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px
}

.hero-scroll {
    position: absolute;
    bottom: 28px;
    right: 36px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll span {
    font-family: var(--fd);
    font-size: 9px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, .4);
    writing-mode: vertical-lr;
}

.hero-scroll-line {
    width: 1px;
    height: 44px;
    background: linear-gradient(var(--b3), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top
    }

    50% {
        transform: scaleY(1);
        transform-origin: top
    }

    51% {
        transform-origin: bottom
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom
    }
}

/* Override Bootstrap carousel indicator colors */
#heroCarousel .carousel-indicators [data-bs-target] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
    border: none;
    padding: 0;
    opacity: 1;
    transition: .3s;
}

#heroCarousel .carousel-indicators .active {
    background: var(--b3);
    transform: scale(1.3)
}

/* ════════════════════════════════════════
   CORPORATE
════════════════════════════════════════ */
#corporate {
    background: var(--bg-surf)
}

.corp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--bd);
    margin-top: 40px;
}

.corp-item {
    background: var(--bg-surf);
    padding: 28px;
    transition: background .25s
}

.corp-item:hover {
    background: var(--bg-card)
}

.corp-item-icon {
    width: 42px;
    height: 42px;
    background: rgba(74, 154, 222, .1);
    border: 1px solid var(--bd-in);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1.1rem;
    color: var(--b3);
}

.corp-item-title {
    font-family: var(--fd);
    font-size: 15px;
    letter-spacing: 1.5px;
    color: var(--tx-1);
    margin-bottom: 7px
}

.corp-item-text {
    font-size: 13px;
    color: var(--tx-3);
    line-height: 1.7
}

/* ════════════════════════════════════════
   BOARD — Bootstrap Nav Tabs
════════════════════════════════════════ */
#board-section {
    background: var(--bg-surf)
}

.mcard-nof {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    height: 100%
}

.mcard-nof:hover .mcard-photo-img {
    transform: scale(1.05);
    filter: brightness(.8)
}

.mcard-nof:hover .mcard-overlay {
    height: 100%;
    background: rgba(7, 16, 26, .88)
}

.mcard-photo-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center top;
    transition: transform .5s var(--ease), filter .5s;
    display: block;
}

.mcard-placeholder {
    width: 100%;
    height: 320px;
    background: linear-gradient(145deg, var(--corp-bg), #0d1e3a);
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="light"] .mcard-placeholder {
    background: linear-gradient(145deg, #d0dff0, #b8cce4)
}

.mcard-placeholder i {
    font-size: 80px;
    color: rgba(74, 154, 222, .15)
}

.mcard-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(transparent, rgba(7, 16, 26, .95));
    transition: height .45s var(--ease);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.mcard-pos-badge {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--g3);
    margin-bottom: 4px
}

.mcard-nm {
    font-family: var(--fd);
    font-size: 18px;
    letter-spacing: 1px;
    color: #fff;
    line-height: 1.05
}

/* Bootstrap tab override */
.nof-tabs {
    border-bottom: 1px solid var(--bd);
    margin-bottom: 40px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap
}

.nof-tabs::-webkit-scrollbar {
    display: none
}

.nof-tabs .nav-link {
    background: none !important;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--tx-4);
    font-family: var(--fd);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 18px;
    margin-bottom: -1px;
    transition: .25s;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 0;
}

.nof-tabs .nav-link:hover {
    color: var(--b3);
    border-bottom-color: var(--b2)
}

.nof-tabs .nav-link.active {
    color: var(--b3) !important;
    border-bottom-color: var(--b2) !important
}

/* ════════════════════════════════════════
   FLEET — Bootstrap Nav Tabs (reuse nof-tabs)
════════════════════════════════════════ */
#fleet {
    background: var(--bg-body)
}

.nof-partner-bar {
    background: rgba(74, 154, 222, .05);
    border: 1px solid var(--bd);
    padding: 14px 18px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nof-partner-bar i {
    color: var(--b3);
    font-size: 1rem;
    flex-shrink: 0
}

.vcn {
    background: var(--bg-card);
    border: 1px solid var(--bd);
    transition: border-color .3s, transform .3s, box-shadow .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vcn:hover {
    border-color: var(--bd-hv);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .1)
}

.vcn:hover .vcn-img {
    transform: scale(1.04);
    filter: brightness(.85)
}

.vcn-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0
}

.vcn-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease), filter .5s;
    display: block
}

.vcn-type {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5px 12px;
    font-family: var(--fd);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

.t-crew {
    background: var(--b2)
}

.t-lct {
    background: #185fa5
}

.t-barge {
    background: var(--gold)
}

.t-rig {
    background: #a32d2d
}

.vcn-status {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(34, 153, 74, .85);
    color: #fff;
    font-family: var(--fd);
    font-size: 8px;
    letter-spacing: 1.5px;
    padding: 3px 8px;
}

.vcn-gallery-dots {
    position: absolute;
    bottom: 8px;
    right: 8px;
    display: flex;
    gap: 5px
}

.gd {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: .2s
}

.gd.active {
    background: #fff;
    transform: scale(1.3)
}

.vcn-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.vcn-name {
    font-family: var(--fd);
    font-size: 17px;
    letter-spacing: 1px;
    color: var(--tx-1);
    margin-bottom: 5px
}

.vcn-desc {
    font-size: 12px;
    color: var(--tx-3);
    line-height: 1.6;
    margin-bottom: 12px;
    flex: 1
}

.vcn-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--bd);
    margin-bottom: 12px
}

.vsp {
    padding: 7px 10px;
    border-right: 1px solid var(--bd);
    border-bottom: 1px solid var(--bd)
}

.vsp:nth-child(even) {
    border-right: none
}

.vsp:nth-last-child(-n+2) {
    border-bottom: none
}

.vsp-k {
    font-size: 8px;
    color: var(--tx-4);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2px
}

.vsp-v {
    font-size: 11px;
    color: var(--tx-1)
}

.vcn-btns {
    display: flex;
    gap: 6px;
    flex-wrap: wrap
}

/* ════════════════════════════════════════
   BOOTSTRAP MODAL OVERRIDES — Vessel & Board
════════════════════════════════════════ */
.modal-gap .modal-content {
    background: var(--bg-modal);
    border: 1px solid var(--bd);
    border-top: 2px solid var(--b2);
    border-radius: 4px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .2);
    animation: popIn .28s var(--ease);
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.modal-gap .modal-header {
    background: var(--bg-surf);
    border-bottom: 1px solid var(--bd);
    padding: 16px 20px;
}

.modal-gap .modal-body {
    padding: 18px
}

.modal-gap .btn-close {
    filter: invert(1) opacity(.5)
}

[data-theme="light"] .modal-gap .btn-close {
    filter: none
}

.vmodal-type {
    font-family: var(--fd);
    font-size: 9px;
    letter-spacing: 2.5px;
    color: var(--b3);
    margin-bottom: 3px
}

.vmodal-name {
    font-family: var(--fd);
    font-size: 1.3rem;
    letter-spacing: 1.5px;
    color: var(--tx-1)
}

.vm-gal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin-bottom: 14px
}

.vm-gal img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    cursor: pointer;
    border: 1px solid var(--bd)
}

.vm-gal img.main {
    grid-column: 1/-1;
    height: 240px
}

.vm-stbl {
    width: 100%;
    border-collapse: collapse
}

.vm-stbl tr {
    border-bottom: 1px solid var(--bd)
}

.vm-stbl tr:last-child {
    border-bottom: none
}

.vm-stbl td {
    padding: 7px 10px;
    font-size: 12px
}

.vm-stbl td:first-child {
    color: var(--tx-m);
    font-weight: 600;
    width: 44%
}

.vm-stbl td:last-child {
    color: var(--tx-1)
}

.vm-op-box {
    background: rgba(74, 154, 222, .06);
    border-left: 2px solid var(--b2);
    padding: 10px 12px;
    margin-bottom: 10px
}

.vm-op-lbl {
    font-family: var(--fd);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--b3);
    margin-bottom: 2px
}

.vm-op-val {
    font-size: 13px;
    color: var(--tx-1);
    font-weight: 600
}

/* Board modal */
.bm-simple {
    display: flex
}

.bm-simple-photo {
    width: 180px;
    flex-shrink: 0
}

.bm-simple-photo .bm-photo {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    object-position: center top;
    display: block
}

.bm-simple-photo .bm-photo-ph {
    width: 100%;
    min-height: 240px;
    background: linear-gradient(145deg, var(--corp-bg), #0d1e3a);
    display: flex;
    align-items: center;
    justify-content: center;
}

[data-theme="light"] .bm-simple-photo .bm-photo-ph {
    background: linear-gradient(145deg, #d0dff0, #b8cce4)
}

.bm-simple-photo .bm-photo-ph i {
    font-size: 60px;
    color: rgba(74, 154, 222, .15)
}

.bm-simple-info {
    flex: 1;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.bm-simple-badge {
    font-family: var(--fd);
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--b3);
    margin-bottom: 6px
}

.bm-simple-name {
    font-family: var(--fd);
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: var(--tx-1);
    line-height: 1.05;
    margin-bottom: 3px
}

.bm-simple-pos {
    font-size: 13px;
    color: var(--tx-3);
    margin-bottom: 14px
}

.bm-simple-divider {
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--b2), var(--g2));
    margin-bottom: 14px
}

.bm-simple-bio {
    font-size: 12px;
    color: var(--tx-3);
    line-height: 1.75;
    margin: 0;
    overflow-y: auto;
    max-height: 200px
}

/* ════════════════════════════════════════
   MAP
════════════════════════════════════════ */
#ops-map {
    background: var(--bg-surf);
    padding: 72px 0 0
}

#gmap {
    width: 100%;
    height: 480px;
    background: var(--bg-body);
    position: relative;
    z-index: 0
}

.map-legend-bar {
    background: var(--bg-nav);
    border-top: 1px solid var(--bd);
    padding: 10px 0;
    position: relative;
    z-index: 2
}

.gml {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 14px;
    align-items: center
}

.gml-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: var(--tx-3)
}

.gml-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%
}

.map-counter {
    display: inline-flex;
    background: var(--bg-card);
    border: 1px solid var(--bd);
    overflow: hidden
}

.mco {
    padding: 8px 14px;
    border-right: 1px solid var(--bd);
    text-align: center
}

.mco:last-child {
    border-right: none
}

.mco-n {
    font-family: var(--fd);
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 1
}

.mco-l {
    font-size: 9px;
    color: var(--tx-4);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px
}

.leaflet-container {
    background: var(--bg-body) !important;
    font-family: var(--fh) !important
}

.leaflet-popup-content-wrapper {
    background: var(--bg-modal) !important;
    border: 1px solid var(--bd) !important;
    border-top: 2px solid var(--b2) !important;
    border-radius: 3px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .15) !important;
    padding: 0 !important;
    overflow: hidden;
    min-width: 200px;
}

.leaflet-popup-content {
    margin: 0 !important;
    width: 200px !important
}

.leaflet-popup-tip {
    background: var(--bg-modal) !important
}

.leaflet-popup-close-button {
    color: var(--tx-3) !important;
    font-size: 18px !important;
    top: 5px !important;
    right: 7px !important
}

.leaflet-popup-close-button:hover {
    color: var(--b3) !important;
    background: none !important
}

.leaflet-control-zoom a {
    background: var(--bg-modal) !important;
    color: var(--tx-2) !important;
    border-color: var(--bd) !important
}

.leaflet-control-zoom a:hover {
    background: rgba(74, 154, 222, .1) !important;
    color: var(--b3) !important
}

.leaflet-control-attribution {
    background: var(--bg-nav) !important;
    color: var(--tx-5) !important;
    font-size: 10px !important
}

.gm-pin {
    width: 28px;
    height: 34px;
    cursor: pointer;
    position: relative
}

.gm-head {
    width: 26px;
    height: 26px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 0;
    left: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .4);
}

.gm-head svg {
    transform: rotate(45deg)
}

.gm-pulse {
    width: 26px;
    height: 26px;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    position: absolute;
    bottom: 0;
    left: 0;
    animation: gmpulse 2.5s ease-out infinite;
}

@keyframes gmpulse {
    0% {
        transform: rotate(-45deg) scale(1);
        opacity: .6
    }

    100% {
        transform: rotate(-45deg) scale(2.8);
        opacity: 0
    }
}

/* ── MAP PANEL — Bootstrap Offcanvas bottom ── */
#mapOffcanvas {
    background: var(--bg-nav) !important;
    border-top: 2px solid var(--b2) !important;
    backdrop-filter: blur(16px);
    height: auto !important;
}

#mapOffcanvas .offcanvas-body {
    padding: 20px 18px 26px
}

.mp-handle {
    width: 34px;
    height: 3px;
    background: var(--bd);
    border-radius: 2px;
    margin: 0 auto 14px;
    display: block;
}

.mp-content {
    display: flex;
    gap: 14px;
    align-items: center
}

.mp-thumb {
    width: 84px;
    height: 62px;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid var(--bd)
}

.mp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block
}

.mp-info {
    flex: 1;
    min-width: 0
}

.mp-badge {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 2px 7px;
    margin-bottom: 5px
}

.mp-badge.active {
    background: rgba(46, 204, 113, .15);
    color: var(--g3)
}

.mp-badge.standby {
    background: rgba(245, 158, 11, .15);
    color: #f59e0b
}

.mp-name {
    font-family: var(--fd);
    font-size: 1rem;
    letter-spacing: 1px;
    color: var(--tx-1);
    line-height: 1.1;
    margin-bottom: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.mp-sub {
    font-size: 11px;
    color: var(--tx-4);
    line-height: 1.4
}

.mp-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(74, 154, 222, .1);
    border: 1px solid var(--bd-in);
    color: var(--b3);
    font-family: var(--fd);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 9px 12px;
    transition: .2s;
    white-space: nowrap;
}

.mp-btn:hover {
    background: var(--b2);
    color: #fff;
    border-color: var(--b2)
}

/* ════════════════════════════════════════
   NEWS
════════════════════════════════════════ */
#news {
    background: var(--bg-body)
}

.news-card {
    background: var(--bg-card);
    border: 1px solid var(--bd);
    transition: border-color .3s, transform .3s, box-shadow .3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    border-color: var(--bd-hv);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08)
}

.news-card:hover .news-img {
    transform: scale(1.04);
    filter: brightness(.88)
}

.news-img-wrap {
    overflow: hidden;
    height: 190px;
    flex-shrink: 0
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease), filter .5s;
    display: block
}

.news-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.news-cat {
    font-family: var(--fd);
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--g3);
    margin-bottom: 7px
}

[data-theme="light"] .news-cat {
    color: var(--g2)
}

.news-title {
    font-family: var(--fd);
    font-size: 17px;
    letter-spacing: .5px;
    color: var(--tx-1);
    line-height: 1.2;
    margin-bottom: 9px
}

.news-excerpt {
    font-size: 12px;
    color: var(--tx-3);
    line-height: 1.65;
    flex: 1
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--bd)
}

.news-date {
    font-size: 10px;
    color: var(--tx-4)
}

.news-more {
    font-family: var(--fd);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--b3);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap .2s
}

.news-more:hover {
    gap: 9px
}

/* ════════════════════════════════════════
   GALLERY
════════════════════════════════════════ */
#gallery {
    background: var(--bg-body)
}

.gallery-grid {
    columns: 4;
    column-gap: 12px
}

@media(max-width:991px) {
    .gallery-grid {
        columns: 3
    }
}

@media(max-width:575px) {
    .gallery-grid {
        columns: 2
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--bd);
    display: block;
}

.gallery-item img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s var(--ease), filter .5s;
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(.72)
}

/* Video thumbnail wrapper — keeps 16:9 ratio */
.gallery-item .vid-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: var(--corp-bg);
    overflow: hidden;
}

.gallery-item .vid-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s var(--ease), filter .5s;
}

.gallery-item:hover .vid-thumb img {
    transform: scale(1.06);
    filter: brightness(.72)
}

/* Play button badge on video thumbnails */
.gallery-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.gallery-play-btn span {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(13, 42, 94, .75);
    border: 2px solid rgba(74, 154, 222, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .25s, transform .25s;
}

.gallery-item:hover .gallery-play-btn span {
    background: var(--b2);
    transform: scale(1.12);
}

.gallery-play-btn i {
    font-size: 1.1rem;
    color: #fff;
    margin-left: 3px
}

/* Video type badge (top-right corner) */
.gallery-vid-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 3;
    background: rgba(163, 45, 45, .88);
    color: #fff;
    font-family: var(--fd);
    font-size: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 2px 7px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Overlay for photos */
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s;
    background: rgba(13, 42, 94, .42);
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1
}

.gallery-item-overlay i {
    font-size: 1.6rem;
    color: #fff
}

.gallery-cat-tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px 10px;
    background: linear-gradient(transparent, rgba(7, 16, 26, .88));
    font-family: var(--fd);
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    z-index: 2;
}

/* ── LIGHTBOX MODAL ── */
#galleryLightbox .modal-dialog {
    max-width: min(92vw, 1100px)
}

#galleryLightbox .modal-content {
    background: rgba(5, 12, 24, .97);
    border: 1px solid var(--bd);
    border-radius: 4px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .7);
}

#galleryLightbox .modal-header {
    background: transparent;
    border-bottom: 1px solid var(--bd);
    padding: 12px 18px;
}

#galleryLightbox .modal-title {
    font-family: var(--fd);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .55);
}

#galleryLightbox .modal-body {
    padding: 0;
    position: relative
}

#galleryLightbox .btn-close {
    filter: invert(1) opacity(.5)
}

#galleryLightbox .btn-close:hover {
    filter: invert(1) opacity(1)
}

/* Photo view */
#lb-img-wrap {
    display: none
}

#lb-img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    display: block;
}

/* Video view */
#lb-video-wrap {
    display: none
}

/* Native video player */
#lb-video {
    width: 100%;
    max-height: 75vh;
    display: block;
    background: #000;
    outline: none;
}

/* Iframe embed (YouTube / Vimeo) */
.lb-iframe-wrap {
    position: relative;
    padding-top: 56.25%;
    /* 16:9 */
    width: 100%;
    background: #000;
}

.lb-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Caption & counter bar */
#lb-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px;
    border-top: 1px solid rgba(74, 154, 222, .12);
}

#lb-caption {
    font-family: var(--fd);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .45);
}

#lb-counter {
    font-family: var(--fd);
    font-size: 9px;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .3);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Prev / Next buttons */
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(13, 42, 94, .72);
    border: 1px solid var(--bd-in);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    z-index: 20;
    transition: background .2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--b2)
}

.lightbox-prev {
    left: -52px
}

.lightbox-next {
    right: -52px
}

@media(max-width:767px) {
    .lightbox-prev {
        left: 8px
    }

    .lightbox-next {
        right: 8px
    }
}

/* ════════════════════════════════════════
   SERTIFIKASI & PERIZINAN
════════════════════════════════════════ */
#sertifikasi {
    background: var(--bg-surf)
}

.cert-card {
    background: var(--bg-card);
    border: 1px solid var(--bd);
    padding: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: border-color .3s, transform .3s, box-shadow .3s;
}

.cert-card:hover {
    border-color: var(--bd-hv);
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
}

.cert-card-img-wrap {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--corp-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease);
}

.cert-card:hover .cert-card-img-wrap img {
    transform: scale(1.04)
}

.cert-card-img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 10px;
}

.cert-card-img-placeholder i {
    font-size: 3rem;
    color: rgba(74, 154, 222, .25)
}

.cert-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column
}

.cert-card-badge {
    display: inline-block;
    font-family: var(--fd);
    font-size: 8px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 3px 8px;
    margin-bottom: 10px;
    border: 1px solid;
}

.cert-badge-bki {
    color: var(--b3);
    border-color: var(--bd-in);
    background: rgba(74, 154, 222, .08)
}

.cert-badge-gov {
    color: var(--g3);
    border-color: var(--bd-g);
    background: rgba(46, 204, 113, .08)
}

.cert-badge-intl {
    color: var(--gold);
    border-color: rgba(201, 160, 40, .25);
    background: rgba(201, 160, 40, .07)
}

.cert-card-title {
    font-family: var(--fd);
    font-size: 15px;
    letter-spacing: 1px;
    color: var(--tx-1);
    margin-bottom: 6px;
    line-height: 1.2;
}

.cert-card-issuer {
    font-size: 11px;
    color: var(--b3);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cert-card-desc {
    font-size: 12px;
    color: var(--tx-3);
    line-height: 1.65;
    flex: 1
}

.cert-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--bd);
}

.cert-card-valid {
    font-size: 10px;
    color: var(--tx-4);
    display: flex;
    align-items: center;
    gap: 4px;
}

.cert-card-valid.valid {
    color: var(--g3)
}

.cert-card-valid.pending {
    color: var(--gold)
}

/* Cert stats bar */
.cert-stats-bar {
    display: flex;
    gap: 1px;
    background: var(--bd);
    margin-bottom: 48px;
    margin-top: 0;
}

.cert-stat-item {
    flex: 1;
    background: var(--bg-surf);
    padding: 18px 20px;
    text-align: center;
    transition: background .25s;
}

.cert-stat-item:hover {
    background: var(--bg-card)
}

.cert-stat-n {
    font-family: var(--fd);
    font-size: 2rem;
    color: var(--b3);
    line-height: 1
}

[data-theme="light"] .cert-stat-n {
    color: var(--b2)
}

.cert-stat-l {
    font-size: 9px;
    color: var(--tx-3);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px
}

/* ════════════════════════════════════════
   KLIEN KAMI
════════════════════════════════════════ */
#clients {
    background: var(--bg-body)
}

/* Logo grid */
.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: var(--bd);
    margin-top: 40px;
}

@media(max-width:991px) {
    .client-logo-grid {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media(max-width:575px) {
    .client-logo-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

.client-logo-item {
    background: var(--bg-card);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    transition: background .25s, transform .25s;
    position: relative;
    overflow: hidden;
}

.client-logo-item:hover {
    background: var(--bg-surf);
    transform: none
}

.client-logo-item:hover .client-logo-img {
    filter: none;
    opacity: 1
}

.client-logo-img {
    height: 44px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
    filter: grayscale(1);
    opacity: .5;
    transition: filter .3s, opacity .3s;
}

[data-theme="dark"] .client-logo-img {
    filter: grayscale(1) brightness(1.8);
    opacity: .45
}

[data-theme="dark"] .client-logo-item:hover .client-logo-img {
    filter: grayscale(0) brightness(1);
    opacity: 1
}

.client-logo-name {
    font-family: var(--fd);
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--tx-4);
    line-height: 1.3;
    transition: color .3s;
}

.client-logo-item:hover .client-logo-name {
    color: var(--b3)
}

/* Placeholder icon when no logo */
.client-logo-ph {
    font-size: 1.8rem;
    color: rgba(74, 154, 222, .15)
}

/* Testimonial strip */
.client-testimonial {
    background: var(--bg-surf);
    border: 1px solid var(--bd);
    border-left: 3px solid var(--b2);
    padding: 20px 24px;
    margin-top: 40px;
}

.client-testimonial-text {
    font-size: 14px;
    color: var(--tx-2);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 12px;
}

.client-testimonial-author {
    font-family: var(--fd);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--b3);
}

/* ════════════════════════════════════════
   SAFETY
════════════════════════════════════════ */
#safety {
    background: var(--bg-surf)
}

.safety-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--bd);
    margin-top: 40px
}

.safety-stat {
    background: var(--bg-surf);
    padding: 24px 20px;
    text-align: center;
    transition: background .25s
}

.safety-stat:hover {
    background: var(--bg-card)
}

.safety-stat-n {
    font-family: var(--fd);
    font-size: 2.6rem;
    color: var(--g3);
    line-height: 1
}

[data-theme="light"] .safety-stat-n {
    color: var(--b2)
}

.safety-stat-l {
    font-size: 10px;
    color: var(--tx-3);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px
}

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
#contact {
    background: var(--bg-body)
}

.cf-label {
    font-family: var(--fd);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tx-3);
    display: block;
    margin-bottom: 6px
}

.cf-input {
    width: 100%;
    background: var(--bg-input);
    border: 1px solid var(--bd-in);
    color: var(--tx-1);
    padding: 10px 14px;
    font-family: var(--fh);
    font-size: 13px;
    transition: .2s;
    border-radius: 2px;
}

.cf-input:focus {
    outline: none;
    border-color: var(--b2);
    background: var(--bg-card);
    box-shadow: none
}

.cf-input::placeholder {
    color: var(--tx-4)
}

.cf-input option {
    background: var(--bg-surf);
    color: var(--tx-1)
}

.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px
}

.ci-icon {
    width: 38px;
    height: 38px;
    background: rgba(74, 154, 222, .1);
    border: 1px solid var(--bd-in);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--b3);
    font-size: .9rem;
    flex-shrink: 0;
}

.ci-label {
    font-family: var(--fd);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tx-4);
    margin-bottom: 2px
}

.ci-val {
    font-size: 13px;
    color: var(--tx-1)
}

.contact-map-frame {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden
}

.contact-map-frame iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0
}

[data-theme="dark"] .contact-map-frame iframe {
    filter: invert(90%) hue-rotate(195deg) saturate(.5) brightness(.85)
}

.contact-form-wrap {
    background: var(--bg-surf);
    border: 1px solid var(--bd);
    border-top: 2px solid var(--b2);
    padding: 28px;
}

/* ════════════════════════════════════════
   FOOTER — always dark
════════════════════════════════════════ */
footer {
    background: #080f18;
    border-top: 1px solid rgba(74, 154, 222, .12);
    padding: 52px 0 0
}

.footer-logo {
    height: 36px;
    width: auto
}

.footer-co {
    font-family: var(--fd);
    font-size: 14px;
    letter-spacing: 2px;
    color: #fff;
    margin-top: 9px
}

.footer-tag {
    font-size: 9px;
    color: var(--b3);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 2px
}

.footer-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, .35);
    line-height: 1.75;
    margin-top: 10px
}

.footer-hd {
    font-family: var(--fd);
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--g3);
    margin-bottom: 14px
}

.footer-links {
    list-style: none;
    padding: 0
}

.footer-links li+li {
    margin-top: 8px
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, .38);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color .2s
}

.footer-links a::before {
    content: '—';
    font-size: .6rem;
    color: var(--b2);
    opacity: .6
}

.footer-links a:hover {
    color: var(--b3)
}

.footer-cert {
    background: rgba(46, 204, 113, .04);
    border-left: 2px solid var(--g2);
    padding: 6px 10px;
    font-size: 11px;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 6px
}

.footer-bottom {
    border-top: 1px solid rgba(74, 154, 222, .08);
    padding: 14px 0;
    margin-top: 40px
}

.footer-copy {
    font-size: 10px;
    color: rgba(255, 255, 255, .2);
    margin: 0
}

footer .lang-btn {
    border-color: rgba(74, 154, 222, .25);
    color: rgba(255, 255, 255, .4)
}

footer .lang-btn.active,
footer .lang-btn:hover {
    border-color: var(--b2);
    color: var(--b3)
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media(min-width:1400px) {

    .mcard-photo-img,
    .mcard-placeholder {
        height: 360px
    }
}

@media(max-width:1399px) {
    .safety-stat-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:1199px) {

    .nav-links,
    .nav-cta {
        display: none
    }

    .hero-h1 {
        font-size: clamp(3rem, 8vw, 5.5rem)
    }

    .corp-grid {
        grid-template-columns: 1fr
    }

    .mcard-photo-img,
    .mcard-placeholder {
        height: 300px
    }
}

@media(max-width:991px) {
    :root {
        --nav-h: 62px
    }

    section {
        padding: 64px 0
    }

    .nav-inner {
        padding: 0 16px
    }

    .hero-scroll {
        display: none
    }

    .vcn-img-wrap {
        height: 210px
    }

    #gmap {
        height: 380px
    }

    .safety-stat-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .bm-simple {
        flex-direction: column
    }

    .bm-simple-photo {
        width: 100%
    }

    .bm-simple-photo .bm-photo {
        min-height: 200px;
        max-height: 220px
    }

    .bm-simple-photo .bm-photo-ph {
        min-height: 160px
    }

    .bm-simple-info {
        padding: 20px 18px
    }
}

@media(max-width:767px) {
    :root {
        --nav-h: 58px
    }

    section {
        padding: 52px 0
    }

    .nav-inner {
        height: 58px;
        padding: 0 14px
    }

    .nav-logo img {
        height: 32px
    }

    .nav-logo-text .nm {
        font-size: 13px
    }

    .nof-h2 {
        font-size: clamp(1.8rem, 8vw, 2.6rem)
    }

    .hero-h1 {
        font-size: clamp(2.8rem, 10vw, 4.5rem)
    }

    .hero-stats-row {
        flex-direction: column;
        gap: 10px
    }

    .hero-stat {
        border-right: none !important;
        padding-right: 0;
        margin-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .15);
        padding-bottom: 10px
    }

    .hero-stat:last-child {
        border-bottom: none;
        padding-bottom: 0
    }

    .mcard-photo-img,
    .mcard-placeholder {
        height: 260px
    }

    .vcn-img-wrap {
        height: 200px
    }

    .vm-gal {
        grid-template-columns: 1fr
    }

    .vm-gal img.main {
        height: 190px
    }

    .vm-gal img {
        height: 140px
    }

    .nof-tabs .nav-link {
        font-size: 10px;
        padding: 11px 12px
    }

    #gmap {
        height: 300px
    }

    .contact-map-frame {
        height: 180px
    }

    .mp-thumb {
        width: 68px;
        height: 52px
    }

    .mp-name {
        font-size: .9rem
    }

    .mp-btn {
        padding: 7px 10px;
        font-size: 9px
    }

    .corp-item {
        padding: 20px
    }
}

@media(max-width:575px) {
    :root {
        --nav-h: 56px
    }

    section {
        padding: 44px 0
    }

    .hero-h1 {
        font-size: clamp(2.5rem, 12vw, 3.8rem)
    }

    .hero-sub {
        font-size: 13px
    }

    .nof-h2 {
        font-size: clamp(1.6rem, 9vw, 2.2rem)
    }

    .vcn-specs {
        grid-template-columns: 1fr
    }

    .vcn-specs .vsp {
        border-right: none
    }

    .mcard-photo-img,
    .mcard-placeholder {
        height: 240px
    }

    .nof-tabs .nav-link {
        padding: 9px 10px;
        font-size: 9px;
        letter-spacing: 1px
    }

    .safety-stat-grid {
        grid-template-columns: 1fr 1fr
    }

    .safety-stat {
        padding: 18px 14px
    }

    .safety-stat-n {
        font-size: 2rem
    }

    #gmap {
        height: 260px
    }

    .contact-map-frame {
        height: 160px
    }

    .mp-content {
        flex-wrap: wrap;
        gap: 10px
    }

    .mp-btn {
        width: 100%;
        justify-content: center
    }

    .corp-grid {
        grid-template-columns: 1fr
    }

    .bm-simple-bio {
        max-height: 150px
    }
}

/* ═══════════════════════════
       SECTION — PELAYANAN KAMI
    ═══════════════════════════ */
#services {
    background: var(--bg-surf);
    padding: 80px 0
}

/* ── 6-card grid ── */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--bd);
    margin-top: 40px;
}

@media(max-width:991px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:575px) {
    .svc-grid {
        grid-template-columns: 1fr
    }
}

/* ── Each card ── */
.svc-card {
    background: var(--bg-surf);
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: background .25s;
    position: relative;
    overflow: hidden;
}

.svc-card:hover {
    background: var(--bg-card)
}

/* accent top border on hover */
.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--b2), var(--g2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease);
}

.svc-card:hover::before,
.svc-card.active-card::before {
    transform: scaleX(1)
}

/* ── Card header (always visible, acts as accordion trigger) ── */
.svc-card-header {
    padding: 24px 22px 20px;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    user-select: none;
}

.svc-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(74, 154, 222, .08);
    border: 1px solid var(--bd-in);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--b3);
    transition: background .25s, border-color .25s;
}

.svc-card:hover .svc-icon,
.svc-card.active-card .svc-icon {
    background: rgba(74, 154, 222, .15);
    border-color: rgba(74, 154, 222, .4);
}

.svc-header-text {
    flex: 1
}

.svc-num {
    font-family: var(--fd);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--b3);
    opacity: .6;
    margin-bottom: 4px;
}

.svc-title {
    font-family: var(--fd);
    font-size: 16px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--tx-1);
    line-height: 1.1;
    margin-bottom: 5px;
}

.svc-subtitle {
    font-size: 11px;
    color: var(--tx-4);
    line-height: 1.5;
}

/* chevron */
.svc-chevron {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tx-4);
    font-size: .75rem;
    transition: transform .3s var(--ease), color .2s;
    margin-top: 2px;
}

.svc-card.active-card .svc-chevron {
    transform: rotate(180deg);
    color: var(--b3);
}

/* ── Collapse body ── */
.svc-body {
    overflow: hidden;
    max-height: 0;
    transition: max-height .45s var(--ease), padding .35s;
    padding: 0 22px;
}

.svc-card.active-card .svc-body {
    max-height: 600px;
    padding-bottom: 22px;
}

.svc-divider {
    width: 100%;
    height: 1px;
    background: var(--bd);
    margin-bottom: 16px;
}

/* service list items */
.svc-list {
    list-style: none;
    padding: 0;
    margin: 0
}

.svc-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(30, 95, 194, .06);
    font-size: 13px;
    color: var(--tx-2);
    line-height: 1.5;
}

.svc-list li:last-child {
    border-bottom: none
}

.svc-list li::before {
    content: '';
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    background: var(--b3);
    border-radius: 50%;
    margin-top: 6px;
}

.svc-list li span {
    color: var(--tx-1);
    font-weight: 500
}

/* paragraph variant */
.svc-para {
    font-size: 13px;
    color: var(--tx-3);
    line-height: 1.75;
    margin: 0;
}

/* tag badge */
.svc-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--fd);
    font-size: 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 8px;
    margin-bottom: 12px;
    border: 1px solid;
}

.svc-tag-blue {
    color: var(--b3);
    border-color: var(--bd-in);
    background: rgba(74, 154, 222, .07)
}

.svc-tag-green {
    color: var(--g3);
    border-color: rgba(46, 204, 113, .2);
    background: rgba(46, 204, 113, .06)
}

.svc-tag-gold {
    color: var(--gold);
    border-color: rgba(201, 160, 40, .25);
    background: rgba(201, 160, 40, .06)
}

/* ── CTA row below grid ── */
.svc-cta-bar {
    background: var(--bg-card);
    border: 1px solid var(--bd);
    border-top: 2px solid var(--b2);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 1px;
}

.svc-cta-text {
    font-size: 13px;
    color: var(--tx-3);
}

.svc-cta-text strong {
    color: var(--tx-1)
}

.btn-nof {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 1px solid var(--bd-in);
    color: var(--b3);
    font-family: var(--fd);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 11px 22px;
    transition: .2s;
    text-decoration: none;
    cursor: pointer;
}

.btn-nof:hover {
    background: var(--b2);
    color: #fff;
    border-color: var(--b2)
}

.btn-nof-solid {
    background: var(--b2);
    color: #fff;
    border-color: var(--b2);
}

.btn-nof-solid:hover {
    background: var(--b1);
    border-color: var(--b1)
}

/* ── "Expand All" control ── */
.svc-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.svc-toggle-all {
    background: none;
    border: 1px solid var(--bd);
    color: var(--tx-4);
    font-family: var(--fd);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 14px;
    cursor: pointer;
    transition: .2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.svc-toggle-all:hover {
    border-color: var(--b2);
    color: var(--b3)
}