/* ================================================================
       HERO SECTION
       ================================================================ */
    .hero {
      min-height: 100vh;
      background-color: var(--bg-hero);
      background-image: url('../images/location/closeup_papan_nama_dari_bawah-landscape.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      padding: 100px 20px 40px;
      text-align: center;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.72);
      z-index: 1;
      pointer-events: none;
    }
    .hero > * {
      position: relative;
      z-index: 2;
    }
    .hero::after {
      content: '';
      position: absolute;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,107,0,0.08) 0%, transparent 70%);
      top: 20%; left: -10%;
      z-index: 1;
      animation: glowOrb 20s ease-in-out infinite alternate;
      pointer-events: none;
    }
    @keyframes glowOrb {
      0% { transform: translate(0, 0); }
      100% { transform: translate(100px, 50px); }
    }

    /* Snowflake SVG */
    .snowflake-decor {
      position: absolute;
      width: 300px; height: 300px;
      opacity: 0.05;
      animation: snowflakeRotate 30s linear infinite;
      pointer-events: none;
    }
    .snowflake-decor.top-right { top: 10%; right: -5%; }
    .snowflake-decor.bottom-left { bottom: 10%; left: -5%; animation-direction: reverse; }
    @keyframes snowflakeRotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }

    /* Particles */
    .particles-container {
      position: absolute;
      inset: 0;
      overflow: hidden;
      pointer-events: none;
    }
    .particle {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }

    /* Hero Content */
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }
    .hero-content > * { opacity: 0; transform: translateY(30px); animation: heroFadeUp 0.8s ease forwards; }
    .hero-content > *:nth-child(1) { animation-delay: 0.2s; }
    .hero-content > *:nth-child(2) { animation-delay: 0.4s; }
    .hero-content > *:nth-child(3) { animation-delay: 0.6s; }
    .hero-content > *:nth-child(4) { animation-delay: 0.8s; }
    .hero-content > *:nth-child(5) { animation-delay: 1.0s; }
    .hero-content > *:nth-child(6) { animation-delay: 1.2s; }
    @keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,214,0,0.08);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,214,0,0.3);
      padding: 8px 20px;
      border-radius: 50px;
      font-size: 0.85rem;
      margin-bottom: 24px;
      animation: badgePulse 2s ease-in-out infinite;
    }
    @keyframes badgePulse {
      0%, 100% { box-shadow: 0 0 10px rgba(255,214,0,0.1); }
      50% { box-shadow: 0 0 25px rgba(255,214,0,0.3); }
    }
    .hero h1 {
      font-family: var(--font-heading);
      font-size: clamp(2.5rem, 6vw, 5rem);
      font-weight: 800;
      line-height: 1.1;
      margin-bottom: 16px;
      background: var(--gradient-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 8px; }
    .hero-sub2 {
      color: var(--primary);
      letter-spacing: 3px;
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 32px;
    }
    .hero-sub.typing {
      overflow: hidden;
      border-right: 2px solid var(--primary);
      white-space: nowrap;
      animation: typing 3s steps(30, end), blink-caret 0.75s step-end infinite;
      display: inline-block;
      max-width: 100%;
    }
    @keyframes typing { from { width: 0; } to { width: 100%; } }
    @keyframes blink-caret { 50% { border-color: transparent; } }
    .hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      background: var(--gradient-btn);
      color: #000;
      font-weight: 700;
      padding: 14px 32px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(255,214,0,0.3);
    }
    .btn-primary { position: relative; overflow: hidden; }
    .btn-primary::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 50%; height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      animation: shimmer 3s infinite;
    }
    @keyframes shimmer {
      0% { left: -100%; }
      100% { left: 200%; }
    }
    .btn-primary:hover { transform: scale(1.05); box-shadow: 0 0 30px rgba(255,214,0,0.5); }
    .btn-secondary {
      background: transparent;
      color: var(--primary);
      font-weight: 600;
      padding: 14px 32px;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1rem;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
      border: 1px solid var(--primary);
      cursor: pointer;
    }
    .btn-secondary:hover { background: var(--primary); color: #000; }

    /* Hero Stats */
    .hero-stats {
      position: relative;
      z-index: 2;
      display: flex;
      gap: 40px;
      margin-top: 60px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .hero-stat { text-align: center; }
    .hero-stat-number {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 700;
      background: var(--gradient-text);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
    }
    .hero-stat-label { color: var(--text-muted); font-size: 0.85rem; }
    .hero-stat-suffix { font-size: 1.5rem; }

/* ================================================================
       PROMO MARQUEE
       ================================================================ */
    .marquee {
      background: var(--primary);
      padding: 12px 0;
      overflow: hidden;
      white-space: nowrap;
      position: relative;
    }
    .marquee-track {
      display: inline-flex;
      animation: marqueeScroll 20s linear infinite;
    }
    .marquee:hover .marquee-track { animation-play-state: paused; }
    .marquee-item {
      font-family: var(--font-heading);
      font-size: 0.9rem;
      font-weight: 700;
      color: #000;
      letter-spacing: 1px;
      padding: 0 30px;
    }
    @keyframes marqueeScroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @media (max-width: 768px) {
      .hero {
        width: 100%;
        max-width: 100vw;
        min-height: 100svh;
        min-height: 100vh;
        padding: 80px 16px 40px;
        overflow: hidden;
        background-size: cover;
        background-position: center center;
      }
      .hero h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
      .hero-sub { font-size: 0.95rem; }
      .hero-sub2 { font-size: 0.8rem; letter-spacing: 2px; }
      .hero-buttons { flex-direction: column; align-items: center; }
      .snowflake-decor { width: 180px; height: 180px; }
    }
