/* ════════════════════════════════════════════════════════════════
   PT. GLOBALINDO ANUGRAH PRATAMA — style.css
   Covers: index · about · services · fleet · certification
           gallery · news · contact
   ════════════════════════════════════════════════════════════════ */

/* ────────────────────────────────────────
   1. BRAND TOKENS & CSS VARIABLES
──────────────────────────────────────── */
:root {
    /* Brand colors */
    --b1: #0d2a5e;
    --b2: #1e5fc2;
    --b3: #4a9ade;
    --g1: #1a6e36;
    --g2: #22994a;
    --g3: #2ecc71;
    --gold: #c9a028;

    /* Typography */
    --fh: 'Outfit', sans-serif;
    --fd: 'Bebas Neue', sans-serif;

    /* Motion */
    --ease: cubic-bezier(.4, 0, .2, 1);

    /* Layout */
    --nav-h: 72px;

    /* Light theme (default) */
    --bg-body: #ffffff;
    --bg-surf: #f4f7fb;
    --bg-card: #ffffff;
    --bg-nav: rgba(255, 255, 255, .97);
    --bg-modal: #ffffff;
    --bg-input: #f4f7fb;
    --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;
}

/* ────────────────────────────────────────
     2. RESET & BASE
  ──────────────────────────────────────── */
*,
*::before,
*::after {
    transition: background-color .28s ease, border-color .28s ease, color .2s ease, box-shadow .28s ease;
    box-sizing: border-box;
}

img,
video,
.carousel-item img {
    transition: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fh);
    background: var(--bg-body);
    color: var(--tx-1);
    overflow-x: hidden;
    margin: 0;
}

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;
}

/* ────────────────────────────────────────
     3. TYPOGRAPHY UTILITIES
  ──────────────────────────────────────── */
.body-text {
    font-size: 14px;
    color: var(--tx-3);
    line-height: 1.8;
    margin-bottom: 14px;
}

.small-text {
    font-size: 13px;
    color: var(--tx-4);
    line-height: 1.7;
}

.text-muted-dark {
    color: rgba(255, 255, 255, .4) !important;
}

.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;
}

/* ────────────────────────────────────────
     4. SECTION BACKGROUNDS
  ──────────────────────────────────────── */
section {
    padding: 80px 0;
}

.section-body {
    background: var(--bg-body);
}

.section-surf {
    background: var(--bg-surf);
}

.section-dark {
    background: #080f18;
}

.section-dark-gradient {
    background: linear-gradient(135deg, #080f18 0%, #0d2a5e 50%, #080f18 100%);
    position: relative;
    overflow: hidden;
}

.section-dark-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(74, 154, 222, .012) 2px, rgba(74, 154, 222, .012) 4px);
    pointer-events: none;
}

.section-dark-gradient::after {
    content: '';
    position: absolute;
    top: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 95, 194, .15) 0%, transparent 70%);
    pointer-events: none;
}

/* ────────────────────────────────────────
     5. FADE-UP ANIMATION
  ──────────────────────────────────────── */
.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;
}

.d5 {
    transition-delay: .5s;
}

/* ────────────────────────────────────────
     6. BUTTONS
  ──────────────────────────────────────── */
.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: background .2s, color .2s, border-color .2s;
    cursor: pointer;
}

.btn-nof:hover {
    background: var(--b2);
    color: #fff;
    border-color: var(--b2);
}

.btn-nof-solid {
    background: var(--b2) !important;
    color: #fff !important;
    border-color: var(--b2) !important;
}

.btn-nof-solid:hover {
    background: var(--b1) !important;
    border-color: var(--b1) !important;
}

.btn-nof-ghost {
    background: none !important;
    border-color: rgba(255, 255, 255, .25) !important;
    color: rgba(255, 255, 255, .7) !important;
}

.btn-nof-ghost:hover {
    background: rgba(255, 255, 255, .1) !important;
}

.btn-nof-outline-light {
    border-color: rgba(74, 154, 222, .4) !important;
    color: var(--b3) !important;
    background: none !important;
}

.btn-nof-outline-light:hover {
    background: var(--b2) !important;
    color: #fff !important;
    border-color: var(--b2) !important;
}

.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);
}

/* ────────────────────────────────────────
     7. LANGUAGE BUTTON
  ──────────────────────────────────────── */
.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);
}

/* ────────────────────────────────────────
     8. NAVBAR
  ──────────────────────────────────────── */
.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-logo-text-mobile {
    font-family: var(--fd);
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--tx-1);
}

.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 14px;
    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: 14px;
    right: 14px;
    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);
}

.nav-chevron {
    font-size: .55rem;
}

/* 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 button */
.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));
}

/* Hamburger button */
.nav-hamburger {
    background: none;
    border: 1px solid var(--bd);
    width: 42px;
    height: 42px;
    color: var(--b3);
    font-size: 1.3rem;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 8px;
}

/* ────────────────────────────────────────
     9. OFFCANVAS MOBILE NAV
  ──────────────────────────────────────── */
#navOffcanvas {
    background: var(--bg-nav);
}

#navOffcanvas .offcanvas-header {
    border-bottom: 1px solid var(--bd);
}

.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,
.offcanvas-nav-link.active {
    color: var(--b3);
}

.offcanvas-nav-link.sub {
    font-size: .72rem;
    letter-spacing: 1.5px;
    padding-left: 16px;
    color: var(--tx-4);
}

/* ────────────────────────────────────────
     10. HERO SECTION (index.html)
  ──────────────────────────────────────── */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-carousel,
.hero-carousel .carousel-inner,
.hero-carousel .carousel-item {
    height: 100%;
}

.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-carousel .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));
    flex-shrink: 0;
}

.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;
}

/* Carousel indicators */
.hero-indicators {
    z-index: 4;
    bottom: 28px;
}

.hero-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;
}

.hero-indicators .active {
    background: var(--b3);
    transform: scale(1.3);
}

/* Scroll indicator */
.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;
    }
}

/* ────────────────────────────────────────
     11. PAGE HERO (inner pages)
  ──────────────────────────────────────── */
.page-hero {
    padding: calc(var(--nav-h) + 60px) 0 60px;
}

.page-hero-inner {
    max-width: 700px;
}

.page-hero-breadcrumb {
    font-family: var(--fd);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-hero-breadcrumb a {
    color: rgba(255, 255, 255, .4);
    transition: color .2s;
}

.page-hero-breadcrumb a:hover {
    color: var(--b3);
}

.page-hero-breadcrumb i {
    font-size: .6rem;
}

.page-hero-title {
    font-family: var(--fd);
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    line-height: .9;
    margin-bottom: 16px;
}

.page-hero-title em {
    color: var(--g3);
    font-style: normal;
}

.page-hero-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .4);
    line-height: 1.7;
}

/* ────────────────────────────────────────
     12. CORPORATE GRID (about & index)
  ──────────────────────────────────────── */
.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;
}

/* ────────────────────────────────────────
     13. SERVICES STRIP (index.html)
  ──────────────────────────────────────── */
.svc-strip-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--bd);
    margin-top: 40px;
}

.svc-strip-item {
    background: var(--bg-card);
    padding: 28px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: background .25s, transform .3s;
    cursor: pointer;
    border-top: 3px solid transparent;
    position: relative;
    overflow: hidden;
    color: inherit;
    text-decoration: none;
}

.svc-strip-item:hover {
    background: var(--bg-surf);
    transform: translateY(-4px);
    border-top-color: var(--b2);
    color: inherit;
}

.svc-strip-item:hover .svc-strip-icon {
    background: var(--b2);
    color: #fff;
    border-color: var(--b2);
    transform: scale(1.08);
}

.svc-strip-icon {
    width: 52px;
    height: 52px;
    background: rgba(74, 154, 222, .08);
    border: 1px solid var(--bd-in);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--b3);
    transition: .3s;
    flex-shrink: 0;
}

.svc-strip-num {
    font-family: var(--fd);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--b3);
    opacity: .5;
}

.svc-strip-title {
    font-family: var(--fd);
    font-size: 13px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--tx-1);
    line-height: 1.2;
}

.svc-strip-sub {
    font-size: 11px;
    color: var(--tx-4);
    line-height: 1.5;
}

/* ────────────────────────────────────────
     14. FLEET PREVIEW CARDS (index.html)
  ──────────────────────────────────────── */
.fleet-prev-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--bd);
    margin-top: 40px;
}

.fp-card {
    position: relative;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
}

.fp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease), filter .6s;
    display: block;
}

.fp-card:hover img {
    transform: scale(1.07);
    filter: brightness(.7);
}

.fp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 25%, rgba(7, 16, 26, .95));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
}

.fp-badge {
    font-family: var(--fd);
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--g3);
    margin-bottom: 5px;
}

.fp-name {
    font-family: var(--fd);
    font-size: 1.4rem;
    letter-spacing: 1px;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 6px;
}

.fp-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6;
    margin-bottom: 14px;
}

.fp-specs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.fp-spec {
    font-family: var(--fd);
    font-size: 9px;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .07);
    padding: 3px 8px;
    border: 1px solid rgba(255, 255, 255, .1);
}

.fp-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    background: rgba(30, 95, 194, .3);
    border: 1px solid rgba(74, 154, 222, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    font-size: .8rem;
    opacity: 0;
    transform: translateY(-6px);
    transition: .3s;
}

.fp-card:hover .fp-arrow {
    opacity: 1;
    transform: none;
}

/* ────────────────────────────────────────
     15. WHY US / SAFETY NUMBERS
  ──────────────────────────────────────── */
.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(74, 154, 222, .1);
    margin-top: 48px;
}

.why-item {
    background: #080f18;
    padding: 36px 24px;
    text-align: center;
    transition: background .25s;
    position: relative;
}

.why-item:hover {
    background: rgba(30, 95, 194, .1);
}

.why-item::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 .4s var(--ease);
}

.why-item:hover::before {
    transform: scaleX(1);
}

.why-num {
    font-family: var(--fd);
    font-size: 3.5rem;
    color: var(--b3);
    line-height: 1;
    margin-bottom: 8px;
}

.why-label {
    font-family: var(--fd);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .4);
}

.why-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, .2);
    margin-top: 5px;
    line-height: 1.5;
}

/* Safety grid (about.html) */
.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(--b2);
    line-height: 1;
}

.safety-stat-l {
    font-size: 10px;
    color: var(--tx-3);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* ────────────────────────────────────────
     16. CLIENT LOGO GRID
  ──────────────────────────────────────── */
.client-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--bd);
    margin-top: 40px;
}

.client-logo-item {
    background: var(--bg-card);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    transition: background .25s;
}

.client-logo-item:hover {
    background: var(--bg-surf);
}

.client-logo-item:hover .client-logo-img {
    filter: none;
    opacity: 1;
}

.client-logo-item:hover .client-logo-name {
    color: var(--b3);
}

.client-logo-img {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
    filter: grayscale(1);
    opacity: .45;
    transition: filter .3s, opacity .3s;
}

.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;
}

/* ────────────────────────────────────────
     17. CTA BANNER (index.html)
  ──────────────────────────────────────── */
.cta-banner-inner {
    position: relative;
    z-index: 2;
}

.cta-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, .4);
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.75;
}

.cta-contact-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.cta-ci {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-ci-icon {
    width: 36px;
    height: 36px;
    background: rgba(74, 154, 222, .1);
    border: 1px solid rgba(74, 154, 222, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--b3);
    font-size: .85rem;
    flex-shrink: 0;
}

.cta-ci-label {
    font-size: 9px;
    color: rgba(255, 255, 255, .3);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--fd);
}

.cta-ci-val {
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
}

.cta-ci-val a {
    color: inherit;
}

/* ────────────────────────────────────────
     18. BOOTSTRAP TABS (shared)
  ──────────────────────────────────────── */
.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;
}

/* ────────────────────────────────────────
     19. BOARD MEMBER CARDS
  ──────────────────────────────────────── */
.mcard-nof {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.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-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), background .45s;
    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;
}

/* Board modal */
.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: none;
}

.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-photo-ph {
    width: 100%;
    min-height: 240px;
    background: linear-gradient(145deg, var(--corp-bg), #0d1e3a);
    display: flex;
    align-items: center;
    justify-content: center;
}

.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;
}

/* ────────────────────────────────────────
     20. NORTHERN OFFSHORE SECTION (about.html)
  ──────────────────────────────────────── */
.nof-rig-list {
    margin: 20px 0 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nof-rig-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(74, 154, 222, .05);
    border: 1px solid rgba(74, 154, 222, .12);
    border-left: 2px solid var(--b2);
}

.nof-rig-item i {
    color: var(--b3);
    font-size: 1rem;
    flex-shrink: 0;
}

.nof-rig-name {
    font-family: var(--fd);
    font-size: 15px;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 2px;
}

.nof-rig-spec {
    font-size: 11px;
    color: rgba(255, 255, 255, .35);
}

.nof-partner-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(74, 154, 222, .1);
}

.nps-item {
    background: rgba(13, 42, 94, .4);
    padding: 32px 24px;
    text-align: center;
    transition: background .25s;
}

.nps-item:hover {
    background: rgba(30, 95, 194, .2);
}

.nps-n {
    font-family: var(--fd);
    font-size: 3rem;
    color: var(--b3);
    line-height: 1;
    margin-bottom: 6px;
}

.nps-l {
    font-family: var(--fd);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
}

/* ────────────────────────────────────────
     21. SERVICES ACCORDION (services.html)
  ──────────────────────────────────────── */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--bd);
    margin-top: 40px;
}

.svc-card {
    background: var(--bg-surf);
    display: flex;
    flex-direction: column;
    transition: background .25s;
    position: relative;
    overflow: hidden;
}

.svc-card:hover {
    background: var(--bg-card);
}

.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);
}

.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;
}

.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);
}

.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;
}

.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;
}

.svc-para {
    font-size: 13px;
    color: var(--tx-3);
    line-height: 1.75;
    margin: 0;
}

.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);
}

.svc-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.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);
}

.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);
}

/* ────────────────────────────────────────
     22. FLEET VESSEL CARDS (fleet.html)
  ──────────────────────────────────────── */
.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-rig-design {
    font-family: var(--fd);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--b3);
    margin-bottom: 3px;
}

.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;
}

/* Partner bar above rigs */
.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;
}

.nof-partner-bar-tag {
    font-family: var(--fd);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--b3);
    margin-bottom: 2px;
}

/* ────────────────────────────────────────
     23. VESSEL MODAL (fleet.html)
  ──────────────────────────────────────── */
.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-specs-label {
    font-family: var(--fd);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--b3);
    margin-bottom: 8px;
}

.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-desc-text {
    font-size: 13px;
    color: var(--tx-3);
    line-height: 1.75;
}

/* ────────────────────────────────────────
     24. OPERATIONS MAP (fleet.html)
  ──────────────────────────────────────── */
.section-map {
    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-title {
    font-size: 9px;
    color: var(--tx-5);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-right: 6px;
}

.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 overrides */
.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-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;
}

/* Map pins */
.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 offcanvas */
#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);
}

/* ────────────────────────────────────────
     25. CERTIFICATION (certification.html)
  ──────────────────────────────────────── */
.cert-stats-bar {
    display: flex;
    gap: 1px;
    background: var(--bd);
    margin-bottom: 48px;
}

.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(--b2);
    line-height: 1;
}

.cert-stat-l {
    font-size: 9px;
    color: var(--tx-3);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 4px;
}

.cert-card {
    background: var(--bg-card);
    border: 1px solid var(--bd);
    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:hover .cert-card-img-wrap img {
    transform: scale(1.04);
}

.cert-card-img-wrap {
    height: 200px;
    overflow: hidden;
    position: relative;
    background: var(--corp-bg);
    flex-shrink: 0;
}

.cert-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s var(--ease);
}

.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);
}

/* ────────────────────────────────────────
     26. GALLERY (gallery.html)
  ──────────────────────────────────────── */
.gallery-grid {
    columns: 4;
    column-gap: 12px;
}

.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);
}

.vid-thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: var(--corp-bg);
    overflow: hidden;
}

.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);
}

.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;
}

.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;
}

.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 prev/next */
.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;
}

/* ────────────────────────────────────────
     27. NEWS (news.html)
  ──────────────────────────────────────── */
.news-empty-state {
    text-align: center;
    padding: 80px 40px;
    background: var(--bg-surf);
    border: 1px dashed var(--bd-in);
}

.news-empty-state i {
    font-size: 3rem;
    color: var(--b3);
    opacity: .3;
    display: block;
    margin-bottom: 16px;
}

.news-empty-state h3 {
    font-family: var(--fd);
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: var(--tx-2);
    margin-bottom: 10px;
}

.news-empty-state p {
    font-size: 13px;
    color: var(--tx-4);
}

.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(--g2);
    margin-bottom: 7px;
}

.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;
}

/* ────────────────────────────────────────
     28. CONTACT (contact.html)
  ──────────────────────────────────────── */
.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);
}

.ci-val a {
    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;
}

.contact-form-wrap {
    background: var(--bg-surf);
    border: 1px solid var(--bd);
    border-top: 2px solid var(--b2);
    padding: 28px;
}

.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;
    outline: none;
}

.cf-input:focus {
    border-color: var(--b2);
    background: var(--bg-card);
}

.cf-input::placeholder {
    color: var(--tx-4);
}

.cf-input option {
    background: var(--bg-surf);
    color: var(--tx-1);
}

/* ────────────────────────────────────────
     29. FOOTER (all pages)
  ──────────────────────────────────────── */
.site-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;
    margin: 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-contact-info {
    font-size: 12px;
    color: rgba(255, 255, 255, .35);
    line-height: 1.7;
    margin: 0;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, .38);
    transition: color .2s;
}

.footer-contact-info a:hover {
    color: var(--b3);
}

.footer-ext-link {
    color: var(--b3) !important;
    font-size: 11px;
}

.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;
}

.site-footer .lang-btn {
    border-color: rgba(74, 154, 222, .25);
    color: rgba(255, 255, 255, .4);
}

.site-footer .lang-btn.active,
.site-footer .lang-btn:hover {
    border-color: var(--b2);
    color: var(--b3);
}

/* ────────────────────────────────────────
     30. RESPONSIVE
  ──────────────────────────────────────── */
@media (max-width: 1399px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .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;
    }

    .svc-strip-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .client-logo-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    :root {
        --nav-h: 62px;
    }

    section {
        padding: 64px 0;
    }

    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        columns: 3;
    }

    .fleet-prev-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fp-card {
        height: 320px;
    }

    .bm-simple {
        flex-direction: column;
    }

    .bm-simple-photo {
        width: 100%;
    }

    .bm-simple-photo .bm-photo {
        min-height: 200px;
        max-height: 220px;
    }

    .bm-simple-info {
        padding: 20px 18px;
    }

    .nof-partner-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    #gmap {
        height: 380px;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }
}

@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 {
        height: 260px;
    }

    .svc-grid {
        grid-template-columns: 1fr;
    }

    .fleet-prev-grid {
        grid-template-columns: 1fr;
    }

    .fp-card {
        height: 300px;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .client-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-contact-row {
        gap: 16px;
    }

    .vm-gal {
        grid-template-columns: 1fr;
    }

    .vm-gal img.main {
        height: 190px;
    }

    .vm-gal img {
        height: 140px;
    }

    .cert-stats-bar {
        flex-wrap: wrap;
    }

    .cert-stat-item {
        flex: 1 0 40%;
    }

    #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;
    }

    .gallery-grid {
        columns: 2;
    }

    .nof-partner-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    :root {
        --nav-h: 56px;
    }

    section {
        padding: 44px 0;
    }

    .hero-h1 {
        font-size: clamp(2.5rem, 12vw, 3.8rem);
    }

    .nof-h2 {
        font-size: clamp(1.6rem, 9vw, 2.2rem);
    }

    .svc-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: 1fr 1fr;
    }

    .safety-stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .vcn-specs {
        grid-template-columns: 1fr;
    }

    .vcn-specs .vsp {
        border-right: none;
    }

    .nof-tabs .nav-link {
        font-size: 9px;
        letter-spacing: 1px;
        padding: 9px 10px;
    }

    .bm-simple-bio {
        max-height: 150px;
    }

    .mp-content {
        flex-wrap: wrap;
        gap: 10px;
    }

    .mp-btn {
        width: 100%;
        justify-content: center;
    }

    .gallery-grid {
        columns: 2;
    }

    .cert-stat-item {
        flex: 1 0 45%;
    }
}