:root {
    --navy-950: #081426;
    --navy-900: #0B1D38;
    --navy-800: #122A4C;
    --navy-700: #1B3A63;
    --gold: #C9962E;
    --gold-light: #E8C05C;
    --gold-pale: #F3E3BB;
    --paper: #F7F5F0;
    --white: #FFFFFF;
    --ink: #1C2534;
    --ink-soft: #4A566B;
    --line: rgba(201, 150, 46, .35);
    --shadow: 0 18px 50px -18px rgba(8, 20, 38, .35);
    --radius: 14px;
    --font-display: 'Fraunces', serif;
    --font-body: 'Work Sans', sans-serif;
}

/* Reset/box-sizing comes from Bootstrap Reboot; only neutralize the
   typographic margins Reboot adds so the layout matches the design. */
h1, h2, h3, h4, h5, h6, p {
    margin: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    min-height: 100vh
}

.site-main {
    flex: 1 0 auto
}

img {
    max-width: 100%
}

a {
    text-decoration: none;
    color: inherit
}

.eyebrow {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .72rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: .6rem
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 2px;
    background: var(--gold)
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    text-transform: uppercase;
    line-height: 1.08;
    letter-spacing: .01em;
    font-weight: 700
}

h2.section-title {
    font-size: clamp(2rem, 4.4vw, 3rem);
    margin: .6rem 0 1rem;
    color: var(--navy-900)
}

.section {
    padding: 5.5rem 0
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
    border-radius: 4px
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important
    }
}

/* ---------- NAVBAR ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(8, 20, 38, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 150, 46, .25)
}

.nav-inner {
    height: 70px
}

.brand {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: var(--white)
}

.brand-logo {
    height: 46px;
    width: auto;
    max-height: calc(100% - 12px);
    flex: none;
    object-fit: contain
}

.brand-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .06em;
    line-height: 1.15;
    text-transform: uppercase
}

.nav-links {
    display: flex;
    gap: 1.6rem;
    align-items: center
}

.nav-links a {
    color: rgba(255, 255, 255, .82);
    font-size: .86rem;
    font-weight: 600;
    transition: color .2s
}

.nav-links a:hover {
    color: var(--gold-light)
}

.nav-dropdown {
    position: relative
}

.nav-dropdown-toggle::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: .45rem;
    vertical-align: middle;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .2s
}

.nav-dropdown:hover .nav-dropdown-toggle::after,
.nav-dropdown:focus-within .nav-dropdown-toggle::after {
    transform: rotate(-135deg) translateY(-1px)
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    display: flex;
    flex-direction: column;
    gap: .15rem;
    margin-top: .9rem;
    padding: .5rem;
    background: var(--navy-950);
    border: 1px solid rgba(201, 150, 46, .25);
    border-radius: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s, transform .2s, visibility .2s
}

/* invisible bridge so hover survives the gap between toggle and menu */
.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -.9rem;
    left: 0;
    right: 0;
    height: .9rem
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none
}

.nav-dropdown-menu a {
    padding: .5rem .7rem;
    border-radius: 8px;
    font-size: .84rem;
    white-space: nowrap;
    transition: background .2s, color .2s
}

.nav-dropdown-menu a:hover {
    background: rgba(201, 150, 46, .12);
    color: var(--gold-light)
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: .8rem
}

.lang-toggle {
    display: flex;
    border: 1px solid rgba(201, 150, 46, .5);
    border-radius: 999px;
    overflow: hidden
}

.lang-toggle button,
.lang-toggle a {
    background: transparent;
    border: 0;
    color: rgba(255, 255, 255, .7);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: .74rem;
    letter-spacing: .08em;
    padding: .42rem .8rem;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s, color .2s
}

.lang-toggle button.active,
.lang-toggle a.active {
    background: var(--gold);
    color: var(--navy-950)
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: #25D366;
    color: #062b16;
    font-weight: 800;
    font-size: .86rem;
    padding: .62rem 1.15rem;
    border-radius: 999px;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 8px 22px -8px rgba(37, 211, 102, .65)
}

.btn-wa:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -8px rgba(37, 211, 102, .7)
}

.btn-wa svg {
    width: 19px;
    height: 19px;
    flex: none
}

.nav .btn-wa {
    padding: .55rem 1rem
}

.hamburger {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    padding: .4rem
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: .3s
}

@media(max-width:920px) {
    .nav-links {
        position: fixed;
        top: 70px;
        right: 0;
        background: var(--navy-950);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.6rem;
        gap: 1.1rem;
        width: min(300px, 80vw);
        height: calc(100vh - 70px);
        transform: translateX(100%);
        transition: transform .3s;
        border-left: 1px solid var(--line)
    }

    .nav-links.open {
        transform: translateX(0)
    }

    /* dropdown expands inline within the mobile slide-in panel */
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: 0;
        margin: .5rem 0 0 .9rem;
        padding: 0;
        gap: .7rem;
        background: transparent;
        border: 0;
        box-shadow: none
    }

    .nav-dropdown-menu::before,
    .nav-dropdown-toggle::after {
        display: none
    }

    .hamburger {
        display: block
    }

    .nav .btn-wa span {
        display: none
    }

    .nav .btn-wa {
        padding: .55rem .65rem
    }
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    background: linear-gradient(148deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-800) 100%);
    color: var(--white);
    padding: 10.5rem 0 0;
    overflow: hidden
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 85% 15%, rgba(201, 150, 46, .16), transparent 60%),
        radial-gradient(ellipse 45% 40% at 10% 90%, rgba(201, 150, 46, .08), transparent 60%)
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 70% at 60% 30%, black, transparent)
}

.hero-inner {
    position: relative;
    padding-bottom: 4.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center
}

.hero-copy {
    min-width: 0
}

/* ---------- HERO GALLERY (Swiper Coverflow) ---------- */
.hero-gallery {
    position: relative;
    min-width: 0;
    /* keep the coverflow fan clipped inside the right column */
    overflow: hidden
}

.hero-swiper {
    width: 100%;
    padding-bottom: 2.75rem;
    overflow: hidden
}

.hero-swiper .swiper-slide {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, .04);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .45);
    border: 1px solid rgba(255, 255, 255, .08)
}

.hero-swiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-slide-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.4rem .9rem .7rem;
    font-size: .82rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(to top, rgba(8, 20, 38, .9), transparent);
    text-align: center
}

.hero-swiper .swiper-pagination {
    bottom: 0
}

.hero-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, .45);
    opacity: 1
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--gold-light);
    width: 22px;
    border-radius: 999px
}

.hero h1 {
    font-size: 50px;
    font-weight: 700
}

.hero h1 .gold {
    color: transparent;
    background: linear-gradient(100deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    background-clip: text
}

.btn-wa-lg {
    font-size: 1rem;
    padding: .9rem 1.6rem
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    color: var(--gold-light);
    font-weight: 700;
    font-size: .95rem;
    padding: .9rem 1.4rem;
    border: 1px solid rgba(201, 150, 46, .55);
    border-radius: 999px;
    transition: background .2s
}

.btn-ghost:hover {
    background: rgba(201, 150, 46, .12)
}

@media(max-width:920px) {
    .hero-inner {
        padding-bottom: 3.5rem;
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .hero-swiper .swiper-slide {
        width: 220px;
        height: 220px
    }
}

@media(max-width:560px) {
    .hero-swiper .swiper-slide {
        width: 180px;
        height: 180px
    }
}

/* ---------- ABOUT ---------- */
.about-text p {
    color: var(--ink-soft);
    margin-bottom: 1.1rem
}

.about-text p strong {
    color: var(--navy-900)
}

.stat {
    background: var(--white);
    border: 1px solid rgba(28, 37, 52, .08);
    border-top: 3px solid var(--gold);
    border-radius: var(--radius);
    padding: 1.5rem 1.4rem;
    box-shadow: 0 10px 30px -18px rgba(8, 20, 38, .25)
}

.stat .num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1
}

.stat .num sup {
    font-size: 1.2rem;
    color: var(--gold)
}

.stat .lbl {
    font-size: .82rem;
    font-weight: 700;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-top: .5rem
}

.purpose {
    margin-top: 1.4rem;
    background: var(--navy-900);
    color: rgba(255, 255, 255, .85);
    border-radius: var(--radius);
    padding: 1.5rem 1.6rem;
    border-left: 4px solid var(--gold);
    font-size: .95rem
}

.purpose b {
    color: var(--gold-light);
    display: block;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .35rem;
    font-size: 1rem
}

/* ---------- HISTORY ---------- */
.history {
    background: var(--paper);
    color: var(--ink);
    position: relative;
    overflow: hidden
}

.history::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(201, 150, 46, .2);
    border-radius: 50%
}

.history::after {
    content: "";
    position: absolute;
    right: -60px;
    top: -60px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(201, 150, 46, .14);
    border-radius: 50%
}

.history h2.section-title {
    color: var(--white)
}

.timeline {
    position: relative;
    display: grid;
    gap: 0
}

.timeline::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--gold), rgba(201, 150, 46, .15))
}

.t-item {
    position: relative;
    padding: 0 0 1.6rem 3rem
}

.t-item:last-child {
    padding-bottom: 0
}

.t-item::before {
    content: "";
    position: absolute;
    left: 3px;
    top: 1.5rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--paper);
    border: 3px solid var(--gold);
    box-shadow: 0 0 0 4px var(--paper)
}

.t-card {
    background: var(--white);
    border: 1px solid rgba(28, 37, 52, .08);
    border-radius: 12px;
    padding: 1.1rem 1.3rem;
    box-shadow: 0 8px 24px -18px rgba(8, 20, 38, .35);
    transition: transform .2s ease, border-color .2s ease
}

.t-card:hover {
    transform: translateX(4px);
    border-color: rgba(201, 150, 46, .5)
}

.t-year {
    display: inline-block;
    font-family: var(--font-display);
    font-size: .92rem;
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--navy-950);
    background: var(--gold-light);
    padding: .12rem .75rem;
    border-radius: 999px;
    margin-bottom: .6rem
}

.t-title {
    font-weight: 800;
    font-size: 1.05rem;
    margin: 0 0 .3rem;
    color: var(--navy-900)
}

.t-desc {
    color: var(--ink-soft);
    font-size: .93rem;
    max-width: 640px
}

/* ---------- PAGE HEADER (standalone pages) ---------- */
.page-head {
    background: var(--navy-900);
    color: var(--white);
    /* 70px = tinggi navbar fixed yang menimpa bagian atas header */
    padding: calc(70px + 2rem) 0 2rem;
    text-align: center
}

.page-head h1 {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    letter-spacing: .01em;
    color: var(--gold-light);
    /* margin-top: .6rem */
}

/* ---------- VISION MISSION ---------- */
.vision-card {
    background: var(--navy-900);
    color: var(--white);
    border-radius: var(--radius);
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow)
}

.vision-card.mx-auto {
    max-width: 900px;
    text-align: center
}

.vision-card.mx-auto .card-label {
    justify-content: center
}

.vision-card.mx-auto p {
    font-size: 1.1rem
}

.vm-subtitle {
    font-family: var(--font-display);
    text-transform: uppercase;
    color: var(--navy-900);
    font-size: 1.6rem;
    text-align: center;
    /* margin: 3rem 0 1.4rem */
}

.vision-card::before {
    content: "“";
    position: absolute;
    top: -30px;
    right: 6px;
    font-family: var(--font-display);
    font-size: 11rem;
    color: rgba(201, 150, 46, .18);
    line-height: 1
}

.vision-card .card-label {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--gold-light);
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.1rem
}

.vision-card p {
    position: relative;
    color: rgba(255, 255, 255, .88);
    font-size: 1.02rem;
    font-style: italic
}

.mission-list {
    display: grid;
    gap: .75rem
}

.mission-item {
    display: flex;
    gap: 1rem;
    background: var(--white);
    border: 1px solid rgba(28, 37, 52, .08);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    align-items: flex-start;
    box-shadow: 0 8px 24px -18px rgba(8, 20, 38, .3)
}

.mission-num {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--gold);
    font-size: 1.1rem;
    flex: none;
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--gold);
    border-radius: 8px;
    display: grid;
    place-items: center
}

.mission-item p {
    font-size: .92rem;
    color: var(--ink-soft)
}

/* ---------- MANAGEMENT ---------- */
.mgmt-card {
    display: flex;
    flex-direction: column;
    background: var(--navy-900);
    color: var(--white);
    border: 1px solid rgba(201, 150, 46, .2);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 14px 40px -24px rgba(8, 20, 38, .5);
    transition: transform .25s ease, box-shadow .25s ease
}

.mgmt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px -22px rgba(8, 20, 38, .6)
}

.mgmt-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    background: var(--navy-800)
}

.mgmt-body {
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1
}

.mgmt-name {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: .02em;
    color: var(--white)
}

.mgmt-role {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .8rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-top: .2rem
}

.mgmt-desc {
    margin-top: .7rem;
    font-size: .78rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, .72)
}

.mgmt-edu {
    margin-top: auto;
    padding-top: .9rem
}

.mgmt-edu-head {
    display: flex;
    align-items: center;
    gap: .5rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: .7rem;
    font-weight: 700;
    color: var(--white)
}

.mgmt-edu-head i {
    color: var(--gold-light);
    font-size: .88rem
}

.mgmt-edu ul {
    list-style: none;
    margin: .5rem 0 0;
    padding: 0
}

.mgmt-edu li {
    position: relative;
    padding-left: 1rem;
    font-size: .76rem;
    color: rgba(255, 255, 255, .72);
    margin-bottom: .25rem
}

.mgmt-edu li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .5rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold-light)
}

/* ---------- LEGALITY ---------- */
.legal-card {
    display: flex;
    gap: 1.1rem;
    background: var(--white);
    border: 1px solid rgba(28, 37, 52, .08);
    border-radius: var(--radius);
    padding: 1.4rem 1.5rem;
    box-shadow: 0 10px 30px -22px rgba(8, 20, 38, .4);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease
}

.legal-card:hover {
    transform: translateY(-4px);
    border-color: rgba(201, 150, 46, .4);
    box-shadow: 0 18px 40px -22px rgba(8, 20, 38, .45)
}

.legal-icon {
    flex: none;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(201, 150, 46, .12);
    color: var(--gold);
    font-size: 1.25rem
}

.legal-body {
    display: flex;
    flex-direction: column;
    flex: 1
}

.legal-name {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.25
}

.legal-meta {
    margin-top: .35rem
}

.legal-number {
    font-weight: 700;
    font-size: .9rem;
    color: var(--navy-800)
}

.legal-issuer {
    font-size: .82rem;
    color: var(--ink-soft);
    margin-top: .1rem
}

.legal-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    margin-top: auto;
    padding-top: 1rem
}

.legal-status {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 700;
    color: #1a7f4b
}

.legal-status i {
    color: #1a7f4b
}

.legal-view {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 700;
    color: var(--gold);
    border: 1px solid rgba(201, 150, 46, .5);
    border-radius: 999px;
    padding: .3rem .8rem;
    transition: background .2s, color .2s
}

.legal-view:hover {
    background: var(--gold);
    color: var(--white)
}

.legal-note {
    margin-top: 2rem;
    text-align: center;
    font-size: .88rem;
    font-style: italic;
    color: var(--ink-soft)
}

/* ---------- PRODUCTS (per bidang) ---------- */
.produk-intro {
    max-width: 780px;
    color: var(--ink-soft);
    font-size: .98rem
}

.produk-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid rgba(28, 37, 52, .08);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 10px 30px -22px rgba(8, 20, 38, .4);
    transition: transform .25s ease, box-shadow .25s ease
}

.produk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 44px -22px rgba(8, 20, 38, .45)
}

.produk-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    background: var(--paper)
}

.produk-body {
    padding: 1.1rem 1.3rem
}

.produk-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy-900)
}

.produk-desc {
    margin-top: .4rem;
    font-size: .86rem;
    line-height: 1.55;
    color: var(--ink-soft)
}

.produk-other {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .6rem;
    margin-top: 3rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(28, 37, 52, .1)
}

.produk-other-label {
    font-weight: 700;
    font-size: .86rem;
    color: var(--navy-900)
}

.produk-other a {
    font-size: .82rem;
    font-weight: 600;
    color: var(--white);
    background: var(--navy-800);
    border: 1px solid var(--navy-700);
    border-radius: 999px;
    padding: .35rem .9rem;
    transition: background .2s, color .2s
}

.produk-other a:hover {
    background: var(--navy-900);
    color: var(--gold-light)
}

/* ---------- BUSINESS FIELDS ---------- */
.fields {
    background: linear-gradient(180deg, var(--paper), #EFEAE0)
}

.field-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius);
    padding: 0;
    border: 1px solid rgba(28, 37, 52, .07);
    position: relative;
    overflow: hidden;
    height: 100%;
    color: inherit;
    transition: transform .25s, box-shadow .25s, border-color .25s
}

.field-head {
    position: relative;
    background: var(--navy-900);
    text-align: center;
    padding: 2.2rem 1.2rem 1.4rem
}

.field-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem 1.2rem 1.5rem
}

/* equal-height cards inside the carousel */
.fields-carousel .owl-stage {
    display: flex
}

/* Jangan override lebar .owl-item — Owl menyetel width per item via
   inline style; flex-grow membuatnya melar dan stage meluap. */
.fields-carousel .owl-item {
    display: flex;
    flex: 0 0 auto
}

.fields-carousel .item {
    display: flex;
    width: 100%
}

.fields-carousel .owl-dot span {
    background: rgba(28, 37, 52, .2) !important
}

.fields-carousel .owl-dot.active span {
    background: var(--gold) !important
}

.field-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s
}

.field-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 150, 46, .4);
    box-shadow: 0 20px 44px -22px rgba(8, 20, 38, .45)
}

.field-card:hover::before {
    transform: scaleX(1)
}

.field-icon {
    color: var(--gold);
    font-size: 34px;
    margin-bottom: .8rem
}

.field-head h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--white);
    margin: 0;
    line-height: 1.35;
    min-height: 2.7em;
    display: flex;
    align-items: center;
    justify-content: center
}

.field-img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(28, 37, 52, .1)
}

.field-desc {
    font-size: .88rem;
    line-height: 1.55;
    color: var(--ink-soft);
    margin: 1rem 0 0
}

.field-desc::before {
    content: "";
    display: block;
    width: 36px;
    height: 3px;
    border-radius: 2px;
    background: var(--gold);
    margin-bottom: .6rem
}

.field-tag {
    position: absolute;
    top: .9rem;
    left: .9rem;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--gold);
    color: var(--navy-900);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    display: grid;
    place-items: center
}

/* ---------- COMMITMENT ---------- */
.commitment {
    background: var(--navy-900);
    color: var(--white);
    position: relative;
    overflow: hidden
} 

.commitment-card {
    min-height: 260px;
    border: 1px solid rgba(201, 150, 46, .35);
    background: rgba(255, 255, 255, .03)
}

.commitment-icon {
    width: 80px;
    height: 80px;
    background: var(--navy-900);
    border: 2px solid rgba(201, 150, 46, .5)
}

.commitment-icon i {
    font-size: 35px;
    color: var(--gold-light)
}

.commitment-card b {
    display: block;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--gold-light);
    margin-bottom: .35rem;
    font-size: .90rem;
    font-weight: 600
}

.commitment-card span {
    line-height: 1.2;
    font-size: .85rem;
    color: rgba(255, 255, 255, .68)
}

/* 7 kartu dalam satu baris di layar besar */
@media (min-width: 1200px) {
    .row-cols-xl-7 > * {
        flex: 0 0 auto;
        width: 14.2857%
    }

    .row-cols-xl-7 .commitment-card {
        min-height: 220px
    }

    .row-cols-xl-7 .commitment-icon {
        width: 60px;
        height: 60px
    }

    .row-cols-xl-7 .commitment-icon i {
        font-size: 26px
    }

    .row-cols-xl-7 .commitment-card b {
        font-size: .78rem;
        letter-spacing: .04em
    }

    .row-cols-xl-7 .commitment-card span {
        font-size: .74rem
    }
}

/* Varian terang untuk section bergaya commitment */
.commitment--light {
    background: var(--paper);
    color: var(--ink)
}

.commitment--light .commitment-card {
    background: var(--white)
}

.commitment--light .commitment-icon {
    background: var(--white)
}

.commitment--light .commitment-icon i {
    color: var(--gold)
}

.commitment--light .commitment-card b {
    color: var(--navy-900)
}

.commitment--light .commitment-card span {
    color: var(--ink-soft)
}

/* ---------- GALLERY ---------- */
.gallery-item {
    position: relative;
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(28, 37, 52, .08)
}

.gallery-item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .35s
}

.gallery-item:hover img {
    transform: scale(1.06)
}

.gallery-item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.6rem .9rem .7rem;
    background: linear-gradient(180deg, transparent, rgba(8, 20, 38, .85));
    color: var(--white);
    font-size: .85rem;
    font-weight: 600
}

/* ---------- PARTNERS ---------- */
.partners-carousel {
    margin-top: 2.4rem
}

.partners-carousel .item {
    display: flex;
    justify-content: center
}

.partner-logo {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid rgba(28, 37, 52, .08)
}

.partners-note {
    margin-top: 1.4rem;
    font-size: .85rem;
    color: var(--ink-soft);
    font-style: italic
}

/* ---------- WORKFLOW (ALUR KERJA) ---------- */
.flow-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 1.6rem;
  margin-top: 2.4rem
}

.flow-step {
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(28, 37, 52, .08);
  border-radius: var(--radius);
  padding: 1.4rem 1rem 1rem;
  box-shadow: 0 6px 18px rgba(8, 20, 38, .06)
}

.flow-head {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .9rem
}

.flow-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--navy-900);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem
}

.flow-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .92rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: .5rem
}

.flow-desc {
  font-size: .82rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin-bottom: .9rem
}

.flow-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(28, 37, 52, .1);
  margin-top: auto
}

@media (min-width: 768px) {
  .flow-row {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media (min-width: 992px) {
  .flow-row {
    grid-template-columns: repeat(5, 1fr)
  }

}

/* ---------- CONTACT ---------- */
.contact {
    background: linear-gradient(150deg, var(--navy-950), var(--navy-800));
    color: var(--white);
    position: relative;
    overflow: hidden
}

.contact::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 50% 60% at 90% 10%, rgba(201, 150, 46, .15), transparent 65%)
}

.contact h2.section-title {
    color: var(--white)
}

.contact-list {
    display: grid;
    gap: 1.1rem;
    margin-top: 2rem
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start
}

.contact-item svg {
    width: 22px;
    height: 22px;
    color: var(--gold-light);
    flex: none;
    margin-top: .15rem
}

.contact-item b {
    display: block;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--gold-light);
    margin-bottom: .15rem
}

.contact-item span {
    font-size: .95rem;
    color: rgba(255, 255, 255, .85)
}

.wa-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(201, 150, 46, .4);
    border-radius: var(--radius);
    padding: 2.4rem 2.2rem;
    text-align: center;
    backdrop-filter: blur(6px)
}

.wa-card h3 {
    font-size: 1.55rem;
    color: var(--white);
    margin-bottom: .6rem
}

.wa-card p {
    color: rgba(255, 255, 255, .7);
    font-size: .95rem;
    margin-bottom: 1.6rem
}

.wa-number {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: .06em;
    color: var(--gold-light);
    margin-bottom: 1.4rem;
    display: block
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--navy-950);
    color: rgba(255, 255, 255, .55);
    padding: 2rem 0;
    border-top: 1px solid rgba(201, 150, 46, .25);
    font-size: .84rem
}

.footer b {
    color: var(--gold-light);
    font-weight: 700
}

/* ---------- FLOATING WA ---------- */
.wa-float {
    position: fixed;
    bottom: 1.6rem;
    right: 1.6rem;
    z-index: 99;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .75);
    transition: transform .2s
}

.wa-float:hover {
    transform: scale(1.08)
}

.wa-float svg {
    width: 30px;
    height: 30px;
    color: #fff
}

.wa-float::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, .5);
    animation: pulse 2s infinite
}

@keyframes pulse {
    0% {
        transform: scale(.9);
        opacity: 1
    }

    100% {
        transform: scale(1.25);
        opacity: 0
    }
}

/* reveal on scroll */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

@media(prefers-reduced-motion:reduce) {
    .reveal {
        opacity: 1;
        transform: none
    }
}

@media(max-width:560px) {
    .section {
        padding: 4rem 0
    }

    .stat {
        padding: 1.1rem 1rem
    }

    .stat .num {
        font-size: 2rem
    }
}
