﻿﻿:root {
  --color-gold: #eeaa6d;
  --color-gold-light: #dbe1aa;
  --color-dark: #171717;
  --color-dark-overlay: rgba(0, 0, 0, 0.95);
  --font-serif: 'Aleo', serif;
  /* Pastikan font dimuat di layout utama/global */
  --font-sans: 'Cabin', sans-serif;
}

.page {
  width: 100%;
  max-width: 100%;
  margin: 0;
}

/* Hide Default Header */
header,
.header,
nav,
.nav {
  display: none !important;
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  left: 50%;
  margin-left: -50vw;

  /* PERBAIKAN PATH: Arahkan ke folder img di dalam shared */
  background-color: #000;
  background-image: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('/cdn/img/TOURS.webp');

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: white;
}

.overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  /* Overlay warna dipindah ke background-image agar lebih stabil */
  backdrop-filter: blur(2px);
  /* Efek modern */
  z-index: 1;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background: linear-gradient(to bottom, transparent 0%, rgba(23, 23, 23, 0.8) 60%, var(--color-dark) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
  z-index: 5;
  pointer-events: none;
}

/* --- Hero Branding (Logo + Name) --- */
.hero-branding {
  position: absolute;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 20;
}

.brand-logo {
  width: 120px;
  height: auto;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 0 15px rgba(238, 170, 109, 0.4));
}

.brand-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  font-weight: 700;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 2rem;
  max-width: 1100px;
  margin-top: 8rem;
}

/* Teks Animasi "Shine" (Updated) */
.shine {
  font-family: 'Faster One', cursive, sans-serif;
  /* Fallback font */
  font-size: 2.6rem;
  font-weight: 300;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  overflow: visible;
  padding-inline-end: .25em;
  color: #ffffff;
  text-shadow: 0 0 26px rgb(16, 238, 0);

  /* bebas ganti warna & ukuran; perbaiki nilai color yang salah */
  color: rgb(0, 255, 42);
  font-weight: 100;
}

.shine::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;

  /* arah kilap diset agar terasa bergerak kiri ➜ kanan
       (tanpa mengubah persen stop yang sudah kamu atur) */
  background: linear-gradient(-70deg,
      rgba(255, 255, 255, 0) 6%,
      rgba(255, 255, 255, 0) 0.5%,
      rgba(255, 253, 253, 0.9) 26%,
      rgba(255, 255, 255, 0) 26%,
      rgba(255, 255, 255, 0) 100%);
  background-size: 222% 200%;
  background-size: 668% 200%;
  background-position: 26% 0;

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* klip ke bentuk teks */
  animation: shine-sweep 4s linear infinite;
  pointer-events: none;
  will-change: background-position;
}

@keyframes shine-sweep {
  to {
    background-position: 220% 0;
  }
}

.subtitle {
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 3rem;
}

/* --- Pillars Grid (Buttons) --- */
.pillars-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.pillar-card {
  position: relative;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-gold-light);
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05), 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  flex: 1 1 200px;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2), 0 15px 40px rgba(238, 170, 109, 0.3);
  color: #fff;
  border-top-color: rgba(255, 255, 255, 0.8);
  border-left-color: rgba(255, 255, 255, 0.8);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
}

/* --- FSD / Tech Services CTA --- */
.fsd-container {
  margin-top: 4rem;
  animation: fadeInUp 1s ease 1s both;
}

.fsd-label {
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.btn-fsd {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100px;
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05), 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.btn-fsd:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
  color: #fff;
  border-top-color: rgba(255, 255, 255, 0.8);
  border-left-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.2), 0 15px 40px rgba(238, 170, 109, 0.3);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Custom font styles per button based on old WP */
.btn-tourism {
  font-family: 'Allerta Stencil', sans-serif;
}

.btn-mindful {
  font-family: 'Allison', cursive;
  font-size: 2.5rem;
  line-height: 1;
  text-transform: capitalize;
}

.btn-growth {
  font-family: 'Akronim', cursive;
}

/* --- About Section --- */
.about-section {
  position: relative;
  padding: 5rem 1rem;
  background: radial-gradient(circle at 20% 50%, #222, var(--color-dark));
  color: white;
  text-align: center;
  overflow: hidden;
}

.about-section::before,
.stats-section::before,
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Ganti URL ini dengan file pattern batik/oriental transparan (PNG) Anda */
  background-image: url('/cdn/img/oriental-pattern.avif');
  background-size: 500px;
  background-repeat: repeat;
  opacity: 0.15;
  /* Sedikit dinaikkan karena pattern ini halus */
  /* Filter untuk mengubah Putih -> Emas Gelap */
  filter: sepia(100%) saturate(500%) hue-rotate(0deg) brightness(0.7) contrast(1.2);
  pointer-events: none;
  z-index: 1;
}

/* Tambahan: Masking khusus untuk pattern About agar tidak terpotong kasar di atas */
.about-section::before {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
}

.about-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 350px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 0%, var(--color-dark) 50%, transparent 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 10px 20px rgba(255, 255, 255, 0.02);
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  /* Memastikan konten teks tetap di atas overlay batik */
}

.profile-header h2 {
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.divider {
  height: 1px;
  width: 80px;
  background-color: var(--color-gold);
  margin: 0 auto 2.5rem;
  opacity: 0.8;
  box-shadow: 0 0 10px var(--color-gold);
}

.lead {
  font-size: 1.25rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--color-gold);
}

.profile-bio {
  line-height: 2;
  font-size: 1.15rem;
  color: #e0e0e0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  letter-spacing: 0.5px;
  margin: 2.5rem auto 0;
  text-align: center;
  max-width: 750px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
}

/* --- Stats Section --- */
.stats-section {
  position: relative;
  overflow: hidden;
  padding: 6rem 1rem;
  background: radial-gradient(circle at 80% 50%, #222, var(--color-dark));
  border-top: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem 1rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.06);
}

.stat-value {
  display: block;
  font-size: 3rem;
  font-weight: bold;
  color: var(--color-gold);
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
}

/* --- Contact Section --- */
.contact-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 1rem;
  background-color: var(--color-dark);
  color: white;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.contact-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px;
  background: linear-gradient(to bottom, transparent 0%, rgba(23, 23, 23, 0.8) 60%, var(--color-dark) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 100%);
  z-index: 1;
  pointer-events: none;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
}

.contact-item {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.contact-item:hover {
  color: var(--color-gold);
}

.contact-item.highlight {
  border: 1px solid var(--color-gold);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  color: var(--color-gold);
  background: rgba(238, 170, 109, 0.05);
  backdrop-filter: blur(5px);
}

.contact-item.highlight:hover {
  background: var(--color-gold);
  color: var(--color-dark);
}

/* --- Responsive adjustments --- */
@media (max-width: 768px) {
  .hero-content {
    padding: 1.5rem;
    margin-top: 16rem;
  }

  .shine {
    font-size: 2.5rem;
  }

  .pillars-grid {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .pillar-card {
    width: 100%;
    max-width: 340px;
    flex: none;
  }
}

/* --- Footer Global Override (Fallback) --- */
.site-footer {
  position: relative;
  padding: 2rem 1rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.3) !important;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4) !important;
  color: rgba(255, 255, 255, 0.5) !important;
  font-family: 'Plus Jakarta Sans', sans-serif !important;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* --- FSD Page Specifics --- */

/* Hero Override: Tech-themed background */
.hero-section.fsd-hero {
  background: #000;
  overflow: hidden; /* Mencegah scrollbar jika canvas melebihi container */
}

#matrix-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; /* Di belakang overlay dan konten */
  opacity: 0.8; /* Transparansi agar tidak mengganggu keterbacaan teks */
}

.fsd-intro-glass {
  margin: 2rem auto;
  padding: 1.5rem;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 255, 65, 0.1);
  border-radius: 16px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #ddd;
  box-shadow: 0 0 15px rgba(0, 255, 65, 0.05);
}

.fsd-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn-fsd.ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.2);
  color: #aaa;
  box-shadow: none;
}
.btn-fsd.ghost:hover {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-color: #fff;
}

/* Services Grid */
.fsd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.fsd-card {
  /* Reuse glassmorphism emboss style */
  position: relative;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(0, 255, 65, 0.05), rgba(0, 255, 65, 0.01));
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 255, 65, 0.1);
  border-top: 1px solid rgba(0, 255, 65, 0.3);
  border-left: 1px solid rgba(0, 255, 65, 0.2);
  border-radius: 20px;
  box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.02), 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  text-align: left;
}

.fsd-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(0, 255, 65, 0.02));
  border-top-color: rgba(0, 255, 65, 0.6);
  box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.1), 0 20px 40px rgba(0, 0, 0, 0.4);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.4));
}

.fsd-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  color: #00ff41;
  margin-bottom: 0.5rem;
}

.fsd-card p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.fsd-stack h2 {
  text-align: center;
}

/* Stack Badges */
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.stack-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  border-radius: 16px;
  background: rgba(0, 255, 65, 0.03);
  border: 1px solid rgba(0, 255, 65, 0.1);
  color: #ddd;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.stack-badge:hover {
  background: rgba(0, 255, 65, 0.1);
  border-color: #00ff41;
  color: #00ff41;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 255, 65, 0.15);
}

@media (max-width: 768px) {
  .stack-grid {
    grid-template-columns: 1fr;
  }
}

/* FSD Button Override */
.btn-fsd {
  color: #00ff41;
  border: 1px solid rgba(0, 255, 65, 0.2);
  border-top: 1px solid rgba(0, 255, 65, 0.5);
  border-left: 1px solid rgba(0, 255, 65, 0.4);
  box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.05), 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.btn-fsd:hover {
  background: linear-gradient(135deg, rgba(0, 255, 65, 0.1), rgba(0, 255, 65, 0.02));
  color: #fff;
  border-top-color: rgba(0, 255, 65, 0.8);
  border-left-color: rgba(0, 255, 65, 0.8);
  box-shadow: inset 0 0 20px rgba(0, 255, 65, 0.2), 0 15px 40px rgba(0, 255, 65, 0.3);
}

/* FSD Contact Highlight Override */
.fsd-contact .contact-item.highlight {
  border-color: #00ff41;
  color: #00ff41;
  background: rgba(0, 255, 65, 0.05);
}

.fsd-contact .contact-item.highlight:hover {
  background: #00ff41;
  color: #000;
  box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

/* --- 404 Not Found Section --- */
.not-found-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: radial-gradient(circle at 50% 50%, #222, var(--color-dark));
  overflow: hidden;
}

.not-found-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/cdn/img/oriental-pattern.avif');
  background-size: 500px;
  background-repeat: repeat;
  opacity: 0.05;
  filter: sepia(100%) saturate(0%) brightness(0.8);
  pointer-events: none;
  z-index: 0;
}

.not-found-card {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  max-width: 500px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.not-found-card h1.shine {
  font-size: 6rem;
  margin: 0 0 1rem;
  line-height: 1;
}

.not-found-card h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 600;
}

.not-found-card p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  color: #ccc;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}