/* ==========================================================================
   IKAPTRI TOURISM FAIR 2027 — Main Stylesheet
   Arsitektur mengikuti pola imwte_project: vanilla HTML/CSS/JS,
   konten dinamis (hero slider, dll) disuplai lewat js/data.js
   sehingga siap disambungkan ke Supabase-backed admin CMS.
   ========================================================================== */

:root {
  /* Brand palette (diambil dari asset desain) */
  --navy: #0e4182;
  --navy-deep: #0f2756;
  --teal: #15727e;
  --orange: #fc6a03;
  --green: #78a218;
  --blue-mid: #2d6fc4;
  --blue-light: #8ec7f2;
  --yellow: #f4b942;

  --white: #ffffff;
  --off-white: #f6f9fc;
  --text-dark: #16233d;
  --text-muted: #52627a;

  --container: 1200px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-sm: 0 4px 14px rgba(15, 39, 86, 0.08);
  --shadow-md: 0 10px 30px rgba(15, 39, 86, 0.14);

  --font-body: "Poppins", "Segoe UI", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section-pad { padding: 70px 0; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ==========================================================================
   TOP BAR (logo + mitra logos)
   ========================================================================== */

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar__logo img {
  height: 74px;
  width: auto;
}

.topbar__partners {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}

.partner-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.partner-group__label {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-deep);
  white-space: nowrap;
}

.partner-group__logos {
  display: flex;
  align-items: center;
  gap: 10px;
}

.partner-group__logos img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */

.navbar {
  display: flex;
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.navbar__list {
  display: flex;
  flex: 1;
  max-width: calc(var(--container) - 220px);
  margin: 0 auto;
}

.navbar__list li { flex: none; }

.navbar__list a {
  display: block;
  padding: 18px 26px;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: background 0.2s ease;
}

.navbar__list a:hover,
.navbar__list a.is-active {
  background: rgba(255, 255, 255, 0.12);
}

.navbar__cta {
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 18px 34px;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.navbar__cta:hover { background: #689417; }

.navbar__toggle {
  display: none;
  color: var(--white);
  font-size: 26px;
  padding: 14px 20px;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero__slide.is-active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

.hero__slide.is-prev {
  transform: translateX(-100%);
}

.hero__overlay-tint {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.38);
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero__logo-block {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.hero__logo-block::before {
  content: "";
  position: absolute;
  inset: -8%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.42) 0%, rgba(255,255,255,0.18) 45%, rgba(255,255,255,0) 70%);
  filter: blur(16px);
  z-index: -1;
}

.hero__logo-block img {
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.45))
    drop-shadow(0 0 16px rgba(255, 255, 255, 0.3))
    drop-shadow(0 6px 20px rgba(15, 39, 86, 0.25));
}

/* slider controls */
.hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease;
}

.hero__nav:hover { background: var(--white); }
.hero__nav--prev { left: 20px; }
.hero__nav--next { right: 20px; }

.hero__dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 10px;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: 2px solid rgba(15, 39, 86, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero__dot.is-active {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.15);
}

.hero__frame {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  z-index: 3;
  width: 100%;
  line-height: 0;
}

.hero__frame img {
  width: 100%;
  display: block;
}

/* ==========================================================================
   WHY SECTION
   ========================================================================== */

.why {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  aspect-ratio: 1508 / 826;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image: url("../assets/images/why-bg.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}

.why::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 34%, rgba(255,255,255,0.7) 48%, rgba(255,255,255,0) 64%);
  pointer-events: none;
}

.why .container {
  position: relative;
  z-index: 1;
}

.why__col {
  width: 42%;
  max-width: 620px;
  min-width: 260px;
}

.why__heading img {
  width: 100%;
  max-width: clamp(220px, 22vw, 380px);
  margin-bottom: clamp(8px, 1vw, 16px);
}

.why__text p {
  color: var(--text-muted);
  font-size: clamp(11px, 1vw, 14px);
  line-height: 1.45;
  margin-bottom: clamp(6px, 0.8vw, 10px);
}

/* ==========================================================================
   LEBIH DARI SEKEDAR PAMERAN
   ========================================================================== */

.showcase {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-mid) 100%);
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.showcase__title {
  color: var(--orange);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.showcase__subtitle {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 36px;
}

.showcase__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 22px;
  max-width: 1060px;
  margin: 0 auto;
}

.showcase__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  flex: 0 0 180px;
}

.showcase__icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.showcase__icon svg { width: 28px; height: 28px; }

.showcase__item span {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.3;
}

/* ==========================================================================
   TUJUAN ACARA
   ========================================================================== */

.goals {
  padding: 70px 0;
}

.goals__grid {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.goals__title {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1.15;
  flex: 0 0 220px;
}

.goals__cards {
  display: flex;
  gap: 20px;
  flex: 1;
  flex-wrap: wrap;
}

.goals__card {
  flex: 1;
  min-width: 220px;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
}

.goals__card--1 { background: var(--navy); }
.goals__card--2 { background: var(--blue-mid); }
.goals__card--3 { background: var(--blue-light); color: var(--navy-deep); }

/* ==========================================================================
   KONSEP ACARA
   ========================================================================== */

.concept {
  background: linear-gradient(135deg, var(--blue-mid) 0%, var(--navy) 100%);
  padding: 70px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.concept__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.concept__left {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 26px;
  align-items: center;
}

.concept__heading img {
  width: 100%;
  max-width: 320px;
}

.concept__desc p {
  font-size: 14.5px;
  line-height: 1.55;
}

.concept__desc strong { font-weight: 700; }

.concept__right {
  background: var(--navy-deep);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.concept__pillars-title {
  font-size: 20px;
  font-weight: 800;
  margin: 6px 4px 10px;
  letter-spacing: 0.4px;
}

.pillar-slider {
  position: relative;
  flex: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  min-height: 320px;
}

.pillar-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.pillar-slide.is-active { opacity: 1; z-index: 1; }

.pillar-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,39,86,0) 0%, rgba(15,39,86,0.88) 100%);
  z-index: -1;
}

.pillar-slide__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.pillar-slide__icon svg { width: 20px; height: 20px; }

.pillar-slide h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}

.pillar-slide p {
  font-size: 13px;
  opacity: 0.9;
}

.pillar-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.pillar-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.pillar-dots button.is-active {
  background: var(--orange);
  width: 20px;
  border-radius: 5px;
}

/* ==========================================================================
   PARTNERS
   ========================================================================== */

.partners {
  padding: 60px 0 30px;
  text-align: center;
  background: #ffffff;
}

.partners__row {
  margin-bottom: 30px;
}

.partners__row img {
  max-width: 720px;
  margin: 0 auto;
}

.partners__row--2 img { max-width: 760px; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: var(--navy);
  color: var(--white);
  padding: 55px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.footer__title {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 22px;
}

.footer__contact { margin-bottom: 16px; }

.footer__contact strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.footer__contact span {
  font-size: 14px;
  opacity: 0.9;
}

.footer__org-label {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 6px;
}

.footer__org img { height: 44px; margin-bottom: 26px; }

.footer__office-title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer__office p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.5;
}

/* ==========================================================================
   PAGE HERO (shared banner for sub-pages, e.g. Eksibitor/Pengunjung)
   ========================================================================== */

.page-hero {
  position: relative;
  padding: 70px 0 0;
  text-align: center;
  background-image: url("../assets/images/bg-hero-exhibitor.png");
  background-size: cover;
  background-position: center;
  background-color: #eaf3fc;
  overflow: hidden;
}

.page-hero .container {
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
}

.page-hero__frame {
  margin-top: 40px;
  line-height: 0;
}

.page-hero__frame img {
  width: 100%;
  display: block;
}

.selayang__label-img {
  max-width: 340px;
  width: 90%;
  margin: 0 auto 6px;
}

.selayang__title-img {
  max-width: 720px;
  width: 92%;
  margin: 0 auto 16px;
}

.selayang__label {
  color: var(--orange);
  font-family: "Baloo 2", var(--font-body);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 4px;
}

.selayang__title {
  font-family: "Baloo 2", var(--font-body);
  font-size: 46px;
  font-weight: 800;
  color: var(--navy);
  -webkit-text-stroke: 2px #ffffff;
  text-shadow:
    0 2px 0 #ffffff,
    0 4px 0 var(--navy),
    0 8px 14px rgba(15, 39, 86, 0.35);
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.selayang__subtitle {
  font-weight: 700;
  font-size: 18px;
  color: var(--navy-deep);
  margin-bottom: 18px;
}

.selayang__paragraph {
  max-width: 980px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 14.5px;
  text-align: left;
}

/* ==========================================================================
   3 CORE PILLARS
   ========================================================================== */

.core-pillars {
  background: var(--navy);
  color: var(--white);
  padding: 55px 0;
}

.core-pillars h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 34px;
}

.core-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pillar-item__icon {
  flex: none;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-item__icon svg { width: 26px; height: 26px; }

.pillar-item__icon--teal { background: var(--teal); }
.pillar-item__icon--blue { background: var(--blue-mid); }
.pillar-item__icon--orange { background: var(--orange); }

.pillar-item h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
}

.pillar-item p {
  font-size: 13.5px;
  opacity: 0.9;
  line-height: 1.4;
}

/* ==========================================================================
   CLUSTER HIGHLIGHT
   ========================================================================== */

.cluster-section {
  padding: 60px 0;
}

.cluster-section h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 36px;
}

.cluster-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px 40px;
}

.cluster-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cluster-item__icon {
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.cluster-item__icon svg { width: 18px; height: 18px; }
.cluster-item__icon--orange { background: var(--orange); }
.cluster-item__icon--navy { background: var(--navy); }

.cluster-item strong {
  display: block;
  font-size: 15px;
  color: var(--navy-deep);
}

.cluster-item span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   TARGET STATS
   ========================================================================== */

.target-stats {
  position: relative;
  padding: 55px 0;
  color: var(--white);
  background-image: url("../assets/images/bg-target-pengunjung.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.target-stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,39,86,0.82) 0%, rgba(14,65,130,0.82) 100%);
  z-index: 0;
}

.target-stats .container {
  position: relative;
  z-index: 1;
}

.target-stats h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 34px;
}

.target-stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.stat-item__icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.stat-item__icon svg { width: 30px; height: 30px; }

.stat-item__value {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-item__label {
  font-size: 12.5px;
  opacity: 0.9;
  line-height: 1.3;
}

/* ==========================================================================
   TARGET INDUSTRIES
   ========================================================================== */

.target-industries {
  padding: 40px 0 55px;
  background: var(--off-white);
}

.target-industries h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 30px;
}

.target-industries__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #eef5fc;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 26px 12px;
  text-align: center;
  border-right: 1px solid rgba(15, 65, 130, 0.12);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 13px;
}

.industry-item:last-child { border-right: none; }
.industry-item__icon { color: var(--navy); }
.industry-item__icon svg { width: 30px; height: 30px; }

/* ==========================================================================
   KEY HIGHLIGHTS / VALUE PROPOSITION
   ========================================================================== */

.info-boxes {
  padding: 60px 0;
}

.info-boxes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.info-box {
  border-radius: var(--radius-md);
  padding: 26px;
  color: var(--white);
}

.info-box--navy { background: var(--navy-deep); }
.info-box--teal { background: var(--teal); }

.info-box h3 {
  font-size: 22px;
  font-weight: 800;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  margin-bottom: 18px;
}

.info-box__body {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 16px;
  align-items: center;
}

.info-box__body ul { display: flex; flex-direction: column; gap: 10px; }

.info-box__body li {
  font-size: 13.5px;
  font-weight: 600;
  padding-left: 16px;
  position: relative;
}

.info-box__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
}

.info-box__body img {
  border-radius: var(--radius-sm);
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 190px;
}

/* ==========================================================================
   VENUE + BOOTH PACKAGES
   ========================================================================== */

.venue-booth {
  background: var(--off-white);
  padding: 60px 0;
}

.venue-booth__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.venue-booth__venue img { width: 100%; height: 100%; object-fit: cover; display: block; }

.venue-booth__content {
  background: var(--white);
  padding: 30px 34px;
}

.venue-booth__content h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 20px;
}

.booth-card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.booth-card__mockup img { width: 100%; border-radius: var(--radius-sm); }

.pill {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}

.pill--navy { background: var(--navy); color: var(--white); }
.pill--outline { background: #dfe6ee; color: var(--navy-deep); }

.booth-card__info ul,
.booth-card__price ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.booth-card__info li {
  font-size: 13.5px;
  color: var(--text-dark);
  padding-left: 14px;
  position: relative;
}

.booth-card__info li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--navy);
}

.booth-card__price-label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 10px 0 6px;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #eef5fc;
  border-radius: 20px;
  padding: 6px 6px 6px 10px;
  margin-bottom: 8px;
}

.price-row__swatch {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  flex: none;
}

.price-row__swatch--light-blue { background: #8ec7f2; }
.price-row__swatch--peach { background: #f3b79b; }

.price-row__area {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-deep);
  flex: 1;
}

.price-row__price {
  background: #8ec7f2;
  padding: 4px 12px;
  border-radius: 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy-deep);
}

/* ==========================================================================
   FLOORPLAN
   ========================================================================== */

.floorplan {
  padding: 60px 0;
}

.floorplan h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 30px;
}

.floorplan__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.floorplan__col h3 {
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 14px;
}

.floorplan__col img {
  width: 100%;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}

/* ==========================================================================
   REGISTRASI CTA BAR
   ========================================================================== */

.registrasi-cta {
  display: block;
  background: var(--green);
  color: var(--white);
  text-align: center;
  padding: 24px 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: background 0.2s ease;
}

.registrasi-cta:hover {
  background: #689417;
}

/* ==========================================================================
   PENGUNJUNG PAGE
   ========================================================================== */

.pengunjung-banner {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.zones-intro {
  text-align: center;
  padding: 50px 0 10px;
}

.zones-intro h3 {
  font-size: 30px;
  font-weight: 800;
  color: var(--navy-deep);
}

.zones-intro p {
  font-size: 24px;
  font-weight: 800;
  color: var(--orange);
}

.zones-wrap {
  padding: 30px 0 20px;
}

.zones-slider {
  position: relative;
  padding: 0 56px;
}

.zones-slider__viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.zones-slider__track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.zone-card {
  flex: 0 0 320px;
  min-height: 230px;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  overflow: hidden;
}

.zone-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,39,86,0.12) 0%, rgba(15,39,86,0.88) 100%);
  z-index: 0;
}

.zone-card.zone-card--baked::before { content: none; }

.zone-card__num,
.zone-card h4,
.zone-card p { position: relative; z-index: 1; }

.zone-card__num {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 8px;
}

.zone-card h4 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.zone-card p {
  font-size: 13px;
  opacity: 0.92;
  line-height: 1.45;
}

.zones-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s ease;
}

.zones-slider__nav:hover { background: #eef5fc; }
.zones-slider__nav--prev { left: 0; }
.zones-slider__nav--next { right: 0; }

.zones-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
}

.zones-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d3e0ef;
  border: none;
}

.zones-dots button.is-active {
  background: var(--navy);
  width: 22px;
  border-radius: 5px;
  transition: width 0.2s ease;
}

.map-section {
  padding: 60px 0;
}

.map-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--off-white);
}

.map-section__venue { position: relative; }
.map-section__venue img { width: 100%; height: 100%; object-fit: cover; display: block; }

.map-section__map {
  padding: 26px;
  position: relative;
  display: flex;
}

.map-section__fallback-link {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 2;
  background: var(--white);
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.map-section__map iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: var(--radius-md);
}

.event-meta {
  padding: 40px 0 55px;
  text-align: center;
}

.event-meta__row {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.event-meta__item {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}

.event-meta__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.event-meta__icon svg { width: 26px; height: 26px; }

.event-meta__item strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
}

.event-meta__item span {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-deep);
}

.event-meta__hours {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  font-size: 20px;
  padding: 14px 40px;
  border-radius: 30px;
}

/* ==========================================================================
   MEDIA PAGE
   ========================================================================== */

.media-hero {
  padding: 60px 0 10px;
  text-align: center;
}

.media-hero h1 {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy-deep);
}

.mediakit-section {
  padding: 30px 0 50px;
  text-align: center;
}

.mediakit-section h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 26px;
}

.mediakit-grid {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.mediakit-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 30px;
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
}

.mediakit-btn__icon svg { width: 20px; height: 20px; }

.mediakit-btn:disabled {
  opacity: 0.7;
  cursor: wait;
}

.mediakit-btn--orange { background: var(--orange); }
.mediakit-btn--navy { background: var(--navy-deep); }
.mediakit-btn--teal { background: var(--teal); }
.mediakit-btn--blue { background: var(--blue-mid); }

.news-section,
.gallery-section {
  padding: 40px 0 55px;
}

.news-section h2,
.gallery-section h2 {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 30px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.news-card__img {
  height: 200px;
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
}

.news-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 10px;
  line-height: 1.35;
}

.news-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  height: 190px;
  background-size: cover;
  background-position: center;
}

.corner-cut {
  border-radius: var(--radius-md);
}

/* ==========================================================================
   PROGRAM PAGE
   ========================================================================== */

.program-tba {
  padding: 90px 0;
  text-align: center;
}

.program-tba h1 {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 44px;
}

.program-tba__badge {
  display: inline-block;
  font-family: "Baloo 2", var(--font-body);
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-mid), var(--navy));
  padding: 18px 50px;
  border-radius: 40px;
  border: 4px solid #ffffff;
  box-shadow: var(--shadow-md), 0 0 0 6px rgba(45, 111, 196, 0.25);
}

/* ==========================================================================
   COUNTDOWN BAR
   ========================================================================== */

.countdown {
  display: flex;
  align-items: stretch;
  background: var(--navy);
}

.countdown__left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  background: linear-gradient(120deg, #d9560a 0%, var(--orange) 55%, #ff8c42 100%);
  padding: 20px 40px 20px 20px;
  flex: 0 0 42%;
}

.countdown__logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.countdown__label {
  display: block;
  color: #ffffff;
  font-size: 13px;
  opacity: 0.85;
}

.countdown__event {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.countdown__timer {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 20px 20px;
  background-image: url("../assets/images/countdown-bg-right.jpg");
  background-size: cover;
  background-position: center;
}

.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  min-width: 46px;
}

.countdown__unit span {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
}

.countdown__unit small {
  font-size: 11px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.countdown__sep {
  color: #ffffff;
  font-size: 24px;
  font-weight: 800;
  opacity: 0.6;
}

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.whatsapp-float:hover { transform: scale(1.08); }

.whatsapp-float svg { width: 30px; height: 30px; }

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: whatsapp-pulse 2.2s infinite;
  z-index: -1;
}

@keyframes whatsapp-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ==========================================================================
   SECTION FRAME (wave divider reused from hero)
   ========================================================================== */

.section-frame {
  line-height: 0;
  margin-top: -2px;
}

.section-frame img {
  width: 100%;
  display: block;
}

.section-frame--flip img {
  transform: scaleY(-1);
}

/* ==========================================================================
   PAGE ENTRANCE FADE (murni CSS, tidak bergantung JS supaya aman
   walau ada script lain yang gagal load)
   ========================================================================== */

body {
  animation: page-fade-in 0.55s ease both;
}

@keyframes page-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATION
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.reveal-group > * {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-group.is-inview > * {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.reveal-group > *:nth-child(1) { transition-delay: 0.02s; }
.reveal-group > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-group > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-group > *:nth-child(4) { transition-delay: 0.20s; }
.reveal-group > *:nth-child(5) { transition-delay: 0.26s; }
.reveal-group > *:nth-child(6) { transition-delay: 0.32s; }
.reveal-group > *:nth-child(7) { transition-delay: 0.38s; }
.reveal-group > *:nth-child(8) { transition-delay: 0.44s; }
.reveal-group > *:nth-child(9) { transition-delay: 0.50s; }
.reveal-group > *:nth-child(n+10) { transition-delay: 0.56s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal-group > * {
    opacity: 1;
    transform: none;
    transition: none;
  }
  body { animation: none; opacity: 1; }
}

/* ==========================================================================
   REGISTRATION FORM
   ========================================================================== */

.reg-hero {
  padding: 60px 0 10px;
  text-align: center;
}

.reg-hero h1 {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 10px;
}

.reg-hero p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 14.5px;
}

.reg-form-section {
  padding: 40px 0 70px;
}

.reg-form-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 40px;
}

.form-status {
  max-width: 720px;
  margin: 0 auto 24px;
  background: #eafaf0;
  border: 1px solid #b7e6c9;
  color: #1c6b3d;
  border-radius: var(--radius-md);
  padding: 18px 22px;
}

.form-status strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.form-status p {
  font-size: 13.5px;
  line-height: 1.5;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field--full { grid-column: 1 / -1; }

.form-field label {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-deep);
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1.5px solid #dbe4f0;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.form-field textarea { resize: vertical; min-height: 90px; }

.form-field__error {
  font-size: 12px;
  color: #d13c3c;
  min-height: 14px;
}

.form-field--invalid input,
.form-field--invalid select,
.form-field--invalid textarea {
  border-color: #d13c3c;
}

.reg-submit-btn {
  grid-column: 1 / -1;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 14px;
  border-radius: 30px;
  margin-top: 6px;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.reg-submit-btn:hover { background: #689417; }
.reg-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.reg-note {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 992px) {
  .concept__grid,
  .footer__grid { grid-template-columns: 1fr; }
  .why {
    aspect-ratio: auto;
    min-height: 480px;
    max-width: 100%;
    background-position: center;
    background-size: cover;
    padding: 40px 0;
  }
  .why::before { background: rgba(255,255,255,0.78); }
  .why__col { width: 100%; max-width: 100%; }
  .why__heading img { max-width: 260px; }
  .why__text p { font-size: 13px; }
  .concept__left { grid-template-columns: 1fr; text-align: center; }
  .concept__heading img { margin: 0 auto; }
  .showcase__item { flex-basis: 150px; }
  .goals__grid { flex-direction: column; align-items: flex-start; }
  .goals__title { flex: none; }

  .core-pillars__grid { grid-template-columns: 1fr; gap: 26px; }
  .cluster-section__grid { grid-template-columns: repeat(2, 1fr); }
  .target-stats__grid { grid-template-columns: repeat(3, 1fr); gap: 26px 14px; }
  .target-industries__grid { grid-template-columns: repeat(4, 1fr); }
  .industry-item { border-right: none; border-bottom: 1px solid rgba(15,65,130,0.12); }
  .info-boxes__grid { grid-template-columns: 1fr; }
  .venue-booth__grid { grid-template-columns: 1fr; }
  .booth-card { grid-template-columns: 1fr; }
  .floorplan__grid { grid-template-columns: 1fr; }

  .map-section__grid { grid-template-columns: 1fr; }
  .event-meta__row { gap: 30px; }
  .news-grid,
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .navbar__toggle { display: block; margin-left: auto; }
  .navbar { flex-wrap: wrap; }
  .navbar__list {
    display: none;
    flex-direction: column;
    width: 100%;
    max-width: none;
  }
  .navbar__list.is-open { display: flex; }
  .navbar__cta { margin-left: auto; }
  .topbar { justify-content: center; text-align: center; }
  .hero { min-height: 520px; }
  .hero__logo-block { max-width: 100%; }
  .showcase__item { flex-basis: 42%; }
  .goals__cards { flex-direction: column; }

  .selayang__title { font-size: 30px; }
  .target-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .target-industries__grid { grid-template-columns: repeat(2, 1fr); }
  .cluster-section__grid { grid-template-columns: 1fr; }

  .pengunjung-banner { height: 180px; }
  .zones-slider { padding: 0 44px; }
  .zone-card { flex: 0 0 260px; min-height: 200px; padding: 18px; }
  .zone-card__num { font-size: 24px; }
  .zone-card h4 { font-size: 16px; }
  .zone-card p { font-size: 12px; }
  .zones-slider__nav { width: 38px; height: 38px; font-size: 17px; }
  .news-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .mediakit-grid { flex-direction: column; align-items: stretch; }

  .countdown { flex-direction: column; }
  .countdown__left { padding: 14px 20px; justify-content: center; }
  .countdown__timer { gap: 10px; padding: 14px 10px; }
  .countdown__unit { min-width: 40px; }
  .countdown__unit span { font-size: 20px; }

  .form-grid { grid-template-columns: 1fr; }
  .reg-form-card { padding: 26px 22px; }
}

@media (max-width: 480px) {
  .section-pad { padding: 46px 0; }
  .showcase__item { flex-basis: 44%; }
  .showcase__grid { gap: 20px 12px; }
  .showcase__title { font-size: 24px; }
  .goals__title { font-size: 26px; }
  .footer__title { font-size: 24px; }
}
