:root {
  --osim-navy: #00446b;
  --osim-yellow: #f6ba1b;
  --osim-sky: #7fa2b6;
  --osim-olive: #7b5e12;
  --osim-cream: #fada8d;
  --osim-black: #000000;
  --osim-white: #ffffff;
  --osim-bg: #071827;
  --osim-bg-2: #0b2133;
  --osim-card: rgba(255, 255, 255, .08);
  --osim-card-2: rgba(255, 255, 255, .12);
  --osim-border: rgba(255, 255, 255, .15);
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Poppins", system-ui, sans-serif;
  --font-script: "Allura", cursive;
  --font-serif: "Cormorant Garamond", serif;
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, .32);
  --nav-height: 80px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--osim-white);
  background:
    radial-gradient(circle at top left, rgba(246, 186, 27, .16), transparent 35rem),
    radial-gradient(circle at 80% 20%, rgba(127, 162, 182, .16), transparent 32rem),
    linear-gradient(180deg, #071827 0%, #0a1720 52%, #04090d 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .15;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, .2));
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

code {
  color: var(--osim-cream);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: .45rem;
  padding: .05rem .35rem;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 1rem;
  z-index: 2000;
  padding: .75rem 1rem;
  background: var(--osim-yellow);
  color: #121212;
  border-radius: .75rem;
  font-weight: 800;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 1rem;
}

.navbar-event {
  min-height: var(--nav-height);
  padding: .85rem 0;
  background: rgba(0, 68, 107, .15);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background .25s ease, padding .25s ease, box-shadow .25s ease;
}

.navbar-event.navbar-scrolled {
  padding: .55rem 0;
  background: rgba(4, 17, 28, .88);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .26);
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--osim-navy);
  background: linear-gradient(135deg, var(--osim-yellow), var(--osim-cream));
  box-shadow: 0 16px 35px rgba(246, 186, 27, .26);
}

.brand-title {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
}

.brand-subtitle {
  display: block;
  font-size: .72rem;
  color: rgba(255, 255, 255, .72);
  line-height: 1.2;
}

.navbar-nav .nav-link {
  position: relative;
  color: rgba(255, 255, 255, .72);
  font-weight: 600;
  font-size: .94rem;
  padding-inline: .85rem !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.nav-link-active,
.navbar-nav .nav-link.active {
  color: var(--osim-yellow);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: .85rem;
  right: .85rem;
  bottom: .25rem;
  height: 2px;
  background: var(--osim-yellow);
  border-radius: 99px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.nav-link-active::after {
  transform: scaleX(1);
}

.btn-brand {
  --bs-btn-color: #11202c;
  --bs-btn-bg: var(--osim-yellow);
  --bs-btn-border-color: var(--osim-yellow);
  --bs-btn-hover-color: #071827;
  --bs-btn-hover-bg: var(--osim-cream);
  --bs-btn-hover-border-color: var(--osim-cream);
  --bs-btn-active-bg: #dba10f;
  --bs-btn-active-border-color: #dba10f;
  font-weight: 800;
  box-shadow: 0 18px 38px rgba(246, 186, 27, .22);
}

.btn-glass {
  --bs-btn-color: #fff;
  --bs-btn-bg: rgba(255, 255, 255, .08);
  --bs-btn-border-color: rgba(255, 255, 255, .16);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(255, 255, 255, .16);
  --bs-btn-hover-border-color: rgba(255, 255, 255, .28);
  backdrop-filter: blur(14px);
  font-weight: 700;
}

#main-content {
  margin-top: 85px;
}

.hero-section {
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% 22%, rgba(246, 186, 27, .24), transparent 19rem),
    radial-gradient(circle at 78% 18%, rgba(127, 162, 182, .26), transparent 24rem),
    linear-gradient(130deg, #05131f 0%, var(--osim-navy) 48%, #06111b 100%);
}

.hero-bg-lines {
  position: absolute;
  inset: 0;
  opacity: .24;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 24%, rgba(255, 255, 255, .10) 24.2% 24.6%, transparent 24.8% 100%),
    linear-gradient(115deg, transparent 0 44%, rgba(255, 255, 255, .12) 44.1% 44.5%, transparent 44.6% 100%);
  background-size: 620px 620px, 420px 420px;
  transform: rotate(-6deg) scale(1.15);
}

.hero-content {
  z-index: 1;
}

.hero-kicker,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(246, 186, 27, .35);
  color: var(--osim-cream);
  background: rgba(0, 0, 0, .18);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .76rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3vw, 7.2rem);
  line-height: .88;
  font-weight: 900;
  letter-spacing: -.07em;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero-title span:not(.script-word) {
  display: block;
  text-shadow: 0 16px 40px rgba(0, 0, 0, .34);
}

.script-word {
  display: block;
  font-family: var(--font-script);
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  line-height: .8;
  color: var(--osim-yellow);
  text-shadow: none;
}

.hero-title .script-word {
  font-size: clamp(4.2rem, 12vw, 9rem);
  margin-bottom: -.2em;
}

.hero-lead,
.section-lead {
  max-width: 700px;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, .78);
}

.text-muted-soft {
  color: rgba(255, 255, 255, .66);
  line-height: 1.85;
}

.hero-meta .meta-card,
.feature-card,
.location-card,
.ticket-card,
.material-tabs,
.cta-card,
.poster-card,
.hero-panel {
  border: 1px solid var(--osim-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .055));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.meta-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 1.25rem;
}

.meta-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: var(--osim-navy);
  background: var(--osim-yellow);
}

.meta-card span,
.meta-card small {
  display: block;
  color: rgba(255, 255, 255, .64);
  font-size: .78rem;
}

.meta-card strong {
  display: block;
  font-weight: 800;
}

.hero-panel {
  position: relative;
  border-radius: 2rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(246, 186, 27, .18);
  filter: blur(10px);
}

.hero-panel>* {
  position: relative;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .75rem;
}

.countdown-grid div {
  text-align: center;
  border-radius: 1rem;
  padding: 1rem .4rem;
  background: rgba(0, 0, 0, .25);
  border: 1px solid rgba(255, 255, 255, .12);
}

.countdown-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 2.25rem);
  color: var(--osim-yellow);
  line-height: 1;
}

.countdown-grid span {
  display: block;
  margin-top: .35rem;
  color: rgba(255, 255, 255, .7);
  font-size: .78rem;
}

.poster-stack {
  position: relative;
  min-height: 220px;
}

.poster-mini {
  position: absolute;
  width: 82%;
  border-radius: 1.2rem;
  border: 6px solid rgba(255, 255, 255, .16);
  box-shadow: 0 22px 45px rgba(0, 0, 0, .4);
  object-fit: cover;
}

.poster-mini-front {
  left: 0;
  top: 0;
  z-index: 2;
  transform: rotate(-3deg);
}

.poster-mini-back {
  right: 0;
  top: 62px;
  z-index: 1;
  transform: rotate(4deg);
  filter: saturate(.9) brightness(.86);
}

.hero-note {
  color: rgba(255, 255, 255, .74);
  font-size: .92rem;
}

.logo-strip {
  background: #fff;
  color: var(--osim-navy);
  border-bottom: 8px solid var(--osim-yellow);
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .55rem .9rem;
  font-weight: 800;
  border-radius: 999px;
  background: rgba(0, 68, 107, .08);
}

.logo-chip i {
  color: #1bb7a8;
}

.section-padding {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.section-title {
  margin: .85rem 0 1.1rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.2rem, 3vw, 7.2rem);
  letter-spacing: -.05em;
  line-height: .95;
  text-transform: uppercase;
}

.about-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .04));
}

.feature-card,
.location-card {
  border-radius: 1.5rem;
  padding: 1.35rem;
  transition: transform .25s ease, border-color .25s ease;
}

.feature-card:hover,
.location-card:hover,
.ticket-card:hover,
.poster-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 186, 27, .44);
}

.feature-card i,
.location-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: var(--osim-navy);
  background: linear-gradient(135deg, var(--osim-yellow), var(--osim-cream));
  margin-bottom: 1rem;
}

.feature-card h3,
.location-card h3,
.ticket-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: .65rem;
}

.feature-card p,
.location-card p,
.ticket-card p {
  color: rgba(255, 255, 255, .66);
  margin-bottom: 0;
  line-height: 1.65;
}

.poster-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(127, 162, 182, .17), transparent 25rem),
    linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .05));
}

.poster-card {
  border-radius: 1.75rem;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}

.poster-card img {
  display: block;
  aspect-ratio: 16 / 9;
  width: 100%;
  object-fit: cover;
}

.poster-card-body {
  padding: 1.2rem;
}

.poster-card-body h3 {
  margin: .85rem 0 .35rem;
  font-family: var(--font-display);
  font-weight: 900;
}

.poster-card-body p {
  margin: 0;
  color: rgba(255, 255, 255, .66);
}

.material-section {
  background: linear-gradient(180deg, #071827 0%, #0b2133 100%);
}

.sticky-offset {
  top: 105px;
}

.material-tabs {
  border-radius: 1.75rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.material-tabs .nav-pills .nav-link {
  color: rgba(255, 255, 255, .76);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  font-weight: 800;
}

.material-tabs .nav-pills .nav-link.active {
  color: #071827;
  background: var(--osim-yellow);
  border-color: var(--osim-yellow);
}

.material-list {
  counter-reset: material;
  list-style: none;
  display: grid;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

.material-list li {
  position: relative;
  padding: 1rem 1rem 1rem 4.25rem;
  border-radius: 1.25rem;
  background: rgba(0, 0, 0, .22);
  border: 1px solid rgba(255, 255, 255, .12);
}

.material-list li::before {
  counter-increment: material;
  content: counter(material);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  color: #071827;
  font-family: var(--font-display);
  font-weight: 900;
  border-radius: 50%;
  background: var(--osim-yellow);
}

.material-list span {
  display: block;
  color: var(--osim-cream);
  font-size: .86rem;
  font-weight: 700;
}

.material-list strong {
  display: block;
  margin-top: .25rem;
  color: #fff;
  font-size: 1.02rem;
}

.ticket-section {
  background:
    radial-gradient(circle at 90% 8%, rgba(246, 186, 27, .14), transparent 23rem),
    linear-gradient(180deg, #0b2133 0%, #071827 100%);
}

.ticket-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.75rem;
  padding: 1.5rem;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}

.ticket-featured {
  border-color: rgba(246, 186, 27, .55);
  transform: translateY(-10px);
}

.ticket-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.35rem;
}

.ticket-card-top i {
  font-size: 2rem;
  color: var(--osim-yellow);
}

.ticket-badge {
  display: inline-flex;
  align-items: center;
  padding: .35rem .7rem;
  border-radius: 999px;
  color: var(--osim-cream);
  background: rgba(246, 186, 27, .12);
  border: 1px solid rgba(246, 186, 27, .22);
  font-size: .78rem;
  font-weight: 800;
}

.ticket-price {
  margin: 1.25rem 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.3rem);
  font-weight: 900;
  color: var(--osim-yellow);
  letter-spacing: -.04em;
}

.ticket-price span {
  font-size: 1rem;
  color: rgba(255, 255, 255, .5);
}

.ticket-card ul {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .65rem;
}

.ticket-card li {
  color: rgba(255, 255, 255, .72);
}

.ticket-card li::before {
  content: "\f00c";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  margin-right: .55rem;
  color: var(--osim-yellow);
}

.ticket-card .btn {
  margin-top: auto;
}

.location-section {
  background:
    linear-gradient(120deg, rgba(0, 68, 107, .32), rgba(0, 0, 0, .08)),
    linear-gradient(180deg, #071827 0%, #050b10 100%);
}

.location-card strong {
  display: block;
  font-size: 1.08rem;
}

.cta-section {
  background: #fff;
  color: #071827;
}

.cta-card {
  border-radius: 2rem;
  padding: clamp(2rem, 5vw, 4rem);
  color: #fff;
  background:
    radial-gradient(circle at 18% 30%, rgba(246, 186, 27, .27), transparent 18rem),
    linear-gradient(135deg, var(--osim-navy), #071827);
}

.cta-card .script-word {
  font-size: clamp(4rem, 9vw, 7rem);
}

.cta-card h2 {
  margin-top: -.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.cta-card p {
  color: rgba(255, 255, 255, .72);
  margin-bottom: 1.6rem;
}

.footer-section {
  color: rgba(255, 255, 255, .68);
  background: #020508;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-links a,
.footer-links .btn-link {
  color: rgba(255, 255, 255, .72);
  font-weight: 600;
}

.footer-links a:hover,
.footer-links .btn-link:hover {
  color: var(--osim-yellow);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1000;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: #071827;
  background: var(--osim-yellow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .32);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.ticket-modal .modal-content,
.resend-modal .modal-content {
  background: #071827;
  color: #fff;
}

.ticket-toolbar {
  min-height: 72px;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: .8rem 1rem;
  background: linear-gradient(90deg, #04111d, var(--osim-navy));
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.toolbar-title {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-width: 0;
}

.toolbar-title i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: #071827;
  background: var(--osim-yellow);
}

.toolbar-title h5 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.1;
}

.toolbar-title small {
  color: rgba(255, 255, 255, .64);
}

.toolbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .5rem;
  flex-wrap: wrap;
}

.copy-field {
  align-items: center;
  gap: .5rem;
  padding: .25rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, .22);
  border: 1px solid rgba(255, 255, 255, .14);
}

.copy-field input {
  width: min(34vw, 460px);
  min-width: 260px;
  padding: .45rem .8rem;
  color: rgba(255, 255, 255, .76);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: .85rem;
}

.iframe-wrap {
  position: relative;
  width: 100%;
  height: calc(100vh - 72px);
  background: #060a0f;
}

.ticket-modal iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: #fff;
}

.iframe-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  color: rgba(255, 255, 255, .78);
  background: #071827;
  transition: opacity .25s ease, visibility .25s ease;
}

.iframe-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.resend-modal .modal-content {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.resend-modal .input-group-text,
.resend-modal .form-control {
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .14);
}

.resend-modal .form-control::placeholder {
  color: rgba(255, 255, 255, .4);
}

.rt-order-item {
  cursor: pointer;
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border-color: rgba(255, 255, 255, .12);
  transition: background .2s ease, border-color .2s ease;
}

.rt-order-item:hover,
.rt-order-item.active {
  background: rgba(246, 186, 27, .13);
  border-color: rgba(246, 186, 27, .35);
}

.rt-badge-success {
  color: #062116;
  background: #8af2c0;
}

.swal-payment-popup {
  border: 1px solid rgba(255, 255, 255, .12) !important;
  border-radius: 1.25rem !important;
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease var(--animate-delay, 0ms), transform .7s ease var(--animate-delay, 0ms);
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .navbar-event .navbar-collapse {
    margin-top: .85rem;
    padding: .75rem;
    border-radius: 1rem;
    background: rgba(4, 17, 28, .94);
    border: 1px solid rgba(255, 255, 255, .1);
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  .hero-section .min-vh-100 {
    min-height: auto !important;
  }

  .poster-stack {
    min-height: 260px;
  }

  .ticket-featured {
    transform: none;
  }

  .toolbar-actions {
    width: 100%;
  }

  .iframe-wrap {
    height: calc(100vh - 132px);
  }
}

@media (max-width: 575.98px) {
  :root {
    --nav-height: 74px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand-subtitle {
    display: none;
  }

  .hero-title {
    letter-spacing: -.055em;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .poster-stack {
    min-height: 180px;
  }

  .poster-mini {
    border-width: 4px;
  }

  .toolbar-actions .btn {
    flex: 1 1 calc(50% - .5rem);
  }

  .iframe-wrap {
    height: calc(100vh - 180px);
  }

  .section-padding {
    padding: 4rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}


/* =============================================================
   OSIM 2026 — LIGHT THEME OVERRIDE
   Taruh di PALING BAWAH styles.css
   ============================================================= */

:root {
  --osim-bg: #fffaf0;
  --osim-bg-2: #f3f8fb;
  --osim-surface: #ffffff;
  --osim-surface-2: #fff4cf;
  --osim-text: #123246;
  --osim-text-soft: rgba(18, 50, 70, .72);
  --osim-card: rgba(255, 255, 255, .86);
  --osim-card-2: rgba(255, 255, 255, .96);
  --osim-border: rgba(0, 68, 107, .14);
  --shadow-soft: 0 24px 70px rgba(0, 68, 107, .13);
}

body {
  color: var(--osim-text);
  background:
    radial-gradient(circle at top left, rgba(246, 186, 27, .22), transparent 34rem),
    radial-gradient(circle at 85% 18%, rgba(127, 162, 182, .24), transparent 32rem),
    linear-gradient(180deg, #fffaf0 0%, #f5f9fb 48%, #ffffff 100%);
}

body::before {
  opacity: .38;
  background-image:
    linear-gradient(rgba(0, 68, 107, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 68, 107, .045) 1px, transparent 1px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .85), rgba(0, 0, 0, .1));
}

.navbar-event {
  background: rgba(255, 255, 255, .78);
  border-bottom: 1px solid rgba(0, 68, 107, .12);
  box-shadow: 0 8px 30px rgba(0, 68, 107, .06);
}

.navbar-event.navbar-scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 50px rgba(0, 68, 107, .12);
}

.brand-title {
  color: var(--osim-navy);
}

.brand-subtitle,
.navbar-nav .nav-link {
  color: rgba(18, 50, 70, .72);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.nav-link-active {
  color: var(--osim-navy);
}

.navbar-nav .nav-link::after {
  background: var(--osim-yellow);
}

.btn-glass {
  --bs-btn-color: var(--osim-navy);
  --bs-btn-bg: rgba(255, 255, 255, .72);
  --bs-btn-border-color: rgba(0, 68, 107, .16);
  --bs-btn-hover-color: var(--osim-navy);
  --bs-btn-hover-bg: #ffffff;
  --bs-btn-hover-border-color: rgba(0, 68, 107, .28);
}

.hero-section {
  color: var(--osim-text);
  background:
    radial-gradient(circle at 10% 20%, rgba(246, 186, 27, .34), transparent 22rem),
    radial-gradient(circle at 80% 18%, rgba(127, 162, 182, .34), transparent 24rem),
    linear-gradient(135deg, #ffffff 0%, #f8fcff 48%, #fff3c8 100%);
}

.hero-bg-lines {
  opacity: .22;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 24%, rgba(0, 68, 107, .13) 24.2% 24.6%, transparent 24.8% 100%),
    linear-gradient(115deg, transparent 0 44%, rgba(0, 68, 107, .10) 44.1% 44.5%, transparent 44.6% 100%);
}

.hero-kicker,
.section-label {
  color: var(--osim-navy);
  background: rgba(246, 186, 27, .18);
  border-color: rgba(246, 186, 27, .46);
}

.hero-title span:not(.script-word) {
  color: var(--osim-navy);
  text-shadow: none;
}

.script-word {
  color: var(--osim-yellow);
  text-shadow: 0 8px 18px rgba(246, 186, 27, .18);
}

.hero-lead,
.section-lead,
.text-muted-soft,
.hero-note {
  color: var(--osim-text-soft);
}

.hero-meta .meta-card,
.feature-card,
.location-card,
.ticket-card,
.material-tabs,
.poster-card,
.hero-panel {
  border: 1px solid var(--osim-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .76));
  box-shadow: var(--shadow-soft);
}

.meta-card span,
.meta-card small,
.feature-card p,
.location-card p,
.ticket-card p,
.poster-card-body p {
  color: var(--osim-text-soft);
}

.meta-card strong,
.feature-card h3,
.location-card h3,
.ticket-card h3,
.poster-card-body h3,
.section-title {
  color: var(--osim-navy);
}

.countdown-grid div,
.material-list li {
  background: rgba(255, 255, 255, .72);
  border-color: rgba(0, 68, 107, .12);
}

.countdown-grid span {
  color: var(--osim-text-soft);
}

.logo-strip {
  background: #ffffff;
  color: var(--osim-navy);
  border-top: 1px solid rgba(0, 68, 107, .08);
  border-bottom: 8px solid var(--osim-yellow);
}

.about-section {
  background: linear-gradient(180deg, #ffffff, #f3f8fb);
}

.poster-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(127, 162, 182, .20), transparent 25rem),
    linear-gradient(180deg, #f3f8fb, #ffffff);
}

.material-section {
  background: linear-gradient(180deg, #ffffff 0%, #fff7dc 100%);
}

.material-tabs .nav-pills .nav-link {
  color: var(--osim-navy);
  background: rgba(255, 255, 255, .72);
  border-color: rgba(0, 68, 107, .16);
}

.material-tabs .nav-pills .nav-link.active {
  color: #071827;
  background: var(--osim-yellow);
  border-color: var(--osim-yellow);
}

.material-list span {
  color: var(--osim-olive);
}

.material-list strong {
  color: var(--osim-navy);
}

.ticket-section {
  background:
    radial-gradient(circle at 90% 8%, rgba(246, 186, 27, .22), transparent 23rem),
    linear-gradient(180deg, #fff7dc 0%, #f5f9fb 100%);
}

.ticket-badge {
  color: var(--osim-navy);
  background: rgba(246, 186, 27, .18);
  border-color: rgba(246, 186, 27, .42);
}

.ticket-price {
  color: var(--osim-yellow);
  text-shadow: 0 8px 18px rgba(246, 186, 27, .16);
}

.ticket-price span,
.ticket-card li {
  color: var(--osim-text-soft);
}

.location-section {
  background:
    radial-gradient(circle at 10% 20%, rgba(127, 162, 182, .22), transparent 24rem),
    linear-gradient(180deg, #f5f9fb 0%, #ffffff 100%);
}

.cta-section {
  background: #ffffff;
  color: var(--osim-navy);
}

.cta-card {
  color: var(--osim-navy);
  background:
    radial-gradient(circle at 18% 30%, rgba(246, 186, 27, .34), transparent 18rem),
    linear-gradient(135deg, #ffffff, #fff2c1);
  border-color: rgba(246, 186, 27, .34);
}

.cta-card h2 {
  color: var(--osim-navy);
}

.cta-card p {
  color: var(--osim-text-soft);
}

.footer-section {
  color: rgba(255, 255, 255, .76);
  background: var(--osim-navy);
  border-top: 8px solid var(--osim-yellow);
}

.ticket-modal .modal-content,
.resend-modal .modal-content {
  background: #ffffff;
  color: var(--osim-text);
}

.ticket-toolbar {
  background: linear-gradient(90deg, #ffffff, #fff3c8);
  border-bottom: 1px solid rgba(0, 68, 107, .12);
}

.toolbar-title h5 {
  color: var(--osim-navy);
}

.toolbar-title small {
  color: var(--osim-text-soft);
}

.copy-field {
  background: rgba(0, 68, 107, .06);
  border-color: rgba(0, 68, 107, .14);
}

.copy-field input {
  color: var(--osim-text);
}

.iframe-wrap {
  background: #ffffff;
}

.iframe-loader {
  color: var(--osim-navy);
  background: #ffffff;
}

.resend-modal .input-group-text,
.resend-modal .form-control {
  color: var(--osim-text);
  background: rgba(0, 68, 107, .04);
  border-color: rgba(0, 68, 107, .14);
}

.resend-modal .form-control::placeholder {
  color: rgba(18, 50, 70, .42);
}

.rt-order-item {
  color: var(--osim-text);
  background: rgba(255, 255, 255, .86);
  border-color: rgba(0, 68, 107, .14);
}

.rt-order-item:hover,
.rt-order-item.active {
  background: rgba(246, 186, 27, .18);
  border-color: rgba(246, 186, 27, .45);
}

@media (max-width: 991.98px) {
  .navbar-event .navbar-collapse {
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(0, 68, 107, .12);
    box-shadow: 0 18px 44px rgba(0, 68, 107, .12);
  }
}

.brand-logo {
  display: block;
  width: min(210px, 48vw);
  height: auto;
}

@media (max-width: 575.98px) {
  .brand-logo {
    width: 165px;
  }

  .ticket-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =============================================================
   OSIM 2026 — CONTACT CTA + GOOGLE MAPS
   Tambahkan di paling bawah styles.css
   ============================================================= */

.map-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  border: 1px solid rgba(0, 68, 107, .14);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.map-card iframe {
  display: block;
  width: 100%;
  min-height: 420px;
  filter: saturate(.95) contrast(.98);
}

.cta-card .row {
  position: relative;
  z-index: 1;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  min-height: 180px;
  padding: 1.15rem;
  border-radius: 1.35rem;
  color: var(--osim-navy);
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(0, 68, 107, .14);
  box-shadow: 0 18px 42px rgba(0, 68, 107, .08);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.contact-card:hover {
  color: var(--osim-navy);
  transform: translateY(-5px);
  border-color: rgba(246, 186, 27, .58);
  box-shadow: 0 24px 54px rgba(0, 68, 107, .13);
}

.contact-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: .45rem;
  border-radius: 16px;
  color: #ffffff;
  background: #25d366;
  font-size: 1.35rem;
}

.contact-card span {
  color: var(--osim-olive);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-card strong {
  display: block;
  color: var(--osim-navy);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 900;
}

.contact-card small {
  color: var(--osim-text-soft);
  font-weight: 700;
}

@media (max-width: 575.98px) {
  .map-card iframe {
    min-height: 320px;
  }

  .contact-card {
    min-height: auto;
  }
}

.navbar-event .navbar-toggler-icon {
  --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23f6ba1b' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.4' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}





.logo-strip {
  background: #ffffff;
  border-top: 1px solid rgba(0, 68, 107, .08);
  border-bottom: 6px solid var(--osim-yellow);
}

.logo-partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.logo-partner-item {
  background: #ffffff;
  border: 1px solid rgba(0, 68, 107, .10);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 68, 107, .08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.logo-partner-item:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 186, 27, .45);
  box-shadow: 0 18px 36px rgba(0, 68, 107, .12);
}

.logo-partner-item img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

@media (max-width: 991.98px) {
  .logo-partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-partner-item {
    min-height: 110px;
  }

  .logo-partner-item img {
    max-height: 64px;
  }
}

@media (max-width: 575.98px) {
  .logo-partner-grid {
    grid-template-columns: 1fr;
  }

  .logo-partner-item {
    min-height: 100px;
    padding: .9rem 1rem;
  }

  .logo-partner-item img {
    max-height: 56px;
  }
}

/* =============================================================
   OSIM 2026 — SPEAKER / PEMATERI SECTION
   ============================================================= */

.speaker-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(127, 162, 182, .20), transparent 25rem),
    radial-gradient(circle at 85% 8%, rgba(246, 186, 27, .20), transparent 24rem),
    linear-gradient(180deg, #f3f8fb 0%, #ffffff 100%);
}

.speaker-card {
  overflow: hidden;
  border: 1px solid var(--osim-border);
  border-radius: 1.75rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .84));
  box-shadow: var(--shadow-soft);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.speaker-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 186, 27, .50);
  box-shadow: 0 28px 70px rgba(0, 68, 107, .16);
}

.speaker-image-wrap {
  position: relative;
  min-height: 365px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  padding: 1.5rem 1.25rem 0;
  background:
    radial-gradient(circle at 20% 18%, rgba(246, 186, 27, .34), transparent 16rem),
    radial-gradient(circle at 85% 18%, rgba(127, 162, 182, .30), transparent 18rem),
    linear-gradient(135deg, #ffffff 0%, #f7fbfe 56%, #fff3c8 100%);
}

.speaker-image-wrap::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border-radius: 1.35rem;
  border: 1px dashed rgba(0, 68, 107, .12);
  pointer-events: none;
}

.speaker-image-wrap-alt {
  background:
    radial-gradient(circle at 16% 18%, rgba(127, 162, 182, .34), transparent 16rem),
    radial-gradient(circle at 85% 18%, rgba(246, 186, 27, .26), transparent 18rem),
    linear-gradient(135deg, #ffffff 0%, #f5f9fb 58%, #fff7dc 100%);
}

.speaker-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 350px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 34px rgba(0, 68, 107, .18));
}

.speaker-card-body {
  padding: 1.35rem;
}

.speaker-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem .9rem;
  margin-bottom: 1rem;
  color: var(--osim-text-soft);
  font-size: .86rem;
  font-weight: 700;
}

.speaker-card-body h3 {
  margin: 0 0 .65rem;
  color: var(--osim-navy);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2.1rem);
  font-weight: 900;
  letter-spacing: -.04em;
}

.speaker-card-body p {
  margin-bottom: 1.1rem;
  color: var(--osim-text-soft);
  line-height: 1.7;
}

.speaker-list {
  display: grid;
  gap: .65rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.speaker-list li {
  position: relative;
  padding: .75rem .85rem .75rem 2.45rem;
  color: var(--osim-navy);
  font-weight: 700;
  line-height: 1.35;
  border: 1px solid rgba(0, 68, 107, .10);
  border-radius: .95rem;
  background: rgba(255, 255, 255, .72);
}

.speaker-list li::before {
  content: "\f0f0";
  position: absolute;
  left: .85rem;
  top: .82rem;
  color: var(--osim-yellow);
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}

.speaker-preview-stack .poster-mini {
  background:
    radial-gradient(circle at 50% 35%, rgba(246, 186, 27, .26), transparent 16rem),
    linear-gradient(135deg, #ffffff, #f5f9fb);
  object-fit: contain;
  object-position: center bottom;
  padding: .75rem .75rem 0;
}

@media (max-width: 991.98px) {
  .speaker-image-wrap {
    min-height: 320px;
  }

  .speaker-photo {
    height: 305px;
  }
}

@media (max-width: 575.98px) {
  .speaker-image-wrap {
    min-height: 245px;
    padding: 1rem .75rem 0;
  }

  .speaker-photo {
    height: 235px;
  }

  .speaker-card-body {
    padding: 1rem;
  }

  .speaker-card-meta {
    font-size: .78rem;
  }

  .speaker-list li {
    font-size: .9rem;
  }
}


/* =============================================================
   OSIM 2026 — Ticket Periods
   ============================================================= */

.ticket-period {
  margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.ticket-period-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  padding: clamp(1.1rem, 3vw, 1.5rem);
  border-radius: 1.5rem;
  border: 1px solid rgba(0, 68, 107, .14);
  background:
    radial-gradient(circle at 12% 20%, rgba(246, 186, 27, .18), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(255, 244, 207, .72));
  box-shadow: 0 18px 50px rgba(0, 68, 107, .10);
}

.ticket-period-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: .45rem;
  padding: .32rem .72rem;
  border-radius: 999px;
  color: var(--osim-navy);
  background: rgba(246, 186, 27, .20);
  border: 1px solid rgba(246, 186, 27, .40);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ticket-period-header h3 {
  margin: 0;
  color: var(--osim-navy);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  font-weight: 900;
  line-height: .95;
  text-transform: uppercase;
  letter-spacing: -.04em;
}

.ticket-period-header p {
  margin: .45rem 0 0;
  color: var(--osim-text-soft);
  line-height: 1.65;
}

.ticket-period-date {
  flex: 0 0 auto;
  min-width: 132px;
  min-height: 92px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  border-radius: 1.25rem;
  color: #071827;
  background: linear-gradient(135deg, var(--osim-yellow), var(--osim-cream));
  box-shadow: 0 16px 36px rgba(246, 186, 27, .24);
}

.ticket-period-date i {
  display: block;
  margin-bottom: .35rem;
  font-size: 1.25rem;
}

.ticket-period-date span {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
}

.ticket-card h6 {
  margin: -.35rem 0 .75rem;
  color: var(--osim-olive);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ticket-period-presale .ticket-period-header {
  border-color: rgba(246, 186, 27, .36);
}

.ticket-period-early .ticket-period-header {
  background:
    radial-gradient(circle at 12% 20%, rgba(127, 162, 182, .20), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(243, 248, 251, .88));
}

.ticket-period-regular .ticket-period-header {
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 68, 107, .10), transparent 16rem),
    linear-gradient(135deg, rgba(255, 255, 255, .94), rgba(243, 248, 251, .72));
}

.ticket-period .ticket-featured {
  transform: translateY(-6px);
}

@media (max-width: 991.98px) {
  .ticket-period .ticket-featured {
    transform: none;
  }
}

@media (max-width: 575.98px) {
  .ticket-period-header {
    align-items: stretch;
    flex-direction: column;
  }

  .ticket-period-date {
    width: 100%;
    min-height: 76px;
  }
}