/* =========================================
   Responsive Style CSS - Master Full Version
   - Wide Desktop Layout (Max-Width 1600px)
   - Full-width Banner & 2-Column Desktop Grid
   - Responsive Slide Deck Layout
   - Interactive Modal & Navigation Controls
   - Interactive 3D Parallax & Ripple Animations
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #006D64;
  --primary-hover: #004D46;
  --accent-color: #f5b041;
  --accent-hover: #d49533;
  --text-dark: #0f172a;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --body-bg: #e5e7eb;

  --dark-navy: #032722;
  --dark-navy-2: #063d36;
  --glow-gold: rgba(245, 176, 65, 0.55);
  --glass-bg: rgba(255, 255, 255, 0.045);
  --grid-line: rgba(245, 176, 65, 0.09);
  --font-mono: 'Space Mono', 'Courier New', monospace;

  --fs-hero: clamp(1.85rem, 4.5vw, 3rem);
  --fs-h2: clamp(1.5rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.15rem, 2vw, 1.4rem);
  --fs-h4: 1.05rem;
  --fs-lead: clamp(0.95rem, 1.3vw, 1.1rem);
  --fs-body: 0.95rem;
  --fs-small: 0.85rem;
}

html {
  background-color: var(--bg-white);
  min-height: 100vh;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100%;
  position: relative;
  overflow-x: hidden;
}

/* Container Diperluas Maksimal untuk Desktop */
.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 32px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-dark);
}

.text-accent {
  color: var(--accent-color);
}

.section {
  padding: 40px 0;
}

.section-light {
  background-color: #f8fafc;
}

.section-white {
  background-color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-title {
  font-size: var(--fs-h2);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}

.divider {
  height: 4px;
  width: 60px;
  background-color: var(--accent-color);
  margin: 0 auto 24px;
  border-radius: 2px;
  box-shadow: 0 0 12px 1px rgba(245, 176, 65, 0.5);
}

.section-desc {
  color: var(--text-light);
  font-size: var(--fs-lead);
  max-width: 600px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 44px;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  color: #ffffff;
}

.btn-outline {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
  transition: all 0.3s ease, box-shadow 0.3s ease;
}

.btn-outline:hover {
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* =========================================
   HEADER / NAVBAR & DROPDOWN
========================================= */
.header {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  position: relative;
  z-index: 100;
  height: 64px;
}

.header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--primary-color) 25%, var(--accent-color) 50%, var(--primary-color) 75%, transparent 100%);
  opacity: 0.55;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-img {
  height: 32px;
}

.logo-text {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.nav {
  display: flex;
  align-items: center;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: transparent;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.dropbtn:hover,
.dropdown:hover .dropbtn {
  color: var(--primary-color);
  background-color: rgba(0, 109, 100, 0.05);
}

.dropbtn .arrow {
  display: inline-block;
  font-size: 0.6rem;
  transition: transform 0.3s ease;
  margin-right: 2px;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #ffffff;
  min-width: 220px;
  box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  z-index: 200;
  border: 1px solid var(--border-color);
  margin-top: 4px;
}

.dropdown-content a {
  color: var(--text-dark);
  padding: 14px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border-color);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: rgba(0, 109, 100, 0.05);
  color: var(--primary-color);
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
  position: relative;
  background-color: var(--primary-color);
  background-image: url('../img/background1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 60px;
  text-align: center;
  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 109, 100, 0.75);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-date {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
}

.hero-title {
  font-size: var(--fs-hero);
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: var(--fs-lead);
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-cta .btn {
  width: 100%;
}

.hero-countdown {
  margin: 36px 0 28px;
  text-align: center;
}

.hc-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f5b041;
  background: rgba(3, 39, 34, 0.55);
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid rgba(245, 176, 65, 0.35);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
}

.hc-eyebrow .hc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 8px 2px var(--glow-gold);
  animation: cdPulse 1.6s ease-in-out infinite;
}

@keyframes cdPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.cd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
}

.cd-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(245, 176, 65, 0.35);
  border-radius: 14px;
  padding: 14px 6px;
  backdrop-filter: blur(6px);
  position: relative;
  overflow: hidden;
}

.cd-number {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(1.5rem, 5.5vw, 2.1rem);
  color: #ffffff;
  text-shadow: 0 0 14px var(--glow-gold), 0 0 2px rgba(255, 255, 255, 0.4);
  line-height: 1;
}

.cd-label {
  margin-top: 6px;
  font-size: 0.63rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 600;
}

/* =========================================
   KEY HIGHLIGHTS SECTION (FULL-WIDTH BANNER)
========================================= */
.kh-section {
  padding: 0 0 40px;
  background-color: #f8fafc;
}

.kh-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.kh-banner-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 32px 32px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kh-banner-left {
  position: relative;
  max-width: 100%;
  z-index: 2;
}

.kh-sub-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.kh-sub-text {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d97706;
}

.kh-diamond {
  color: #d97706;
  font-size: 0.65rem;
}

.kh-line {
  height: 2px;
  width: 40px;
  background: #d97706;
  border-radius: 2px;
}

.kh-main-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.kh-title-green {
  color: #006d64;
}

.kh-title-gold {
  color: #d97706;
}

.kh-location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #006d64;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  background-color: #f0fdfa;
  padding: 6px 14px;
  border-radius: 50px;
  border: 1px solid #ccfbf1;
}

.kh-banner-right {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  pointer-events: none;
  z-index: 1;
}

.kh-gunung-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.kh-cards-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kh-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  position: relative;
  cursor: pointer;
  z-index: 5;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
  touch-action: manipulation;
}

.kh-card * {
  pointer-events: none;
}

.kh-card-text {
  flex: 1;
}

.kh-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #d97706;
  background-color: #fef3c7;
  margin-bottom: 12px;
}

.kh-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 8px;
}

.kh-gold-line {
  width: 36px;
  height: 3px;
  background-color: #f5b041;
  border-radius: 2px;
  margin-bottom: 12px;
}

.kh-card-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.kh-click-hint {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 10px;
  opacity: 0.85;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.kh-card:hover .kh-click-hint {
  opacity: 1;
  transform: translateX(4px);
}

.kh-card-img-wrap {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #f1f5f9;
}

.kh-card-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.kh-img-contain-wrap {
  background: #f8fafc;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kh-card-img-contain {
  object-fit: contain;
  max-height: 220px;
}

/* =========================================
   DAYS GRID & MODAL STYLES
========================================= */
.days-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.day-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
  z-index: 5;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.05);
  touch-action: manipulation;
}

.day-card * {
  pointer-events: none;
}

.day-card::after {
  content: 'Klik untuk detail rundown ›';
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: right;
  padding: 0 24px 16px;
  opacity: 0.8;
  pointer-events: none;
}

.day-card.location-card::after {
  display: none !important;
}

.day-card-img-header {
  position: relative;
  height: 180px;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.day-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 50px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  background-color: #006d64;
  color: #ffffff;
}

.day-card-content {
  padding: 24px 24px 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.day-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
}

.day-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.day-card li {
  position: relative;
  padding-left: 20px;
  color: #475569;
  font-size: 0.92rem;
}

.day-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #d97706;
}

/* Modal Popup Base Styles */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #ffffff;
  border-radius: 20px;
  max-width: 650px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-header {
  background: var(--primary-color);
  color: #ffffff;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-title-wrap h3 {
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 2px;
}

.modal-title-wrap p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-family: var(--font-mono);
}

.modal-close {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
}

.rundown-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  padding-left: 20px;
  border-left: 2px dashed #e2e8f0;
}

.rundown-item {
  position: relative;
}

.rundown-item::before {
  content: '';
  position: absolute;
  left: -27px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-color);
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px var(--primary-color);
}

.rundown-time {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-color);
  background: #f0fdfa;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 4px;
}

.rundown-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.rundown-desc {
  font-size: 0.88rem;
  color: var(--text-light);
}

.rundown-badge-code {
  margin-top: 16px;
  padding: 12px;
  background: #f8fafc;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  font-size: 0.82rem;
  color: #475569;
}

/* =========================================
   CONTACT & PENGHARGAAN SECTIONS
========================================= */
.contact-list {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.clist-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px 20px;
}

.clist-icon {
  width: 48px;
  height: 48px;
  background-color: #f0f9f7;
  border: 1px solid #d1e9e6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-color);
}

.clist-icon.clist-wa {
  background-color: #e7fceb;
  border-color: #bbf7d0;
  color: #25d366;
}

.clist-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.clist-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
}

.clist-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
}

.an-section {
  background-color: #ffffff;
}

.an-hero {
  background: linear-gradient(135deg, #f0f7f7 0%, #e6f1f1 100%);
  padding: 36px 24px 16px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.an-hero-inner {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 16px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.an-hero-text {
  flex: 1 1 45%;
  text-align: left;
  padding-bottom: 24px;
}

.an-gold-bar {
  width: 54px;
  height: 5px;
  background-color: #d97706;
  border-radius: 3px;
  margin-bottom: 20px;
}

.an-hero-title {
  font-size: clamp(1.4rem, 3.8vw, 2.2rem);
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 16px;
}

.an-title-green {
  color: #006d64;
}

.an-hero-sub {
  font-size: 0.92rem;
  color: #475569;
  max-width: 280px;
}

.an-hero-img {
  flex: 0 0 55%;
  max-width: 360px;
  height: 270px;
  position: relative;
  display: flex !important;
  justify-content: center;
  align-items: flex-end;
}

.an-trophy-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 109, 100, 0.09) 0%, rgba(0, 109, 100, 0.03) 50%, transparent 75%);
  border: 1.5px solid rgba(0, 109, 100, 0.12);
  border-radius: 50%;
  z-index: 1;
}

.an-trophy-img {
  width: 100%;
  max-width: 330px;
  height: auto;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 3;
  transform: translateY(12px);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.15));
}

.an-excellence-block {
  background-color: #ffffff;
  padding: 32px 0;
}

.an-badge-header {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background-color: #003a34;
  color: #ffffff;
  padding: 10px 24px 10px 10px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.an-badge-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5b041;
}

.an-awards-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.an-award-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.an-card-icon-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.an-card-icon {
  width: 58px;
  height: 58px;
  background-color: #fef3c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d97706;
  font-size: 1.4rem;
}

.an-card-num {
  position: absolute;
  bottom: -2px;
  right: -4px;
  background-color: #062e2a;
  color: #ffffff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  border: 2px solid #ffffff;
}

.an-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #006d64;
  margin-bottom: 8px;
}

.an-card-desc {
  font-size: 0.92rem;
  color: #64748b;
}

.an-special-block {
  position: relative;
  background-size: cover;
  background-position: center right;
  padding: 48px 0;
}

.an-special-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 40, 40, 0.78) !important;
}

.an-special-content {
  position: relative;
  z-index: 1;
}

.an-special-left {
  max-width: 480px;
}

.an-special-card {
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.an-special-num {
  background-color: var(--primary-color);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.an-special-info h4 {
  font-size: var(--fs-h4);
  color: #ffffff;
  margin-bottom: 6px;
}

.an-special-info p {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.75);
}

.an-rules-block {
  background-color: #ffffff;
  padding: 40px 0 32px;
  border-top: 1px solid #e5e7eb;
}

.an-rules-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.an-rules-icon-wrap {
  width: 48px;
  height: 48px;
  background-color: #0f2828;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.an-rules-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0d1e3a;
  text-transform: uppercase;
}

.an-rules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.an-rule-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
}

.an-rule-icon {
  width: 40px;
  height: 40px;
  background-color: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.an-rule-item p {
  font-size: var(--fs-body);
  color: var(--text-light);
}

.an-footer-note {
  background-color: #0f172a;
  color: white;
  text-align: center;
  padding: 14px 20px;
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}

/* =========================================
   FOOTER & SLIDE PRESENTATION CONTROLS
========================================= */
.footer {
  background: linear-gradient(160deg, #0f172a 0%, #0a1120 100%);
  color: #cbd5e1;
  padding: 32px 20px 140px !important;
  text-align: center;
  margin-top: 0 !important;
  width: 100%;
}

.footer p {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-400 {
  transition-delay: 0.4s;
}

html,
body.presentation-mode {
  height: 100vh !important;
  overflow: hidden !important;
}

body.presentation-mode {
  display: flex;
  flex-direction: column;
}

.slide-deck {
  position: relative;
  flex: 1;
  width: 100%;
  height: calc(100vh - 64px) !important;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-scroll-wrapper {
  width: 100%;
  height: 100%;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 120px !important;
}

.slide-nav-controls {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  height: 50px;
  background: #1e293b !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  z-index: 999;
  gap: 4px;
  width: calc(100% - 24px);
  max-width: 480px;
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background-color: #006D64;
  color: #ffffff;
  border: none;
  padding: 0 12px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  height: 42px;
  flex-shrink: 0;
}

.nav-btn:disabled {
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}

.nav-btn.prev-btn {
  background-color: #334155;
  color: #ffffff;
}

.slide-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 2px;
  flex-shrink: 1;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  flex-shrink: 0;
}

.dot.active {
  background-color: #f5b041;
  width: 14px;
  border-radius: 10px;
}

/* =========================================
   ANIMASI INTERAKTIF
========================================= */

/* Parallax 3D Hover Effect Base */
.kh-card,
.day-card,
.an-award-card {
  transition: transform 0.15s ease-out, box-shadow 0.3s ease !important;
  will-change: transform;
  transform-style: preserve-3d;
}

/* Ripple Click Effect */
.ripple-effect {
  position: relative;
  overflow: hidden;
}

.ripple-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 109, 100, 0.25);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Float Pulse Animation */
.kh-location-badge,
.hc-eyebrow {
  animation: floatPulse 3s ease-in-out infinite;
}

@keyframes floatPulse {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

/* Responsive Media Queries */
@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }

  .section {
    padding: 80px 0;
  }

  .hero-cta {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }

  .hero-cta .btn {
    width: auto;
    padding: 13px 28px;
  }

  .kh-card {
    flex-direction: row;
    align-items: center;
    padding: 32px;
  }

  .kh-card-text {
    flex: 1 1 55%;
  }

  .kh-card-img-wrap {
    flex: 1 1 45%;
  }

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

  .an-hero-img {
    max-width: 440px;
    height: 330px;
  }

  .an-awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .an-rules-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .slide-nav-controls {
    width: auto;
    min-width: 420px;
    gap: 8px;
    padding: 4px 8px;
  }

  .nav-btn {
    padding: 0 16px;
    font-size: 0.82rem;
  }

  .slide-dots {
    gap: 6px;
  }

  .dot.active {
    width: 18px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  /* Grid 2 Kolom untuk Highlights di Desktop */
  .kh-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .kh-card {
    height: 100%;
  }

  .days-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .an-awards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .an-special-block {
    padding: 32px 0;
  }

  .an-rules-grid {
    grid-template-columns: 1fr;
  }

  .slide-nav-controls {
    height: 46px;
    padding: 3px;
  }

  .nav-btn {
    height: 38px;
    padding: 0 8px;
    font-size: 0.72rem;
  }

  .nav-btn span {
    display: inline-block;
  }
}