
  :root {
    --red: #CC0001;
    --red-dark: #A30D11;
    --navy: #043175;
    --navy-light: #1B2F7A;
    --cream: #F7F3EE;
    --warm-white: #FDFAF7;
    --gold: #C9963A;
    --text: #1a1a1a;
    --muted: #5a5a5a;
    --border: rgba(0,0,0,0.1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
  body {
    font-family: 'Poppins', sans-serif;
    background: var(--warm-white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* ── SCROLL PROGRESS ── */
  .scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #043175, #A30D11);
    z-index: 9999;
    transition: width 0.1s ease;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 3px; left: 0; right: 0; z-index: 100;
    background: var(--navy);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 1.5rem;
    height: 60px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    transition: background 0.3s ease, box-shadow 0.3s ease;
    overflow: visible;
  }

  .nav-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 800; font-size: 1.2rem;
    color: #fff; letter-spacing: 0.04em;
    text-decoration: none;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .nav-brand span { color: var(--red); }

  .brand-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    display: block;
  }

  .nav-links {
    display: flex; gap: 0; list-style: none;
    overflow: visible;
    scrollbar-width: none;
    flex-shrink: 0;
  }
  .nav-links::-webkit-scrollbar { display: none; }
  .nav-links a {
    display: block; padding: 0 0.9rem;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600; font-size: 0.75rem;
    letter-spacing: 0.06em; text-transform: uppercase;
    line-height: 60px;
    transition: color 0.2s;
    white-space: nowrap;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 10px; left: 0.9rem; right: 0.9rem;
    height: 2px;
    background: linear-gradient(90deg, #010066, #CC0001);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  .nav-links a:hover { color: #fff; }
  .nav-links a:hover::after { transform: scaleX(1); }

  /* ── DROPDOWN ── */
  .nav-links .dropdown {
    position: relative;
  }

  .nav-links .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--navy);
    list-style: none;
    padding: 0.4rem 0;
    margin: 0;
    min-width: 180px;
    border-top: 2px solid #CC0001;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    z-index: 999;
  }

  .nav-links .dropdown:hover .dropdown-menu {
    display: block;
  }

  .nav-links .dropdown-menu li {
    display: block;
  }

  .nav-links .dropdown-menu a {
    line-height: 1;
    padding: 0.6rem 1rem;
    font-size: 0.7rem;
    display: block;
  }

  .nav-links .dropdown-menu a::after {
    display: none;
  }

  /* ── MOBILE LOGO ── */
  .mobile-right-logo {
    display: none;
  }

  /* ── MOBILE (max 768px) ── */
  @media (max-width: 768px) {
    nav {
      padding-left: max(1rem, env(safe-area-inset-left));
      padding-right: max(1rem, env(safe-area-inset-right));
      gap: 15px;
    }

    .nav-links {
      display: none;
    }

    .nav-brand {
      font-size: 1rem;
    }

    .mobile-right-logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    .mobile-right-logo img {
      height: 32px;
      width: auto;
    }

    #mobile-hide {
    display: none;
    }
  }

  /* ── EXTRA SMALL (max 360px) ── */
  @media (max-width: 360px) {
    .nav-brand {
      font-size: 0.85rem;
    }
    .brand-logo, .mobile-right-logo img {
      height: 26px;
    }
  }
  /*@media (max-width: 768px) { .nav-links { display: none; } }*/

  /* ── HERO ── */
  #hero {
    min-height: 100svh;
    background: linear-gradient(135deg, #043175 0%, #A30D11 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 5rem 1.5rem 2.5rem;
    overflow: hidden;
  }

  .hero-bg-pattern {
    position: absolute; inset: 0; z-index: 0;
    background:
      radial-gradient(ellipse 70% 60% at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 70%),
      radial-gradient(ellipse 50% 50% at 10% 80%, rgba(255,255,255,0.06) 0%, transparent 60%);
    animation: kenburns 20s ease-in-out infinite alternate;
  }
  @keyframes kenburns {
    0% { transform: scale(1); }
    100% { transform: scale(1.06); }
  }

  .hero-grid {
    position: absolute; inset: 0; z-index: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
  }

  /* Tags — always in-flow at the top */
  .hero-tag {
    position: relative; z-index: 1;
    display: flex; align-items: center; gap: 0.5rem;
    flex-wrap: wrap;
    flex-shrink: 0;
    margin-bottom: 1.5rem;
  }

  .tag-pill {
    display: inline-flex; align-items: center; gap: 0.4rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    padding: 0.3rem 0.75rem;
    border-radius: 100px;
    font-size: 0.65rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    backdrop-filter: blur(4px);
  }
  .tag-pill.accent { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.4); color: #fff; }

  /* Content fills remaining space and sits at bottom */
  .hero-content {
    position: relative; z-index: 1;
    max-width: 800px;
    margin-top: auto;
  }

  .hero-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-weight: 600; font-size: 0.72rem;
    color: rgba(255,255,255,0.8); letter-spacing: 0.15em;
    text-transform: uppercase; margin-bottom: 0.5rem;
  }

  .hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 14vw, 9rem);
    line-height: 0.9;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0 0 0.25rem 0; /* smaller bottom gap */
  }
  .hero-title .kota { display: block; }
  .hero-title .baca { color: rgba(255,255,255,0.3); display: block; }
  .hero-title .year { color: rgba(255,255,255,0.2); display: block; }

  .hero-subtitle-wrapper {
    margin: 0; /* control top & bottom spacing */
  }

  .hero-subtitle-img {
    display: block;
    width: clamp(220px, 25vw, 420px);
    height: auto;
    margin: 0;
  }

  .hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0.5rem 0 1.5rem; /* reduced top space */
  }

  .meta-item {
    display: flex; align-items: center; gap: 0.5rem;
  }
  .meta-icon {
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; backdrop-filter: blur(4px);
  }
  .meta-icon svg { width: 14px; height: 14px; fill: #fff; }
  .meta-text strong {
    display: block; font-family: 'Poppins', sans-serif;
    font-weight: 700; font-size: 0.8rem; color: #fff; letter-spacing: 0.02em;
  }
  .meta-text span {
    font-size: 0.62rem; color: rgba(255,255,255,0.55);
    font-family: 'Poppins', sans-serif; font-weight: 400;
    text-transform: uppercase; letter-spacing: 0.08em;
  }

  .hero-cta {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 0.8rem 1.75rem;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 700; font-size: 0.8rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    backdrop-filter: blur(4px);
    position: relative; overflow: hidden;
  }
  .hero-cta:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  }
  .hero-cta svg { width: 16px; height: 16px; fill: #fff; }

  /* Badge — hidden on mobile, absolute on desktop */
  .hero-badge { display: none; }

  .hero-badge-inner {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px; padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
  }
  .hero-badge-inner .num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800; font-size: 2.5rem; color: #fff;
    line-height: 1;
  }
  .hero-badge-inner .lbl {
    font-family: 'Poppins', sans-serif;
    font-weight: 500; font-size: 0.65rem;
    color: rgba(255,255,255,0.6); letter-spacing: 0.1em;
    text-transform: uppercase; display: block; margin-top: 0.15rem;
  }

    /* ── HERO LARIAN ── */
  #hero-larian {
    min-height: 50svh;
    background: linear-gradient(135deg, #043175 0%, #A30D11 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 5rem 1.5rem 2.5rem;
    overflow: hidden;
  }

  @media (max-width: 768px) {
    #hero,
    #hero-larian {
      min-height: auto;
      padding: 4.5rem 1.25rem 2rem;
    }

    .hero-content {
      margin-top: 0;
    }
  }

  /* ── SECTION SHELL ── */
  section { padding: 5rem 1.5rem; }
  .container { max-width: 1100px; margin: 0 auto; }

  .section-label {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; font-size: 0.7rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--red); margin-bottom: 0.6rem;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .section-label::before {
    content: ''; display: block;
    width: 24px; height: 2px;
    background: linear-gradient(90deg, #043175, #A30D11);
  }

  .section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: clamp(1.8rem, 6vw, 3rem);
    line-height: 1.1; letter-spacing: -0.02em;
    color: var(--navy); margin-bottom: 1.25rem;
  }

  .section-body {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 1rem; line-height: 1.8;
    color: var(--muted); max-width: 680px;
  }


  /* ── OVERVIEW ── */
  #overview { background: var(--cream); }

  .overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem; margin-top: 3rem;
  }
  @media (min-width: 768px) {
    .overview-grid { grid-template-columns: 1fr 1fr; }
  }

  .overview-quote {
    background: linear-gradient(135deg, var(--navy) 0%, #1B2F7A 100%);
    border-radius: 12px; padding: 2.5rem;
    position: relative; overflow: hidden;
    box-shadow: 0 20px 50px rgba(1,0,102,0.25);
  }
  .overview-quote::before {
    content: '\201C';
    position: absolute; top: -0.5rem; left: 1rem;
    font-family: 'Poppins', sans-serif;
    font-size: 8rem; color: rgba(255,255,255,0.06);
    line-height: 1;
  }
  .overview-quote p {
    font-family: 'Poppins', sans-serif;
    font-weight: 600; font-size: 1.3rem;
    color: #fff; line-height: 1.4;
    position: relative; z-index: 1;
  }
  .overview-quote p em {
    color: transparent;
    background: linear-gradient(90deg, #fff 0%, rgba(200,16,46,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
  }

  .overview-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .stat-card {
    background: #fff; border-radius: 12px; padding: 1.5rem;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #043175, #A30D11) 1;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(1,0,102,0.15);
  }
  .stat-card .num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800; font-size: 2.2rem;
    background: linear-gradient(135deg, #043175, #A30D11);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
  }
  .stat-card .lbl {
    font-size: 0.72rem; color: var(--muted); margin-top: 0.35rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase;
  }

  /*STAT LARIAN*/
.overview-stats-run {
  display: grid;
  /* 2 columns by default */
  grid-template-columns: repeat(2, 1fr); 
  gap: 1.5rem;
  padding: 1rem;
}

.stat-card-run {
  background: #fff;
  border-radius: 20px; /* Increased for that modern look */
  padding: 2.5rem 1.5rem; /* More vertical padding for 'breathability' */
  position: relative; /* Required for the custom top border */
  overflow: hidden; /* Clips the border to the radius */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center; /* Matches your second image better */
}

/* Recreating the split border-top (Blue and Red) */
.stat-card-run::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  /* Creates a sharp split at 50% instead of a gradient */
  background: linear-gradient(90deg, #043175 10%, #A30D11 90%);
}

.stat-card-run:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(4, 49, 117, 0.12);
}

.stat-card-run .num {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 3.5rem; /* Larger font size as seen in the image */
  background: linear-gradient(135deg, #043175, #A30D11);
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card-run .lbl {
  font-size: 0.85rem;
  color: #555;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* --- MOBILE RESPONSIVENESS --- */

@media (max-width: 600px) {
  .overview-stats-run {
    /* Stack cards in 1 column on small phones */
    grid-template-columns: 1fr; 
    gap: 1rem;
  }

  .stat-card-run {
    padding: 2rem 1rem; /* Smaller padding on mobile */
  }

  .stat-card-run .num {
    font-size: 2.8rem; /* Slightly smaller text for mobile screens */
  }
}

  /* ── OBJEKTIF ── */
  #objektif { background: #fff; }

  .objektif-grid {
    display: grid; gap: 1.25rem; margin-top: 2.5rem;
    grid-template-columns: 1fr;
  }
  @media (min-width: 640px) {
    .objektif-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (min-width: 960px) {
    .objektif-grid { grid-template-columns: repeat(4, 1fr); }
  }

  .obj-card {
    padding: 1.75rem 1.5rem;
    border-radius: 12px;
    background: var(--cream);
    border-left: 4px solid transparent;
    border-image: linear-gradient(180deg, #043175, #A30D11) 1;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .obj-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(1,0,102,0.15);
  }
  .obj-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800; font-size: 3rem;
    color: rgba(0,0,0,0.06); line-height: 1;
    position: absolute; top: 0.75rem; right: 1rem;
  }
  .obj-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; font-size: 0.9rem;
    color: var(--navy); text-transform: uppercase;
    letter-spacing: 0.04em; margin-bottom: 0.6rem;
  }
  .obj-card p {
    font-size: 0.82rem; color: var(--muted); line-height: 1.65; font-weight: 300;
  }

  .visi-strip {
    margin-top: 3rem;
    background: linear-gradient(135deg, var(--navy) 0%, #1B2F7A 100%);
    border-radius: 12px; padding: 2rem;
    display: flex; flex-wrap: wrap; gap: 1.5rem;
    align-items: flex-start;
    box-shadow: 0 20px 50px rgba(1,0,102,0.25);
  }
  .visi-strip h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; font-size: 0.85rem;
    color: var(--warm-white); text-transform: uppercase;
    letter-spacing: 0.1em; margin-bottom: 0.35rem;
  }
  .visi-pillar {
    flex: 1; min-width: 180px;
  }
  .visi-pillar p { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.6; font-weight: 300; }
  .visi-divider {
    width: 1px; background: rgba(255,255,255,0.12);
    align-self: stretch;
  }

  /* ── FORMAT ── */
  #format { background: var(--cream); }

  .format-cols {
    display: grid; gap: 1.5rem; margin-top: 2.5rem;
    grid-template-columns: 1fr;
  }
  @media (min-width: 768px) {
    .format-cols { grid-template-columns: 1fr 1fr; }
  }

  .format-card {
    border-radius: 12px; overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .format-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(1,0,102,0.2);
  }
  .format-card-head {
    padding: 1.5rem 1.75rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .format-card.digital .format-card-head { background: linear-gradient(135deg, #010066, #1B2F7A); }
  .format-card.fizikal .format-card-head { background: linear-gradient(135deg, #CC0001, #a00000); }

  .format-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .format-icon svg { width: 22px; height: 22px; fill: #fff; }

  .format-card-head h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800; font-size: 1.4rem;
    color: #fff; letter-spacing: 0.03em; text-transform: uppercase;
  }
  .format-card-head .date {
    font-size: 0.72rem; color: rgba(255,255,255,0.65);
    font-family: 'Poppins', sans-serif;
    font-weight: 500; letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .format-card-body {
    background: #fff; padding: 0;
  }
  .format-list { list-style: none; }

  /* Mobile: stacked vertically */
  .format-list li {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
  }
  .format-list li:last-child { border-bottom: none; }
  .format-list li:hover { background: #f8f8ff; }

  .format-list li .item-title {
    display: flex; align-items: flex-start; gap: 0.55rem;
    font-size: 0.85rem; font-weight: 700;
    color: var(--navy); line-height: 1.4;
  }
  .format-list li .item-title::before {
    content: '';
    display: block; width: 7px; height: 7px; border-radius: 50%;
    flex-shrink: 0; margin-top: 0.35rem;
  }
  .format-card.digital .format-list li .item-title::before { background: var(--navy); }
  .format-card.fizikal .format-list li .item-title::before { background: var(--red); }

  .format-list li .item-desc {
    font-size: 0.8rem; color: var(--muted);
    line-height: 1.5; font-weight: 400;
    padding-left: 1.3rem; /* align under title text, past the dot */
  }

  /* Desktop: two-column side by side */
  @media (min-width: 600px) {
    .format-list li {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 1rem;
      padding: 0.85rem 1.75rem;
    }
    .format-list li .item-title::before { margin-top: 0; }
    .format-list li .item-desc {
      padding-left: 0.75rem;
      border-left: 2px solid var(--border);
    }
  }

  /* ── PROGRAM ── */
  #program { background: #fff; }

  .program-grid {
    display: grid; gap: 1rem; margin-top: 2.5rem;
    grid-template-columns: 1fr;
  }
  @media (min-width: 640px) {
    .program-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (min-width: 960px) {
    .program-grid { grid-template-columns: repeat(3, 1fr); }
  }

  .prog-card {
    border-radius: 12px; padding: 1.5rem;
    background: var(--cream);
    display: flex; flex-direction: column; gap: 0.5rem;
    border-bottom: 3px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative; overflow: hidden;
  }
  .prog-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, #043175, #A30D11);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
  .prog-card:hover::before { transform: scaleX(1); }
  .prog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(1,0,102,0.15);
    background: #fff;
  }
  .icon-wrap {
    width: 44px; height: 44px; border-radius: 10px;
    background: linear-gradient(135deg, #043175, #A30D11);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 0.25rem;
  }
  .icon-wrap svg { width: 20px; height: 20px; fill: #fff; }
  .prog-card h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; font-size: 0.9rem;
    color: var(--navy); text-transform: uppercase; letter-spacing: 0.03em;
  }
  .prog-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

  /* ── POCKET EVENT ── */
  #pocket { background: var(--navy); position: relative; overflow: hidden; border-radius: 20px; /* Adjust the px to match your design */
  overflow: hidden;}
  #pocket::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(204,0,1,0.2) 0%, transparent 70%);
  }
  #pocket .section-label { color: var(--warm-white); }
  #pocket .section-label::before { background: var(--warm-white); }
  #pocket .section-title { color: #fff; }
  #pocket .section-body { color: rgba(255,255,255,0.6); }

  .pocket-cats {
    display: grid; gap: 1.5rem; margin-top: 2.5rem;
    grid-template-columns: 1fr;
  }
  @media (min-width: 640px) {
    .pocket-cats { grid-template-columns: 1fr 1fr; }
  }
  @media (min-width: 960px) {
    .pocket-cats { grid-template-columns: repeat(4, 1fr); }
  }

  .pocket-cat {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 12px; padding: 1.5rem;
    transition: transform 0.3s ease, background 0.3s ease;
  }
  .pocket-cat:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-6px);
  }
  .pocket-cat-head {
    display: flex; align-items: center; gap: 0.65rem; margin-bottom: 1rem;
  }
  .pocket-cat-head .dot {
    width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
  }
  .cat-red .pocket-cat-head .dot { background: var(--red); }
  .cat-gold .pocket-cat-head .dot { background: var(--gold); }
  .cat-teal .pocket-cat-head .dot { background: #4ECDC4; }
  .cat-purple .pocket-cat-head .dot { background: #A78BFA; }

  .pocket-cat h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; font-size: 0.78rem;
    color: #fff; text-transform: uppercase; letter-spacing: 0.08em;
    line-height: 1.3;
  }
  .pocket-items { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
  .pocket-items li {
    font-size: 0.78rem; color: rgba(255,255,255,0.65);
    padding: 0.5rem 0.6rem;
    background: rgba(255,255,255,0.04);
    border-radius: 8px; line-height: 1.5; font-weight: 300;
    cursor: pointer;
  }
  .pocket-items li strong { color: rgba(255,255,255,0.9); display: block; margin-bottom: 0.15rem; font-weight: 600; }

  .pocket-item-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s ease-in-out;
  }
  .pocket-item-body > span { overflow: hidden; display: block; }
  .pocket-item-body-inner { display: block; padding-top: 0.35rem; }

  li.is-open .pocket-item-body { grid-template-rows: 1fr; }
  li.is-open .pocket-item-toggle-icon { transform: rotate(180deg); }

  .pocket-item-header { display: flex; justify-content: space-between; align-items: center; gap: 0.5rem; }

  .pocket-item-toggle-icon {
      width: 14px; height: 14px; flex-shrink: 0;
      color: rgba(255,255,255,0.5);
      transition: transform 0.3s ease-in-out;}

  /* ── LOKASI & TARIKH ── */
  #lokasi { background: var(--cream); }

  .timeline {
    margin-top: 2.5rem;
    display: flex; flex-direction: column; gap: 0;
    position: relative;
  }
  .timeline::before {
    content: '';
    position: absolute; left: 23px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(180deg, #043175, #A30D11);
    opacity: 0.3;
  }

  .tl-item {
    display: flex; gap: 1.5rem;
    padding-bottom: 2.5rem; position: relative;
  }
  .tl-item:last-child { padding-bottom: 0; }

  .tl-dot {
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; position: relative; z-index: 1;
    font-family: 'Poppins', sans-serif;
    font-weight: 800; font-size: 0.65rem;
    letter-spacing: 0.05em; text-align: center;
    line-height: 1.2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  .tl-dot.navy { background: linear-gradient(135deg, #010066, #1B2F7A); color: #fff; }
  .tl-dot.red { background: linear-gradient(135deg, #CC0001, #a00000); color: #fff; }

  .tl-body { padding-top: 0.5rem; }
  .tl-body .date-badge {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-weight: 600; font-size: 0.68rem;
    color: var(--red); text-transform: uppercase;
    letter-spacing: 0.1em; margin-bottom: 0.35rem;
  }
  .tl-body h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; font-size: 1.1rem;
    color: var(--navy); letter-spacing: 0.02em;
    margin-bottom: 0.35rem;
  }
  .tl-body p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; font-weight: 300; }

  .location-card {
    margin-top: 2.5rem;
    background: linear-gradient(135deg, var(--navy) 0%, #1B2F7A 100%);
    border-radius: 12px; padding: 2rem;
    display: flex; flex-wrap: wrap; gap: 2rem; align-items: center;
    box-shadow: 0 20px 50px rgba(1,0,102,0.25);
  }
  .location-card svg { width: 36px; height: 36px; fill: var(--red); flex-shrink: 0; }
  .location-card-text h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; font-size: 1.2rem;
    color: #fff; margin-bottom: 0.2rem;
  }
  .location-card-text p { font-size: 0.85rem; color: rgba(255,255,255,0.6); font-weight: 300; }

  /* ── AUDIENS ── */
  #audiens { background: #fff; }

  .audiens-grid {
    display: grid; gap: 1rem; margin-top: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
  @media (min-width: 640px) {
    .audiens-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (min-width: 960px) {
    .audiens-grid { grid-template-columns: repeat(5, 1fr); }
  }

  .aud-card {
    border-radius: 12px; padding: 1.5rem 1rem;
    text-align: center;
    background: var(--cream);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #043175, #A30D11) 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .aud-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(1,0,102,0.15);
    background: #fff;
  }
  .aud-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: linear-gradient(135deg, #043175, #A30D11);
    margin: 0 auto 0.75rem;
    display: flex; align-items: center; justify-content: center;
  }
  .aud-icon svg { width: 24px; height: 24px; fill: #fff; }
  .aud-card h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; font-size: 0.8rem;
    color: var(--navy); text-transform: uppercase;
    letter-spacing: 0.04em; margin-bottom: 0.35rem;
  }
  .aud-card p { font-size: 0.72rem; color: var(--muted); line-height: 1.5; font-weight: 300; }

  .audiens-kpi {
    margin-top: 2rem; text-align: center;
    padding: 2.5rem; background: linear-gradient(135deg, #CC0001, #a00000);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(204,0,1,0.3);
  }
  .audiens-kpi .big-num {
    font-family: 'Poppins', sans-serif;
    font-weight: 800; font-size: clamp(2.5rem, 9vw, 4.5rem);
    color: #fff; line-height: 1;
  }
  .audiens-kpi .big-lbl {
    font-family: 'Poppins', sans-serif;
    font-weight: 600; font-size: 0.85rem;
    color: rgba(255,255,255,0.8); text-transform: uppercase;
    letter-spacing: 0.12em; margin-top: 0.35rem;
  }

  /* ── PASPORT ── */
  #pasport { background: var(--navy); overflow: hidden; position: relative; }
  #pasport::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(204,0,1,0.2) 0%, transparent 70%);
  }

  .pasport-inner {
    display: flex; flex-wrap: wrap; gap: 3rem; align-items: center;
  }
  .pasport-text { flex: 1; min-width: 280px; }
  #pasport .section-label { color: var(--warm-white); }
  #pasport .section-label::before { background: var(--warm-white); }
  #pasport .section-title { color: #fff; }
  #pasport .section-body { color: rgba(255,255,255,0.6); }

  .pasport-features { display: flex; flex-direction: column; gap: 0.85rem; margin-top: 2rem; }
  .pasport-feat {
    display: flex; gap: 0.85rem; align-items: flex-start;
  }
  .pasport-feat .feat-icon {
    width: 38px; height: 38px; border-radius: 10px;
    background: rgba(204,0,1,0.2);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    border: 1px solid rgba(204,0,1,0.3);
  }
  .pasport-feat .feat-icon svg { width: 18px; height: 18px; fill: var(--red); }
  .pasport-feat p {
    font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.6; font-weight: 300;
  }
  .pasport-feat p strong { color: #fff; display: block; margin-bottom: 0.15rem; font-weight: 600; }

  .pasport-visual { flex: 1; min-width: 260px; }
  .pasport-book {
    border-radius: 16px;
    aspect-ratio: 3/4;
    max-width: 300px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 60px rgba(255, 254, 248, 0.753), 0 30px 70px rgba(0,0,0,0.6) !important;
    overflow: hidden;
    padding: 0;          /* remove padding so card fills it */
    background: none;   /* card handles its own bg */
  }
  .pasport-book:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  }
  .pasport-book::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  }
  .pasport-book-top { position: relative; z-index: 1; }
  .pasport-book-emblem {
    width: 60px; height: 60px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
  }
  .pasport-book-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800; font-size: 1.4rem;
    color: #fff; text-transform: uppercase; letter-spacing: 0.04em;
    line-height: 1.1;
  }
  .pasport-book-sub {
    font-size: 0.7rem; color: rgba(255,255,255,0.7);
    font-family: 'Poppins', sans-serif;
    font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; margin-top: 0.25rem;
  }

  /* ── merch ── */
  #merch_official { 
    background: var(--cream);
    padding: 0 !important;
   }

  .kpi-cols {
    display: grid; gap: 1.5rem; margin-top: 2.5rem;
    grid-template-columns: 1fr;
  }
  @media (min-width: 640px) {
    .kpi-cols { grid-template-columns: repeat(3, 1fr); }
  }

  .kpi-col { border-radius: 12px; overflow: hidden; box-shadow: 0 8px 25px rgba(0,0,0,0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; }
  .kpi-col:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(1,0,102,0.15); }
  .kpi-col-head {
    padding: 1rem 1.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700; font-size: 0.72rem;
    letter-spacing: 0.12em; text-transform: uppercase; color: #fff;
  }
  .kpi-col.output .kpi-col-head { background: linear-gradient(135deg, #CC0001, #a00000); }
  .kpi-col.outcome .kpi-col-head { background: linear-gradient(135deg, #010066, #1B2F7A); }
  .kpi-col.mekanism .kpi-col-head { background: linear-gradient(135deg, #333, #555); }

  .kpi-col-body { background: #fff; padding: 1.25rem 1.5rem; }
  .kpi-col-body ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .kpi-col-body li {
    font-size: 0.85rem; color: var(--text);
    display: flex; align-items: flex-start; gap: 0.5rem; line-height: 1.5; font-weight: 400;
  }
  .kpi-col-body li::before {
    content: '→'; color: var(--red); font-weight: 700; flex-shrink: 0;
    margin-top: 0.05rem;
  }

  .kpi-bottom {
    margin-top: 2rem;
    background: var(--warm-white);
    border-radius: 12px; padding: 2.5rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(1,0,102,0.25);
  }
  .kpi-bottom p {
    font-family: 'Poppins', sans-serif;
    font-weight: 600; font-size: 0.8rem;
    color: var(--red-dark); letter-spacing: 0.12em;
    text-transform: uppercase; margin-bottom: 0.5rem;
  }
  .kpi-bottom h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800; font-size: clamp(1.3rem, 4vw, 2rem);
    color: var(--navy);
  }

  /* ── FOOTER ── */
  footer {
    background: #0b0033;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
  }
  .footer-logo {
    font-family: 'Poppins', sans-serif;
    font-weight: 800; font-size: 1.8rem;
    color: #fff; letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
  }
  .footer-logo span {
    background: linear-gradient(90deg, #CC0001, #ff4444);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .footer-sub {
    font-size: 0.75rem; color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .footer-divider {
    width: 60px; height: 2px;
    background: linear-gradient(90deg, #043175, #A30D11);
    margin: 1.5rem auto;
  }
  .footer-meta {
    font-size: 0.75rem; color: #fff;
    font-family: 'Poppins', sans-serif; letter-spacing: 0.07em; font-weight: 300;
  }
  .footer-tags {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  .footer-tag {
    font-family: 'Poppins', sans-serif;
    font-weight: 500; font-size: 0.68rem;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.3rem 0.8rem; border-radius: 100px;
    letter-spacing: 0.07em; text-transform: uppercase;
    transition: color 0.2s, border-color 0.2s;
  }
  .footer-tag:hover { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.3); }

/* Logo Container Layout */
.logo-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* Allows stacking on mobile */
  gap: 20px 40px; /* Vertical gap 20px, Horizontal gap 40px */
  margin-bottom: 30px;
  max-width: 1000px; /* Keeps logos from spreading too wide on desktop */
  margin-left: auto;
  margin-right: auto;
}

/* Individual Logo Control */
.logo-row img {
  height: 50px;       /* Forces consistent height */
  max-width: 180px;   /* Prevents the 'Reformasi' logo from getting too wide */
  width: auto;
  object-fit: contain; /* Ensures logos don't stretch */
  filter: brightness(1); 
}

/* Mobile View Optimization */
@media (max-width: 768px) {
  .logo-row {
    gap: 20px; /* Tightens space for smaller screens */
  }

  .logo-row img {
    /* On mobile, we make them slightly smaller 
       and use flex-basis to encourage a 2-by-2 grid */
    height: 40px;
    flex: 0 1 calc(45% - 10px); 
    max-width: 140px;
  }
}

@media (max-width: 480px) {
  .logo-row img {
    /* For very small phones, 2 per row is best */
    flex: 0 1 40%;
  }
}

  /* ── BACK TO TOP ── */
  #backToTop {
    position: fixed; bottom: 2rem; right: 2rem;
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, #043175, #A30D11);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 25px rgba(1,0,102,0.4);
    z-index: 999;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
  }
  #backToTop.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
  #backToTop:hover { transform: translateY(-4px); box-shadow: 0 15px 35px rgba(1,0,102,0.5); }
  #backToTop svg { width: 20px; height: 20px; fill: #fff; }

  /* ── FADE IN ── */
  .fade-in {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .fade-in.visible { opacity: 1; transform: none; }

  /* Section divider */
  .section-divider {
    height: 3px;
    background: linear-gradient(90deg, #043175, #A30D11);
  }

  /*Passport card*/
/* Override these specific parts */

.card {
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: perspective(2000px);
  box-shadow: inset 300px 0 50px rgba(0,0,0,.5), 20px 0 60px rgba(0,0,0,.5);
  transition: 1s;
  background: #e0e1dc;
  border-radius: 16px;
}

.card:hover {
  transform: perspective(2000px) rotate(15deg) scale(1.1);
  box-shadow: inset 20px 0 50px rgba(0,0,0,.5), 0 10px 100px rgba(0,0,0,.5);
}

.card:before {
  content: '';
  position: absolute;
  top: -5px; left: 0;
  width: 100%; height: 5px;
  background: #BAC1BA;
  transform-origin: bottom;
  transform: skewX(-45deg);
}

.card:after {
  content: '';
  position: absolute;
  top: 0; right: -5px;
  width: 5px; height: 100%;
  background: #92A29C;
  transform-origin: left;
  transform: skewY(-45deg);
}

/* ── Image cover (front) ── */
.card .imgBox {
  width: 100%;
  height: 100%;
  position: relative;
  transform-origin: left;
  transition: .7s;
  z-index: 2;
}

.card .imgBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  min-width: unset;
  max-height: unset;
  border-radius: 16px;
}

.card .bark {
  position: absolute;
  inset: 0;
  background: #faf7f0;
  opacity: 0;
  transition: .7s;
  z-index: 3;
  border-radius: 16px;
}

.card:hover .imgBox {
  transform: rotateY(-135deg);
}

.card:hover .bark {
  opacity: 1;
  transition: .6s;
  box-shadow: 300px 200px 100px rgba(0,0,0,.4) inset;
}

/* ── Inner page (stamps) ── */
.card .details {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  padding: 16px;
  z-index: 1;
  background: #faf7f0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
}

/* ── Stamps grid ── */
.stamps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
}

.stamp-card {
  border: 1.5px solid;
  border-radius: 2px;
  font-size: 7.5px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  padding: 5px 4px;
  position: relative;
  letter-spacing: 0.3px;
  box-sizing: border-box;
}

.stamp-card::after {
  content: '';
  position: absolute; inset: 2px;
  border: 0.8px dashed;
  border-radius: 1px;
  opacity: 0.4;
}

.s-red    { border-color: #c0392b; color: #c0392b; } .s-red.stamp-card::after    { border-color: #c0392b; }
.s-blue   { border-color: #2471a3; color: #2471a3; } .s-blue.stamp-card::after   { border-color: #2471a3; }
.s-green  { border-color: #1e8449; color: #1e8449; } .s-green.stamp-card::after  { border-color: #1e8449; }
.s-purple { border-color: #7d3c98; color: #7d3c98; } .s-purple.stamp-card::after { border-color: #7d3c98; }
.s-brown  { border-color: #7a5230; color: #7a5230; } .s-brown.stamp-card::after  { border-color: #7a5230; }

/* ── Original passport stamps (square ones at bottom) ── */
.pasport-stamps {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: 0.35rem;
}

.stamp {
  width: 38px; height: 38px; border-radius: 6px;
  border: 1.5px dashed rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 0.5rem; font-weight: 700;
  color: rgba(255,255,255,0.5); text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.2s ease;
}
.stamp:hover { transform: scale(1.1); }
.stamp.filled {
  background: rgba(255,255,255,0.15);
  border-style: solid; border-color: rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.85);
}

/* Floating Chatbot Button */
#chatbot-button {
    position: fixed;
    bottom: 110px; /* slightly above scroll-to-top */
    right: 25px;
    width: 65px;
    height: 65px;
    background: #ffffff; /* your navy theme */
    border-radius: 50%;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#chatbot-button img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* Chatbot Window */
#chatbot-window {
    position: fixed;
    bottom: 110px;
    right: 25px;
    width: 350px;
    height: 520px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
}

/* Header */
#chatbot-header {
    background: #BE1E2D; /* your red accent */
    color: white;
    padding: 14px 18px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatbot-close {
    cursor: pointer;
    padding-left: 10px;
}

/* iFrame */
#chatbot-iframe {
    width: 100%;
    height: calc(100% - 48px);
    border: none;
}

/* Mobile responsive */
@media(max-width: 600px) {
    #chatbot-window {
        width: 92%;
        right: 4%;
        height: 65%;
        bottom: 90px;
    }

    #chatbot-button {
        width: 58px;
        height: 58px;
        bottom: 95px;
        right: 20px;
    }
}
