/* =========================================
   CSS VARIABLES & RESET
========================================= */
:root {
  --blue-sky:    #7DD9F0;
  --blue-light:  #C8F0FA;
  --blue-main:   #22B8E8;
  --blue-deep:   #0D9AC8;
  --navy:        #1A2B5E;
  --navy-light:  #2A3F8F;
  --white:       #FFFFFF;
  --yellow:      #F5D020;
  --yellow-dark: #D4A900;
  --green-palm:  #3DAB2A;
  --green-hut:   #5BAE4A;
  --brown:       #8B4513;
  --gray-light:  #F0F8FC;
  --gray-text:   #5A7A8A;

  --font-display: 'Fredoka', sans-serif;
  --font-body:    'Nunito', sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;

  --shadow-soft: 0 8px 32px rgba(26,43,94,0.10);
  --shadow-card: 0 4px 24px rgba(26,43,94,0.12);
  --shadow-btn:  0 4px 16px rgba(245,208,32,0.45);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   WAVE DIVIDER
========================================= */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
}
.wave-divider svg { display: block; width: 100%; }

/* =========================================
   HEADER / NAVBAR
========================================= */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(26,43,94,0.25);
  transition: background 0.3s;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
  letter-spacing: 0.3px;
}

.nav-links a:hover { color: var(--yellow); }

.btn-ticket {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  background: var(--yellow);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn-ticket:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(245,208,32,0.55);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--white);
  border-radius: 4px;
  transition: all 0.3s;
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 40%, var(--blue-deep) 100%);
  padding: 80px 24px 0;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34,184,232,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,208,32,0.12) 0%, transparent 70%);
  bottom: 60px; left: -50px;
  border-radius: 50%;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,208,32,0.15);
  border: 1.5px solid rgba(245,208,32,0.4);
  border-radius: 50px;
  padding: 6px 16px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 20px;
}

.hero-badge span { font-size: 18px; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--blue-main);
  position: relative;
}

.hero-title em::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 4px;
  background: var(--yellow);
  border-radius: 4px;
}

.hero-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  background: var(--yellow);
  color: var(--navy);
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  cursor: pointer;
  box-shadow: var(--shadow-btn);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(245,208,32,0.55);
}

.btn-outline {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50px;
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: var(--blue-main);
  color: var(--blue-main);
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}

.stat-item { text-align: center; }

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--yellow);
  display: block;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-img-main {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* Floating card on hero */
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.hero-float-card.card-1 { top: 30px; left: -20px; }
.hero-float-card.card-2 { bottom: 80px; right: -10px; animation-delay: 1.5s; }

.float-icon { font-size: 28px; }
.float-text strong {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--navy);
  display: block;
}
.float-text small { font-size: 12px; color: var(--gray-text); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* =========================================
   SECTION SHARED
========================================= */
section { padding: 80px 24px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-deep);
  background: rgba(34,184,232,0.12);
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 17px;
  color: var(--gray-text);
  line-height: 1.7;
  max-width: 560px;
}

.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* =========================================
   FASILITAS
========================================= */
.fasilitas { background: var(--gray-light); }

.fasilitas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fasilitas-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.fasilitas-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue-main), var(--blue-sky));
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.fasilitas-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(26,43,94,0.15);
}

.fasilitas-icon {
  font-size: 52px;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}

.fasilitas-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.fasilitas-desc {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.6;
}

/* =========================================
   HARGA TIKET
========================================= */
.harga { background: var(--white); }

.harga-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.ticket-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 2px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

.ticket-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(26,43,94,0.18);
}

.ticket-card.featured {
  border-color: var(--yellow);
  transform: scale(1.04);
  box-shadow: 0 16px 56px rgba(245,208,32,0.3);
}

.ticket-card.featured:hover {
  transform: scale(1.04) translateY(-6px);
}

.ticket-badge-popular {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--yellow);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.ticket-header {
  padding: 28px 28px 20px;
  background: var(--navy);
  text-align: center;
}

.ticket-card.featured .ticket-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}

.ticket-emoji { font-size: 40px; margin-bottom: 10px; display: block; }

.ticket-type {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.ticket-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

.ticket-body {
  padding: 24px 28px 32px;
  background: var(--white);
}

.ticket-price {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1.5px dashed rgba(26,43,94,0.12);
}

.price-label {
  font-size: 13px;
  color: var(--gray-text);
  margin-bottom: 4px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.price-amount span {
  font-size: 18px;
  color: var(--gray-text);
  font-weight: 500;
}

.ticket-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.ticket-includes li {
  font-size: 14px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.tick-icon {
  width: 20px; height: 20px;
  background: rgba(34,184,232,0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-deep);
  font-size: 11px;
  flex-shrink: 0;
}

.btn-beli {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-beli.primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: var(--shadow-btn);
}

.btn-beli.secondary {
  background: rgba(34,184,232,0.1);
  color: var(--blue-deep);
  border: 2px solid var(--blue-main);
}

.btn-beli:hover { transform: translateY(-2px); }

/* =========================================
   GALERI
========================================= */
.galeri { background: var(--navy); }

.galeri .section-title { color: var(--white); }
.galeri .section-sub   { color: rgba(255,255,255,0.6); }
.galeri .section-tag   {
  background: rgba(245,208,32,0.15);
  color: var(--yellow);
}

.galeri-grid {
  columns: 4;
  column-gap: 16px;
}

.galeri-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.galeri-item img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.galeri-item:hover img {
  transform: scale(1.05);
}

.galeri-item::after {
  content: '🔍';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0);
  font-size: 32px;
  background: rgba(255,255,255,0.9);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.galeri-item:hover::after {
  transform: translate(-50%, -50%) scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 36px;
  color: white;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* =========================================
   TESTIMONI
========================================= */
.testimoni { background: var(--gray-light); overflow: hidden; }

.testi-track-wrap { overflow: hidden; position: relative; }

.testi-track {
  display: flex;
  gap: 24px;
  animation: scrollLeft 35s linear infinite;
  width: max-content;
}

.testi-track:hover { animation-play-state: paused; }

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  width: 320px;
  flex-shrink: 0;
  box-shadow: var(--shadow-card);
}

.testi-stars {
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testi-text {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--blue-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  overflow: hidden;
}

.testi-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.testi-loc {
  font-size: 12px;
  color: var(--gray-text);
}

/* =========================================
   LOKASI / MAPS
========================================= */
.lokasi { background: var(--white); }

.lokasi-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--blue-sky);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.map-placeholder {
  text-align: center;
  padding: 40px;
  color: var(--gray-text);
}

.map-placeholder .map-icon { font-size: 56px; margin-bottom: 12px; }

.map-placeholder p {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--navy);
}

.lokasi-info { display: flex; flex-direction: column; gap: 20px; }

.info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px;
  background: var(--gray-light);
  border-radius: var(--radius-md);
  transition: background 0.2s;
}

.info-item:hover { background: rgba(34,184,232,0.08); }

.info-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--blue-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.info-label {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.info-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
}

/* =========================================
   FAQ
========================================= */
.faq { background: var(--gray-light); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26,43,94,0.06);
}

.faq-q {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: color 0.2s;
  gap: 12px;
}

.faq-q:hover { color: var(--blue-deep); }

.faq-chevron {
  width: 28px; height: 28px;
  background: rgba(34,184,232,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  transition: transform 0.3s, background 0.2s;
  color: var(--blue-deep);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  background: var(--blue-main);
  color: var(--white);
}

.faq-a {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.7;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}

/* =========================================
   CTA / WHATSAPP
========================================= */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--blue-deep) 100%);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '🌊';
  position: absolute;
  font-size: 200px;
  opacity: 0.04;
  top: -30px; left: -30px;
  line-height: 1;
  pointer-events: none;
}

.cta-section::after {
  content: '🏊';
  position: absolute;
  font-size: 200px;
  opacity: 0.04;
  bottom: -40px; right: -20px;
  line-height: 1;
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.2;
}

.cta-title em {
  font-style: normal;
  color: var(--yellow);
}

.cta-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-wa {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  background: #25D366;
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.55);
}

/* =========================================
   FOOTER
========================================= */
footer {
  background: #101C40;
  color: rgba(255,255,255,0.7);
  padding: 56px 24px 28px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand img {
  height: 52px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s;
  cursor: pointer;
}

.social-btn:hover { background: var(--blue-main); }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}

.footer-col li a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-copy { color: rgba(255,255,255,0.45); }

.footer-love {
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* =========================================
   FLOATING WA BUTTON
========================================= */
.float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 998;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
}

.float-wa:hover { transform: scale(1.12); }

.float-wa::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: pulse-wa 2s ease-in-out infinite;
}

@keyframes pulse-wa {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.3); opacity: 0; }
}

/* =========================================
   SCROLL REVEAL
========================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .fasilitas-grid { grid-template-columns: repeat(2, 1fr); }
  .harga-grid     { grid-template-columns: repeat(2, 1fr); }
  .galeri-grid    { columns: 3; }
  .footer-top     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    gap: 28px;
  }

  .nav-links.open a { font-size: 24px; }

  .nav-close {
    display: none;
    position: absolute;
    top: 24px; right: 28px;
    background: rgba(255,255,255,0.12);
    border: none;
    color: white;
    font-size: 24px;
    width: 44px; height: 44px;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }

  .nav-links.open .nav-close {
    display: flex;
  }

  .nav-close:hover { background: rgba(255,255,255,0.25); }

  .hero-inner       { grid-template-columns: 1fr; text-align: center; }
  .hero-image       { display: none; }
  .hero-actions     { justify-content: center; }
  .hero-stats       { justify-content: center; }
  .hero-desc        { margin: 0 auto 36px; }

  .fasilitas-grid   { grid-template-columns: 1fr; }
  .harga-grid       { grid-template-columns: 1fr; }
  .ticket-card.featured { transform: scale(1); }

  .galeri-grid      { columns: 2; }

  .lokasi-inner     { grid-template-columns: 1fr; }
  .footer-top       { grid-template-columns: 1fr; }
  .footer-bottom    { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .galeri-grid { columns: 2; }
  .navbar { padding: 10px 16px; }
  .navbar-logo img { height: 44px; }
  .btn-ticket { padding: 10px 18px; font-size: 14px; }
}