:root {
    --navy: #0f2f4a;
    --navy-2: #123a5b;
    --blue: #1e6aa6;
    --accent: #f2c94c;
    --bg: #f6f8fb;
    --card: #ffffff;
    --muted: #6b7280;
    --text: #111827;
    --border: #e5e7eb;
    --shadow: 0 10px 30px rgba(15, 47, 74, .10);
    --radius: 14px;
    --max: 1180px;
}

* {
    box-sizing: border-box
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg)
}

a {
    color: inherit;
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 18px
}

/* Top bar */
.topbar {
    background: linear-gradient(90deg, var(--navy), var(--navy-2));
    color: #fff;
    font-size: 14px;
}

.topbar .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 0;
}

.topbar .left,
.topbar .right {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
}

.pill svg {
    width: 16px;
    height: 16px;
    opacity: .9
}

/* Header */
header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 6px 20px rgba(17, 24, 39, .04);
    position: relative;
    top: 0;
    z-index: 1000;
}
.header .brand img{
    display:none !important;
}
.brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 16px 0;
}

.brand-left {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 260px;
}

.logo{
    width:320px;
    height:200px;
    background-image: url('/assets/finalizegolo.png');
    background-repeat:no-repeat;
    background-position:left center;
    background-size:contain;
}

header .brand .logo {
    display: block !important;
}
.brand-title {
    line-height: 1.1
}

.brand-title .h {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: .2px;
}

.brand-title .sub {
    font-size: 13px;
    color: var(--muted);
    margin-top: 4px;
}

.brand-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.search {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 9px 12px;
    background: #fff;
    min-width: 260px;
}

.search input {
    width: 100%;
    border: 0;
    outline: 0;
    font-size: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 12px;
    padding: 10px 12px;
    font-weight: 700;
    border: 1px solid var(--border);
    background: #fff;
    cursor: pointer;
    transition: .15s ease;
    user-select: none;
}

.btn.primary {
    background: linear-gradient(90deg, var(--blue), var(--navy));
    color: #fff;
    border-color: transparent;
}

.btn:hover {
    transform: translateY(-1px)
}

.btn svg {
    width: 18px;
    height: 18px
}

/* Nav */
nav {
    background: var(--navy);
    color: #fff;
}

.navrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.navlinks {
    display: flex;
    gap: 2px;
    align-items: stretch
}
.nav {
    position: relative;
    z-index: 1000;
}
.navlinks>a,
.drop>button {
    color: #fff;
    padding: 14px 14px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 0;
    cursor: pointer;
    border-radius: 10px 10px 0 0;
}

.navlinks>a:hover,
.drop>button:hover {
    background: rgba(255, 255, 255, .08)
}

.drop {
    position: relative
}

.menu {
    position: absolute;
    top: 44px;
    left: 0;
    min-width: 240px;
    background: #163c5c;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 8px;
    display: none;
    z-index: 9999;
}

.menu a {
    display: block;
    padding: 10px 10px;
    border-radius: 10px;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
}

.menu a:hover {
    background: #f3f4f6
}

.drop.open .menu {
    display: block
}

.hamburger {
    display: none;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .06);
    color: #fff;
    font-weight: 800;
}

/* Hero slider */
.hero {
    position: relative;
    background: linear-gradient(180deg, rgba(15, 47, 74, .03), transparent);
    padding: 22px 0 0;
}

.slider {
    border-radius: var(--radius);
    overflow: hidden;
    background: #0b1f30;
    box-shadow: var(--shadow);
    position: relative;
}

.slide {
    display: none;
    min-height: 320px;
    position: relative;
    color: #fff;
    padding: 34px 26px;
}

.slide.active {
    display: block
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(1200px 380px at 15% 0%, rgba(242, 201, 76, .20), transparent 55%),
        radial-gradient(900px 360px at 85% 10%, rgba(30, 106, 166, .35), transparent 55%),
        linear-gradient(90deg, rgba(15, 47, 74, .88), rgba(15, 47, 74, .55));
    z-index: 0;
}

.slide .content {
    position: relative;
    z-index: 1;
    max-width: 740px
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
}

.slide h1 {
    margin: 14px 0 10px;
    font-size: 44px;
    line-height: 1.05;
    letter-spacing: -.5px;
}

.slide p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, .88);
    font-size: 16px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.btn.white {
    background: #fff;
    color: #0b1f30;
    border-color: transparent;
    font-weight: 800;
}

.btn.ghost {
    background: rgba(255, 255, 255, .10);
    color: #fff;
    border-color: rgba(255, 255, 255, .18);
}

.slider-controls {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .35);
    border: 1px solid rgba(255, 255, 255, .25);
    cursor: pointer;
}

.dot.active {
    background: var(--accent);
    border-color: rgba(255, 255, 255, .0)
}

.arrows {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 2;
    pointer-events: none;
}

.arrow {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    display: grid;
    place-items: center;
    pointer-events: auto;
    cursor: pointer;
}

.arrow:hover {
    background: rgba(255, 255, 255, .16)
}

/* Sections */
main {
    padding: 26px 0 44px
}

.grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 18px;
    margin-top: 18px;
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(17, 24, 39, .06);
    overflow: hidden;
}

.card .head {
    padding: 16px 16px 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.title {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: .2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.title small {
    font-weight: 700;
    color: var(--muted)
}

.card .body {
    padding: 16px
}

.muted {
    color: var(--muted)
}

.link {
    color: var(--blue);
    font-weight: 800;
    font-size: 14px;
}

/* News list */
.news {
    display: grid;
    gap: 12px;
}

.news-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
    transition: .15s ease;
}

.news-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 30px rgba(17, 24, 39, .08)
}

.thumb {
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(30, 106, 166, .25), rgba(15, 47, 74, .20));
    border: 1px solid rgba(30, 106, 166, .15);
    height: 70px;
}

.news-item h3 {
    margin: 0 0 6px;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 900;
}

.meta {
    font-size: 13px;
    color: var(--muted);
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.excerpt {
    font-size: 14px;
    color: #374151;
    line-height: 1.55;
    margin-top: 6px
}

/* Agenda */
.agenda {
    display: grid;
    gap: 12px;
}

.agenda-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
}

.datebox {
    border-radius: 14px;
    background: linear-gradient(180deg, var(--blue), var(--navy));
    color: #fff;
    display: grid;
    place-items: center;
    padding: 10px 8px;
    text-align: center;
    font-weight: 900;
}

.datebox .m {
    font-size: 12px;
    opacity: .9;
    letter-spacing: .8px
}

.datebox .d {
    font-size: 26px;
    line-height: 1
}

.agenda-item h3 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 900
}

.agenda-item p {
    margin: 0;
    font-size: 14px;
    color: #374151;
    line-height: 1.55
}

/* Services */
.services {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.svc {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 8px 22px rgba(17, 24, 39, .06);
    transition: .15s ease;
    min-height: 120px;
}

.svc:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(17, 24, 39, .10)
}

.svc .icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(30, 106, 166, .12);
    border: 1px solid rgba(30, 106, 166, .18);
    display: grid;
    place-items: center;
    margin-bottom: 10px;
}

.svc h4 {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 900
}

.svc p {
    margin: 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #f3f4f6;
    border: 1px solid var(--border);
    font-weight: 800;
    color: #111827;
    font-size: 13px;
}

/* Callout */
.callout {
    margin-top: 18px;
    background: linear-gradient(90deg, rgba(30, 106, 166, .10), rgba(15, 47, 74, .06));
    border: 1px solid rgba(30, 106, 166, .18);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .90);
    padding: 28px 0;
    margin-top: 26px;
}

.footergrid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 18px;
}

footer h5 {
    margin: 0 0 10px;
    font-size: 14px;
    color: #fff;
    letter-spacing: .3px
}

footer p,
footer a {
    font-size: 14px;
    color: rgba(255, 255, 255, .86);
    line-height: 1.7
}

.copyright {
    margin-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding-top: 14px;
    font-size: 13px;
    color: rgba(255, 255, 255, .75);
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px) {
    .grid {
        grid-template-columns: 1fr
    }

    .services {
        grid-template-columns: repeat(2, 1fr)
    }

    .search {
        display: none
    }

    .hamburger {
        display: inline-flex
    }

    .navlinks {
        display: none
    }

    .navrow {
        padding: 10px 0
    }

    nav.open .navlinks {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 10px 0 16px;
    }

    .navlinks>a,
    .drop>button {
        border-radius: 12px
    }

    .drop .menu {
        position: static;
        box-shadow: none;
        border-radius: 12px;
        margin-top: 6px
    }
}

@media (max-width: 560px) {
    .slide h1 {
        font-size: 34px
    }

    .services {
        grid-template-columns: 1fr
    }

    .brand-left {
        min-width: auto
    }
}

/* ============================= */
/* HEADER FIX (HARD-CODE COLORS) */
/* ============================= */

header{
  background: linear-gradient(135deg, #0f2f4a, #123a5b) !important;
  color: #ffffff !important;
}

header a { color:#ffffff !important; }

.brand-title .h { 
  color:#ffffff !important; 
}

.brand-title .sub { 
  color: rgba(255,255,255,.85) !important; 
}


/* search box */
.search{
  background: rgba(255,255,255,.14) !important;
  border: 1px solid rgba(255,255,255,.25) !important;
}

.search input{
  color:#ffffff !important;
  background: transparent !important;
}

.search input::placeholder{
  color: rgba(255,255,255,.75) !important;
}

.search svg{
  color: rgba(255,255,255,.85) !important;
}
/* Link download formulir */
.download-list a{
color:#0d6efd;
text-decoration:underline;
font-weight:500;
}

.download-list a:hover{
color:#0a58ca;
}