/* =========================================================
   Premium UI overrides for site header & footer
   File ini ditambahkan setelah component.css agar override.
   ========================================================= */

/* ---------------- TOP HEADER (info bar) ---------------- */
.site-header {
    background: linear-gradient(90deg, #066f70 0%, #098486 50%, #0aa6a8 100%);
    color: #fff;
    position: relative;
    z-index: 11;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}
.site-header::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
}
.site-header .header-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    color: rgba(255,255,255,0.9);
    transition: color .2s ease, transform .2s ease;
}
.site-header .header-link:hover {
    color: #fff;
}
.site-header .header-link-ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(255,255,255,0.14);
    font-size: 11px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: 0.02em;
    padding: 6px 14px;
    border-radius: 999px;
    line-height: 1;
    transition: all .25s ease;
    border: 1px solid transparent;
}
.header-cta-primary {
    background: #fff;
    color: #066f70;
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.header-cta-primary:hover {
    background: #fff7d6;
    color: #044f50;
    transform: translateY(-1px);
}
.header-cta-ghost {
    background: rgba(255,255,255,0.10);
    color: #fff;
    border-color: rgba(255,255,255,0.35);
}
.header-cta-ghost:hover {
    background: rgba(255,255,255,0.20);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-1px);
}

/* ---------------- NAVBAR refinement ---------------- */
.navbar {
    backdrop-filter: saturate(160%) blur(8px);
    -webkit-backdrop-filter: saturate(160%) blur(8px);
    background: rgba(255,255,255,0.92) !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}
.list-nav > li > a {
    position: relative;
    padding: 22px 0;
    color: #0f172a;
    transition: color .2s ease;
}
.list-nav > li > a.aria-current,
.list-nav > li > a:hover {
    color: #098486 !important;
}
.list-nav > li .sub-menu {
    border: 1px solid rgba(9, 132, 134, 0.18);
    box-shadow: 0 18px 40px -12px rgba(15, 23, 42, 0.18);
    border-radius: 14px;
    padding: 8px;
}
.list-nav > li .sub-menu li a {
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 500;
}
.list-nav > li .sub-menu li a:hover {
    background: #e8f7f7;
    color: #066f70 !important;
}

/* ---------------- FOOTER ---------------- */
.site-footer {
    height: auto;
    display: block;
    background: #0d1416;
}
.site-footer .footer-top {
    position: relative;
    padding: 0;
    background:
        radial-gradient(1200px 480px at 0% 0%, rgba(9,132,134,0.35) 0%, rgba(9,132,134,0) 60%),
        radial-gradient(900px 420px at 100% 0%, rgba(10,166,168,0.20) 0%, rgba(10,166,168,0) 55%),
        linear-gradient(180deg, #0d1416 0%, #0a1011 100%);
    color: #cfd6da;
    overflow: hidden;
}
.site-footer .footer-top::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.35;
    pointer-events: none;
}
.site-footer .footer-top::after {
    content: none;
}

.footer-logo {
    width: 220px;
    max-width: 70%;
    filter: drop-shadow(0 6px 16px rgba(10,166,168,0.25));
}
.footer-tagline {
    color: rgba(255,255,255,0.75);
    font-family: 'Poppins', sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 420px;
}
.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 8px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1a1100;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    letter-spacing: 0.04em;
    box-shadow: 0 8px 24px -8px rgba(245,158,11,0.6);
}

.footer-heading {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}
.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, #0aa6a8, transparent);
    border-radius: 2px;
}

.site-footer .list-menu-footer {
    padding: 0;
    list-style: none;
}
.site-footer .list-menu-footer li {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.72);
    transition: all .2s ease;
}
.site-footer .list-menu-footer li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: color .2s ease, transform .2s ease;
}
.site-footer .list-menu-footer li a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: rgba(10,166,168,0.55);
    transition: background .2s ease, transform .2s ease;
}
.site-footer .list-menu-footer li:hover {
    padding-left: 0;
    text-decoration: none;
    color: #fff;
}
.site-footer .list-menu-footer li a:hover {
    color: #fff;
    transform: translateX(2px);
}
.site-footer .list-menu-footer li a:hover::before {
    background: #ffd966;
    transform: scale(1.3);
}

.footer-social {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
}
.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: #fff;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    transition: all .25s ease;
    backdrop-filter: blur(6px);
}
.footer-social a:hover {
    background: linear-gradient(135deg, #098486 0%, #0aa6a8 100%);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -10px rgba(10,166,168,0.6);
}

.footer-partners {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    backdrop-filter: blur(6px);
}
.footer-partners img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.92;
    transition: opacity .2s ease, transform .2s ease;
}
.footer-partners a:hover img {
    opacity: 1;
    transform: scale(1.04);
}
.footer-partners-note {
    margin-top: 12px;
    color: rgba(255,255,255,0.6);
    font-family: 'Poppins', sans-serif;
    font-size: 12.5px;
    line-height: 1.55;
}

.site-footer .footer-bottom {
    background: #06090a;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 0;
    color: rgba(255,255,255,0.65);
    position: relative;
}
.site-footer .footer-bottom::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    width: 120px;
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(10,166,168,0.6), transparent);
}
.footer-arrow-up { display: none; }
.footer-copy {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
}
.footer-legal {
    display: flex;
    gap: 18px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
}
.footer-legal a {
    color: rgba(255,255,255,0.6);
    transition: color .2s ease;
}
.footer-legal a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .site-footer .footer-top { padding: 0; }
    .footer-logo { width: 170px; }
    .footer-heading { margin-top: 8px; }
    .footer-bottom .container { text-align: center; }
    .footer-legal { justify-content: center; }
}

/* ---------------- Galeri / Berita carousel spacing ---------------- */
.carousel-galeri.owl-carousel .owl-stage,
#carousel-berita.owl-carousel .owl-stage {
    padding-top: 4px;
    padding-bottom: 8px;
}
.carousel-galeri.owl-carousel .owl-item,
#carousel-berita.owl-carousel .owl-item {
    padding: 4px;
}
.section-gallery .card-major,
.card-major {
    transition: transform .25s ease, box-shadow .3s ease;
}
.section-gallery .card-major:hover,
.card-major:hover {
    transform: translateY(-4px);
}
