:root {
  --gold: #C9A84C;
  --gold-light: #E8C87A;
  --dark: #0F0F0F;
  --dark2: #1A1A1A;
  --dark3: #252525;
  --cream: #FAF7F2;
  --text-muted-custom: #9A9A9A;
}

* { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  scroll-behavior: smooth;
}

/* ── NAVBAR ── */
.main-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand-text {
  font-family: 'Montserrat', serif;
  font-size: 22px;
  color: var(--gold);
  letter-spacing: 2px;
  font-weight: 900;
}
.navbar-brand-sub {
  font-size: 10px;
  color: #aaa;
  letter-spacing: 3px;
  display: block;
  margin-top: -4px;
}
.navbar-brand-sub-mobile {
  display: none;
}
@media (max-width: 576px) {
  .navbar-brand-sub {
    display: none;
  }
  .navbar-brand-sub-mobile {
    display: inline-block;
    font-size: 10px;
    color: #aaa;
    letter-spacing: 3px;
    display: block;
    margin-top: -4px;
  }
}

.nav-link {
  color: #ccc;
  text-decoration: none;
  margin-left: 28px;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--gold); }
.btn-nav {
  background: var(--gold);
  color: #000 !important;
  padding: 8px 22px;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 12px !important;
  letter-spacing: 1.5px;
}
.btn-nav:hover { background: var(--gold-light); }

/* ── HERO ── */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0F0F0F 0%, #1A1410 60%, #0F0F0F 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 175px;
}
/* Glow */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(201,168,76,0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: 1;
}

/* Grid Background */
.hero-grid-bg {
  position: absolute;
  inset: 0;

  background-image: url('../img/img_properties/background.png');
  background-repeat: no-repeat;
  background-size: cover;

  opacity: 0.15;

  z-index: 0;
}

/* Content */
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Montserrat', serif;
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 900;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 8px;
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: 15px;
  letter-spacing: 4px;
  color: #ccc;
  font-weight: 400;
  margin-bottom: 30px;
}
.hero-desc {
  color: #ccc;
  font-size: 16px;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.btn-gold {
  background: var(--gold);
  color: #000;
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}
.btn-gold:hover { background: var(--gold-light); color: #000; transform: translateY(-2px); text-decoration: none; }
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  border: 1px solid var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}
.btn-outline-gold:hover { background: rgba(201,168,76,0.1); color: var(--gold); text-decoration: none; }
.btn-outline-silver {
  background: transparent;
  color: #C0C0C0;
  padding: 14px 36px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  border: 1px solid #C0C0C0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}

.btn-outline-silver:hover {
  background: rgba(192,192,192,0.1);
  color: #E5E5E5;
  text-decoration: none;
}
.hero-info-strip {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero-section { padding-top: 120px; }
}
.info-item { display: flex; align-items: center; gap: 12px; }
.info-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 16px;
  background: rgba(201,168,76,0.05);
}
.info-label { font-size: 11px; color: #ccc; letter-spacing: 1px; }
.info-value { font-size: 14px; color: #fff; font-weight: 600; text-decoration:none; }
.info-value:hover { text-decoration:none; color: #fff; }
.hero-right-card {
  background: linear-gradient(145deg, #1A1A1A, #111);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.hero-right-card::before {
  content: '2026';
  position: absolute;
  bottom: -20px; right: -10px;
  font-family: 'Montserrat', serif;
  font-size: 120px;
  font-weight: 900;
  color: rgba(201,168,76,0.05);
  line-height: 1;
  pointer-events: none;
}

/* ── STAT CARDS ── */
.stats-section {
  background: var(--dark2);
  padding: 60px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stat-card {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}
.stat-number {
  font-family: 'Montserrat', serif;
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
@media (max-width: 768px) {
  .stat-number {
    font-family: 'Montserrat', serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
  }
}
@media (max-width: 576px) {
  .stat-number {
    font-family: 'Montserrat', serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
  }
}
.stat-plus { font-size: 30px; }
.stat-label { font-size: 12px; letter-spacing: 2px; color: #888; font-weight: 500; margin-top: 8px; }
.stat-card + .stat-card::before {
  content: '';
  position: absolute;
  left: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

/* ── SECTIONS ── */
section { padding: 90px 0; }
.section-tag {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: 'Montserrat', serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}
.section-title span { color: var(--gold); }
.section-desc {
  color: #999;
  font-size: 15px;
  line-height: 1.8;
  max-width: 720px;
}

/* ── ABOUT / DAMPAK ── */
.about-section { background: var(--dark); }
.dampak-card {
  background: linear-gradient(145deg, #1A1A1A, #161616);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.dampak-card:hover {
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.dampak-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.dampak-card:hover::after { opacity: 1; }
.dampak-icon {
  width: 56px; height: 56px;
  background: rgba(201,168,76,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 20px;
}
.dampak-title {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.dampak-desc { color: #888; font-size: 14px; line-height: 1.7; }

/* ── VISITORS (Timeline) ── */
.visitors-section { background: var(--dark2); }
.day-timeline { position: relative; }
.day-timeline::before {
  content: '';
  position: absolute;
  left: 28px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,0.1));
}
.day-item {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  position: relative;
}
.day-dot {
  width: 56px; height: 56px;
  min-width: 56px;
  background: var(--dark3);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', serif;
  font-weight: 900;
  color: var(--gold);
  font-size: 13px;
  position: relative;
  z-index: 1;
}
.day-content {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 20px 24px;
  flex: 1;
  transition: border-color 0.2s;
}
.day-content:hover { border-color: rgba(201,168,76,0.3); }
.day-count {
  font-family: 'Montserrat', serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--gold);
}
.day-desc { font-size: 13px; color: #888; margin-top: 4px; }

/* ── SPONSORSHIP ── */
.sponsor-section { background: var(--dark); }
.sponsor-card {
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.sponsor-card:hover { transform: translateY(-6px); }

/* ── PLATINUM LIGHTWEIGHT ── */
.sponsor-platinum{
  background:
    linear-gradient(145deg,#171b22,#0d1014,#171b22);

  border:1px solid rgba(120,220,255,.35);

  position:relative;
  overflow:hidden;

  transform:scale(1.03);

  box-shadow:
    0 0 20px rgba(120,220,255,.08);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

/* animated border line */
.sponsor-platinum::before{
  content:'';
  position:absolute;
  inset:0;

  border-radius:16px;

  padding:1px;

  background:
    linear-gradient(
      120deg,
      transparent,
      rgba(180,240,255,.9),
      transparent
    );

  background-size:200% 100%;

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite:xor;
          mask-composite:exclude;

  animation:borderMove 4s linear infinite;

  pointer-events:none;
}

/* soft shine */
.sponsor-platinum::after{
  content:'';
  position:absolute;

  top:0;
  left:-120%;

  width:60%;
  height:100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.10),
      transparent
    );

  transform:skewX(-20deg);

  animation:shine 5s linear infinite;
}

/* hover */
.sponsor-platinum:hover{
  transform:
    scale(1.05)
    translateY(-4px);

  box-shadow:
    0 0 28px rgba(120,220,255,.14);
}


.platinum-btn {
  position: relative;
  z-index: 99999;
}
.platinum-btn:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 35px rgba(120,220,255,0.5),
    0 0 80px rgba(120,220,255,0.3);
}

/* text premium */
.sponsor-platinum .sponsor-price{
  background:
    linear-gradient(
      90deg,
      #fff,
      #9be7ff,
      #fff
    );

  background-size:200% auto;

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;

  animation:textFlow 4s linear infinite;
}

/* premium button */
.sponsor-platinum .btn-gold{
  background:
    linear-gradient(
      90deg,
      #8defff,
      #dffaff,
      #8defff
    );

  background-size:200% auto;

  color:#000 !important;

  border:none;

  transition:
    transform .2s ease,
    box-shadow .2s ease;

  animation:btnFlow 4s linear infinite;
}

.sponsor-platinum .btn-gold:hover{
  transform:scale(1.03);

  box-shadow:
    0 0 18px rgba(120,220,255,.20);
}

/* badge */
.tier-platinum{
  background:rgba(120,220,255,.08);

  border:
    1px solid rgba(180,240,255,.35);

  color:#dff8ff;
}

/* animations */
@keyframes borderMove{
  0%{
    background-position:0% 50%;
  }
  100%{
    background-position:200% 50%;
  }
}

@keyframes shine{
  0%{
    left:-120%;
  }
  100%{
    left:140%;
  }
}

@keyframes textFlow{
  0%{
    background-position:0% center;
  }
  100%{
    background-position:200% center;
  }
}

@keyframes btnFlow{
  0%{
    background-position:0% center;
  }
  100%{
    background-position:200% center;
  }
}

.sponsor-gold-tier {
  background: linear-gradient(145deg, #2A2010, #1A1508);
  border: 1px solid rgba(201,168,76,0.5);
}
.sponsor-silver {
  background: linear-gradient(145deg, #1F1F1F, #161616);
  border: 1px solid rgba(200,200,200,0.3);
}
.tier-badge {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 700;
}
.tier-gold { 
  background: rgba(201,168,76,0.2); color: var(--gold); border: 1px solid var(--gold); 
}
.tier-silver { 
  background: rgba(200,200,200,0.1); color: #ddd; border: 1px solid #888; 
}
.sponsor-price {
  font-family: 'Montserrat', serif;
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 4px;
}
.sponsor-price-sub { font-size: 12px; color: #ccc; letter-spacing: 1px; margin-bottom: 30px; margin-top: 10px; }
.benefit-list { list-style: none; padding: 0; margin: 0; text-align: left; }
.benefit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: #bbb;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.benefit-list li:last-child { border-bottom: none; }
.benefit-list li i {font-size: 16px; min-width: 16px; }

/* ── BOOTH PRICING ── */
.booth-section { background: var(--dark2); }
.booth-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 36px;
  height: 100%;
  transition: all 0.3s;
}
.booth-card.featured {
  background: linear-gradient(145deg, #1D1608, #160F02);
  border-color: rgba(201,168,76,0.4);
}
.booth-card:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}
.booth-type {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.booth-name {
  font-family: 'Montserrat', serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}
.booth-price {
  font-family: 'Montserrat', serif;
  font-size: 38px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
}
.booth-price-note { font-size: 12px; color: #ccc; margin-bottom: 28px; }
.booth-features { list-style: none; padding: 0; margin: 0; }
.booth-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  color: #aaa;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.booth-features li i { color: var(--gold); font-size: 12px; }

/* ── STAGE ACTIVITY ── */
.stage-section { background: var(--dark); }
.activity-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}
.activity-item:hover { border-color: rgba(201,168,76,0.3); }
.activity-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}

/* ── GOVERNMENT ── */
.govt-section { background: var(--dark2); }
.govt-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 36px;
  height: 100%;
}
.govt-avatar {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--gold), #8a6a1a);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
}

/* ── CONTACT ── */
.contact-section { background: var(--dark); }
.contact-card {
  background: linear-gradient(145deg, #1A1508, #0F0F0F);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.contact-person {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
  text-decoration: none;
}
.contact-person:hover { border-color: rgba(201,168,76,0.3); text-decoration: none; }
.contact-avatar {
  width: 48px; height: 48px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 18px;
}
.contact-name { font-weight: 600; font-size: 14px; color: #fff; }
.contact-phone { font-size: 13px; color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 60px 0 30px;
}
.footer-brand {
  font-family: 'Montserrat', serif;
  font-size: 28px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 3px;
}
.footer-divider {
  border-color: rgba(255,255,255,0.06);
  margin: 40px 0 20px;
}
.footer-bottom { color: #555; font-size: 12px; }


/* ── SCROLL ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* CountUp accent */
.count-up { display: inline-block; }


/* Custom CSS */
.img-w-25 {
  width: 25px !important;
}

.img-w-50 {
  width: 50px !important;
}

.img-w-75 {
  width: 75px !important;
}

.img-w-100 {
  width: 100px !important;
}

.swiper-pagination-bullet-active { background: var(--gold) !important; }


