body {
  background: linear-gradient(
    180deg,
    #020617 0%,
    #0f172a 50%,
    #020617 100%
  );
  color: #EAEAEA;
}

/* =========================
   HERO (DARK OVERLAY)
========================= */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

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

.hero h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
}

.hero p {
  margin: 15px 0;
  color: #ccc;
}

/* =========================
   GRID SYSTEM
========================= */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* =========================
   CARD PREMIUM (GLOW)
========================= */
.package, .post-item, .feature {
  background: linear-gradient(145deg, #111, #0b0b0b);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
}

.package:hover, 
.post-item:hover {
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 25px 60px rgba(212,175,55,0.25);
}

/* =========================
   IMAGE (ZOOM EFFECT)
========================= */
.package img,
.post-item img {
  width: 100%;
  border-radius: 12px;
  transition: 0.4s;
}

.package:hover img,
.post-item:hover img {
  transform: scale(1.05);
}

/* =========================
   TITLE GOLD PREMIUM
========================= */
h2 {
  color: #D4AF37;
  margin-bottom: 25px;
  font-weight: 600;
}

/* =========================
   BUTTON WA (HIGH CONVERSION)
========================= */
.btn-wa {
  display: inline-block;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  padding: 14px 22px;
  border-radius: 50px;
  color: #fff;
  margin-top: 12px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 8px 25px rgba(37,211,102,0.4);
}

.btn-wa:hover {
  transform: scale(1.07);
  box-shadow: 0 12px 35px rgba(37,211,102,0.6);
}

/* =========================
   SECTION SPACING
========================= */
section {
  padding: 100px 0;
}

/* =========================
   CTA SECTION
========================= */
.cta {
  text-align: center;
  background: linear-gradient(to top, #000, #111);
}

.cta h2 {
  font-size: 36px;
}

/* =========================
   FLOATING WA (PREMIUM)
========================= */
.wa-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: #fff;
  padding: 14px 18px;
  border-radius: 50px;
  font-size: 14px;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(37,211,102,0.5);
  transition: 0.3s;
}

.wa-float:hover {
  transform: scale(1.1);
}

/* =========================
   IMAGE GALLERY
========================= */
.gallery img {
  width: 100%;
  border-radius: 14px;
  height: 220px;
  object-fit: cover;
  transition: 0.4s;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media(max-width:768px){

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 80vh;
  }

  .hero h1 {
    font-size: 30px;
  }

  section {
    padding: 60px 0;
  }
}

/* NAV WRAPPER */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

/* MENU UL */
.menu ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

/* LINK */
.menu ul li a {
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

/* HOVER */
.menu ul li a:hover {
  color: #D4AF37;
}
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-content {
  max-width: 600px;
}

/* TEXT */
.hero h1 {
  font-size: 56px;
  font-weight: 700;
}

.hero p {
  font-size: 18px;
  margin-top: 15px;
}

.hero::after {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.2)
  );
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

section {
  padding: 100px 0;
}

/* CONTENT TEXT */
.content {
  max-width: 800px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
  color: #ddd;
}

/* PARAGRAF */
.content p {
  margin-bottom: 18px;
}

/* HEADING */
.content h2, 
.content h3 {
  color: #fff;
  margin-top: 30px;
}

.paket-detail {
  padding-top: 120px;
}

.paket-detail .content {
  background: rgba(255,255,255,0.03);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}

.paket-detail img {
  width: 100%;
  max-width: 700px;
  display: block;
  margin: 20px auto;
  border-radius: 16px;
}

.paket-detail h1 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 36px;
}

@media(max-width:768px){
  .content {
    font-size: 15px;
    padding: 20px;
  }

  .paket-detail h1 {
    font-size: 24px;
  }
}
/* TEXT GLOBAL */
body {
  color: #EAEAEA; /* lebih terang */
}

/* PARAGRAF */
.content {
  color: #D1D5DB; /* abu terang (nyaman dibaca) */
}

/* HEADING */
h1, h2, h3 {
  color: #FFFFFF;
}

/* LINK */
a {
  color: #D4AF37;
}
/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE */
@media(max-width:768px){

  .hamburger {
    display: block;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100%;
    background: #000;
    padding: 30px;
    transition: 0.3s;
  }

  .menu.active {
    right: 0;
  }

  .menu ul {
    flex-direction: column;
    gap: 20px;
  }
}


.menu ul li a {
  position: relative;
}

.menu ul li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #D4AF37;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.menu ul li a:hover::after {
  width: 100%;
}

section {
  padding: 100px 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

body {
  background: url('/wp-content/themes/namatema/assets/img/bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
}

/* overlay biar teks kebaca */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: -1;
}

/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo a {
  color: #D4AF37;
  font-weight: bold;
  font-size: 20px;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  display: block;
}

/* MOBILE */
@media(max-width:768px){

  .hamburger {
    display: flex;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100%;
    background: #0f172a;
    padding: 80px 25px;
    transition: 0.3s;
    z-index: 999;
  }

  .menu.active {
    right: 0;
  }

  .menu ul {
    flex-direction: column;
    gap: 25px;
  }

  .menu ul li a {
    font-size: 18px;
  }
}

/* =========================
   GALLERY PAGE
========================= */
.gallery-page {
  padding-top: 120px;
  text-align: center;
}

.gallery-page h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.subtitle {
  color: #aaa;
  margin-bottom: 40px;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ITEM */
.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}

/* IMAGE */
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.4s;
}

/* HOVER EFFECT */
.gallery-item:hover img {
  transform: scale(1.1);
}

/* DARK OVERLAY */
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  opacity: 0;
  transition: 0.3s;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* MOBILE */
@media(max-width:768px){
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* GALLERY HOME */
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  transition: 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* POST ITEM */
.post-item h3 {
  margin: 10px 0;
  font-size: 18px;
}

.post-item a {
  font-size: 14px;
  color: #D4AF37;
}

/* IMAGE */
.post-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.blog-page {
  padding-top: 120px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.3)
  );
}

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

/* =========================
   FOOTER PREMIUM
========================= */
.footer {
  background: linear-gradient(to top, #020617, #0f172a);
  padding: 80px 0 30px;
  color: #ddd;
  margin-top: 80px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* COLUMN */
.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
}

/* LINK */
.footer-col a {
  color: #D4AF37;
  text-decoration: none;
}

/* BUTTON CALL */
.btn-call {
  display: inline-block;
  background: #1e293b;
  padding: 12px 20px;
  border-radius: 50px;
  color: #fff;
  transition: 0.3s;
}

.btn-call:hover {
  background: #334155;
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  font-size: 14px;
  color: #aaa;
}

/* MOBILE */
@media(max-width:768px){
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* =========================
   BOTTOM MENU PREMIUM
========================= */
.bottom-menu {
  display: none;
}

/* MOBILE */
@media(max-width:1024px){

  .bottom-menu {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: rgba(15,23,42,0.95);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    z-index: 999;
    border-top: 1px solid rgba(255,255,255,0.05);
  }

  /* ITEM NORMAL */
  .bm-item {
    text-align: center;
    color: #ccc;
    font-size: 12px;
    text-decoration: none;
  }

  .bm-item span {
    display: block;
    font-size: 18px;
  }

  /* WA CENTER (MENONJOL) */
  .wa-center {
    position: relative;
    transform: translateY(-20px);
    text-align: center;
  }

  .wa-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37,211,102,0.6);
    margin: auto;
  }

  .wa-center small {
    display: block;
    margin-top: 5px;
    color: #25D366;
    font-weight: bold;
  }

}

/* =========================
   WA SUPER PREMIUM EFFECT
========================= */

/* WA ICON */
.wa-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(37,211,102,0.6);
  animation: bounce 2s infinite;
}

/* BOUNCE ANIMATION */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* RIPPLE EFFECT */
.wa-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: ripple 2s infinite;
  z-index: -1;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* BADGE ONLINE */
.wa-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 12px;
  height: 12px;
  background: #00ff66;
  border-radius: 50%;
  border: 2px solid #0f172a;
  animation: pulse 1.5s infinite;
}

/* BADGE PULSE */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,255,102,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(0,255,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,255,102,0); }
}


/* NAV */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

/* LOGO */
.logo a {
  color: #D4AF37;
  font-weight: 700;
  font-size: 20px;
}

/* MENU */
.menu-list {
  display: flex;
  gap: 30px;
  list-style: none;
}

.menu-list li a {
  color: #fff;
  text-decoration: none;
  position: relative;
}

/* HOVER UNDERLINE */
.menu-list li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #D4AF37;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.menu-list li a:hover::after {
  width: 100%;
}

/* =========================
   HAMBURGER
========================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}

/* =========================
   MOBILE MENU
========================= */
@media(max-width:768px){

  .hamburger {
    display: flex;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100%;
    background: #020617;
    padding: 80px 25px;
    transition: 0.3s;
    z-index: 999;
  }

  .menu.active {
    right: 0;
  }

  .menu-list {
    flex-direction: column;
    gap: 20px;
  }

}

/* HEADER DEFAULT */

/* SAAT SCROLL */
.header.scrolled {
  background: rgba(2,6,23,0.95);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}


.hamburger {
  position: relative;
  z-index: 10000;
  cursor: pointer;
}

.hero::after {
  pointer-events: none;
}

/* HEADER STICKY */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: rgba(2,6,23,0.9);
  backdrop-filter: blur(10px);
}
/* =========================
   SINGLE POST PREMIUM
========================= */
.single-post {
  padding: 100px 0;
}

/* WRAPPER */
.post-wrapper {
  max-width: 800px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* TITLE */
.post-wrapper h1 {
  color: #111;
  margin-bottom: 20px;
}

/* IMAGE */
.post-thumb {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* CONTENT */
.post-content {
  color: #333;
  line-height: 1.8;
  font-size: 16px;
}

/* PARAGRAPH */
.post-content p {
  margin-bottom: 15px;
}

/* MOBILE */
@media(max-width:768px){
  .post-wrapper {
    padding: 20px;
  }
}

/* =========================
   PAGE PREMIUM (GLOBAL)
========================= */
.page-section {
  padding: 100px 0;
}

/* WRAPPER */
.page-wrapper {
  max-width: 800px;
  margin: auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* TITLE */
.page-wrapper h1 {
  color: #111;
  margin-bottom: 20px;
}

/* CONTENT */
.page-content {
  color: #333;
  line-height: 1.8;
  font-size: 16px;
}

/* PARAGRAPH */
.page-content p {
  margin-bottom: 15px;
}

/* LINK */
.page-content a {
  color: #D4AF37;
}

/* MOBILE */
@media(max-width:768px){
  .page-wrapper {
    padding: 20px;
  }
}

/* =========================
   FEATURES PREMIUM
========================= */
.features {
  padding: 80px 0;
  text-align: center;
}

/* TITLE */
.section-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.section-sub {
  color: #aaa;
  margin-bottom: 40px;
}

/* CARD */
.feature {
  background: linear-gradient(145deg, #0f172a, #020617);
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* ICON */
.feature .icon {
  font-size: 32px;
  margin-bottom: 15px;
}

/* TEXT */
.feature h3 {
  margin-bottom: 10px;
  color: #fff;
}

.feature p {
  color: #ccc;
  font-size: 14px;
}

/* HOVER */
.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(212,175,55,0.2);
}

/* HIGHLIGHT */
.feature.highlight {
  border: 1px solid #D4AF37;
  transform: scale(1.05);
}

/* =========================
   MENU FULLSCREEN PREMIUM
========================= */
@media(max-width:768px){

  .menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(2,6,23,0.98);
    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateX(100%);
    transition: 0.4s ease;
    z-index: 9999;
  }

  .menu.active {
    transform: translateX(0);
  }

  .menu-list {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .menu-list a {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    transition: 0.3s;
  }

  .menu-list a:hover {
    color: #D4AF37;
    transform: scale(1.05);
  }

}

/* =========================
   WA DESKTOP PREMIUM
========================= */
.wa-desktop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #25D366, #1ebe5d);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(37,211,102,0.4);
  z-index: 9999;
  transition: 0.3s;
}

/* HOVER EFFECT */
.wa-desktop:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 50px rgba(37,211,102,0.6);
}

/* ICON */
.wa-desktop svg {
  flex-shrink: 0;
}

/* DEFAULT: HIDE DULU */
.wa-desktop {
  display: none;
}

/* HANYA TAMPIL DI DESKTOP */
@media(min-width:1024px){
  .wa-desktop {
    display: flex;
  }
}

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

.wa-desktop {
  animation: waPulse 2s infinite;
}

/* =========================
   LINE BUTTON PREMIUM
========================= */
.btn-line {
  display: flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #06C755, #04a94b);
  color: #fff;
  padding: 10px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

/* HOVER */
.btn-line:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(6,199,85,0.5);
}

.post-excerpt {
  font-size: 14px;
  color: #ccc;
  margin: 10px 0;
  line-height: 1.6;
}

.post-item:hover .post-excerpt {
  color: #fff;
}