
/* ===================================================
   IBADAHKU — style.css
   Palette: Emerald Green + Gold + Ivory
   =================================================== */

:root {
  --green-dark:   #0F3D2A;
  --green:        #1A6B3C;
  --green-mid:    #22864C;
  --green-light:  #E8F5EE;
  --gold:         #C9A84C;
  --gold-light:   #F0DFA0;
  --gold-dark:    #A07828;
  --ivory:        #FAFAF7;
  --ivory-dark:   #F2F0EA;
  --text-dark:    #0F1A14;
  --text-mid:     #3A4A3F;
  --text-muted:   #7A8A7F;
  --white:        #FFFFFF;
  --wa-green:     #25D366;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-arabic:  'Amiri', serif;

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;

  --shadow-sm:    0 2px 12px rgba(15,58,42,.06);
  --shadow-md:    0 8px 32px rgba(15,58,42,.12);
  --shadow-lg:    0 20px 60px rgba(15,58,42,.18);

  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }

/* ── Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory-dark); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }

/* ── Typography helpers ───────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: var(--green); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}
.body-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.body-text.light { color: rgba(255,255,255,.82); }

/* ── Buttons ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.btn-green {
  background: var(--green);
  color: var(--white);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,107,60,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-wa {
  background: var(--wa-green);
  color: var(--white);
  font-size: 1rem;
  justify-content: center;
}
.btn-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
.btn-full { width: 100%; justify-content: center; }

/* ── Animations ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}
@keyframes pulseRing {
  0%   { transform: scale(1);   opacity: .6; }
  100% { transform: scale(1.6); opacity: 0; }
}

.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.8s forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

.js-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(15,26,20,.96);
  backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-arabic {
  font-family: var(--font-arabic);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.logo-latin {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--green-dark) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,30,20,.78) 0%,
    rgba(15,58,42,.55) 60%,
    rgba(201,168,76,.08) 100%
  );
}
.particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.calligraphy-deco {
  position: absolute;
  top: 12%;
  right: -2%;
  width: 38%;
  z-index: 2;
  opacity: 0.6;
  animation: fadeIn 2s 0.5s both;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: 100px;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 720px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,.8);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,.65);
  margin-top: 4px;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.2);
}

.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollBounce 1.8s ease-in-out infinite;
}

/* ===================================================
   MARQUEE
   =================================================== */
.marquee-bar {
  background: var(--green-dark);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,.2);
  border-bottom: 1px solid rgba(201,168,76,.2);
}
.marquee-track {
  display: flex;
  gap: 64px;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===================================================
   TENTANG
   =================================================== */
.tentang { background: var(--ivory); }

.tentang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.tentang-visual {
  position: relative;
}
.img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.tentang-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.img-frame:hover .tentang-img { transform: scale(1.04); }

.img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px; /* FIX: Diubah dari -24px menjadi 24px agar masuk ke area aman */
  background: var(--gold);
  color: var(--green-dark);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 5; /* Memastikan badge berada di lapisan teratas di atas gambar */
}
.badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.badge-txt {
  font-size: 0.72rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  margin-top: 4px;
}
.img-frame-2 {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 180px;
  height: 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
}
.tentang-img-2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tentang-text .section-eyebrow { display: block; }
.tentang-text .section-title { margin-bottom: 20px; }

.keunggulan-list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.keunggulan-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.keu-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-top: 1px;
}

/* ===================================================
   PAKET
   =================================================== */
.paket { background: var(--ivory-dark); }

.tab-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  background: var(--white);
  border-radius: 100px;
  padding: 6px;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-sm);
}
.tab-btn {
  flex: 1;
  padding: 10px 20px;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(26,107,60,.3);
}

/* ── Tab content: hidden by default, shown when active ── */
.tab-content {
  display: none;
}
.tab-content.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.paket-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.paket-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.paket-card.featured {
  border: 2px solid var(--gold);
  transform: scale(1.03);
}
.paket-card.featured:hover {
  transform: scale(1.03) translateY(-8px);
}

.paket-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  z-index: 2;
}
.paket-badge.best { background: var(--gold); color: var(--green-dark); }
.paket-badge.premium { background: var(--green-dark); }

.paket-img-wrap {
  height: 200px;
  overflow: hidden;
}
.paket-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.paket-card:hover .paket-img-wrap img { transform: scale(1.06); }

.paket-body { padding: 24px; }
.paket-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.paket-durasi {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.paket-fitur {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--ivory-dark);
}
.paket-fitur li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding-left: 16px;
  position: relative;
}
.paket-fitur li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 0.75rem;
}

.paket-price { margin-bottom: 20px; }
.price-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}
.price-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
}
.price-per {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===================================================
   FASILITAS
   =================================================== */
.fasilitas { background: var(--white); }

.fasilitas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.fas-card {
  background: var(--ivory);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--ivory-dark);
  transition: var(--transition);
  cursor: default;
}
.fas-card:hover {
  background: var(--green-light);
  border-color: rgba(26,107,60,.15);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.fas-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.fas-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--green-dark);
}
.fas-card p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-mid);
}

/* ===================================================
   PROSES
   =================================================== */
.proses { background: var(--green-dark); }
.proses .section-eyebrow { color: var(--gold); }
.proses .section-title { color: var(--white); }

.proses-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.proses-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.step-line {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 2px;
  background: rgba(201,168,76,.3);
}
.step-line.last { display: none; }
.proses-step { position: relative; }

.step-body { padding: 0 16px; }
.step-body h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.step-body p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,.65);
}

/* ===================================================
   GALERI
   =================================================== */
.galeri { background: var(--ivory); padding-bottom: 96px; }

.galeri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 12px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.galeri-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.galeri-item.tall { grid-row: span 2; }
.galeri-item.wide { grid-column: span 2; }

.galeri-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.galeri-item:hover img { transform: scale(1.06); }

.galeri-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,30,20,.85), transparent);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 24px 16px 16px;
  opacity: 0;
  transition: opacity var(--transition);
}
.galeri-item:hover .galeri-caption { opacity: 1; }

/* ===================================================
   TESTIMONI — FINAL & FIXED
   =================================================== */
.testimoni { background: var(--ivory-dark); overflow: hidden; }

.testi-slider { 
  overflow: hidden; 
  position: relative; 
  max-width: 1200px; /* Mengunci lebar slider agar pas dengan grid container */
  margin: 0 auto;
  padding: 0 24px;
}
.testi-track {
  display: flex;
  gap: 28px; /* Menggunakan gap asli Anda */
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.testi-card {
  /* FIX UTAMA: Mengunci grid 3 kolom di desktop & memaksa word-wrap */
  flex: 0 0 calc((100% - 56px) / 3);
  width: calc((100% - 56px) / 3);
  
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--ivory-dark);
  flex-shrink: 0;
  box-sizing: border-box;
}
.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 24px;
  font-style: italic;
  white-space: normal; /* Paksa teks membuat baris baru ke bawah */
  word-break: break-word;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.9rem; }
.testi-loc { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ivory-dark);
  border: 2px solid var(--text-muted);
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}
.testi-dot.active {
  background: var(--green);
  border-color: var(--green);
  width: 24px;
  border-radius: 4px;
}
/* ===================================================
   FAQ  — FIXED
   =================================================== */
.faq { background: var(--white); }
.faq-container { max-width: 760px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: background var(--transition);
  gap: 16px;
}
.faq-q:hover { background: var(--ivory); }

.faq-arrow {
  font-size: 1.2rem;
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--green);
  display: inline-block;
  line-height: 1;
}

/* Arrow rotates when open */
.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

/* Answer panel: collapsed by default */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

/* Answer panel: expanded when open */
.faq-item.open .faq-a {
  max-height: 400px;
}

.faq-a p {
  padding: 4px 24px 20px;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* Active state highlight */
.faq-item.open {
  border-color: rgba(26,107,60,.25);
}
.faq-item.open .faq-q {
  color: var(--green-dark);
  background: var(--green-light);
}

/* ===================================================
   KONTAK
   =================================================== */
.kontak {
  position: relative;
  padding: 100px 0;
}
.kontak-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.kontak-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.kontak-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,30,20,.92) 0%,
    rgba(15,58,42,.85) 100%
  );
}
.kontak-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.kontak-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255,255,255,.8);
}
.info-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

.kontak-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.kontak-form-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.kontak-form-card > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}
.wa-topics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.wa-topic-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--green-light);
  border: 1.5px solid rgba(26,107,60,.15);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-dark);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.wa-topic-btn:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26,107,60,.2);
}
.wa-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer { background: var(--green-dark); padding-top: 64px; }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  margin-top: 16px;
  margin-bottom: 24px;
}
.logo-footer .logo-arabic { color: var(--gold); }
.logo-footer .logo-latin { color: var(--white); }

.footer-sosmed {
  display: flex;
  gap: 12px;
}
.footer-sosmed a {
  font-size: 1.2rem;
  transition: transform var(--transition);
}
.footer-sosmed a:hover { transform: scale(1.2); }

.footer-links h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center;
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,.35);
}

/* ===================================================
   WA FLOAT
   =================================================== */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: var(--transition);
  animation: fadeIn 1s 1s both;
}
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }
.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--wa-green);
  animation: pulseRing 2s ease-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,.55); }

.wa-float-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--green-dark);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.wa-float-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--green-dark);
}
.wa-float:hover .wa-float-tooltip { opacity: 1; }

/* ===================================================
   RESPONSIVE
   =================================================== */
.br-desktop { display: block; }

@media (max-width: 1024px) {
  .tab-content.active { grid-template-columns: repeat(2, 1fr); }
  .paket-card.featured { transform: scale(1); }
  .fasilitas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .tentang-grid { grid-template-columns: 1fr; gap: 48px; }
  .tentang-visual { max-width: 480px; margin: 0 auto; }
  .galeri-grid { grid-template-rows: repeat(2, 220px); }
  .kontak-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .br-desktop { display: none; }

  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: 280px;
    background: rgba(10,30,20,.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 850;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.1rem; }
  .hamburger { display: flex; z-index: 901; }

  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-stats { gap: 20px; }
  .stat-num { font-size: 1.8rem; }

  .tab-content.active { grid-template-columns: 1fr; }
  .proses-track { grid-template-columns: 1fr; gap: 32px; }
  .step-line { display: none; }

  .galeri-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .galeri-item.tall, .galeri-item.wide {
    grid-row: unset;
    grid-column: unset;
  }
  .galeri-item { height: 200px; }

  .testi-card { min-width: calc(100% - 48px); }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .wa-topics { grid-template-columns: 1fr; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .wa-float svg { width: 26px; height: 26px; }

  .img-badge { left: 12px; }
  .img-frame-2 { display: none; }

  .kontak { padding: 72px 0; }
  .kontak-form-card { padding: 28px 20px; }
}

/* Cari @media (max-width: 1024px) dan sesuaikan/tambahkan baris ini */
@media (max-width: 1024px) {
  .testi-card { 
    flex: 0 0 calc((100% - 28px) / 2); /* Mengubah menjadi 2 kolom rapi di Tablet */
    width: calc((100% - 28px) / 2);
    padding: 24px; 
  }
}

/* Cari @media (max-width: 768px) dan sesuaikan/tambahkan baris ini */
@media (max-width: 768px) {
  .testi-card { 
    flex: 0 0 calc(100% - 48px); /* 1 kolom penuh di Mobile + ruang intip kartu sebelah */
    width: calc(100% - 48px);
    padding: 20px; 
  }
}
