/* ═══════════════════════════════════════════════════════════
   LABUAN BAJO PARADISE — LUXURY STYLESHEET v3.0
   Theme: Navy · Teal · Gold · Sandy Warm · Clay DNA
   Inspired by: Pink Beach color warmth × Clay.com design system
   ═══════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  /* Navy base */
  --navy:        #060e1c;
  --navy-mid:    #0a1728;
  --navy-card:   #0d1f35;
  --navy-raised: #112340;
  --navy-border: rgba(255,255,255,0.07);

  /* Teal — ocean accent */
  --teal:        #0e7a6e;
  --teal-light:  #1aaa98;
  --teal-pale:   rgba(14,122,110,0.12);

  /* Gold — luxury accent */
  --gold:        #c9a84c;
  --gold-light:  #e8c96a;
  --gold-dark:   #9a7a2e;
  --gold-pale:   rgba(201,168,76,0.10);

  /* Sandy warm — Pink Beach heritage tones */
  --sand:        #f0ddb0;
  --sand-pale:   #fdf6e8;
  --coral:       #e07a5f;
  --coral-soft:  #f09b84;
  --coral-pale:  rgba(224,122,95,0.10);

  /* Clay accent cards */
  --clay-rose:   #c2185b;
  --clay-teal:   #0f5a50;
  --clay-purple: #7c6abf;
  --clay-warm:   #c47a3a;
  --clay-ochre:  #9a7a2e;

  /* Text */
  --ink:         #ffffff;
  --ink-soft:    rgba(255,255,255,0.85);
  --body:        rgba(255,255,255,0.68);
  --muted:       rgba(255,255,255,0.40);

  /* Light surface (for cards that need it) */
  --surface:     #f8f4ec;
  --surface-mid: #f0e8d5;
  --ink-dark:    #1a0e06;
  --ink-dark-soft: #3d2a1a;
  --muted-dark:  #8a6d4a;
  --border-warm: rgba(201,168,76,0.22);
  --border-soft: rgba(201,168,76,0.10);

  --shadow-sm:   0 2px 12px rgba(6,14,28,0.25);
  --shadow-md:   0 8px 40px rgba(6,14,28,0.35);
  --shadow-lg:   0 20px 80px rgba(6,14,28,0.45);
  --shadow-card: 0 4px 24px rgba(6,14,28,0.20);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.30);

  --radius-sm:   0.5rem;
  --radius-md:   1rem;
  --radius-lg:   1.75rem;
  --radius-xl:   2.5rem;
  --radius-full: 9999px;

  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --trans:       0.35s var(--ease-smooth);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--navy);
  color: var(--ink-soft);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-mid); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 3px; }

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--ink);
  line-height: 1.15;
}
.display-serif { font-family: 'Playfair Display', Georgia, serif; font-style: italic; }
.label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 500;
  color: var(--ink);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--body);
  line-height: 1.75;
  font-weight: 300;
  max-width: 540px;
}

/* ── Utility ── */
.section-py    { padding: 6rem 0; }
.section-py-sm { padding: 4rem 0; }
.bg-navy-mid   { background: var(--navy-mid); }
.bg-navy       { background: var(--navy); }
.text-gold     { color: var(--gold); }
.text-teal     { color: var(--teal-light); }

/* ══════════════════════════════════════
   PRELOADER
══════════════════════════════════════ */
#preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: #0a0406;
  isolation: isolate;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 2rem;
  transition: opacity 0.9s var(--ease-smooth), transform 0.9s var(--ease-smooth);
}
#preloader.exit { opacity: 0; transform: scale(1.04); pointer-events: none; }
.pl-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 400;
  color: var(--white); letter-spacing: 0.06em;
}
.pl-logo em { color: var(--gold); font-style: italic; }
.pl-tagline {
  font-size: 0.65rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: rgba(255,255,255,0.28);
  margin-top: -1.5rem;
}
.pl-bar-wrap {
  width: 180px; height: 1px;
  background: rgba(255,255,255,0.08); border-radius: 1px; overflow: hidden;
}
.pl-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--teal-light));
  transition: width 0.08s linear;
}
.pl-pct { font-size: 0.65rem; letter-spacing: 0.14em; color: rgba(255,255,255,0.22); text-align: center; }
.pl-dots { display: flex; gap: 0.4rem; margin-top: 0.5rem; }
.pl-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  animation: pl-pulse 1.4s ease-in-out infinite;
}
.pl-dot:nth-child(2) { animation-delay: 0.2s; background: var(--teal-light); }
.pl-dot:nth-child(3) { animation-delay: 0.4s; background: var(--coral-soft); }
@keyframes pl-pulse {
  0%,100% { opacity: 0.2; transform: scale(0.8); }
  50%      { opacity: 1;   transform: scale(1.3); }
}

/* ══════════════════════════════════════
   PAGE TRANSITION
══════════════════════════════════════ */
#page-transition { display: none !important; }
#page-transition.fade-in  { opacity: 1; pointer-events: all; }
#page-transition.fade-out { opacity: 0; pointer-events: none; }

/* ══════════════════════════════════════
   CURSOR
══════════════════════════════════════ */
/* cursor: none removed */
#cur-dot {
  position: fixed; pointer-events: none; z-index: 999999;
  top: 0; left: 0; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%); will-change: transform;
  transition: width 0.15s var(--ease-bounce), height 0.15s var(--ease-bounce), background 0.2s, opacity 0.2s;
}
#cur-ring {
  position: fixed; pointer-events: none; z-index: 999998;
  top: 0; left: 0; width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--teal);
  transform: translate(-50%, -50%); will-change: transform;
  transition: width 0.35s var(--ease-smooth), height 0.35s var(--ease-smooth), border-color 0.3s, background 0.3s, opacity 0.25s;
}
#cur-ring.hover   { width: 52px; height: 52px; border-color: var(--gold); background: rgba(201,168,76,0.07); }
#cur-dot.hover    { width: 5px; height: 5px; background: var(--gold); }
#cur-ring.hover-img { width: 70px; height: 70px; border-color: rgba(14,122,110,0.6); background: rgba(14,122,110,0.06); }
#cur-dot.hover-img  { width: 6px; height: 6px; background: var(--teal-light); }
#cur-ring.click   { width: 22px; height: 22px; background: rgba(201,168,76,0.22); border-color: var(--gold); transition: width 0.08s, height 0.08s, background 0.08s; }
#cur-dot.click    { width: 12px; height: 12px; background: var(--gold); transition: width 0.08s, height 0.08s; }
#cur-ring.text-mode { width: 2px; height: 22px; border-radius: 2px; background: var(--gold); border-color: transparent; transition: width 0.12s, height 0.12s, border-radius 0.12s, background 0.12s; }
#cur-dot.text-mode  { opacity: 0; width: 0; height: 0; }
#cur-label {
  pointer-events: none !important;
  user-select: none !important;
  position: fixed; pointer-events: none; z-index: 999997;
  top: 0; left: 0;
  font-size: 0.63rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: white; background: var(--navy);
  padding: 0.22rem 0.55rem; border-radius: var(--radius-full);
  white-space: nowrap; opacity: 0;
  transform: translate(18px, -28px) scale(0.7);
  transition: opacity 0.2s, transform 0.25s var(--ease-bounce);
  will-change: transform;
}
#cur-label.show { opacity: 1; transform: translate(18px, -28px) scale(1); }
#cur-label:empty { display: none !important; }
.cur-trail { mix-blend-mode: screen; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
.navbar-lux {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  padding: 1.5rem 0; transition: var(--trans);
}
.navbar-lux.scrolled {
  background: rgba(6,14,28,0.35);
  backdrop-filter: blur(12px);
  padding: 0.9rem 0;
  box-shadow: none;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; font-weight: 500;
  color: var(--ink); letter-spacing: 0.02em; transition: color var(--trans);
}
.nav-brand span { color: var(--gold); font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 0.1rem; }
.nav-links a {
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.72);
  padding: 0.35rem 0.5rem; border-radius: var(--radius-full); transition: var(--trans);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 4px; left: 50%; right: 50%;
  height: 1.5px; background: var(--gold);
  transition: left 0.3s var(--ease-smooth), right 0.3s var(--ease-smooth);
  border-radius: 1px;
}
.nav-links a:hover::after, .nav-links a.active::after { left: 1rem; right: 1rem; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-cta {
  background: linear-gradient(135deg, var(--teal), var(--gold-dark)) !important;
  color: white !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: var(--radius-full) !important;
  font-weight: 500 !important;
  box-shadow: 0 4px 16px rgba(14,122,110,0.35);
  transition: var(--trans) !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(14,122,110,0.45) !important; }
.nav-cta::after { display: none !important; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--ink); border-radius: 1px; transition: var(--trans);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  overflow: hidden; background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1505118380757-91f5f5632de0?w=1920&q=90') center/cover;
  opacity: 0.55;
  transform: scale(1.05);
  animation: hero-zoom 22s ease-in-out infinite alternate;
}
@keyframes hero-zoom { from{transform:scale(1.05)} to{transform:scale(1.12)} }
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,14,28,0.85) 0%,
    rgba(14,122,110,0.10) 50%,
    rgba(201,168,76,0.06) 100%
  );
}
.hero-noise {
  position: absolute; inset: 0; opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto;
  padding: 8rem 2rem 4rem; width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1px solid rgba(201,168,76,0.35);
  background: rgba(201,168,76,0.08);
  backdrop-filter: blur(6px);
  padding: 0.4rem 1.1rem; border-radius: var(--radius-full);
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--sand); margin-bottom: 2rem;
  animation: fade-up 0.8s var(--ease-smooth) 0.2s both;
}
.hero-badge i { color: var(--gold); font-size: 0.85rem; }
.hero-title {
  font-size: clamp(3.2rem, 8vw, 6.5rem); font-weight: 400;
  color: var(--ink); line-height: 1.05; margin-bottom: 1.75rem;
  animation: fade-up 0.9s var(--ease-smooth) 0.35s both;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-title .line2 { display: block; }
.hero-title .line2 em { color: var(--teal-light); }
.hero-desc {
  font-size: 1.1rem; font-weight: 300;
  color: rgba(255,255,255,0.62); line-height: 1.75; max-width: 500px;
  margin-bottom: 2.5rem;
  animation: fade-up 0.9s var(--ease-smooth) 0.5s both;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fade-up 0.9s var(--ease-smooth) 0.65s both;
  margin-bottom: 4rem;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: linear-gradient(135deg, var(--teal) 0%, var(--gold-dark) 100%);
  color: white; padding: 0.9rem 2.2rem; border-radius: var(--radius-full);
  font-size: 0.95rem; font-weight: 500; letter-spacing: 0.02em;
  box-shadow: 0 6px 28px rgba(14,122,110,0.40); transition: var(--trans); border: none;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(14,122,110,0.50); color: white; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1.5px solid rgba(255,255,255,0.30); color: rgba(255,255,255,0.82);
  padding: 0.9rem 2.2rem; border-radius: var(--radius-full);
  font-size: 0.95rem; font-weight: 400; transition: var(--trans); background: transparent;
}
.btn-outline:hover { border-color: var(--gold); color: white; background: rgba(201,168,76,0.08); }
.hero-stats {
  display: flex; gap: 3rem; flex-wrap: wrap;
  padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.08);
  animation: fade-up 0.9s var(--ease-smooth) 0.8s both;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 500;
  color: var(--gold); line-height: 1;
}
.hero-stat-label {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-top: 0.3rem;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.35); font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100% { transform: scaleY(1); opacity: 0.5; }
  50%      { transform: scaleY(1.15); opacity: 1; }
}

/* ══════════════════════════════════════
   FEATURES STRIP
══════════════════════════════════════ */
.features-strip {
  background: var(--navy-mid);
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.10);
}
.features-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0; max-width: 1200px; margin: 0 auto; padding: 0 2rem;
}
.feat-pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0 2rem; font-size: 0.83rem; letter-spacing: 0.04em;
  color: rgba(255,255,255,0.45); white-space: nowrap;
}
.feat-pill i { color: var(--teal-light); font-size: 1rem; }
.feat-sep { color: rgba(201,168,76,0.3); font-size: 0.55rem; }

/* ══════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.8s var(--ease-smooth), transform 0.8s var(--ease-smooth);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }
@keyframes fade-up { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ══════════════════════════════════════
   ABOUT / INTRO SECTION
══════════════════════════════════════ */
.intro-img-wrap {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro-img-wrap img {
  width: 100%; height: 500px; object-fit: cover;
  transition: transform 0.7s var(--ease-smooth);
}
.intro-img-wrap:hover img { transform: scale(1.04); }
.intro-img-badge {
  position: absolute; bottom: 1.75rem; left: 1.75rem;
  background: rgba(6,14,28,0.90); backdrop-filter: blur(10px);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 1rem 1.5rem; border-radius: var(--radius-md); color: white;
}
.intro-img-badge .big { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); line-height: 1; }
.intro-img-badge .sm  { font-size: 0.72rem; color: rgba(255,255,255,0.45); letter-spacing: 0.06em; margin-top: 2px; }

.fact-row {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 0; border-bottom: 1px solid rgba(201,168,76,0.08);
}
.fact-row:last-child { border-bottom: none; }
.fact-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(14,122,110,0.15), rgba(201,168,76,0.10));
  border: 1px solid rgba(201,168,76,0.20);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.15rem;
}
.fact-row h6 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.2rem; color: var(--ink); }
.fact-row p  { font-size: 0.85rem; color: var(--body); margin: 0; line-height: 1.6; }

/* ══════════════════════════════════════
   STATS COUNTER SECTION
══════════════════════════════════════ */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-raised) 100%);
  padding: 5rem 0; position: relative; overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(14,122,110,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.stat-card {
  text-align: center; position: relative; z-index: 1; padding: 2rem 1rem;
}
.stat-card::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(201,168,76,0.12);
}
.stat-card:last-child::after { display: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4rem); font-weight: 500;
  background: linear-gradient(135deg, var(--sand), var(--teal-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.30); margin-top: 0.5rem;
}

/* ══════════════════════════════════════
   GALLERY GRID
══════════════════════════════════════ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; gap: 1rem;
}
.g-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--navy-card); box-shadow: var(--shadow-card);
}
.g-card img {
  width: 100%; height: 100%; min-height: 220px; object-fit: cover;
  transition: transform 0.6s var(--ease-smooth); display: block;
}
.g-card:hover img { transform: scale(1.08); }
.g-card.tall { grid-row: span 2; }
.g-card.wide { grid-column: span 2; }
.g-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,14,28,0.90) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.35s ease;
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.g-card:hover .g-overlay { opacity: 1; }
.g-overlay h6 { color: white; font-size: 1rem; margin: 0 0 0.2rem; }
.g-overlay span { color: rgba(255,255,255,0.45); font-size: 0.78rem; }
.g-overlay .g-icon {
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 0.9rem;
  transform: scale(0); transition: transform 0.3s var(--ease-bounce);
}
.g-card:hover .g-icon { transform: scale(1); }

/* ══════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════ */
#lightbox {
  position: fixed; inset: 0; z-index: 99990;
  background: rgba(6,14,28,0.97); backdrop-filter: blur(12px);
  display: none; align-items: center; justify-content: center; padding: 2rem;
}
#lightbox.active { display: flex; animation: lb-in 0.3s var(--ease-smooth); }
@keyframes lb-in { from{opacity:0} to{opacity:1} }
#lb-img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); box-shadow: 0 40px 120px rgba(0,0,0,0.8); object-fit: contain; }
#lb-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  color: white; font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
}
#lb-close:hover { background: rgba(201,168,76,0.25); border-color: var(--gold); }
#lb-caption {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.55); font-size: 0.88rem; text-align: center; letter-spacing: 0.05em;
}

/* ══════════════════════════════════════
   CLAY HIGHLIGHT CARDS
══════════════════════════════════════ */
.hl-card {
  border-radius: var(--radius-xl); padding: 2rem;
  transition: var(--trans); height: 100%;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--navy-raised);
  border: 1px solid var(--navy-border);
}
.hl-card:hover {
  background: rgba(14,122,110,0.08);
  border-color: rgba(201,168,76,0.25);
}
/* Clay accent variants */
.hl-card-rose    { background: var(--clay-rose); }
.hl-card-teal    { background: var(--clay-teal); }
.hl-card-purple  { background: var(--clay-purple); }
.hl-card-warm    { background: var(--clay-warm); }
.hl-card-ochre   { background: var(--clay-ochre); }
.hl-card-navy    { background: var(--navy-raised); border: 1px solid var(--navy-border); }

.hl-card:hover   { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.hl-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(14,122,110,0.25), rgba(201,168,76,0.15));
  border: 1px solid rgba(14,122,110,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.25rem; color: var(--teal-light); transition: var(--trans);
}
.hl-card:hover .hl-icon {
  background: linear-gradient(135deg, rgba(14,122,110,0.4), rgba(201,168,76,0.25));
  border-color: var(--gold);
  color: var(--gold-light);
}
.hl-card h5 { font-size: 1.45rem; margin-bottom: 0.6rem; color: white; letter-spacing: -0.3px; }
.hl-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.72); line-height: 1.7; margin: 0; flex: 1; }
.hl-tag {
  display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.5px;
  background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9);
  border-radius: var(--radius-full); padding: 4px 12px; margin-top: 1rem; align-self: flex-start;
}
/* Wide card variant */
.hl-card-wide { flex-direction: row; align-items: center; gap: 2rem; }
.hl-card-wide .hl-card-content { flex: 1; }
.hl-card-wide .hl-card-visual  { flex: 1; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/9; }
.hl-card-wide .hl-card-visual img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
.testi-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl); padding: 2rem; transition: var(--trans);
}
.testi-card:hover {
  background: rgba(14,122,110,0.05);
  border-color: rgba(201,168,76,0.22); transform: translateY(-4px);
}
.testi-stars  { color: var(--gold); font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testi-text   { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-style: italic; color: rgba(255,255,255,0.78); line-height: 1.75; margin-bottom: 1.5rem; }
.testi-author { display: flex; align-items: center; gap: 0.75rem; }
.testi-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 600; font-size: 0.95rem; flex-shrink: 0;
}
.testi-name { color: white; font-size: 0.92rem; font-weight: 500; margin: 0; }
.testi-from { color: rgba(255,255,255,0.32); font-size: 0.75rem; }

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.cta-section {
  background: var(--navy-raised);
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 6rem 0; position: relative; overflow: hidden; text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--teal-light), var(--clay-purple), var(--coral-soft));
}
.cta-section::after {
  content: '';
  position: absolute; bottom: -40%; right: -10%; width: 500px; height: 500px;
  border-radius: 50%; background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 70%);
}
.cta-section h2 { color: var(--ink); }
.cta-section p  { color: var(--body); }
.btn-white {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: var(--navy);
  padding: 0.9rem 2.2rem; border-radius: var(--radius-full);
  font-weight: 600; font-size: 0.95rem; transition: var(--trans);
  box-shadow: 0 4px 20px rgba(201,168,76,0.30);
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(201,168,76,0.40); color: var(--navy); background: var(--gold-light); }
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1.5px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.82);
  background: transparent; padding: 0.9rem 2.2rem; border-radius: var(--radius-full); font-size: 0.95rem; transition: var(--trans);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.06); border-color: var(--gold); color: white; }

/* ══════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════ */
.page-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-raised) 100%);
  padding: 9rem 0 5rem; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1200') center/cover;
  opacity: 0.08;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(14,122,110,0.10) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: white; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 400; }
.page-hero p  { color: rgba(255,255,255,0.45); font-size: 1rem; margin-top: 0.75rem; }
.breadcrumb-lux {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-bottom: 1rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.32); letter-spacing: 0.06em;
}
.breadcrumb-lux a   { color: rgba(255,255,255,0.40); transition: color 0.2s; }
.breadcrumb-lux a:hover { color: var(--gold); }
.breadcrumb-lux .sep{ color: rgba(255,255,255,0.18); font-size: 0.65rem; }
.breadcrumb-lux .cur{ color: rgba(255,255,255,0.65); }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-card {
  background: var(--navy-card); border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl); padding: 3rem; box-shadow: var(--shadow-card);
}
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-size: 0.82rem; font-weight: 500;
  color: var(--body); margin-bottom: 0.5rem; letter-spacing: 0.03em;
}
.form-control, .form-select {
  width: 100%; border: 1.5px solid var(--navy-border);
  border-radius: var(--radius-md); padding: 0.8rem 1.1rem;
  font-size: 0.95rem; font-family: 'Jost', sans-serif;
  background: var(--navy-raised); color: var(--ink);
  transition: var(--trans); outline: none; appearance: none;
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  background: var(--navy-card);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  transform: translateY(-1px);
}
.form-control::placeholder { color: var(--muted); }
textarea.form-control { resize: vertical; min-height: 140px; }
.btn-submit {
  width: 100%; background: linear-gradient(135deg, var(--teal), var(--gold-dark));
  color: white; border: none; padding: 1rem 2rem; border-radius: var(--radius-full);
  font-size: 1rem; font-weight: 500; font-family: 'Jost', sans-serif; letter-spacing: 0.03em;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  box-shadow: 0 6px 28px rgba(14,122,110,0.35); transition: var(--trans);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(14,122,110,0.45); }
.btn-submit.loading { opacity: 0.75; pointer-events: none; }
.btn-submit.loading::after {
  content: ''; display: inline-block; width: 15px; height: 15px;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: white;
  border-radius: 50%; animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.alert-ok {
  background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.20);
  color: #6ee7b7; border-radius: var(--radius-md); padding: 1rem 1.25rem;
  font-size: 0.92rem; display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.5rem; animation: fade-up 0.5s var(--ease-smooth);
}
.alert-err {
  background: rgba(239,68,68,0.08); border: 1px solid rgba(239,68,68,0.18);
  color: #fca5a5; border-radius: var(--radius-md); padding: 1rem 1.25rem;
  font-size: 0.92rem; display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.5rem; animation: fade-up 0.5s var(--ease-smooth);
}
.info-item {
  display: flex; align-items: center; gap: 1rem; padding: 1.25rem;
  background: var(--navy-raised); border: 1px solid var(--navy-border);
  border-radius: var(--radius-md); margin-bottom: 0.75rem; transition: var(--trans);
}
.info-item:hover { border-color: rgba(201,168,76,0.25); transform: translateX(4px); box-shadow: var(--shadow-sm); }
.info-ico {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--gold-dark));
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.05rem;
}
.info-item h6 { font-size: 0.75rem; color: var(--muted); margin: 0 0 0.2rem; font-weight: 400; font-family: 'Jost'; }
.info-item p  { margin: 0; font-size: 0.9rem; font-weight: 500; color: var(--ink); }

/* ══════════════════════════════════════
   BUKU TAMU
══════════════════════════════════════ */
.guest-card {
  background: var(--navy-card); border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl); padding: 1.75rem; transition: var(--trans);
}
.guest-card:hover { box-shadow: var(--shadow-md); border-color: rgba(201,168,76,0.25); transform: translateY(-3px); }
.guest-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.guest-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 600; font-size: 1rem;
}
.guest-name { font-weight: 600; font-size: 0.95rem; margin: 0; color: var(--ink); }
.guest-meta { font-size: 0.75rem; color: var(--muted); }
.guest-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 0.6rem; }
.guest-msg   { font-size: 0.9rem; color: var(--body); line-height: 1.7; }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.about-grid img { border-radius: var(--radius-md); width: 100%; height: 200px; object-fit: cover; }
.about-grid .wide { grid-column: span 2; height: 260px; }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--teal), var(--gold));
}
.tl-item { position: relative; margin-bottom: 1.75rem; }
.tl-item::before {
  content: ''; position: absolute; left: -1.7rem; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--navy); box-shadow: 0 0 0 3px rgba(201,168,76,0.2);
}
.tl-item h6 { font-size: 0.95rem; margin-bottom: 0.25rem; color: var(--ink); }
.tl-item p  { font-size: 0.85rem; color: var(--body); margin: 0; }

/* ══════════════════════════════════════
   GALLERY PAGE (full)
══════════════════════════════════════ */
.gp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.25rem;
}
.gp-card {
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--navy-card); position: relative;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
}
.gp-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-smooth); }
.gp-card:hover img { transform: scale(1.07); }
.gp-card:hover img { transform: scale(1.07); }
.gp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,14,28,0.92), transparent 55%);
  opacity: 0; transition: opacity 0.35s var(--ease-smooth); display: flex; align-items: flex-end; padding: 1.25rem;
}
.gp-card:hover .gp-overlay { opacity: 1; }
.gp-overlay h6   { color: white; margin: 0 0 0.25rem; font-size: 0.95rem; }
.gp-overlay span { color: var(--teal-light); font-size: 0.78rem; }
.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-btn {
  border: 1.5px solid var(--navy-border);
  background: transparent; color: var(--muted);
  padding: 0.5rem 1.25rem; border-radius: var(--radius-full);
  font-size: 0.85rem; font-family: 'Jost', sans-serif; transition: var(--trans);
}
.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(135deg, var(--teal), var(--gold));
  border-color: transparent; color: white;
  box-shadow: 0 4px 16px rgba(14,122,110,0.35);
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer-lux {
  background: var(--navy); color: rgba(255,255,255,0.45);
  padding: 5rem 0 2rem; border-top: 1px solid rgba(201,168,76,0.10);
}
.footer-brand-name {
  font-family: 'Playfair Display', serif; font-size: 1.65rem;
  color: white; font-weight: 400; display: block; margin-bottom: 0.75rem;
}
.footer-brand-name em { color: var(--gold); }
.footer-desc { font-size: 0.88rem; line-height: 1.75; max-width: 280px; margin-bottom: 1.5rem; }
.social-wrap { display: flex; gap: 0.65rem; }
.soc-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); font-size: 0.95rem; transition: var(--trans);
}
.soc-btn:hover {
  background: linear-gradient(135deg, var(--teal), var(--gold-dark));
  border-color: transparent; color: white;
  transform: translateY(-2px); box-shadow: 0 6px 18px rgba(14,122,110,0.35);
}
.footer-heading {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.30); font-weight: 600; margin-bottom: 1.25rem; font-family: 'Jost';
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
  font-size: 0.88rem; color: rgba(255,255,255,0.40); transition: color 0.25s;
  display: flex; align-items: center; gap: 0.35rem;
}
.footer-links a:hover { color: var(--gold); padding-left: 3px; }
.footer-links a i { font-size: 0.6rem; color: var(--teal-light); }
.footer-contact-list { list-style: none; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.38);
  margin-bottom: 0.8rem; line-height: 1.5;
}
.footer-contact-list i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }
.footer-divider { border-color: rgba(255,255,255,0.06); margin: 3rem 0 1.5rem; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.22); margin: 0; }

/* ══════════════════════════════════════
   BACK TO TOP
══════════════════════════════════════ */
.back-top {
  position: fixed; bottom: 5rem; right: 2rem; z-index: 8000;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--gold-dark));
  color: white; border: none; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; box-shadow: 0 6px 24px rgba(14,122,110,0.40);
  opacity: 0; transform: translateY(20px); transition: var(--trans);
}
.back-top.show { opacity: 1; transform: translateY(0); }
.back-top:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(14,122,110,0.50); }

/* ══════════════════════════════════════
   WHATSAPP FLOATING
══════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 8000;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.6rem; box-shadow: 0 6px 24px rgba(37,211,102,0.40);
  transition: var(--trans); animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.55); animation: none; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.40); }
  50%      { box-shadow: 0 6px 40px rgba(37,211,102,0.60), 0 0 0 8px rgba(37,211,102,0.07); }
}
.wa-tooltip {
  position: absolute; right: 66px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: white; font-size: 0.78rem;
  padding: 0.35rem 0.75rem; border-radius: var(--radius-sm);
  white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ══════════════════════════════════════
   ADMIN
══════════════════════════════════════ */
.admin-sidebar { background: var(--navy); min-height: 100vh; padding: 1.5rem 0; }
.admin-brand { padding: 1rem 1.5rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 1rem; }
.admin-brand span { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: white; font-weight: 500; }
.admin-brand em { color: var(--gold); }
.admin-nav-link {
  display: flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.5rem;
  color: rgba(255,255,255,0.45); font-size: 0.9rem; text-decoration: none; transition: var(--trans);
}
.admin-nav-link:hover, .admin-nav-link.active {
  color: white; background: rgba(14,122,110,0.12); border-right: 3px solid var(--teal);
}
.admin-nav-link i { font-size: 1.05rem; }
.admin-main { background: #0d1825; min-height: 100vh; }
.stat-widget {
  background: var(--navy-card); border-radius: var(--radius-md);
  padding: 1.5rem; border-left: 4px solid var(--teal); box-shadow: var(--shadow-card);
}
.stat-widget.orange { border-left-color: var(--coral); }
.stat-widget.gold   { border-left-color: var(--gold); }
.stat-widget h3 { font-size: 2rem; color: var(--ink); margin: 0; }
.stat-widget p  { font-size: 0.82rem; color: var(--muted); margin: 0; }
.admin-table { background: var(--navy-card); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); }
.admin-table th { background: var(--navy-raised); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-weight: 500; border: none; padding: 1rem 1.25rem; color: var(--body); }
.admin-table td { padding: 0.9rem 1.25rem; border-bottom: 1px solid var(--navy-border); font-size: 0.9rem; vertical-align: middle; color: var(--body); }
.admin-table tr:last-child td { border-bottom: none; }

/* ══════════════════════════════════════
   BADGE / TAG
══════════════════════════════════════ */
.badge-teal   { background: rgba(14,122,110,0.15); color: var(--teal-light); font-size: 0.73rem; padding: 0.3rem 0.7rem; border-radius: var(--radius-full); font-weight: 500; }
.badge-gold   { background: rgba(201,168,76,0.12); color: var(--gold); font-size: 0.73rem; padding: 0.3rem 0.7rem; border-radius: var(--radius-full); font-weight: 500; }
/* Legacy compat */
.badge-pink   { background: rgba(14,122,110,0.15); color: var(--teal-light); font-size: 0.73rem; padding: 0.3rem 0.7rem; border-radius: var(--radius-full); font-weight: 500; }
.badge-orange { background: rgba(201,168,76,0.12); color: var(--gold); font-size: 0.73rem; padding: 0.3rem 0.7rem; border-radius: var(--radius-full); font-weight: 500; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 991px) {
  .nav-links { display: none; flex-direction: column; position: fixed; inset: 0; top: 0; background: rgba(6,14,28,0.97); backdrop-filter: blur(16px); justify-content: center; align-items: center; gap: 1.5rem; z-index: 8999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.5rem; color: white !important; }
  .nav-links a.nav-cta { background: linear-gradient(135deg, var(--teal), var(--gold-dark)) !important; color: white !important; padding: 0.7rem 2rem !important; border-radius: var(--radius-full) !important; }
  .nav-toggle { display: flex; z-index: 9001; position: relative; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .tall { grid-row: span 1; }
  .gallery-grid .wide { grid-column: span 1; }
  .hl-card-wide { flex-direction: column; }
}
@media (max-width: 768px) {
  .hero-stats { gap: 2rem; }
  .section-py { padding: 4rem 0; }
  .stat-card::after { display: none; }
  .about-grid .wide { height: 180px; }
}
@media (max-width: 576px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .hero-stats > div { min-width: 40%; }
  .contact-card { padding: 1.75rem; }
  .wa-float { bottom: 1.5rem; right: 1.5rem; }
  .back-top { bottom: 4.5rem; right: 1.5rem; }
}

/* ═══ PAKET WISATA CARDS ═══ */
.paket-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.paket-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
}
.paket-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.paket-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.paket-card:hover .paket-img img { transform: scale(1.06); }
.paket-badge {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--gold); color: #000;
  font-size: .7rem; font-weight: 700;
  padding: .3rem .7rem; border-radius: 50px;
}
.paket-kategori {
  position: absolute; top: .75rem; right: .75rem;
  background: rgba(0,0,0,.5); color: #fff;
  font-size: .7rem; font-weight: 500;
  padding: .3rem .7rem; border-radius: 50px;
  backdrop-filter: blur(4px);
  text-transform: capitalize;
}
.paket-body {
  padding: 1.25rem;
  display: flex; flex-direction: column;
  flex: 1;
}
.paket-nama {
  font-family: 'Playfair Display', serif;
  color: var(--ink);
  font-size: 1.05rem;
  margin-bottom: .5rem;
}
.paket-desc {
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.6;
  flex: 1;
}
.paket-meta {
  display: flex; gap: 1rem;
  margin: .75rem 0;
  font-size: .78rem;
  color: var(--muted);
}
.paket-meta i { color: var(--teal-light); }
.paket-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: .75rem;
  border-top: 1px solid var(--navy-border);
}
.paket-harga {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}
.paket-harga-coret {
  font-size: .75rem;
  color: var(--muted);
  text-decoration: line-through;
}
.btn-paket {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .5rem 1rem;
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: #000; font-size: .8rem; font-weight: 600;
  border-radius: 50px; text-decoration: none;
  transition: opacity .2s;
}
.btn-paket:hover { opacity: .85; color: #000; }

/* ═══ FEATURE CARDS ═══ */
.fc-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}
.fc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.fc-card-featured {
  border-color: rgba(201,168,76,0.3);
  background: linear-gradient(135deg, var(--navy-card), rgba(201,168,76,0.05));
}
.fc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.fc-title {
  font-family: 'Playfair Display', serif;
  color: var(--ink);
  font-size: 1.1rem;
  margin-bottom: .6rem;
}
.fc-desc {
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════
   ARTIKEL CARDS
══════════════════════════════════════ */
.artikel-card {
  background: var(--navy-raised);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--trans);
  display: flex; flex-direction: column;
}
.artikel-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.25);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.artikel-thumb-link { display: block; overflow: hidden; line-height: 0; }
.artikel-thumb {
  position: relative; aspect-ratio: 16/10; overflow: hidden; line-height: 0;
}
.artikel-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}
.artikel-card:hover .artikel-thumb img { transform: scale(1.07); }
.artikel-kat {
  position: absolute; top: 1rem; left: 1rem;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  color: white; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full); text-transform: uppercase;
}
.artikel-body {
  padding: 1.5rem; display: flex; flex-direction: column; flex: 1;
}
.artikel-meta {
  font-size: 0.8rem; color: var(--muted); margin-bottom: 0.75rem;
}
.artikel-meta i { margin-right: 0.3rem; }
.artikel-title {
  font-size: 1.15rem; margin-bottom: 0.75rem; line-height: 1.45;
}
.artikel-title a {
  color: white; text-decoration: none; transition: var(--trans);
}
.artikel-title a:hover { color: var(--teal-light); }
.artikel-excerpt {
  font-size: 0.87rem; color: var(--muted); line-height: 1.7;
  flex: 1; margin-bottom: 1.25rem;
}
.artikel-readmore {
  color: var(--gold); font-size: 0.88rem; font-weight: 600;
  text-decoration: none; transition: var(--trans);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.artikel-readmore:hover { color: var(--gold-light); gap: 0.7rem; }
