/* ============================================================
   DHARS.XII — THE OFFICIAL OCEAN STYLE (REVISI 3-ZONA)
   Deka Harsa • "Twelve infinite happiness, just us be us"
   Atas Biru • Ombak 1 • Tengah Pasir Putih • Ombak 2 • Bawah Laut Biru
   ============================================================ */


/* ############################################################
   PAGAR 1: DESIGN TOKENS & WARNA DASAR
############################################################ */
:root {
  /* Nuansa Biru Laut Dalam */
  --ocean-abyss: #030a14;
  --ocean-deep: #06152b;
  --ocean-navy: #071a35;
  --ocean-blue: #1d4ed8;
  --ocean-cyan: #0284c7;
  --ocean-glow: #38bdf8;
  --ocean-light: #7dd3fc;

  /* Nuansa Putih Pasir Pantai */
  --sand-white: #ffffff;
  --sand-light: #f8fafc;
  --sand-border: #e2e8f0;
  --text-dark: #0f172a;
  --text-muted-dark: #475569;

  /* Teks & Latar Gelap */
  --text-white: #ffffff;
  --text-body-dark-zone: #cbd5e1;

  /* Glassmorphism */
  --glass-dark: rgba(9, 29, 58, 0.7);
  --glass-border-dark: rgba(56, 189, 248, 0.22);
  --shadow-dark: 0 14px 40px rgba(2, 6, 14, 0.5);
  --shadow-light: 0 8px 30px rgba(15, 39, 74, 0.08);

  /* Tipografi */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Border Radius */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-full: 9999px;

  /* Transisi */
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}


/* ############################################################
   PAGAR 2: CSS RESET & PENGATURAN DASAR
############################################################ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  background-color: var(--ocean-deep);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
  position: relative;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}


/* ############################################################
   PAGAR 3: EFEK SLIDER GALERI TUNGGAL (AUTO-SLIDE MULUS)
   Menggantikan grid 3 foto → 1 slider besar penuh dengan foto asli!
############################################################ */
.galeri-slider-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border-dark);
  background: #040e1e;
}

.galeri-slider-track {
  display: flex;
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.galeri-slide {
  min-width: 100%;
  height: clamp(340px, 55vh, 520px);
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  background: #040e1e;
}

.galeri-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.galeri-slide-gradient {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.8s ease;
}

.galeri-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 10, 20, 0.92) 0%, rgba(3, 10, 20, 0.4) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 44px);
}

.galeri-slide-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ocean-glow);
  background: rgba(56, 189, 248, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.35);
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.5px;
  width: fit-content;
}

.galeri-slide-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.25;
  margin-bottom: 6px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
}

.galeri-slide-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 650px;
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

.galeri-slide-loc {
  font-size: 0.9rem;
  color: var(--ocean-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Dots Indikator Slider */
.galeri-slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.slider-dot.active {
  width: 28px;
  background: var(--ocean-glow);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.6);
}

/* Tombol navigasi slider */
.slider-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(6, 19, 37, 0.75);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: var(--text-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.slider-nav-btn:hover {
  background: var(--ocean-blue);
  border-color: var(--ocean-glow);
  transform: translateY(-50%) scale(1.1);
}

.slider-prev { left: 16px; }
.slider-next { right: 16px; }


/* ############################################################
   PAGAR 4: EFEK ANIMASI MENGAMBANG (OCEAN FLOATING)
############################################################ */
.float-element {
  animation: oceanFloating 5.5s ease-in-out infinite alternate;
}

.float-element.delay-1 { animation-delay: 1.2s; }
.float-element.delay-2 { animation-delay: 2.4s; }
.float-element.delay-3 { animation-delay: 3.6s; }

@keyframes oceanFloating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(4px); }
}


/* ############################################################
   PAGAR 5: NAVBAR MELAYANG DENGAN EFEK GLASS
############################################################ */
.navbar {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 20px;
  pointer-events: none;
}

.nav-container {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 24px;
  background: rgba(6, 21, 43, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 35px rgba(2, 7, 16, 0.5);
  max-width: 920px;
  width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.5px;
}

.brand-symbol {
  font-size: 1.35rem;
  color: var(--ocean-glow);
  filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.7));
}

.brand-dot {
  color: var(--ocean-glow);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-item {
  padding: 7px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-full);
}

.nav-item:hover, .nav-item.active {
  color: var(--text-white);
  background: rgba(56, 189, 248, 0.15);
}

.ocean-sound-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-full);
  color: var(--ocean-light);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.ocean-sound-btn:hover {
  background: rgba(56, 189, 248, 0.25);
  color: var(--text-white);
}

.ocean-sound-btn.active {
  background: linear-gradient(135deg, var(--ocean-cyan), var(--ocean-blue));
  color: var(--text-white);
  border-color: var(--ocean-glow);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}


/* ############################################################
   PAGAR 6: ZONA 1 — HERO ATAS (LAUT BIRU SAMUDRA)
   Badge pill sudah dihilangkan total sesuai permintaan!
############################################################ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 140px 24px 230px 24px;
  background: radial-gradient(circle at 50% 15%, #123b70 0%, var(--ocean-deep) 60%, #040e1e 100%);
  color: var(--text-white);
  text-align: center;
  overflow: hidden;
}

.ocean-bubbles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bubble {
  position: absolute;
  bottom: -40px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.65), rgba(56, 189, 248, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% { transform: translateY(0) scale(0.8); opacity: 0; }
  20% { opacity: 0.7; }
  80% { opacity: 0.5; }
  100% { transform: translateY(-120vh) translateX(30px) scale(1.15); opacity: 0; }
}

.hero-container {
  position: relative;
  z-index: 5;
  max-width: 860px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -1.8px;
  margin-bottom: 24px;
}

.text-ocean-gradient {
  background: linear-gradient(135deg, #ffffff 15%, var(--ocean-light) 55%, var(--ocean-glow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 4px 24px rgba(56, 189, 248, 0.4));
}

.hero-motto {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto 40px auto;
  line-height: 1.65;
}

.motto-quote {
  color: var(--ocean-glow);
  font-weight: 700;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-glow {
  background: linear-gradient(135deg, var(--ocean-cyan), var(--ocean-blue));
  color: var(--text-white);
  box-shadow: 0 8px 28px rgba(2, 132, 199, 0.45);
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(56, 189, 248, 0.6);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  border: 1px solid rgba(56, 189, 248, 0.4);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(56, 189, 248, 0.25);
  border-color: var(--ocean-glow);
  transform: translateY(-3px);
}


/* ############################################################
   PAGAR 7: GELOMBANG OMBAK 1 (BIRU KE PUTIH PASIR)
   Animasi ombak tinggi & dinamis dari hero laut ke zona putih
############################################################ */
.ocean-wave-separator {
  position: absolute;
  width: 100%;
  height: 220px;
  overflow: hidden;
  z-index: 10;
  pointer-events: none;
}

.wave-to-white {
  bottom: 0;
  left: 0;
}

.wave-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100%;
}

.wave-back {
  fill: rgba(29, 78, 216, 0.35);
  animation: waveMotion 7.5s ease-in-out infinite alternate;
}

.wave-mid {
  fill: rgba(56, 189, 248, 0.45);
  animation: waveMotion 5.2s cubic-bezier(0.42, 0, 0.58, 1) infinite alternate-reverse;
}

.wave-front-white {
  fill: var(--sand-white);
  animation: waveMotion 3.8s ease-in-out infinite alternate;
}

@keyframes waveMotion {
  0% { transform: translateX(0) scaleY(1); }
  50% { transform: translateX(-25%) scaleY(1.3); }
  100% { transform: translateX(-50%) scaleY(0.9); }
}


/* ############################################################
   PAGAR 8: ZONA 2 — TENGAH (PUTIH BERSIH IBARAT PASIR PANTAI)
   Berisi section TENTANG dan ANGGOTA
############################################################ */
.zone-sand-white {
  background-color: var(--sand-white);
  color: var(--text-dark);
  position: relative;
  z-index: 20;
}

.tentang-section-white {
  padding-top: 40px;
  padding-bottom: 70px;
}

.badge-pill-light {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: var(--ocean-blue);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

/* Card Filosofi Baru (Putih Pasir Bersih) */
.filosofi-white-card {
  background: #ffffff;
  border: 1.5px solid #dbeafe;
  border-radius: var(--radius-lg);
  padding: 48px 42px;
  margin-bottom: 60px;
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
}

.filosofi-white-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.15), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.fwc-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.fwc-symbol {
  font-size: 2.2rem;
  color: var(--ocean-blue);
  line-height: 1;
}

.fwc-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 18px;
}

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

.fwc-statement {
  font-size: 1.1rem;
  color: var(--text-muted-dark);
  max-width: 820px;
  line-height: 1.7;
  margin-bottom: 28px;
}

.fwc-statement strong {
  color: var(--text-dark);
}

.fwc-quote {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f0f7ff;
  border-left: 4px solid var(--ocean-blue);
  padding: 16px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.quote-symbol-blue {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--ocean-blue);
}

.fwc-quote p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  font-style: italic;
}

/* Cerita Lucu 12 Anggota di Zona Pasir */
.tentang-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.story-box-white {
  background: #ffffff;
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: 0 4px 20px rgba(15, 39, 74, 0.05);
  transition: var(--transition);
}

.story-box-white:hover {
  transform: translateY(-6px);
  border-color: #93c5fd;
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.12);
}

.story-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.story-box-white h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.story-box-white p {
  font-size: 0.95rem;
  color: var(--text-muted-dark);
  line-height: 1.65;
}

/* Baris Statistik & Live Day Counter di Zona Pasir */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.stat-card-white {
  background: var(--sand-light);
  border: 1px solid var(--sand-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}

.stat-card-white:hover {
  transform: translateY(-4px);
  border-color: #bfdbfe;
}

.stat-card-highlight-light {
  background: #eff6ff;
  border: 1.5px solid var(--ocean-blue);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.12);
}

.stat-number-blue {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--ocean-blue);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat-title-dark {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.stat-desc-muted {
  font-size: 0.85rem;
  color: #64748b;
}

/* Section Anggota di Zona Pasir */
.anggota-section-white {
  background-color: var(--sand-light);
  border-top: 1px solid var(--sand-border);
}

.section-head-center {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px auto;
}

.section-title-dark {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-sub-dark {
  font-size: 1.05rem;
  color: var(--text-muted-dark);
}

.filter-pills-light {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.filter-pill-light {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  background: #ffffff;
  color: var(--text-muted-dark);
  border: 1px solid var(--sand-border);
  transition: var(--transition);
}

.filter-pill-light:hover {
  color: var(--ocean-blue);
  border-color: #bfdbfe;
}

.filter-pill-light.active {
  background: var(--ocean-blue);
  color: #ffffff;
  border-color: var(--ocean-blue);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
}

/* 12 Kartu Anggota di Zona Pasir */
.anggota-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.zone-sand-white .member-card {
  position: relative;
  background: linear-gradient(155deg, #ffffff 0%, #f0f7ff 38%, #e0f2fe 75%, #bae6fd 100%);
  border: 1.5px solid rgba(147, 197, 253, 0.75);
  border-radius: 22px;
  cursor: pointer;
  box-shadow: 0 10px 28px -4px rgba(2, 132, 199, 0.12), 0 4px 12px rgba(15, 23, 42, 0.04);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, background 0.4s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  will-change: transform;
}

.zone-sand-white .member-card:hover {
  transform: translateY(-9px);
  border-color: var(--ocean-glow);
  box-shadow: 0 20px 42px -6px rgba(2, 132, 199, 0.28), 0 0 0 2px rgba(56, 189, 248, 0.55);
  background: linear-gradient(155deg, #ffffff 0%, #eaf5ff 32%, #d8effe 72%, #bae6fd 100%);
}

/* Gelombang Ombak Animasi di Atas Kartu */
.mc-wave-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.mc-wave-svg {
  width: 200%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.mc-wave-path {
  transform-origin: center;
}

.mc-wave-back {
  fill: rgba(56, 189, 248, 0.28);
  animation: mcCardWave 6s ease-in-out infinite alternate;
}

.mc-wave-front {
  fill: rgba(29, 78, 216, 0.16);
  animation: mcCardWave 4.2s ease-in-out infinite alternate-reverse;
}

@keyframes mcCardWave {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.mc-content-wrap {
  position: relative;
  z-index: 2;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.zone-sand-white .mc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.zone-sand-white .mc-number {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ocean-blue);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #bfdbfe;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.08);
}

.zone-sand-white .mc-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ocean-cyan), var(--ocean-blue));
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 3px 10px rgba(2, 132, 199, 0.3);
}

.mc-avatar-wrap {
  position: relative;
  width: fit-content;
  margin-bottom: 16px;
}

.zone-sand-white .mc-avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d4ed8, #0284c7);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.28);
  overflow: hidden;
  border: 3px solid #ffffff;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.zone-sand-white .member-card:hover .mc-avatar {
  transform: scale(1.06);
  box-shadow: 0 10px 28px rgba(56, 189, 248, 0.45);
}

.zone-sand-white .mc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zone-sand-white .mc-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.zone-sand-white .member-card:hover .mc-name {
  color: var(--ocean-blue);
}

.zone-sand-white .mc-role {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ocean-cyan);
  margin-bottom: 14px;
}

.zone-sand-white .mc-quote {
  font-size: 0.88rem;
  color: #334155;
  font-style: italic;
  line-height: 1.55;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px dashed rgba(147, 197, 253, 0.8);
}

.zone-sand-white .mc-footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ocean-blue);
}

.mc-detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ocean-blue);
  transition: gap 0.3s ease, color 0.3s ease;
}

.mc-detail-btn .arrow-sym {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
}

.zone-sand-white .member-card:hover .mc-detail-btn {
  color: var(--ocean-cyan);
}

.zone-sand-white .member-card:hover .mc-detail-btn .arrow-sym {
  transform: translateX(4px);
}


/* ############################################################
   PAGAR 9: GELOMBANG OMBAK 2 (PUTIH PASIR KE LAUT BIRU BAWAH)
   Animasi ombak kedua mengalir dari zona pasir kembali ke laut biru
############################################################ */
.wave-to-blue {
  position: relative;
  height: 180px;
  background-color: var(--sand-light);
  overflow: hidden;
}

.wave-back-blue {
  fill: rgba(30, 64, 175, 0.35);
  animation: waveMotion 7.5s ease-in-out infinite alternate;
}

.wave-mid-blue {
  fill: rgba(2, 132, 199, 0.5);
  animation: waveMotion 5.2s cubic-bezier(0.42, 0, 0.58, 1) infinite alternate-reverse;
}

.wave-front-blue {
  fill: var(--ocean-navy);
  animation: waveMotion 3.8s ease-in-out infinite alternate;
}


/* ############################################################
   PAGAR 10: ZONA 3 — BAWAH (LAUT BIRU LAGI)
   Berisi Galeri Preview, Pesan Botol & Footer bertema samudra
############################################################ */
.zone-ocean-blue {
  background: linear-gradient(180deg, var(--ocean-navy) 0%, #051224 50%, var(--ocean-abyss) 100%);
  color: var(--text-white);
  position: relative;
  z-index: 20;
}

.section-head-between {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.section-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: var(--ocean-glow);
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 2.9rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.section-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
}

.galeri-preview-grid, .galeri-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.galeri-card {
  position: relative;
  height: 270px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-dark);
  border: 1px solid var(--glass-border-dark);
  transition: var(--transition);
}

.galeri-card:hover {
  transform: translateY(-6px);
  border-color: var(--ocean-glow);
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.4);
}

.gc-background {
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease-smooth);
}

.galeri-card:hover .gc-background {
  transform: scale(1.08);
}

.gc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 10, 20, 0.92) 0%, rgba(3, 10, 20, 0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--text-white);
}

.gc-date {
  font-size: 0.82rem;
  color: var(--ocean-glow);
  margin-bottom: 4px;
}

.gc-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.gc-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(6, 19, 37, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-white);
}

.galeri-view-all-cta {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: var(--glass-dark);
  border: 1px dashed var(--glass-border-dark);
  border-radius: var(--radius-md);
}

.galeri-view-all-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

/* Pesan Botol di Zona Laut */
.botol-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

@media (max-width: 880px) {
  .botol-wrapper {
    grid-template-columns: 1fr;
  }
}

.botol-info p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.random-quote-box {
  background: var(--glass-dark);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-md);
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow-dark);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--ocean-glow);
  opacity: 0.35;
  position: absolute;
  top: 12px;
  left: 18px;
}

#quote-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-white);
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
  line-height: 1.5;
}

#quote-author {
  display: block;
  font-size: 0.9rem;
  color: var(--ocean-glow);
  font-weight: 700;
  margin-bottom: 18px;
}

.btn-refresh-quote {
  padding: 7px 16px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ocean-light);
  transition: var(--transition);
}

.btn-refresh-quote:hover {
  background: var(--ocean-blue);
  color: var(--text-white);
}

.botol-form-card {
  background: var(--glass-dark);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-dark);
}

.botol-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  background: rgba(6, 19, 37, 0.7);
  border: 1px solid var(--glass-border-dark);
  border-radius: var(--radius-sm);
  color: var(--text-white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--ocean-glow);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}

.btn-block {
  width: 100%;
}

.pesan-list-wrap {
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.pesan-list-header {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ocean-light);
  margin-bottom: 14px;
}

.pesan-list {
  max-height: 240px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 6px;
}

.pesan-item {
  background: rgba(6, 19, 37, 0.6);
  border-left: 3px solid var(--ocean-glow);
  padding: 12px 16px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.pesan-item-sender {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ocean-light);
}

.pesan-item-text {
  font-size: 0.9rem;
  color: var(--text-white);
}

.pesan-item-time {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  display: block;
  margin-top: 3px;
}

/* Footer di Zona Laut */
.footer {
  background: var(--ocean-abyss);
  color: var(--text-white);
  padding: 80px 0 40px 0;
  border-top: 1px solid rgba(56, 189, 248, 0.15);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-large {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 8px;
}

.footer-tagline {
  color: var(--ocean-glow);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  max-width: 440px;
}

.footer-links-group {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: var(--ocean-glow);
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-white) !important;
  font-weight: 600;
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 8px 18px;
  border-radius: var(--radius-full);
}

.ig-badge {
  display: block;
  font-size: 0.75rem;
  color: var(--ocean-light);
  margin-top: 6px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 12px;
}

.scroll-top-link {
  cursor: pointer;
  color: var(--ocean-light);
  font-weight: 600;
}

.scroll-top-link:hover {
  color: var(--text-white);
}


/* ############################################################
   PAGAR 11: HALAMAN KHUSUS GALERI (GALERI.HTML)
############################################################ */
.page-galeri {
  background: radial-gradient(circle at 50% 0%, #0d2850 0%, var(--ocean-deep) 70%, var(--ocean-abyss) 100%);
  color: var(--text-white);
}

.galeri-page-hero {
  padding: 140px 24px 60px 24px;
  text-align: center;
}

.galeri-page-main {
  padding-top: 20px;
  padding-bottom: 80px;
}

.galeri-count-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: var(--ocean-light);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
  margin-top: 8px;
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.2);
}

.galeri-count-badge strong {
  color: var(--text-white);
  font-weight: 800;
}


/* ############################################################
   PAGAR 12: MODAL ANGGOTA & LIGHTBOX (SUPER SMOOTH & ELEGAN)
############################################################ */
.modal-backdrop, .lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 10, 24, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.38s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.38s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active, .lightbox-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-card {
  position: relative;
  background: linear-gradient(155deg, rgba(12, 35, 71, 0.98) 0%, rgba(7, 23, 46, 0.98) 60%, rgba(3, 12, 26, 0.99) 100%);
  border: 1.5px solid rgba(56, 189, 248, 0.38);
  border-radius: 26px;
  max-width: 520px;
  width: 100%;
  padding: 38px 32px 32px 32px;
  box-shadow: 0 25px 70px -10px rgba(0, 0, 0, 0.75), 0 0 40px rgba(56, 189, 248, 0.22);
  /* Animasi Smooth & Elegan: slide up + scale natural */
  transform: translateY(28px) scale(0.94);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, box-shadow 0.45s ease;
  color: var(--text-white);
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Saat modal aktif: muncul dengan transisi ultra smooth */
.modal-backdrop.active .modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Gelombang Ombak Animasi di Header Modal */
.modal-wave-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 52px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.modal-wave-svg {
  width: 200%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.modal-wave-p1 {
  fill: rgba(56, 189, 248, 0.22);
  animation: mcCardWave 6.8s ease-in-out infinite alternate;
}

.modal-wave-p2 {
  fill: rgba(29, 78, 216, 0.26);
  animation: mcCardWave 4.6s ease-in-out infinite alternate-reverse;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close-btn:hover {
  background: rgba(239, 68, 68, 0.85);
  border-color: #ef4444;
  color: #ffffff;
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 0 15px rgba(239, 68, 68, 0.5);
}

.modal-profile-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.modal-avatar {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1d4ed8, #0284c7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  color: #ffffff;
  overflow: hidden;
  flex-shrink: 0;
  border: 3px solid rgba(56, 189, 248, 0.6);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.4);
}

.modal-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.modal-profile-meta {
  flex: 1;
  min-width: 0;
}

.modal-hero-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.modal-number {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ocean-glow);
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.modal-role-pill {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-white);
  background: linear-gradient(135deg, var(--ocean-cyan), var(--ocean-blue));
  padding: 4px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
}

.modal-subtitle {
  font-size: 0.95rem;
  color: var(--ocean-light);
  font-style: italic;
  margin-bottom: 16px;
}

.modal-divider {
  position: relative;
  z-index: 2;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.modal-info-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.info-pill {
  background: rgba(6, 19, 37, 0.75);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border-dark);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pill-lbl {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

.pill-val {
  font-size: 0.95rem;
  color: var(--text-white);
  font-weight: 700;
}

.modal-quote-wrap {
  position: relative;
  z-index: 2;
  background: rgba(6, 19, 37, 0.85);
  border-left: 3.5px solid var(--ocean-glow);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 18px;
  font-style: italic;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.modal-funfact {
  position: relative;
  z-index: 2;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}

.ff-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 4px;
}

.modal-funfact p {
  font-size: 0.92rem;
  color: #fef3c7;
  line-height: 1.55;
}

.modal-tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-badge {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ocean-light);
  background: rgba(56, 189, 248, 0.14);
  border: 1px solid rgba(56, 189, 248, 0.28);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* Lightbox Smooth & Elegan */
.lightbox-container {
  max-width: 820px;
  width: 100%;
  position: relative;
  transform: translateY(28px) scale(0.94);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
}

.lightbox-backdrop.active .lightbox-container {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  color: var(--text-white);
  font-size: 2.2rem;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-white);
  font-size: 2rem;
  background: rgba(6, 19, 37, 0.8);
  border: 1px solid rgba(56, 189, 248, 0.3);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.lightbox-nav:hover {
  background: var(--ocean-blue);
}

.lb-prev { left: -24px; }
.lb-next { right: -24px; }

.lightbox-card {
  background: #091e3a;
  border: 1.5px solid var(--glass-border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  color: var(--text-white);
}

.lightbox-visual {
  height: 380px;
  width: 100%;
  position: relative;
}

.lb-art-placeholder {
  width: 100%;
  height: 100%;
}

.lb-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(3, 10, 20, 0.75);
  backdrop-filter: blur(8px);
  color: var(--text-white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
}

.lightbox-details {
  padding: 26px 30px;
}

.lb-meta-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--ocean-glow);
  margin-bottom: 8px;
}

.lb-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
}

.lb-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.lb-location {
  font-size: 0.85rem;
  color: var(--ocean-light);
}



/* ############################################################
   PAGAR: VIDEO SECTION — YOUTUBE & CINEMA DHARS.XII
############################################################ */

.video-section {
  padding-top: 80px;
  padding-bottom: 90px;
}

/* Tombol YouTube */
.btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 18px rgba(255, 0, 0, 0.35);
  letter-spacing: 0.01em;
}

.btn-youtube:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 0, 0, 0.5);
  background: linear-gradient(135deg, #ff2020 0%, #e00000 100%);
}

/* ---- VIDEO UTAMA — THUMBNAIL HERO (KLIK BUKA YOUTUBE) ---- */
.video-featured-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
  margin-bottom: 52px;
  border: 1.5px solid rgba(56, 189, 248, 0.18);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.video-featured-wrapper:hover {
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.75);
  transform: translateY(-3px);
}

/* Link pembungkus thumbnail — 16:9 */
.video-thumb-hero {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  text-decoration: none;
  background: #000;
  cursor: pointer;
}

/* Gambar thumbnail */
.vth-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.4s ease;
  filter: brightness(0.88);
}

.video-thumb-hero:hover .vth-img {
  transform: scale(1.04);
  filter: brightness(0.65);
}

/* Overlay gelap saat hover */
.vth-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 12, 30, 0.25);
  transition: background 0.35s ease;
}

.video-thumb-hero:hover .vth-overlay {
  background: rgba(4, 12, 30, 0.55);
}

/* Tombol Play di tengah */
.vth-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.5);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
  animation: pulsePlay 2.4s infinite;
}

@keyframes pulsePlay {
  0%   { box-shadow: 0 0 0 0 rgba(255,0,0,0.55); }
  70%  { box-shadow: 0 0 0 22px rgba(255,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,0,0,0); }
}

.video-thumb-hero:hover .vth-play-btn {
  transform: translate(-50%, -50%) scale(1.15);
  animation: none;
  box-shadow: 0 8px 36px rgba(255, 0, 0, 0.7);
}

/* Bar atas — badge + pill youtube */
.vth-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(3,10,24,0.75) 0%, transparent 100%);
}

.vth-badge {
  background: rgba(255, 0, 0, 0.85);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 5px 13px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  backdrop-filter: blur(6px);
}

.vth-yt-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.2);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-thumb-hero:hover .vth-yt-pill {
  opacity: 1;
  transform: translateY(0);
}

/* Bar bawah — judul + hint */
.vth-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 24px 22px 24px;
  background: linear-gradient(to top, rgba(3,10,24,0.9) 0%, transparent 100%);
}

.vth-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 5px 0;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  transform: translateY(4px);
  transition: transform 0.35s ease;
}

.video-thumb-hero:hover .vth-title {
  transform: translateY(0);
}

.vth-hint {
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.03em;
  opacity: 0;
  transition: opacity 0.35s ease 0.05s;
}

.video-thumb-hero:hover .vth-hint {
  opacity: 1;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.83rem;
}

/* ---- VIDEO SLIDER PLAYLIST ---- */
.video-slider-section {
  margin-bottom: 52px;
}

.vss-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.vss-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
  margin: 0 0 4px 0;
}

.vss-sub {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin: 0;
}

.vss-nav-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.vss-nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.12);
  border: 1.5px solid rgba(56, 189, 248, 0.3);
  color: var(--text-white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.vss-nav-btn:hover {
  background: rgba(56, 189, 248, 0.3);
  border-color: var(--ocean-glow);
  transform: scale(1.08);
}

/* Wrapper Slider (mask overflow) */
.video-slider-wrap {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

/* Track horizontal */
.video-slider-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

/* Tiap item video di slider */
.video-slide-item {
  flex: 0 0 calc(25% - 14px);
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(5, 18, 38, 0.8);
  border: 1.5px solid rgba(56, 189, 248, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.video-slide-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
  border-color: rgba(56, 189, 248, 0.4);
}

.video-slide-item.active-slide {
  border-color: var(--ocean-glow);
  box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.35);
}

/* Thumbnail area */
.vsi-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  background: #000;
  overflow: hidden;
}

.vsi-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.video-slide-item:hover .vsi-thumb img {
  transform: scale(1.06);
}

/* Overlay play button */
.vsi-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-slide-item:hover .vsi-play-overlay {
  opacity: 1;
}

.vsi-play-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 0, 0, 0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  transform: scale(0.85);
  transition: transform 0.25s ease;
}

.video-slide-item:hover .vsi-play-icon {
  transform: scale(1);
}

/* Konten bawah thumbnail */
.vsi-info {
  padding: 12px 14px 14px 14px;
}

.vsi-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ocean-glow);
  margin-bottom: 4px;
}

.vsi-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Dots indikator slider video */
.video-slider-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
}

.vsd-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(56, 189, 248, 0.25);
  cursor: pointer;
  transition: var(--transition);
}

.vsd-dot.active {
  background: var(--ocean-glow);
  transform: scale(1.4);
}

/* ---- YOUTUBE CHANNEL BANNER ---- */
.youtube-channel-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(20, 5, 5, 0.85) 0%, rgba(40, 10, 10, 0.8) 100%);
  border: 1.5px solid rgba(255, 60, 60, 0.3);
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  box-shadow: 0 10px 40px rgba(200, 0, 0, 0.15), 0 0 0 1px rgba(255,100,100,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  flex-wrap: wrap;
}

.ycb-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  min-width: 0;
}

.ycb-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(255, 0, 0, 0.1);
  border: 1.5px solid rgba(255, 60, 60, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ycb-info h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-white);
  margin: 0 0 5px 0;
}

.ycb-info p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

.ycb-action {
  flex-shrink: 0;
}

/* Hamburger Toggle Button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
  z-index: 1001;
}

.nav-hamburger:hover {
  background: rgba(56, 189, 248, 0.25);
  border-color: var(--ocean-glow);
}

.hamburger-bar {
  display: block;
  width: 18px;
  height: 2px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
}

.nav-hamburger.active .hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.active .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.active .hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Tombol kembali galeri khusus mobile */
.nav-back-btn {
  white-space: nowrap;
}


/* ############################################################
   PAGAR 13: RESPONSIVE MEDIA QUERIES (MOBILE FIRST OPTIMIZATION)
############################################################ */

/* TABLET & HP BESAR (<= 992px) */
@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
  
  .hero-title {
    font-size: clamp(2.6rem, 7vw, 4.4rem);
    letter-spacing: -1.2px;
  }

  .filosofi-white-card {
    padding: 36px 30px;
  }

  .tentang-story-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }

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

  .anggota-grid {
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
    gap: 20px;
  }

  .botol-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}


/* MODE HP / SMARTPHONE (<= 820px) */
@media (max-width: 820px) {
  .navbar {
    top: 12px;
    padding: 0 12px;
  }

  .nav-container {
    padding: 8px 16px;
    gap: 10px;
    position: relative;
  }

  .nav-brand {
    font-size: 1.1rem;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .ocean-sound-btn {
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: rgba(5, 18, 38, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(56, 189, 248, 0.35);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.7);
    flex-direction: column;
    padding: 14px 10px;
    gap: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.97);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    pointer-events: none;
    z-index: 999;
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }

  .nav-item {
    width: 100%;
    text-align: center;
    padding: 11px 16px;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
  }

  .nav-item.active, .nav-item:hover {
    background: rgba(56, 189, 248, 0.18);
    color: var(--text-white);
  }

  /* Hero Section Mobile */
  .hero {
    min-height: auto;
    padding: 115px 16px 140px 16px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3.4rem);
    letter-spacing: -1px;
    margin-bottom: 18px;
  }

  .hero-motto {
    font-size: 1rem;
    margin-bottom: 28px;
    padding: 0 6px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    gap: 12px;
  }

  .hero-cta-group .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.92rem;
  }

  /* Wave Separator */
  .ocean-wave-separator {
    height: clamp(80px, 14vw, 150px);
  }

  .wave-to-blue {
    height: clamp(80px, 14vw, 140px);
  }

  /* Section Padding */
  .section {
    padding: 60px 0;
  }

  .tentang-section-white {
    padding-top: 25px;
    padding-bottom: 50px;
  }

  /* Filosofi Card Mobile */
  .filosofi-white-card {
    padding: 26px 18px;
    margin-bottom: 40px;
    border-radius: var(--radius-md);
  }

  .fwc-symbol {
    font-size: 1.8rem;
  }

  .fwc-heading {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 14px;
  }

  .fwc-statement {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  /* Cerita & Stats Mobile */
  .tentang-story-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .story-box-white {
    padding: 22px 18px;
  }

  .story-box-white h3 {
    font-size: 1.18rem;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-card-white {
    padding: 18px 12px;
  }

  .stat-number-blue {
    font-size: 2rem;
  }

  .stat-title-dark {
    font-size: 0.92rem;
  }

  .stat-desc-muted {
    font-size: 0.78rem;
  }

  /* 12 Anggota Cards Mobile */
  .section-head-center {
    margin-bottom: 30px;
  }

  .section-title-dark, .section-title {
    font-size: clamp(1.7rem, 6vw, 2.3rem);
  }

  .section-sub-dark, .section-sub {
    font-size: 0.92rem;
  }

  .anggota-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .zone-sand-white .member-card {
    padding: 22px 18px;
  }

  .zone-sand-white .mc-avatar {
    width: 68px;
    height: 68px;
    font-size: 1.5rem;
  }

  /* Galeri Slider Mobile */
  .section-head-between {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
  }

  .galeri-slider-wrap {
    border-radius: var(--radius-md);
  }

  .galeri-slide {
    height: clamp(280px, 50vh, 400px);
  }

  .galeri-slide-overlay {
    padding: 18px 16px;
  }

  .galeri-slide-title {
    font-size: clamp(1.2rem, 4.8vw, 1.6rem);
  }

  .galeri-slide-desc {
    font-size: 0.86rem;
    margin-bottom: 6px;
  }

  .slider-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }

  .galeri-view-all-cta {
    padding: 20px 16px;
    margin-top: 24px;
  }

  .galeri-view-all-cta p {
    font-size: 0.92rem;
  }

  .galeri-view-all-cta .btn {
    font-size: 0.85rem;
    padding: 10px 18px;
    width: 100%;
  }

  /* Video Section Mobile — Thumbnail Hero */
  .vth-play-btn {
    width: 58px;
    height: 58px;
  }

  .vth-title {
    font-size: 1rem;
  }

  .vth-top-bar {
    padding: 12px 14px;
  }

  .vth-bottom-bar {
    padding: 36px 16px 16px 16px;
  }

  .vss-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .video-slide-item {
    flex: 0 0 calc(50% - 9px);
  }

  .youtube-channel-banner {
    flex-direction: column;
    gap: 18px;
    padding: 22px 18px;
  }

  .ycb-action {
    width: 100%;
  }

  .ycb-action .btn-youtube {
    width: 100%;
    justify-content: center;
  }

  /* Footer Mobile */
  .footer {
    padding: 60px 0 30px 0;
  }

  .footer-top {
    flex-direction: column;
    gap: 28px;
    padding-bottom: 28px;
  }

  .footer-links-group {
    flex-direction: column;
    gap: 24px;
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Modal Popup Anggota Mobile */
  .modal-card {
    padding: 24px 18px;
    border-radius: var(--radius-md);
    max-height: 85vh;
  }

  .modal-avatar {
    width: 68px;
    height: 68px;
    font-size: 1.6rem;
  }

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

  .modal-subtitle {
    font-size: 0.88rem;
  }

  .modal-info-grid {
    gap: 8px;
  }

  .info-pill {
    padding: 8px 12px;
  }

  .modal-quote-wrap, .modal-funfact {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  /* Lightbox Mobile */
  .lightbox-visual {
    height: clamp(200px, 42vh, 320px);
  }

  .lightbox-details {
    padding: 20px 16px;
  }

  .lightbox-title {
    font-size: 1.25rem;
  }

  .lightbox-nav {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }

  .lightbox-close {
    top: -40px;
    right: 4px;
    font-size: 2rem;
  }

  /* Halaman Galeri Lengkap (galeri.html) Mobile */
  .galeri-page-hero {
    padding: 105px 16px 40px 16px;
  }

  .page-galeri .filter-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 8px 4px 14px 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .page-galeri .filter-pills::-webkit-scrollbar {
    display: none;
  }

  .page-galeri .filter-pill {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 7px 16px;
    font-size: 0.82rem;
  }

  .galeri-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .galeri-card {
    height: 230px;
  }

  /* Sembunyikan Kursor Custom pada Perangkat Sentuh / HP */
  .ocean-cursor-dot,
  .ocean-cursor-ring {
    display: none !important;
  }
}


/* SMARTPHONE KECIL (<= 420px) */
@media (max-width: 420px) {
  .stats-row {
    grid-template-columns: 1fr;
  }

  .modal-info-grid {
    grid-template-columns: 1fr;
  }

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

  .ocean-sound-btn .sound-text {
    display: none;
  }

  .ocean-sound-btn {
    padding: 7px 10px;
  }
}

