/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  color: #222;
}

/* ===== CONTAINER ===== */
.container,
.content {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  z-index: 999;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

/* ===== LOGO AREA (FINAL FIX) ===== */
.logo-area {
  display: flex;
  align-items: center;
  gap: 4px; /* lebih rapat */
}

.logo-area img {
  height: 64px; /* logo diperbesar */
  width: auto;
}

.logo-area span {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2; /* teks lebih rapat vertikal */
}
/* ===== ISOLASI LOGO DARI MODE GELAP & FILTER ===== */
.logo-area {
  position: relative;
  z-index: 10;
}

.logo-area img {
  display: block;
  filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
}


/* MENU */
nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}

nav a.active,
nav a:hover {
  color: #0b5ed7;
}

nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #0b5ed7;
}


/* Lindungi logo header dari filter dark mode */
.logo-area img {
  filter: none !important;
}


/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;

  background-color: #0b1220; /* fallback instan */
  background-image: url('../img/hero.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  
  will-change: opacity;
  contain: layout paint;
}


.hero-tentang {
  background-image: url('../img/hero-tentang.jpg');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 40px;
  background: rgba(0,0,0,.35);
  border-radius: 12px;
}
.hero {
  background-color: #0b1220;
  background-image: url('../img/hero.jpg');
}
.hero {
  opacity: 0;
  animation: heroFade 0.4s ease forwards;
}

@keyframes heroFade {
  to {
    opacity: 1;
  }
}


/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: #c59d5f;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
}

.wa-btn {
  background: #25D366;
}

/* ===== SECTION ===== */
.section {
  padding: 60px 20px;
}

.section.light {
  background: #f7f7f7;
}

.list {
  margin-top: 15px;
  padding-left: 20px;
}

.list li {
  margin-bottom: 10px;
}

/* ===== CTA ===== */
.cta {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

/* ===== SEO CONTENT ===== */
.seo-content {
  padding: 60px 20px;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}

.footer strong {
  color: #fff;
}
/* =================================================
   HALAMAN TENTANG (TERISOLASI - AMAN UNTUK BERANDA)
   ================================================= */

body.tentang-page .tentang-hero {
  position: relative;
  height: 100vh;
  background: url('../img/hero-tentang.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

body.tentang-page .tentang-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

body.tentang-page .tentang-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 30px;
  text-align: center;
  color: #fff;
  background: rgba(0,0,0,0.45);
  border-radius: 16px;
}

body.tentang-page .tentang-hero-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0,0,0,.8);
}

body.tentang-page .tentang-hero-content p {
  font-size: 18px;
  line-height: 1.9;
  text-shadow: 0 2px 8px rgba(0,0,0,.7);
}

/* ===== SEO CONTENT KHUSUS TENTANG ===== */

body.tentang-page .seo-content {
  background: #f8fafc;
  padding: 90px 20px;
}

body.tentang-page .seo-content .content {
  max-width: 1000px;
  margin: auto;
}

body.tentang-page .seo-content h2 {
  margin-top: 50px;
  margin-bottom: 18px;
  color: #111;
}

body.tentang-page .seo-content p,
body.tentang-page .seo-content ul {
  color: #444;
  line-height: 1.9;
}

body.tentang-page .seo-content ul {
  margin-left: 20px;
}

/* ===== RESPONSIF ===== */
@media (max-width: 768px) {
  body.tentang-page .tentang-hero-content h1 {
    font-size: 30px;
  }

  body.tentang-page .tentang-hero-content p {
    font-size: 15px;
  }
}
/* =========================================
   PENYEMPURNAAN VISUAL SEO CONTENT (TENTANG)
   ========================================= */

body.tentang-page .seo-content {
  background: #f3f6f9; /* lembut & profesional */
  padding: 100px 20px;
}

body.tentang-page .seo-content .content {
  background: #ffffff;
  max-width: 960px;
  margin: auto;
  padding: 60px 60px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Judul */
body.tentang-page .seo-content h2 {
  font-size: 28px;
  margin-top: 50px;
  margin-bottom: 20px;
  color: #111;
}

/* Paragraf */
body.tentang-page .seo-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 16px;
}

/* List */
body.tentang-page .seo-content ul {
  margin-left: 20px;
  margin-top: 15px;
}

body.tentang-page .seo-content ul li {
  margin-bottom: 10px;
  color: #444;
}

/* RESPONSIF */
@media (max-width: 768px) {
  body.tentang-page .seo-content .content {
    padding: 40px 25px;
  }

  body.tentang-page .seo-content h2 {
    font-size: 22px;
  }
}
/* ==============================
   FIX TOMBOL WHATSAPP (GLOBAL)
   ============================== */
.wa-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  background: #25D366;
  color: #fff !important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s ease;
}

.wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}
/* ==============================
   HERO TENTANG - PERAPIAN
   ============================== */
.tentang-hero-content {
  background: rgba(0, 0, 0, 0.45);
  padding: 40px;
  border-radius: 14px;
}

@media (max-width: 768px) {
  .tentang-hero-content {
    padding: 28px 20px;
  }
}
/* ==============================
   OPTIMASI TABLET
   ============================== */
@media (max-width: 1024px) and (min-width: 769px) {
  .hero-content,
  .tentang-hero-content {
    max-width: 85%;
  }

  .tentang-hero-content h1 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .logo-area img {
    height: 46px;
  }

  .logo-area span {
    font-size: 16px;
  }
}
/* ===== GALERI DOKUMENTASI BERANDA ===== */
.hero-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
}

.hero-gallery img {
  width: 100%;
  height: 140px; /* ðŸ”¥ diperbesar */
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-gallery img:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-gallery img {
    height: 130px; /* HP tetap besar */
  }
}
/* ===== POPUP IMAGE ===== */
.image-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.image-popup img {
  max-width: 90%;
  max-height: 85%;
  border-radius: 14px;
}

.image-popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
/* ===== MODAL IMAGE ===== */
.image-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
  cursor: pointer;
}

.image-modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}
/* =================================================
   HALAMAN PAKET – FINAL
   ================================================= */

/* ---------- BACKGROUND HALAMAN ---------- */
body.paket-page {
  background: url('../img/bg-paket.jpg') center / cover no-repeat fixed;
  color: #e5e7eb;
  position: relative;
}

/* Overlay gelap */
body.paket-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 15, 0.75);
  z-index: -1;
}

/* ---------- HEADER JUDUL PAKET ---------- */
.paket-header {
  padding: 50px 0 20px;
}

.paket-header-inner {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Judul di tengah (1 baris desktop) */
.paket-header-inner h1 {
  font-size: 32px;
  margin: 0;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}

/* Logo pojok kanan */
.paket-logo {
  position: absolute;
  right: 0;
}

.paket-logo img {
  height: 90px;
  width: auto;
  opacity: 0.95;
}
/* =========================================
   FIX LAYOUT HEADER PAKET (TEKS TURUN)
   ========================================= */

.paket-header-inner {
  align-items: center;
}

.paket-header-text {
  max-width: 720px;
  text-align: center;
}

.paket-intro {
  margin-top: 14px;
  color: #d1d5db;
  font-size: 16px;
  line-height: 1.8;
}

/* RESPONSIVE HP */
@media (max-width: 768px) {
  .paket-header-inner {
    flex-direction: column;
    gap: 20px;
  }

  .paket-logo {
    position: static;
    margin-top: 10px;
  }

  .paket-header-text {
    text-align: center;
  }
}
/* =========================================
   POSISI LOGO HEADER PAKET (HALUS & RAPI)
   ========================================= */

.paket-logo {
  margin-top: 18px; /* turunkan dikit */
}

@media (max-width: 768px) {
  .paket-logo {
    margin-top: 0;
  }
}

/* ---------- AREA KONTEN PAKET ---------- */
body.paket-page .section.light {
  background: transparent;
  padding-top: 10px; /* rapat dari judul */
}

body.paket-page .content {
  background: rgba(20, 23, 28, 0.85);
  padding: 35px;
  border-radius: 20px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ---------- KARTU PAKET ---------- */
.paket-card {
  background: #1f2329;
  color: #e5e7eb;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}

.paket-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 15px;
}

.paket-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #ffffff;
}

.paket-card ul {
  margin-bottom: 14px;
  padding-left: 18px;
}

.paket-card ul li {
  margin-bottom: 6px;
  font-size: 15px;
}

.paket-card strong {
  color: #f1f5f9;
}

/* Tombol WhatsApp */
.paket-card .wa-btn {
  width: 100%;
  margin-top: 10px;
  text-align: center;
}

/* ---------- RESPONSIVE ---------- */

/* Tablet */
@media (max-width: 1024px) {
  body.paket-page .content {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* HP */
@media (max-width: 768px) {
  .paket-header-inner h1 {
    font-size: 26px;
    white-space: normal;
  }

  .paket-logo img {
    height: 75px;
  }

  body.paket-page .content {
    grid-template-columns: 1fr;
    padding: 25px;
  }
}

/* =========================================
   KOTAK INFO / CUSTOM TRIP (LEBAR & BEDA)
   ========================================= */

/* Membuat kotak melebar 2 kolom */
.paket-span {
  grid-column: span 2;
}

/* Tampilan beda dari paket biasa */
.paket-info {
  background: linear-gradient(135deg, #111827, #1f2937);
  border: 1px dashed rgba(255, 215, 0, 0.45);
  padding: 30px;
}

/* Judul info */
.paket-info h3 {
  font-size: 24px;
  color: #ffd700;
  margin-bottom: 14px;
}

/* Paragraf */
.paket-info p {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 12px;
}

/* Tombol WA lebih menonjol */
.paket-info .wa-btn {
  margin-top: 18px;
  background: #16a34a;
  font-size: 15px;
}
@media (max-width: 768px) {
  .paket-span {
    grid-column: span 1;
  }
}

   /* =================================================
   FIX FINAL BERANDA & TENTANG (TIDAK MERUSAK HERO)
   ================================================= */

/* ======================
   BERANDA (SETELAH HERO)
   ====================== */

/* hanya section setelah hero */
.hero + .section,
.hero + .section.light {
  background: #1f2329; /* abu gelap soft */
  color: #e5e7eb;
}

.hero + .section p,
.hero + .section li {
  color: #d1d5db;
}

/* ======================
   HALAMAN TENTANG
   ====================== */

body.tentang-page .seo-content {
  background: #1f2329; /* abu gelap halaman */
}

/* card isi dibuat lebih terang */
body.tentang-page .seo-content .content {
  background: #2b303b; /* kontras lembut */
  color: #e5e7eb;
}

/* teks dalam card */
body.tentang-page .seo-content p,
body.tentang-page .seo-content li {
  color: #d1d5db;
}

body.tentang-page .seo-content h2 {
  color: #ffffff;
}
body.home-page .section,
body.home-page .section.light {
  background: #1f2329;
  color: #e5e7eb;
}

body.home-page .section h2 {
  color: #ffffff;
}

body.home-page .section li {
  color: #d1d5db;
}
/* =========================================
   KONTRAS TEKS - HALAMAN TENTANG
   ========================================= */

/* Judul section */
body.tentang-page h2 {
  color: #ffffff; /* putih terang */
}

/* List keunggulan */
body.tentang-page ul li {
  color: #e5e7eb; /* abu terang */
}
body.tentang-page h2 {
  border-left: 4px solid #c59d5f;
  padding-left: 14px;
}
/* =========================================
   FIX WARNA LIST - HALAMAN TENTANG (PASTI KENA)
   ========================================= */

/* target spesifik ke konten tentang */
body.tentang-page .seo-content ul li {
  color: #e5e7eb !important; /* abu terang kontras */
}
/* ===== MODAL PAKET ===== */
.paket-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.paket-modal-content {
  background: #1f2329;
  color: #e5e7eb;

  width: 70%;
  max-width: 800px;
  max-height: 75vh;

  padding: 24px 28px;
  border-radius: 18px;
  position: relative;

  display: flex;
  flex-direction: column;
}


.paket-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  cursor: pointer;
  color: #fff;
}

.paket-kategori {
  display: flex;
  gap: 15px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.paket-kategori button {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: #c59d5f;
  color: #111;
}

.paket-list {
  margin-top: 20px;
  overflow-y: auto;
  padding-right: 10px;
}

  
  /* =========================================
   FLOATING SEO CONTENT - HALAMAN TENTANG
   ========================================= */

/* Card konten */
body.tentang-page .seo-content .content {
  background: #2b303b;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}
/* =========================================
   FLOATING SEO CONTENT - HALAMAN TENTANG
   ========================================= */


/* Card konten */
body.tentang-page .seo-content .content {
  background: #2b303b;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}
 
/* ===== ITEM PAKET DALAM MODAL ===== */
.paket-item {
  background: #2b303b;
  padding: 20px;
  border-radius: 14px;
  margin-bottom: 20px;
}

.paket-item h3 {
  color: #ffd700;
  margin-bottom: 10px;
}

.paket-item ul {
  margin: 10px 0 15px;
  padding-left: 18px;
}

.paket-item ul li {
  color: #d1d5db;
  margin-bottom: 6px;
}
.paket-kategori button.active {
  background: #ffd700;
  color: #111;
}
.paket-modal-content {
  animation: fadeUp 0.35s ease;
}
/* ===== HEADER MODAL STICKY ===== */
.paket-modal-header {
  position: sticky;
  top: 0;
  background: #1f2329;
  padding-bottom: 15px;
  z-index: 10;
}

.paket-modal-header h2 {
  margin-bottom: 15px;
}

/* ===== AREA SCROLL PAKET ===== */
.paket-list {
  overflow-y: auto;
  padding-right: 10px;
  margin-top: 10px;
}
/* ===== HEADER MODAL STICKY ===== */
.paket-modal-header {
  position: sticky;
  top: 0;
  background: #1f2329;
  padding-bottom: 15px;
  z-index: 10;
}

.paket-modal-header h2 {
  margin-bottom: 15px;
}

/* ===== AREA SCROLL PAKET ===== */
.paket-list {
  overflow-y: auto;
  padding-right: 10px;
  margin-top: 10px;
}
.paket-item h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.paket-item p strong {
  color: #ffd700;
}

.paket-item ul {
  margin-top: 8px;
  font-size: 14px;
}
.paket-item {
  margin-bottom: 16px;
}
.paket-item .wa-btn {
  margin-top: 12px;
  font-size: 15px;
}
@media (max-width: 768px) {
  .paket-modal {
    align-items: flex-end; /* nempel bawah */
  }

  .paket-modal-content {
    width: 100%;
    max-width: none;
    max-height: 85vh;
    border-radius: 18px 18px 0 0;
    padding: 18px 16px;
  }
}
@media (max-width: 768px) {
  .paket-kategori {
    gap: 10px;
  }

  .paket-kategori button {
    flex: 1;
    padding: 10px 0;
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .paket-item h3 {
    font-size: 18px;
  }

  .paket-item p {
    font-size: 14px;
  }

  .paket-item ul {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .paket-item .wa-btn {
    width: 100%;
    text-align: center;
    font-size: 15px;
    padding: 12px 0;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== BADGE FAVORIT (HIJAU) ===== */
.badge-favorit {
  display: inline-block;
  background: #16a34a;       /* hijau solid, tegas */
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
}
.badge-favorit {
  box-shadow: 0 6px 14px rgba(22, 163, 74, 0.35);
}
@media (max-width: 768px) {
  .badge-favorit {
    font-size: 11px;
    padding: 3px 8px;
  }
}
/* =========================
   GALERI - SMOKY BACKGROUND
   ========================= */
body.galeri-page {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.05), transparent 40%),
    radial-gradient(circle at bottom right, rgba(255,255,255,0.04), transparent 45%),
    linear-gradient(180deg, #0b1220, #020617);
  background-attachment: fixed;
  color: #e5e7eb;
}

/* SEO HIDDEN */
.seo-hidden {
  position: absolute;
  left: -9999px;
}

/* HEADER */
.galeri-header h1 {
  color: #ffffff;
  margin-bottom: 8px;
}

.galeri-header p {
  color: #cbd5e1;
  max-width: 600px;
}

/* GRID GALERI */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.galeri-grid img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.galeri-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
}

/* TABLET */
@media (max-width: 1024px) {
  .galeri-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* HP */
@media (max-width: 768px) {
  .galeri-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .galeri-grid img {
    height: 150px;
  }
}
/* ===== JUDUL GALERI ===== */
.galeri-header h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 0.6px;

  color: #f8fafc; /* hampir putih tapi lebih terang */

  text-shadow:
    0 4px 0 rgba(92, 20, 20, 0.95),   /* maroon solid (keluar!) */
    0 14px 28px rgba(0, 0, 0, 0.75);
}


.galeri-header p {
  margin-top: 12px;
  font-size: 16px;
  color: #e2e8f0;

  text-shadow:
    0 2px 0 rgba(92, 20, 20, 0.7),
    0 6px 12px rgba(0, 0, 0, 0.6);
}
.galeri-header {
  padding-bottom: 20px;
}

.galeri-section {
  padding-top: 20px;
}


@media (max-width: 768px) {
  .galeri-header h1 {
    font-size: 30px;
  }

  .galeri-header p {
    font-size: 14px;
  }
}
.galeri-hero {
  grid-column: span 2;
  height: 260px;
}

@media (max-width: 768px) {
  .galeri-hero {
    grid-column: span 2;
    height: 180px;
  }
}
.galeri-cta {
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.35));
}

.galeri-cta h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
}

.galeri-cta p {
  color: #cbd5e1;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .galeri-cta h3 {
    font-size: 20px;
  }
}
/* =========================
   TESTIMONI - HALAMAN TENTANG
   ========================= */
.testimoni-section h2 {
  color: #ffffff;
  margin-bottom: 8px;
}

.testimoni-subtitle {
  color: #cbd5e1;
  margin-bottom: 30px;
  max-width: 600px;
}

.testimoni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimoni-card {
  background: #2b303b;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 18px 35px rgba(0,0,0,0.35);
}

.testimoni-text {
  color: #e5e7eb;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.testimoni-name {
  display: block;
  font-weight: 700;
  color: #ffffff;
}

.testimoni-city {
  font-size: 13px;
  color: #9ca3af;
}
/* =========================
   RATING BINTANG TESTIMONI
   ========================= */
.testimoni-rating {
  color: #fbbf24; /* emas lembut */
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;

  text-shadow:
    0 2px 6px rgba(0, 0, 0, 0.6);
}
@media (max-width: 768px) {
  .testimoni-rating {
    font-size: 15px;
  }
}

/* TABLET */
@media (max-width: 1024px) {
  .testimoni-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* HP */
@media (max-width: 768px) {
  .testimoni-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================================
   FLOATING SEO CONTENT - HALAMAN TENTANG
   ========================================= */
body.tentang-page .seo-content {
  position: relative;
  margin-top: -200px; /* naik ke hero */
  z-index: 5;
  padding-top: 0;
}

/* Card konten */
body.tentang-page .seo-content .content {
  background: #2b303b;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}
@media (max-width: 768px) {
  body.tentang-page .seo-content {
    margin-top: -100px;
  }

  body.tentang-page .tentang-hero {
    padding-bottom: 90px;
  }
}
/* Divider halus */
.section-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
  margin: 60px 0;
}
body.tentang-page .section h2 {
  position: relative;
  padding-left: 16px;
}

body.tentang-page .section h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 70%;
  background: #c59d5f; /* emas jeep */
  border-radius: 1px;
}
.tentang-cta {
  text-align: center;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(0,0,0,0.35)
  );
}

.tentang-cta h3 {
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 10px;
}

.tentang-cta p {
  color: #cbd5e1;
  margin-bottom: 22px;
}

@media (max-width: 768px) {
  .tentang-cta h3 {
    font-size: 20px;
  }
}
/* =========================
   HALAMAN KONTAK
   ========================= */
body.kontak-page {
  position: relative;
  color: #e5e7eb;

  background-image: url('../img/bg-kontak.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* overlay gelap */
body.kontak-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 14, 0.75); /* gelap & maskulin */
  z-index: -1;
}


/* HERO */
.kontak-hero {
  text-align: center;
  padding: 70px 20px 40px; /* bawah diperkecil */
}


.kontak-hero h1 {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 10px;
}

.kontak-hero p {
  max-width: 600px;
  margin: 0 auto 25px;
  color: #cbd5e1;
}

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

.kontak-card {
  background: rgba(31, 35, 41, 0.75); /* transparan gelap */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  padding: 26px;
  border-radius: 18px;

  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.45);

  border: 1px solid rgba(255, 255, 255, 0.06);
}
.kontak-card:hover {
  transform: translateY(-4px);
  transition: 0.3s ease;
}

.kontak-card h3 {
  color: #ffffff;
  margin-bottom: 8px;
}

/* MAP */
.map-wrapper {
  margin-top: 20px;
  border-radius: 18px;
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 360px;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .kontak-hero h1 {
    font-size: 28px;
  }

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

  .map-wrapper iframe {
    height: 280px;
  }
}
/* =========================
   TOMBOL EMAIL
   ========================= */
.email-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 28px;

  background: linear-gradient(135deg, #374151, #111827);
  color: #ffffff !important;
  text-decoration: none;

  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;

  transition: 0.3s ease;
}

.email-btn:hover {
  background: linear-gradient(135deg, #4b5563, #1f2937);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  body.kontak-page {
    background-attachment: scroll;
  }
}
/* =========================================
   OVERLAP KONTAK CARD KE HERO
   ========================================= */
body.kontak-page .kontak-grid {
  margin-top: -80px; /* NAIK KE ATAS */
  position: relative;
  z-index: 5;
}
/* =========================
   LINK NAVIGASI BAWAH - KONTAK (FINAL)
   ========================= */
.kontak-links {
  text-align: center;
  padding: 20px 30px 20px;
}

.kontak-links p {
  color: #d1d5db;            /* abu terang, kontras */
  font-size: 18px;
  font-weight: 700;          /* LEBIH TEBAL */
  letter-spacing: 0.6px;

  text-shadow:               /* bantu kebaca di bg foto */
    0 3px 8px rgba(0, 0, 0, 0.80);
}

.kontak-links a {
  color: #f1f5f9;            /* hampir putih */
  text-decoration: none;
  font-weight: 700;          /* link lebih tegas */
  margin: 0 6px;

  text-shadow:
    0 3px 7px rgba(0, 0, 0, 0.80);

  transition: color 0.25s ease;
}

.kontak-links a:hover {
  color: #c59d5f;            /* emas brand */
  text-decoration: underline;
}
@supports not (backdrop-filter: blur(6px)) {
  .kontak-card {
    background: rgba(31, 35, 41, 0.9);
  }
}
/* ===== OPTIMASI HERO MOBILE ===== */
@media (max-width: 768px) {
  .hero {
    min-height: 85vh;
  }
}
/* ================================
   ISOLASI TOTAL HEADER (FIX FINAL)
   ================================ */

/* Header selalu mode terang */
.navbar {
  background: #ffffff !important;
  filter: none !important;
  backdrop-filter: none !important;
  opacity: 1 !important;
}

/* Semua isi header kebal mode gelap */
.navbar *,
.navbar *::before,
.navbar *::after {
  filter: none !important;
  backdrop-filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
}

/* Logo benar-benar steril */
.logo-area img {
  display: block;
  filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
}

/* =========================
   SOCIAL ICON HEADER (FIX)
   ========================= */

.social-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 30px; /* geser ke tengah, tidak nempel judul */

}

/* Tombol ikon */
.social-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
}

/* Ukuran SVG */
.social-btn svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

/* ===== TIKTOK ===== */
.social-btn.tiktok {
  background: #000000;
}

/* ===== INSTAGRAM ===== */
.social-btn.instagram {
  background: radial-gradient(
    circle at 30% 30%,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
}

/* Hover halus */
.social-btn:hover {
  transform: translateY(-2px) scale(1.05);
  transition: 0.25s ease;
}
/* ======================================
   SISTEM SECTION BERANDA (CSS ONLY)
   ====================================== */

/* Hanya beranda */
body.home-page .section {
  position: relative;
  padding: 60px 20px;
}

/* Card pembungkus otomatis */
body.home-page .section .content {
  background: #1f2329;
  padding: 42px 48px;
  border-radius: 22px;

  box-shadow:
    0 25px 50px rgba(0,0,0,0.45);

  color: #d1d5db;
}

/* Judul di dalam section */
body.home-page .section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #ffffff;
  margin-bottom: 18px;
}

/* Garis pemisah otomatis */
body.home-page .section h2::after {
  content: "";
  display: block;
  width: 140px;
  height: 3px;
  margin: 18px auto 36px;

  background: linear-gradient(
  to right,
  #1f2329,
  #c59d5f,
  #1f2329
);

  border-radius: 2px;
}

/* Paragraf */
body.home-page .section p {
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
}

/* Jarak antar section */
body.home-page .section + .section {
  margin-top: 2px;
}

/* MOBILE */
@media (max-width: 768px) {
  body.home-page .section .content {
    padding: 28px 22px;
    border-radius: 18px;
  }

  body.home-page .section h2 {
    font-size: 26px;
  }

  body.home-page .section p {
    font-size: 15px;
  }
}
/* =========================================
   SEO CONTENT – NYAMAN DI MATA (FINAL)
   ========================================= */

/* Background section SEO */
.seo-content {
  background: #1f2329; /* abu gelap lembut */
  padding: 80px 20px;
}

/* Card isi SEO */
.seo-content .content {
  background: #2b303b; /* sedikit lebih terang */
  border-radius: 20px;
  padding: 50px 45px;
  max-width: 1000px;
  margin: auto;
  box-shadow: 0 25px 50px rgba(0,0,0,0.4);
}

/* Judul SEO */
.seo-content h2 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 20px;
  border-left: 4px solid #c59d5f;
  padding-left: 14px;
}

/* Paragraf SEO */
.seo-content p {
  color: #d1d5db; /* abu terang, nggak nyilauin */
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 16px;
}

/* Link di SEO content */
.seo-content a {
  color: #c59d5f;
  font-weight: 600;
  text-decoration: none;
}

.seo-content a:hover {
  text-decoration: underline;
}

/* RESPONSIVE HP */
@media (max-width: 768px) {
  .seo-content {
    padding: 60px 15px;
  }

  .seo-content .content {
    padding: 35px 25px;
  }

  .seo-content h2 {
    font-size: 22px;
  }

  .seo-content p {
    font-size: 15px;
  }
}
/* =========================================
   FIX TEKS HILANG PADA TOMBOL (FINAL)
   ========================================= */

.btn {
  color: #ffffff !important;
  font-size: 16px;
  line-height: 1.4;
}
/* =========================
   TESTIMONI MINI - BERANDA
   ========================= */

.testimoni-mini {
  background: linear-gradient(
    to bottom,
    rgba(17,17,17,0.95),
    rgba(17,17,17,1)
  );
  padding: 45px 20px 65px;
  margin-top: -160px; /* floating lebih kerasa */
  position: relative;
  z-index: 5;

  /* efek mengambang */
  box-shadow: 0 -20px 40px rgba(0,0,0,0.45);
  border-radius: 24px 24px 0 0;
}



.testimoni-mini .content {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.testimoni-mini h2 {
  color: #c59d5f;
  font-size: 26px;
  margin-bottom: 40px;
}

.testimoni-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.testimoni-item {
  background: #1a1a1a;
  border: 1px solid rgba(197, 157, 95, 0.3);
  border-radius: 12px;
  padding: 25px 20px;
}

.testimoni-text {
  color: #eee;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.testimoni-nama {
  color: #c59d5f;
  font-size: 14px;
  font-weight: 600;
}
.hero {
  position: relative;
  z-index: 1;
}

/* =========================
   RESPONSIVE DESKTOP
   ========================= */
@media (min-width: 768px) {
  .testimoni-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimoni-mini h2 {
    font-size: 30px;
  }
}
/* =====================================================
   HARD RESET HEADER MOBILE (FINAL)
   ===================================================== */
@media (max-width: 768px) {

  /* 1. MATIKAN SEMUA OVERFLOW PARENT YANG MEMBLOK SCROLL */
  .navbar,
  .navbar .container {
    overflow: visible !important;
  }

  /* 2. PAKSA HEADER 1 BARIS */
  .navbar .container {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  /* 3. KECILKAN AREA LOGO AGAR NAV DAPAT RUANG */
  .logo-area {
    display: flex !important;
    align-items: center !important;
    max-width: 44% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .logo-area img {
    height: 30px !important;
    flex-shrink: 0 !important;
  }

  .logo-area span {
    font-size: 12px !important;
    max-width: 90px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .social-header {
    gap: 6px !important;
    margin-left: 6px !important;
    flex-shrink: 0 !important;
  }

  /* 4. NAV: SATU BARIS + WAJIB BISA SWIPE */
  nav {
    display: flex !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    max-width: 56% !important;
    -webkit-overflow-scrolling: touch;
  }

  nav a {
    flex-shrink: 0 !important;
    margin-left: 6px !important;
    padding: 4px 4px !important;
    font-size: 12px !important;
  }

  nav::-webkit-scrollbar {
    display: none;
  }

  /* 5. STICKY */
  .navbar {
    position: sticky !important;
    top: 0;
    z-index: 9999;
    background: #fff;
  }
}
