/* ============================================================
   PT BADAK LNG — STYLESHEET
   Versi: 2.0 | Terpisah dari index.html
   ============================================================ */

/* ── Bootstrap overrides ──────────────────────────────────── */
.container,
.container-xl {
  max-width: 1240px;
}

/* ── 1. CSS VARIABLES ─────────────────────────────────────── */
:root {
  /* ── PHE-inspired: Red · Blue · White ── */
  --teal: #0057a8; /* corporate blue  */
  --teal-dark: #003d7a; /* dark blue        */
  --teal-mid: #1a7bc4; /* mid blue         */
  --teal-light: #e5eff9; /* light blue bg    */
  --teal-bar: #002b5e; /* deep blue bar    */
  --navy: #001e41; /* PHE deep navy    */
  --navy-mid: #0d2e52;
  --navy-light: #1a4070;
  --gold: #f9a330;
  --red: #e3001b; /* PHE vivid red    */
  --red-dark: #b50018;
  --white: #ffffff;
  --light-gray: #f5f7f8;
  --border: #c5d8ee; /* blue-tinted border */
  --text: #001e41;
  --text-muted: #4a6480;
  --nav-text: #001e41;

  --purple-1: #6b21a8;
  --purple-2: #4527a0;
  --purple-3: #2d2d8b;
  --purple-4: #1a1a5e;
}

/* ── 2. RESET & BASE ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  padding-top: 0;
}

img {
  display: block;
  max-width: 100%;
}

/* ── 3. UTILITY ───────────────────────────────────────────── */
.container {
  max-width: 1240px;
  margin: 0 auto;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.mt-sm {
  margin-top: 20px;
}
.mt-md {
  margin-top: 36px;
}
.mt-lg {
  margin-top: 64px;
}
.w-full {
  width: 100%;
}
.justify-center {
  justify-content: center;
}

/* ── 4. TOP BAR ───────────────────────────────────────────── */
#topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: #ba313b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 40px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#topbar.nav-hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.topbar-right {
  display: none !important;
}

/* Topbar left: utility links */
.topbar-left {
  display: flex;
  align-items: center;
  gap: 0;
}

.topbar-left a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.2s;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.topbar-left a:first-child {
  padding-left: 0;
}
.topbar-left a:last-child {
  border-right: none;
}
.topbar-left a:hover {
  color: #fff;
}
.topbar-left a i {
  font-size: 10px;
}

/* Topbar dropdown */
.topbar-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}

.topbar-dropdown-toggle {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  cursor: pointer;
  transition: color 0.2s;
  user-select: none;
}

.topbar-dropdown-toggle:hover { color: #fff; }
.topbar-left .topbar-dropdown .topbar-dropdown-toggle { padding-left: 20px; }

.topbar-chevron {
  font-size: 8px !important;
  transition: transform 0.2s;
}

.topbar-dropdown:hover .topbar-chevron { transform: rotate(180deg); }

.topbar-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #b01020;
  border-top: 2px solid rgba(255,255,255,0.2);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  min-width: 160px;
  width: max-content;
  z-index: 2000;
  flex-direction: column;
  text-align: left;
}

.topbar-dropdown:hover .topbar-dropdown-menu { display: flex; }

.topbar-dropdown-menu a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 600;
  padding: 10px 20px;
  display: block;
  text-align: left;
  transition: background 0.15s, color 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.topbar-dropdown-menu a:first-child { padding-left: 20px; }
.topbar-dropdown-menu a:last-child { border-bottom: none; }
.topbar-dropdown-menu a:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Topbar right: social icons */
.topbar-right {
  display: flex;
  align-items: center;
  gap: 2px;
}

.topbar-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.12);
  margin-right: 10px;
}

.topbar-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 12px;
  transition: all 0.2s;
}

.topbar-social:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* ── 5. NAVBAR ────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 56px;
  left: 20px;
  right: 20px;
  z-index: 1000;
  background: #f5f2ec;
  border-radius: 100px;
  border: 2px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 68px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s;
}

#navbar.nav-hidden {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

#navbar.topbar-up {
  top: 16px;
}

/* ── LOGO ─────────────────────────────────────────────────── */
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s, border-radius 0.3s;
}

.logo-icon {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-label {
  font-size: 17px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: 0.3px;
}

.logo-coe {
  font-size: 8.5px;
  font-weight: 700;
  color: #ba313b;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Logo — navbar selalu putih, tidak perlu box terpisah */
#navbar:not(.scrolled) .logo {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

/* ── NAV LINKS ────────────────────────────────────────────── */
.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: stretch;
  height: 80px;
  margin: 0;
  padding: 0;
}

.nav-links > li {
  position: static;
  display: flex;
  align-items: center;
}

.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1a3a2e;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.2px;
  padding: 0 18px;
  height: 100%;
  position: relative;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

#navbar .nav-links > li > a {
  color: #1a3a2e;
}

/* Underline indicator */
.nav-links > li > a .fa-chevron-down {
  font-size: 9px;
  transition: transform 0.25s;
}

.nav-links > li.open > a,
.nav-links > li > a:hover {
  color: #ba313b;
  border-bottom: 3px solid transparent;
}

#navbar.nav-links > li.open > a,
#navbar.nav-links > li > a:hover {
  color: #ba313b;
  border-bottom: 3px solid transparent;
}

.nav-links > li > a {
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.nav-links > li.open > a .fa-chevron-down {
  transform: rotate(180deg);
}

/* ── NAV RIGHT ────────────────────────────────────────────── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Language toggle */
.lang-toggle {
  display: flex;
  border-radius: 100px;
  overflow: hidden;
  border: 2px solid #ba313b;
  gap: 0;
}

.lang-btn {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 7px 16px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-btn {
  background: #f5f0e8;
  color: #aaaaaa;
}
.lang-btn:hover {
  filter: brightness(0.95);
}
.lang-btn.active {
  background: #ba313b;
  color: #ffffff;
}

/* Search */
.nav-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-search-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s;
}

#navbar .nav-search-icon {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  color: #1a3a2e;
}

.nav-search-icon:hover,
.nav-search-icon.active {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

#navbar.nav-search-icon:hover,
#navbar.nav-search-icon.active {
  background: rgba(0, 0, 0, 0.06);
  color: #1a1a1a;
}

/* Search dropdown panel */
.nav-search-box {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  width: 340px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.16), 0 2px 8px rgba(0, 0, 0, 0.07);
  border: 1px solid #e8edf3;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.22s ease, opacity 0.18s ease;
  z-index: 1100;
}
.nav-search-box::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 10px;
  width: 12px;
  height: 12px;
  background: #fff;
  border: 1px solid #e8edf3;
  border-bottom: none;
  border-right: none;
  transform: rotate(45deg);
}
.nav-search-box.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Input row */
.ns-row {
  display: flex;
  gap: 8px;
  align-items: center;
}
.ns-row input {
  flex: 1;
  min-width: 0;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 9px 13px;
  font-size: 14px;
  font-family: inherit;
  color: #1e293b;
  outline: none;
  transition: border-color 0.18s;
}
.ns-row input:focus {
  border-color: var(--teal);
}
.ns-row input::placeholder {
  color: #94a3b8;
}

.ns-btn-go {
  background: var(--teal-dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.18s;
}
.ns-btn-go:hover {
  background: #002e5f;
}

.ns-btn-close {
  background: none;
  color: #94a3b8;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.18s;
}
.ns-btn-close:hover {
  background: #fef2f2;
  color: #e3001b;
  border-color: #fca5a5;
}

/* Result info */
.ns-info {
  font-size: 12.5px;
  color: #94a3b8;
  text-align: center;
  min-height: 18px;
  padding: 2px 0;
}
.ns-info.found {
  color: var(--teal-dark);
  font-weight: 500;
}
.ns-info.not-found {
  color: #e3001b;
}

/* Text highlight on page */
.search-highlight {
  background: #fef08a;
  color: #1e293b;
  border-radius: 2px;
  padding: 0 1px;
}
.search-highlight.first {
  background: #f97316;
  color: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: background 0.3s;
}

#navbar.hamburger span {
  background: #1a1a1a;
}

/* ── 6. MEGA MENU ─────────────────────────────────────────── */
.mega-panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: transparent;
  box-shadow: none;
  z-index: 1;
  pointer-events: none;
}

.nav-links > li.open .mega-panel {
  display: block;
  pointer-events: auto;
}

.mega-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: stretch;
  max-width: 1100px;
  margin: 0 auto;
  min-height: 300px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

/* Mega left feature block */
.mega-feature {
  background: #1a3a2e;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  border-right: 3px solid #f5f2ec;
}

.mega-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(227, 6, 19, 0.15) 0%,
    transparent 60%
  );
  opacity: 1;
}

.mega-feature > * {
  position: relative;
  z-index: 1;
}

/* Mega feature color variants — semua hijau gelap */
.mega-feature--media,
.mega-feature--esg,
.mega-feature--solution,
.mega-feature--whistle {
  background: #1a3a2e;
}

.mega-feature--media::before,
.mega-feature--esg::before,
.mega-feature--solution::before,
.mega-feature--whistle::before {
  display: none;
}

.mega-feat-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.mega-feat-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}

.mega-feat-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 24px;
}

.mega-feat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding-bottom: 2px;
  width: fit-content;
  transition: border-color 0.2s;
}

.mega-feat-link:hover {
  border-color: #fff;
}

/* Mega right columns */
.mega-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  padding: 36px 40px;
  background: #f5f2ec;
  align-content: start;
}

.mega-col {
  padding: 0 20px;
  border-left: 1px solid var(--border);
}
.mega-col:first-child {
  border-left: none;
  padding-left: 0;
}

.mega-col-head {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--teal-light);
}

.mega-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.3;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, padding-left 0.15s;
}

.mega-col a::before {
  content: "";
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: width 0.2s;
  flex-shrink: 0;
}

.mega-col a:hover {
  color: var(--teal);
  padding-left: 4px;
}
.mega-col a:hover::before {
  width: 12px;
}

/* Flyout sub-menu */
.has-flyout {
  position: relative;
  width: fit-content;
}
.has-flyout > a {
  justify-content: space-between;
}
.has-flyout > a::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  color: var(--teal);
  margin-left: auto;
  flex-shrink: 0;
}
.has-flyout > a::before {
  display: none;
}

.flyout-menu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  padding: 12px 0;
  z-index: 999;
}

.flyout-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  border-bottom: none;
}

.flyout-menu a:hover {
  color: var(--teal);
  background: var(--teal-light);
  padding-left: 20px;
}
.flyout-menu a::before {
  display: none;
}
.has-flyout:hover .flyout-menu {
  display: block;
}

/* Mega backdrop */
.mega-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 997;
}

.mega-backdrop.show {
  display: block;
}

/* ── 9. SECTION COMMONS ───────────────────────────────────── */
section {
  padding: 100px 5%;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-block;
  color: var(--teal);
  font-size: 31.5px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
}

.section-tag::before,
.section-tag::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 84px;
  height: 3px;
  background: var(--teal);
  transform: translateY(-50%);
}

.section-tag::before {
  right: calc(100% + 10px);
}
.section-tag::after {
  left: calc(100% + 10px);
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.85;
}

/* Dark section */
.dark-section {
  background: var(--navy) !important;
}
.dark-section .section-title {
  color: #fff;
}
.dark-section .section-desc {
  color: rgba(255, 255, 255, 0.65);
}
.dark-section .section-tag {
  color: var(--teal-mid);
}
.dark-section .section-tag::before,
.dark-section .section-tag::after {
  background: var(--teal-mid);
}

/* ── 17. BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--teal);
  color: white;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 87, 168, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}

.btn-outline:hover {
  background: var(--teal);
  color: white;
}

.btn-red {
  background: var(--red);
  color: white;
}
.btn-red:hover {
  background: #b50018;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ── 18. FOOTER ───────────────────────────────────────────── */
footer {
  background: #555555 url('/Src/world-map.svg') center center / cover no-repeat;
  border-top: 3px solid #ba313b;
  color: rgba(255, 255, 255, 0.75);
  padding: 72px 5% 0;
  position: relative;
  overflow: hidden;
}

.footer-top {
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.85;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 220px;
}

.footer-brand .logo {
  padding: 0;
  gap: 10px;
  align-items: center;
}
.footer-brand .logo .logo-icon {
  width: 80px;
  height: 80px;
  filter: brightness(0) invert(1);
}
.footer-brand .logo .logo-label {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}
.footer-brand .logo .logo-coe {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
}

.footer-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 17px;
  transition: color 0.2s, padding-left 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a::before {
  content: "›";
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
}
.footer-col ul li a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-links-row {
  max-width: 1200px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 20px;
  flex-wrap: wrap;
}

.footer-links-row a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 12.5px;
  transition: color 0.2s;
  white-space: nowrap;
}
.footer-links-row a:hover {
  color: #ffffff;
}

.footer-links-right {
  margin-left: auto;
  display: flex;
  gap: 28px;
  align-items: center;
}
.footer-links-right a {
  color: rgba(186, 49, 59, 0.8);
}
.footer-links-right a:hover {
  color: #ba313b;
}

.footer-bottom-wrap {
  background: rgba(0, 0, 0, 0.2);
  margin: 0 -5%;
  padding: 18px 5%;
  position: relative;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: none;
  transition: all 0.2s;
  font-size: 14px;
}

.footer-socials a:hover {
  background: #ba313b;
  border-color: #ba313b;
  color: white;
}

/* ── 19. LANG TOGGLE & GOOGLE TRANSLATE ───────────────────── */

/* Hide Google Translate toolbar + tooltip overlay */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-menu-frame {
  display: none !important;
}
body {
  top: 0 !important;
}

/* Button pair */
.lang-toggle {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
}

.lang-btn:not(.active) {
  background: #f5f0e8;
  color: #aaaaaa;
}

.lang-btn:not(.active):hover {
  background: #ede8dc;
  color: #888888;
}

/* Mobile: hide from collapsed nav-right */
@media (max-width: 768px) {
  .lang-toggle {
    display: none;
  }
}

/* ── 20. FLOATING ELEMENTS (sidebar + back-top) ───────────── */

/* Right sidebar */
#right-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rsb-btn {
  width: 48px;
  height: 52px;
  background: linear-gradient(180deg, #001830 0%, #002448 100%);
  border-left: 3px solid #e3001b;
  border-top: none;
  border-right: none;
  border-bottom: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  position: relative;
}

.rsb-btn:first-child {
  border-radius: 10px 0 0 0;
}
.rsb-btn:last-child {
  border-radius: 0 0 0 10px;
}
.rsb-btn + .rsb-btn {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.rsb-btn:hover {
  background: linear-gradient(180deg, #e3001b, #a0010f);
  color: white;
}

.rsb-btn::after {
  content: attr(data-tip);
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 18, 40, 0.95);
  color: white;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  font-family: "Poppins", sans-serif;
}

.rsb-btn:hover::after {
  opacity: 1;
}

/* Back to top */
#back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: #001830;
  color: #ff5060;
  border: 1px solid rgba(227, 6, 19, 0.35);
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(14px);
  transition: all 0.3s;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

#back-top.show {
  opacity: 1;
  transform: translateY(0);
}
#back-top:hover {
  background: #e3001b;
  color: white;
  border-color: #e3001b;
}

/* Newsletter widget */
#newsletter-widget {
  position: fixed;
  bottom: 32px;
  left: 28px;
  z-index: 1100;
  width: 260px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

#newsletter-widget.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#newsletter-widget.hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.nw-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.18), 0 2px 12px rgba(0, 0, 0, 0.1);
  padding: 24px 22px 22px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 87, 168, 0.12);
}

.nw-card::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(
    circle,
    rgba(107, 33, 168, 0.3) 1.2px,
    transparent 1.2px
  );
  background-size: 10px 10px;
  pointer-events: none;
}

.nw-card::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(
    circle,
    rgba(69, 39, 160, 0.2) 1.2px,
    transparent 1.2px
  );
  background-size: 10px 10px;
  pointer-events: none;
}

.nw-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 16px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  z-index: 1;
  padding: 4px;
}

.nw-close:hover {
  color: var(--navy);
}

.nw-body {
  position: relative;
  z-index: 1;
}

.nw-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--purple-1);
  line-height: 1.45;
  margin-bottom: 18px;
  margin-top: 4px;
  max-width: 210px;
}

.nw-title em {
  font-style: normal;
  color: var(--navy);
}

.nw-btn {
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(90deg, var(--purple-1), var(--purple-2));
  border-radius: 100px;
  overflow: hidden;
  text-decoration: none;
  transition: filter 0.25s;
  width: 100%;
}

.nw-btn:hover {
  filter: brightness(1.15);
}

.nw-btn-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

.nw-btn-label {
  flex: 1;
  text-align: center;
  color: white;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding-right: 8px;
}

/* Newsletter modal */
#newsletter-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 42, 0.65);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

#newsletter-modal.open {
  display: flex;
}

.nw-modal-box {
  background: white;
  border-radius: 20px;
  padding: 48px 48px 40px;
  max-width: 460px;
  width: 90%;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.nw-modal-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--purple-1),
    var(--purple-2),
    var(--teal)
  );
}

.nw-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 20px;
  color: #aaa;
  cursor: pointer;
  transition: color 0.2s;
}
.nw-modal-close:hover {
  color: var(--navy);
}

.nw-modal-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #7c3aed;
  margin-bottom: 10px;
}
.nw-modal-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 10px;
}
.nw-modal-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

.nw-modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nw-modal-form input {
  border: 1.5px solid #dde3e8;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.nw-modal-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 87, 168, 0.12);
}

.nw-modal-form button {
  background: linear-gradient(90deg, var(--purple-1), var(--purple-2));
  color: white;
  border: none;
  border-radius: 8px;
  padding: 13px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: filter 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nw-modal-form button:hover {
  filter: brightness(1.15);
}

.nw-modal-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 10px;
  line-height: 1.6;
}

/* ── 21. PAGE HERO BANNER (shared — all sub-pages) ─────────── */
.page-hero {
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  height: clamp(420px, 40vw, 650px);
  display: flex;
  align-items: flex-end;
}

/* Dark overlay — heavier at bottom so title stays readable */
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 15, 40, 0.85) 0%,
    rgba(0, 15, 40, 0.45) 45%,
    rgba(0, 15, 40, 0.1) 100%
  );
  pointer-events: none;
}

/* Red accent line at the bottom */
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--red-dark),
    var(--red),
    var(--teal),
    var(--red),
    var(--red-dark)
  );
}

.page-hero-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 5% 40px;
  position: relative;
  z-index: 1;
}

.page-hero-text {
  flex: 1;
}

/* Hide everything except breadcrumb and h1 */
.page-hero .page-hero-tag {
  display: none;
}
.page-hero .page-hero-desc {
  display: none;
}
.page-hero .page-hero-badges {
  display: none;
}
.page-hero .page-hero-visual {
  display: none;
}

@media (max-width: 575px) {
  .page-hero {
    height: clamp(280px, 55vw, 420px);
  }
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.page-breadcrumb a {
  color: var(--teal-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.page-breadcrumb a:hover {
  color: #fff;
}
.page-breadcrumb i {
  font-size: 9px;
}

.page-hero-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-mid);
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: clamp(26px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 0;
  letter-spacing: -0.5px;
}

.page-hero h1 span {
  color: #fff;
}

.page-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 520px;
}

.page-hero-badges {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(0, 87, 168, 0.3);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.hero-badge i {
  color: var(--teal-mid);
  font-size: 13px;
}

.page-hero-visual {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-stat-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 87, 168, 0.25);
  border-radius: 16px;
  padding: 20px 28px;
  text-align: center;
  min-width: 160px;
}

.hero-stat-card .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--teal-mid);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-card .lbl {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

@media (max-width: 768px) {
  .page-hero-inner {
    flex-direction: column;
  }
  .page-hero-visual {
    flex-direction: row;
    width: 100%;
  }
  .hero-stat-card {
    flex: 1;
  }
}

@media (max-width: 480px) {
  .page-hero-visual {
    flex-direction: column;
  }
}

/* ── 22. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .mega-inner {
    grid-template-columns: 1fr;
  }
  .mega-feature {
    min-height: 120px;
    padding: 24px;
  }
  .mega-cols {
    grid-template-columns: repeat(2, 1fr);
    padding: 24px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 120px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    height: auto;
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    background: #001830;
    padding: 16px 5%;
    gap: 4px;
    border-bottom: 2px solid #e3001b;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    z-index: 1001;
  }

  .nav-links.open {
    display: flex !important;
  }
  .nav-links > li {
    height: auto;
  }
  .nav-links > li > a {
    padding: 12px 8px;
    border-bottom: none;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
  }

  .mega-panel {
    position: static;
    box-shadow: none;
    background: transparent;
    border: none;
    pointer-events: auto;
  }
  .nav-links > li.has-mega .mega-panel {
    display: none;
  }
  .nav-links > li.has-mega.open .mega-panel {
    display: block;
  }
  .mega-inner {
    grid-template-columns: 1fr;
    background: transparent;
  }
  .mega-feature {
    display: none;
  }
  .mega-cols {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
    background: transparent;
  }
  .mega-col {
    border-left: none;
    padding: 0;
    background: transparent;
  }
  .mega-col-head {
    color: rgba(255, 255, 255, 0.35);
    font-size: 9px;
    padding: 8px 16px 4px;
    margin: 0;
  }
  .mega-col a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 13px;
    padding: 10px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .mega-col a::before {
    display: none;
  }
  .mega-col a:hover,
  .mega-col a:active {
    color: var(--teal);
    background: rgba(255, 255, 255, 0.05);
    padding-left: 22px;
  }

  .hamburger {
    display: flex;
  }
  .nav-right {
    display: none;
  }
}

/* ── Mobile: navbar floating dengan margin kecil ─────────── */
@media (max-width: 767px) {
  #navbar {
    top: 8px;
    left: 10px;
    right: 10px;
    height: 60px;
    padding: 0 20px;
    border-radius: 100px;
  }
  .nav-links {
    top: 80px;
  }
  .logo-icon {
    width: 44px;
    height: 44px;
  }
  .logo-label {
    font-size: 13px;
  }
}

/* ── Mobile Drawer ───────────────────────────────────────── */
@media (min-width: 992px) {
  .mob-overlay,
  .mob-drawer {
    display: none !important;
  }
}

.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2000;
  backdrop-filter: blur(2px);
}
.mob-overlay.show {
  display: block;
}

.mob-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88%;
  max-width: 360px;
  background: #fff;
  z-index: 2001;
  overflow: hidden;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 16px 0 0 16px;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.18);
}
.mob-drawer.open {
  transform: translateX(0);
}

.mob-panel {
  position: absolute;
  inset: 0;
  background: #fff;
  overflow-y: auto;
  transform: translateX(0);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.mob-sub-panel {
  transform: translateX(100%);
}
.mob-sub-panel.active {
  transform: translateX(0);
}

.mob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
}
.mob-lang {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.5px;
}
.mob-lang-sep {
  color: #bbb;
  margin: 0 6px;
  font-weight: 400;
}

.mob-close-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: #555;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
}
.mob-close-btn:hover {
  color: #000;
}

.mob-back-btn {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #2c6883;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  font-family: "Poppins", sans-serif;
}
.mob-back-btn i {
  font-size: 12px;
}

.mob-hr {
  height: 1px;
  background: #eee;
  margin: 0;
}

.mob-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mob-menu-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  border-bottom: 1px solid #f2f2f2;
  font-size: 15px;
  font-weight: 600;
  color: #001e41;
  cursor: pointer;
  text-align: left;
  font-family: "Poppins", sans-serif;
  transition: background 0.15s;
}
.mob-menu-btn:hover {
  background: #f8f9fa;
}
.mob-menu-btn i {
  font-size: 11px;
  color: #bbb;
}

.mob-sub-title {
  padding: 14px 20px 12px;
  font-size: 15px;
  font-weight: 700;
  color: #001e41;
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
}

.mob-sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mob-sub-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid #f2f2f2;
  font-size: 14px;
  font-weight: 500;
  color: #2c6883;
  text-decoration: none;
  transition: background 0.15s, padding-left 0.15s;
}
.mob-sub-link:hover {
  background: #f0f7fa;
  padding-left: 24px;
}
.mob-sub-link i {
  font-size: 11px;
  color: #ccc;
  flex-shrink: 0;
}

.mob-quick-links {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mob-quick-links a {
  font-size: 13px;
  color: #555;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.mob-quick-links a i {
  color: var(--teal);
  width: 16px;
  text-align: center;
}
.mob-quick-links a:hover {
  color: var(--teal);
}

/* ── Mobile: Footer ───────────────────────────────────────── */
@media (max-width: 767px) {
  footer {
    padding: 48px 0 0;
  }
  .footer-links-row {
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-links-right {
    margin-left: 0;
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-socials {
    justify-content: center;
  }
}

/* ── Mobile: Newsletter widget ────────────────────────────── */
@media (max-width: 575px) {
  #newsletter-widget {
    width: 220px;
    left: 12px;
    bottom: 16px;
  }
  #back-top {
    bottom: 16px;
    right: 16px;
  }
}
/* $cssContent */

/* =============================================================
   MOBILE RESPONSIVE IMPROVEMENTS
   ============================================================= */

/* Body padding-top untuk mobile (navbar 60px di top:8px) */
@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }
}

/* Section padding reduction */
@media (max-width: 767px) {
  section {
    padding: 56px 5%;
  }
  .section-header {
    margin-bottom: 40px;
  }
  .section-tag {
    font-size: 22px;
    letter-spacing: 1.5px;
  }
  .section-tag::before,
  .section-tag::after {
    display: none;
  }
  #right-sidebar {
    display: none !important;
  }
  .footer-col ul li a {
    font-size: 13px;
  }
  .nw-modal-box {
    padding: 32px 24px 28px;
  }
}

@media (max-width: 575px) {
  section {
    padding: 44px 4%;
  }
  .section-header {
    margin-bottom: 28px;
  }
  .section-title {
    letter-spacing: -0.3px;
  }
  #newsletter-widget {
    display: none;
  }
}
