/*
 * Wizarus Travel — Landing Page Stylesheet
 * Brand: Teal #174155 | Gold #c7a47e | Cream #faf7f4
 * Design: Professional, Clean, Islamic
 */

/* ==============================
   CSS VARIABLES & RESET
============================== */
:root {
  --teal: #174155;
  --teal-dark: #0d2d3d;
  --teal-mid: #1e5270;
  --teal-light: #2a6f94;
  --teal-pale: #e8f3f8;
  --gold: #c7a47e;
  --gold-dark: #a07a52;
  --gold-light: #e8c99a;
  --gold-pale: #fdf3e7;
  --cream: #faf7f4;
  --cream-dark: #f0ebe4;
  --white: #ffffff;
  --dark: #1a1a2e;
  --text: #2d3748;
  --text-muted: #718096;
  --border: #e2d9cf;

  --shadow-sm: 0 2px 8px rgba(23, 65, 85, 0.08);
  --shadow-md: 0 8px 24px rgba(23, 65, 85, 0.12);
  --shadow-lg: 0 16px 48px rgba(23, 65, 85, 0.18);
  --shadow-xl: 0 24px 64px rgba(23, 65, 85, 0.22);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --font-heading: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul { list-style: none; }

/* ==============================
   SCROLL PROGRESS
============================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 3px 3px 0;
}

/* ==============================
   CONTAINER
============================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  border: 1px solid rgba(199, 164, 126, 0.3);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--teal-dark);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ==============================
   REVEAL ANIMATIONS
============================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1),
              transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ==============================
   NAVBAR — Clean White Bar (Fixed)
============================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 14px 0;
  background: rgba(250, 247, 244, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(250, 247, 244, 0.98);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  filter: none;
  transition: var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--teal);
  background: var(--teal-pale);
}

.nav-mobile-action {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-nav-dash {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--teal-dark);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-nav-dash:hover {
  background: var(--teal-pale);
  border-color: var(--teal);
  color: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(23, 65, 85, 0.1);
}

.btn-nav-dash i {
  width: 14px;
  height: 14px;
  color: var(--teal);
}

.btn-nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(23, 65, 85, 0.25);
}

.btn-nav-cta i {
  width: 15px;
  height: 15px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ==============================
   HERO SECTION — Rounded Card
============================== */
.hero {
  padding: 88px 24px 24px;
  background: var(--cream);
}

.hero-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: calc(100vh - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.03);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.03); }
  to   { transform: scale(1.09); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 30, 42, 0.45) 0%,
    rgba(10, 30, 42, 0.55) 50%,
    rgba(5, 18, 28, 0.82) 100%
  );
}

/* Center Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px 220px;
  max-width: 780px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(199, 164, 126, 0.18);
  border: 1px solid rgba(199, 164, 126, 0.45);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease forwards;
  letter-spacing: 0.5px;
}

.hero-badge i {
  width: 13px;
  height: 13px;
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(44px, 7vw, 82px);
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease 0.2s both;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  margin-bottom: 36px;
  animation: fadeInUp 0.9s ease 0.35s both;
}

.hero-subtitle strong { color: var(--gold-light); }

/* Single pill CTA */
.btn-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 100px;
  transition: var(--transition);
  animation: fadeInUp 0.9s ease 0.5s both;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-hero-pill:hover {
  background: var(--gold);
  color: var(--teal-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(199, 164, 126, 0.5);
}

.btn-hero-pill i {
  width: 18px;
  height: 18px;
  background: var(--teal-dark);
  color: var(--white);
  border-radius: 50%;
  padding: 3px;
  flex-shrink: 0;
  transition: var(--transition);
}

.btn-hero-pill:hover i {
  background: var(--teal-dark);
}

/* Bottom Cards Row */
.hero-bottom-cards {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  gap: 20px;
  padding: 0 32px 32px;
  align-items: flex-end;
}

.hero-bottom-card {
  background: rgba(10, 28, 40, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
  animation: fadeInUp 1s ease 0.7s both;
}

.hero-card-thumb {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-text h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.hero-card-text p {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-bottom: 10px;
}

.hero-card-link {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-light);
  transition: var(--transition-fast);
}

.hero-card-link:hover { color: var(--white); }

.hero-bottom-card-testimony {
  flex-direction: column;
  gap: 14px;
}

.hero-testimony-quote {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  font-style: italic;
}

.hero-testimony-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-testimony-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-testimony-name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
}

.hero-testimony-role {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

/* Remove old hero elements no longer used */
.hero-cta-group, .btn-hero-primary, .btn-hero-secondary,
.hero-stats, .hero-stat, .hero-stat-divider, .hero-pattern,
.hero-scroll-indicator, .scroll-dot { display: none; }

/* ==============================
   TRUST BAR — Rounded Card
============================== */
.trust-bar {
  background: var(--cream);
  padding: 16px 24px 48px;
}

.trust-card {
  background: var(--teal-dark);
  border-radius: 100px;
  padding: 18px 36px;
  box-shadow: var(--shadow-md);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.trust-item i {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.trust-sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 18px;
}

/* ==============================
   KEUNGGULAN
============================== */
.keunggulan {
  background: var(--white);
}

.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.keunggulan-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.keunggulan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.keunggulan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.keunggulan-card:hover::before {
  transform: scaleX(1);
}

.keunggulan-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--teal-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.keunggulan-card:hover .keunggulan-icon-wrap {
  background: var(--teal);
}

.keunggulan-icon-wrap i {
  width: 28px;
  height: 28px;
  color: var(--teal);
  transition: var(--transition);
}

.keunggulan-card:hover .keunggulan-icon-wrap i {
  color: var(--gold-light);
}

.keunggulan-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--teal-dark);
  font-weight: 700;
  margin-bottom: 12px;
}

.keunggulan-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* USP Banner */
.usp-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-mid) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: flex;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.usp-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(199, 164, 126, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.usp-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'%3E%3Cpolygon points='30,3 38,14 50,14 42,22 45,34 34,28 22,34 25,22 17,14 29,14'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.usp-banner-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: rgba(199, 164, 126, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(199, 164, 126, 0.3);
  position: relative;
  z-index: 1;
}

.usp-banner-icon i {
  width: 32px;
  height: 32px;
  color: var(--gold-light);
}

.usp-banner-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.usp-banner-content h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 10px;
}

.usp-banner-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.7;
}

.btn-usp {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.btn-usp:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(199, 164, 126, 0.4);
}

/* ==============================
   PAKET SECTION
============================== */
.paket {
  background: var(--cream);
  position: relative;
}

.paket-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23174155' stroke-width='1'%3E%3Ccircle cx='50' cy='50' r='30'/%3E%3Ccircle cx='50' cy='50' r='20'/%3E%3Ccircle cx='50' cy='50' r='10'/%3E%3Cline x1='50' y1='0' x2='50' y2='100'/%3E%3Cline x1='0' y1='50' x2='100' y2='50'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

/* Tabs */
.pkg-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.pkg-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}

.pkg-tab i {
  width: 16px;
  height: 16px;
}

.pkg-tab:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.pkg-tab.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(23, 65, 85, 0.25);
}

.pkg-panel {
  display: none;
}

.pkg-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

/* Package Carousel */
.pkg-carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 10px 0 24px;
}

.pkg-carousel-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.pkg-carousel-track .pkg-card {
  flex: 0 0 calc(33.333% - 19px);
  box-sizing: border-box;
}

/* Package Carousel Navigation */
.pkg-carousel-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.pkg-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.pkg-nav-btn:hover {
  background: var(--teal-light);
  color: var(--white);
  border-color: transparent;
  transform: scale(1.05);
}

.pkg-dots {
  display: flex;
  gap: 8px;
}

.pkg-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(199, 164, 126, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.pkg-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

@media (max-width: 1024px) {
  .pkg-carousel-track .pkg-card {
    flex: 0 0 calc(50% - 14px);
  }
  .pkg-carousel-nav {
    display: flex;
  }
}

@media (max-width: 768px) {
  .pkg-carousel-track .pkg-card {
    flex: 0 0 100%;
  }
  .pkg-carousel-nav {
    display: flex;
  }
}

/* Package Cards */
.pkg-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.pkg-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.pkg-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(199, 164, 126, 0.3), var(--shadow-lg);
}

.pkg-card.featured:hover {
  box-shadow: 0 0 0 3px rgba(199, 164, 126, 0.5), var(--shadow-xl);
}

/* Rolex Green & Gold Card style */
.pkg-card.premium-rolex {
  border-color: #d4af37; /* Rolex Gold */
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2), var(--shadow-lg);
}

.pkg-card.premium-rolex:hover {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.4), var(--shadow-xl);
}

.pkg-card.premium-rolex .pkg-card-header {
  background: linear-gradient(135deg, #093c2a 0%, #115c41 100%); /* Rolex Green */
}

.pkg-card.premium-rolex .pkg-badge {
  background: #d4af37; /* Rolex Gold badge */
  color: #093c2a; /* Rolex Green text */
  border-color: transparent;
}

.pkg-card.premium-rolex .dest-tag {
  background: rgba(212, 175, 55, 0.15);
  color: #f7df94;
}

.pkg-card.premium-rolex .dest-tag i {
  color: #d4af37;
}

.pkg-card.premium-rolex .pkg-duration i {
  color: #d4af37;
}

.pkg-card.premium-rolex .pkg-includes li i {
  color: #d4af37; /* Gold checkmarks */
}

.pkg-card.premium-rolex .btn-pkg-cta {
  background: #093c2a; /* Rolex Green Button */
  color: var(--white);
}

.pkg-card.premium-rolex .btn-pkg-cta:hover {
  background: #d4af37; /* Rolex Gold on hover */
  color: #093c2a;
  box-shadow: 0 8px 20px rgba(9, 60, 42, 0.3);
}

/* Infant pricing CTA button */
.price-cta-link {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
  background: rgba(199, 164, 126, 0.12);
  border: 1px solid rgba(199, 164, 126, 0.3);
  padding: 5px 14px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}

.price-cta-link:hover {
  background: var(--gold);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-1px);
}

/* Rolex card specific override for infant CTA */
.pkg-card.premium-rolex .price-cta-link {
  color: #d4af37;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.pkg-card.premium-rolex .price-cta-link:hover {
  background: #d4af37;
  color: #093c2a;
  border-color: transparent;
}

.pkg-card-header {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 28px 24px 24px;
  position: relative;
  overflow: hidden;
}

.pkg-card.featured .pkg-card-header {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-light) 100%);
}

.pkg-card-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.07)' stroke-width='1'%3E%3Cpolygon points='30,3 38,14 50,14 42,22 45,34 34,28 22,34 25,22 17,14 29,14'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.pkg-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.pkg-badge.featured {
  background: var(--teal);
  color: var(--white);
}

.pkg-badge.premium {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.pkg-destinations {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.dest-tag {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 100px;
}

.dest-tag i {
  width: 10px;
  height: 10px;
}

.pkg-name {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.pkg-card.featured .pkg-name {
  color: var(--teal-dark);
}

.pkg-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.pkg-card.featured .pkg-duration {
  color: rgba(13, 45, 61, 0.75);
}

.pkg-duration i {
  width: 14px;
  height: 14px;
}

.pkg-tagline {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.pkg-card.featured .pkg-tagline {
  color: rgba(13, 45, 61, 0.65);
}

.pkg-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Pricing Table */
.pricing-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.pricing-header {
  display: flex;
  justify-content: space-between;
  background: var(--cream-dark);
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  transition: var(--transition-fast);
}

.pricing-row:hover {
  background: var(--cream);
}

.pricing-type {
  display: flex;
  align-items: center;
  gap: 10px;
}

.room-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 100px;
  text-transform: uppercase;
}

.room-badge.quad {
  background: rgba(23, 65, 85, 0.1);
  color: var(--teal);
}

.room-badge.triple {
  background: rgba(199, 164, 126, 0.15);
  color: var(--gold-dark);
}

.room-badge.double {
  background: rgba(45, 55, 72, 0.08);
  color: var(--text);
}

.room-badge.infant {
  background: rgba(76, 175, 80, 0.1);
  color: #2e7d32;
}

.room-desc {
  font-size: 12px;
  color: var(--text-muted);
}

.price-main {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--teal-dark);
}

.infant-row .price-main {
  color: #2e7d32;
}

.pkg-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.pkg-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}

.pkg-includes li i {
  width: 16px;
  height: 16px;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-pkg-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 100px;
  transition: var(--transition);
  margin-top: auto;
}

.btn-pkg-cta:hover {
  background: var(--teal-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(23, 65, 85, 0.3);
}

.btn-pkg-cta.featured {
  background: var(--gold);
  color: var(--teal-dark);
}

.btn-pkg-cta.featured:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 20px rgba(199, 164, 126, 0.4);
}

.btn-pkg-cta i {
  width: 16px;
  height: 16px;
}

/* Special Grid */
.special-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 840px;
  margin: 0 auto;
}

.pkg-card-special {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pkg-card-special:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.pkg-special-icon {
  width: 68px;
  height: 68px;
  background: var(--teal-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.pkg-special-icon.premium {
  background: var(--gold-pale);
}

.pkg-special-icon.haji {
  background: rgba(34, 197, 94, 0.1);
}

.pkg-special-icon.furoda {
  background: rgba(139, 92, 246, 0.1);
}

.pkg-special-icon i {
  width: 32px;
  height: 32px;
  color: var(--teal);
}

.pkg-special-icon.premium i { color: var(--gold-dark); }
.pkg-special-icon.haji i { color: #16a34a; }
.pkg-special-icon.furoda i { color: #7c3aed; }

.pkg-card-special h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--teal-dark);
  font-weight: 700;
}

.pkg-card-special > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.special-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.special-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.special-features li i {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex-shrink: 0;
}

.btn-special-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 24px;
  border-radius: 100px;
  transition: var(--transition);
  margin-top: 8px;
}

.btn-special-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(23, 65, 85, 0.3);
}

.btn-special-cta.premium {
  background: var(--gold);
  color: var(--teal-dark);
}

.btn-special-cta.premium:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 20px rgba(199, 164, 126, 0.4);
}

.btn-special-cta.haji {
  background: #16a34a;
}

.btn-special-cta.furoda {
  background: #7c3aed;
}

.btn-special-cta i {
  width: 16px;
  height: 16px;
}

/* ==============================
   INFO CAROUSEL
============================== */
.info-carousel-section {
  background: var(--teal-dark);
  position: relative;
  overflow: hidden;
}

.info-carousel-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='rgba(199,164,126,0.06)' stroke-width='1'%3E%3Cpolygon points='40,4 52,18 68,18 58,30 62,46 48,38 34,46 38,30 28,18 44,18'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.info-carousel-section .section-tag {
  background: rgba(199, 164, 126, 0.15);
  color: var(--gold-light);
  border-color: rgba(199, 164, 126, 0.25);
}

.info-carousel-section .section-title {
  color: var(--white);
}

.info-carousel-section .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

.info-carousel {
  position: relative;
  overflow: visible;
  padding-top: 45px;
}

.info-carousel-track {
  display: flex;
  will-change: transform;
}

.info-slide {
  min-width: 100%;
  background: var(--teal-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 40px 48px 40px 200px;
  backdrop-filter: blur(10px);
  flex-shrink: 0;
  position: relative;
  overflow: visible;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
}

.info-slide-popout {
  position: absolute;
  left: 16px;
  bottom: 0;
  width: 165px;
  height: 124%;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  z-index: 3;
}

.info-popout-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom left;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}

.info-slide-content {
  position: relative;
  z-index: 1;
}

.info-slide-tag {
  display: inline-block;
  background: rgba(199, 164, 126, 0.15);
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.info-slide h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 14px;
}

.info-slide p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  max-width: 680px;
  margin-bottom: 24px;
}

.info-cta {
  display: inline-flex;
  align-items: center;
  color: var(--gold-light);
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}

.info-cta:hover {
  color: var(--gold);
  gap: 4px;
}

.info-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.info-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.info-nav-btn:hover {
  background: var(--gold);
  color: var(--teal-dark);
  border-color: var(--gold);
}

.info-nav-btn i {
  width: 18px;
  height: 18px;
}

.info-dots {
  display: flex;
  gap: 8px;
}

.info-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: var(--transition);
}

.info-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ==============================
   TESTIMONY
============================== */
.testimony {
  position: relative;
  background-image: linear-gradient(rgba(10, 25, 47, 0.88), rgba(10, 25, 47, 0.88)), url('PHOTO-2024-08-01-13-38-13.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.testimony .section-title {
  color: var(--white);
}

.testimony .section-desc {
  color: rgba(255, 255, 255, 0.7);
}

.testimony .section-tag {
  background: rgba(199, 164, 126, 0.2);
  color: var(--gold-light);
}

.testimony-carousel {
  position: relative;
  overflow: hidden;
}

.testimony-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimony-card {
  min-width: 100%;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.testimony-stars {
  font-size: 24px;
  color: #f59e0b;
  margin-bottom: 20px;
  letter-spacing: 4px;
}

.testimony-text {
  font-size: 18px;
  color: var(--text);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 32px;
  position: relative;
}

.testimony-text::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 80px;
  color: var(--teal-pale);
  position: absolute;
  top: -20px;
  left: -16px;
  line-height: 1;
  z-index: 0;
}

.testimony-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-size: 15px;
  color: var(--teal-dark);
  font-weight: 700;
  margin-bottom: 2px;
}

.author-info span {
  font-size: 13px;
  color: var(--text-muted);
}

.testimony-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testimony-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.testimony-btn:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  transform: scale(1.05);
}

.testimony-btn i {
  width: 20px;
  height: 20px;
}

.testimony-dots {
  display: flex;
  gap: 8px;
}

.testimony-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.testimony-dot.active {
  background: var(--teal);
  width: 24px;
  border-radius: 4px;
}

/* ==============================
   GALLERY
============================== */
.gallery-section {
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 45, 61, 0.9) 0%, rgba(13, 45, 61, 0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

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

.gallery-overlay i {
  width: 28px;
  height: 28px;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  padding: 5px;
  box-sizing: content-box;
}

.gallery-overlay span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
  visibility: visible;
  opacity: 1;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius-md);
  object-fit: contain;
  box-shadow: var(--shadow-xl);
}

.lightbox-caption {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-close i {
  width: 18px;
  height: 18px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-nav:hover {
  background: var(--gold);
  color: var(--teal-dark);
}

.lightbox-nav.prev { left: -64px; }
.lightbox-nav.next { right: -64px; }

.lightbox-nav i {
  width: 22px;
  height: 22px;
}

/* ==============================
   CTA BANNER
============================== */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 50%, var(--teal-light) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'%3E%3Cpolygon points='30,3 38,14 50,14 42,22 45,34 34,28 22,34 25,22 17,14 29,14'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-banner-content {
  text-align: center;
}

.cta-banner-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-banner-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.cta-banner-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--teal-dark);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(199, 164, 126, 0.3);
}

.btn-cta-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(199, 164, 126, 0.5);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  transition: var(--transition);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.btn-cta-primary i, .btn-cta-secondary i {
  width: 18px;
  height: 18px;
}

/* ==============================
   LEGALITAS
============================== */
.legalitas {
  background: var(--cream);
}

.legalitas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.legalitas-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legalitas-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-pale);
}

.legalitas-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.legalitas-icon i {
  width: 24px;
  height: 24px;
  color: var(--teal);
}

.legalitas-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: var(--gold-pale);
  padding: 3px 10px;
  border-radius: 100px;
}

.legalitas-content h3 {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--teal-dark);
  font-weight: 800;
  line-height: 1;
}

.legalitas-full {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.legalitas-number {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-pale);
  padding: 4px 12px;
  border-radius: 100px;
  display: inline-block;
}

.legalitas-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.legalitas-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--teal-pale);
  border: 1px solid rgba(23, 65, 85, 0.15);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--teal);
  line-height: 1.6;
}

.legalitas-note i {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==============================
   FAQ
============================== */
.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cream);
  transition: var(--transition-fast);
}

.faq-item.open {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-dark);
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--teal);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--teal);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.faq-answer p + p {
  padding-top: 0;
}

.faq-answer p strong {
  color: var(--text);
}

/* FAQ Sidebar */
.faq-sidebar-card {
  background: var(--teal);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: sticky;
  top: 100px;
}

.faq-sidebar-card i {
  width: 40px;
  height: 40px;
  color: var(--gold-light);
}

.faq-sidebar-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--white);
  font-weight: 700;
}

.faq-sidebar-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.btn-faq-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  width: 100%;
  transition: var(--transition);
}

.btn-faq-wa:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.btn-faq-wa i {
  width: 16px;
  height: 16px;
  color: var(--white);
}

.faq-sidebar-hours {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  text-align: left;
  width: 100%;
}

.faq-sidebar-hours i {
  width: 16px;
  height: 16px;
  color: var(--gold-light);
  margin-top: 2px;
  flex-shrink: 0;
}

.faq-sidebar-hours span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

/* ==============================
   CTA FINAL
============================== */
.cta-final {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-light) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-final-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='rgba(0,0,0,0.06)' stroke-width='1'%3E%3Cpolygon points='40,4 52,18 68,18 58,30 62,46 48,38 34,46 38,30 28,18 44,18'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-final-content {
  position: relative;
  z-index: 1;
}

.cta-final-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-final-icon i {
  width: 36px;
  height: 36px;
  color: var(--teal-dark);
}

.cta-final-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  color: var(--teal-dark);
  font-weight: 800;
  margin-bottom: 18px;
}

.cta-final-content p {
  font-size: 17px;
  color: rgba(13, 45, 61, 0.75);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.cta-final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.btn-final-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal-dark);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 18px 40px;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(13, 45, 61, 0.3);
}

.btn-final-primary:hover {
  background: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(13, 45, 61, 0.4);
}

.btn-final-primary i {
  width: 18px;
  height: 18px;
}

.cta-final-phone {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-final-phone i {
  width: 20px;
  height: 20px;
  color: var(--teal-dark);
}

.cta-final-phone span {
  display: block;
  font-size: 12px;
  color: rgba(13, 45, 61, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.cta-final-phone strong {
  display: block;
  font-size: 18px;
  color: var(--teal-dark);
  font-weight: 800;
}

/* ==============================
   FOOTER
============================== */
.footer {
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.footer-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cg fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'%3E%3Cpolygon points='40,4 52,18 68,18 58,30 62,46 48,38 34,46 38,30 28,18 44,18'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 72px 0 48px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  height: 48px;
  width: auto;
  filter: none;
  margin-bottom: 12px;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--gold-light);
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--teal-dark);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.social-btn i {
  width: 18px;
  height: 18px;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-item i {
  width: 16px;
  height: 16px;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

/* ==============================
   FLOATING ELEMENTS
============================== */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 14px 20px 14px 16px;
  border-radius: 100px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: floatPulse 3s ease-in-out infinite;
}

.float-wa:hover {
  background: #1ebe5d;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
  animation: none;
}

.float-wa-label {
  white-space: nowrap;
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.65); }
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(16px);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--teal-mid);
  transform: translateY(-3px);
}

.back-to-top i {
  width: 20px;
  height: 20px;
}

/* ==============================
   ANIMATIONS
============================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 1100px) {
  .keunggulan-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .legalitas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .section { padding: 72px 0; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-sidebar { order: -1; }
  .usp-banner { flex-direction: column; text-align: center; }
  .hero-stats { gap: 20px; }
  .hero-stat-divider { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.large { grid-column: span 2; grid-row: span 2; }
  
  .hero-bottom-cards {
    position: relative;
    padding: 24px;
    flex-direction: column;
    z-index: 3;
  }
  .hero-content {
    padding: 60px 20px 40px;
  }
  .hero-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--cream);
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 999;
  }
  .nav-links.open .nav-link {
    font-size: 20px;
    padding: 12px 24px;
  }
  .nav-hamburger { display: flex; z-index: 1000; }
  .btn-nav-cta { display: none; }
  .nav-actions { display: none; }
  .nav-mobile-action {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 4px 0;
  }
  .nav-mobile-action .btn-nav-dash {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
    font-size: 15px;
  }
  .nav-mobile-action .btn-nav-dash i {
    width: 16px;
    height: 16px;
  }
  .btn-nav-cta-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--teal-dark);
    color: var(--white);
    font-size: 15px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 100px;
    transition: var(--transition);
    white-space: nowrap;
    width: 100%;
    border: none;
    cursor: pointer;
  }
  .btn-nav-cta-mobile:hover {
    background: var(--teal);
  }
  .btn-nav-cta-mobile i {
    width: 16px;
    height: 16px;
  }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-stat-divider { display: none; }
  .pkg-grid, .special-grid { grid-template-columns: 1fr; }
  .keunggulan-grid { grid-template-columns: 1fr; }
  .legalitas-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .testimony-card { padding: 32px 24px; }
  .info-slide {
    padding: 24px 20px 32px;
    flex-direction: column;
    text-align: center;
    margin-top: 50px;
  }
  .info-slide-popout {
    position: relative;
    left: auto;
    bottom: auto;
    width: 140px;
    height: 150px;
    margin: -85px auto 10px;
  }
  .lightbox-nav.prev { left: -16px; }
  .lightbox-nav.next { right: -16px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item.large { grid-column: span 2; grid-row: span 2; }
  .hero { padding: 76px 12px 12px; }
  .hero-card { border-radius: 20px; }
}

@media (max-width: 480px) {
  .legalitas-grid { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; }
  .cta-final-actions { flex-direction: column; gap: 20px; }
  .float-wa-label { display: none; }
  .float-wa { padding: 14px; }
  .usp-banner { padding: 28px 20px; }
  .hero-title { font-size: 38px; }
  .hero-stats { padding: 20px; }
  .hero-bottom-cards { padding: 16px; gap: 12px; }
  .hero-bottom-card { padding: 16px; }
  .trust-card { border-radius: 20px; padding: 16px 20px; }
  .trust-bar { padding: 12px 16px 36px; }
}

/* ==============================
   PRINT STYLES
============================== */
@media print {
  .navbar, .float-wa, .back-to-top, .scroll-progress,
  .hero-cta-group, .cta-banner, .cta-final, .footer { display: none !important; }
  .hero { min-height: auto; padding: 40px 0; }
  .section { padding: 40px 0; }
}

/* ==============================
   EXTRA POLISH
============================== */

/* Price hover highlight on package cards */
.pricing-row:hover .price-main {
  color: var(--teal);
}

/* Smooth image loading */
.gallery-item img,
.hero-bg-img {
  will-change: transform;
}

/* Subtle glow on featured card */
.pkg-card.featured {
  position: relative;
}
.pkg-card.featured::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  z-index: -1;
  opacity: 0.5;
  transition: opacity 0.35s ease;
}
.pkg-card.featured:hover::after {
  opacity: 1;
}

/* Testimony quote glyph color */
.testimony-text::before {
  color: rgba(23, 65, 85, 0.06);
}

/* Keunggulan card stagger delay on reveal */
.keunggulan-grid .reveal:nth-child(1) { transition-delay: 0s; }
.keunggulan-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.keunggulan-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.keunggulan-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.keunggulan-grid .reveal:nth-child(5) { transition-delay: 0.32s; }
.keunggulan-grid .reveal:nth-child(6) { transition-delay: 0.40s; }

/* Legalitas card stagger */
.legalitas-grid .reveal:nth-child(1) { transition-delay: 0s; }
.legalitas-grid .reveal:nth-child(2) { transition-delay: 0.10s; }
.legalitas-grid .reveal:nth-child(3) { transition-delay: 0.20s; }
.legalitas-grid .reveal:nth-child(4) { transition-delay: 0.30s; }

/* Pkg card stagger */
.pkg-grid .reveal:nth-child(1) { transition-delay: 0s; }
.pkg-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.pkg-grid .reveal:nth-child(3) { transition-delay: 0.24s; }

/* Gallery grid stagger */
.gallery-grid .reveal:nth-child(1) { transition-delay: 0s; }
.gallery-grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.gallery-grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.gallery-grid .reveal:nth-child(4) { transition-delay: 0.21s; }
.gallery-grid .reveal:nth-child(5) { transition-delay: 0.28s; }
.gallery-grid .reveal:nth-child(6) { transition-delay: 0.35s; }

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* Selection color */
::selection {
  background: var(--teal);
  color: var(--white);
}

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

/* ==============================
   JADWAL KEBERANGKATAN
============================== */
.jadwal-section {
  background: var(--cream);
  position: relative;
}

.jadwal-tag {
  background: var(--gold-pale) !important;
  color: var(--gold-dark) !important;
  border-color: rgba(199, 164, 126, 0.3) !important;
}

.jadwal-carousel-wrapper {
  position: relative;
  padding: 0 56px;
}

.jadwal-carousel {
  display: flex;
  gap: 24px;
  overflow: hidden;
  scroll-behavior: smooth;
  padding: 8px 4px 16px;
}

.jadwal-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.jadwal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.jadwal-card.featured-jadwal {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(199, 164, 126, 0.25);
}

.jadwal-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.jadwal-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.jadwal-card:hover .jadwal-card-img img {
  transform: scale(1.06);
}

.jadwal-placeholder {
  background: var(--cream-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

.jadwal-placeholder::before {
  content: '';
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex;
}

.jadwal-card-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.jadwal-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.jadwal-badge-trip {
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.featured-jadwal .jadwal-badge-trip {
  background: var(--gold-pale);
  color: var(--gold-dark);
}

.jadwal-badge-confirm {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}

.jadwal-badge-confirm i {
  width: 11px;
  height: 11px;
}

.jadwal-name {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--teal-dark);
  font-weight: 700;
  line-height: 1.3;
}

.jadwal-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.jadwal-duration i {
  width: 13px;
  height: 13px;
  color: var(--teal);
  flex-shrink: 0;
}

.jadwal-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

.jadwal-price-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

.jadwal-price {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: var(--teal-dark);
  line-height: 1;
}

.featured-jadwal .jadwal-price {
  color: var(--gold-dark);
}

.jadwal-jt {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 2px;
}

.jadwal-airline {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}

.jadwal-airline i {
  width: 13px;
  height: 13px;
  color: var(--teal);
}

.btn-jadwal-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 100px;
  transition: var(--transition);
  margin-top: auto;
}

.btn-jadwal-cta:hover {
  background: var(--teal-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(23, 65, 85, 0.3);
}

.btn-jadwal-cta.featured {
  background: var(--gold);
  color: var(--teal-dark);
}

.btn-jadwal-cta.featured:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 16px rgba(199, 164, 126, 0.4);
}

/* Jadwal Nav Buttons */
.jadwal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.jadwal-nav:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  transform: translateY(-50%) scale(1.05);
}

.jadwal-nav i { width: 20px; height: 20px; }
.jadwal-nav.prev { left: 0; }
.jadwal-nav.next { right: 0; }

.jadwal-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.jadwal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.jadwal-dot.active {
  background: var(--teal);
  width: 24px;
  border-radius: 4px;
}

/* ==============================
   GALLERY FILTERABLE (NEW)
============================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filter {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.gallery-filter.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--teal-dark);
  box-shadow: 0 4px 14px rgba(199, 164, 126, 0.35);
}

.gallery-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.gallery-card.hidden {
  display: none;
}

.gallery-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.gallery-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-img img {
  transform: scale(1.08);
}

.gallery-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--white);
}

.gallery-card-loc {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-dark);
}

.gallery-card-loc i {
  width: 12px;
  height: 12px;
  color: var(--teal);
}

.gallery-card-batch {
  font-size: 10px;
  font-weight: 700;
  background: var(--teal);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

/* ==============================
   CTA HORIZONTAL BANNER WITH STAFF CUTOUT
============================== */
.cta-horizontal-section {
  padding: 60px 0 40px;
  background: var(--cream);
  overflow: visible;
}

.cta-banner-card {
  background: var(--teal-dark);
  border-radius: 28px;
  padding: 36px 48px 36px 195px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  box-shadow: 0 16px 40px rgba(13, 45, 61, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-staff-wrap {
  position: absolute;
  left: 16px;
  bottom: 0;
  width: 170px;
  height: 124%;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  z-index: 2;
}

.cta-staff-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom left;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
}

.cta-horizontal-text {
  flex: 1;
  position: relative;
  z-index: 1;
}

.cta-horizontal-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2.2vw, 22px);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.35;
  letter-spacing: 0.5px;
}

.cta-horizontal-text p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 580px;
}

.cta-action {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.btn-cta-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 6px 20px rgba(199, 164, 126, 0.35);
}

.btn-cta-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(199, 164, 126, 0.5);
}

/* ==============================
   LEGALITAS REDESIGN (DOC CARDS)
============================== */
.legalitas-intro {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.legalitas-intro p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 14px;
}

.legalitas-intro p:last-child {
  margin-bottom: 0;
}

.legalitas-doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.legalitas-doc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.legalitas-doc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.legalitas-doc-header {
  padding: 22px 24px 16px;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.legalitas-doc-header h3 {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--teal-dark);
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.legalitas-doc-num {
  font-size: 12px;
  color: var(--text-muted);
}

.legalitas-doc-num strong {
  color: var(--teal);
}

.legalitas-doc-img {
  flex: 1;
  min-height: 220px;
  overflow: hidden;
  position: relative;
}

.legalitas-doc-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s ease;
}

.legalitas-doc-card:hover .legalitas-doc-img img {
  transform: scale(1.03);
}

.legalitas-doc-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--cream);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
}

.legalitas-doc-placeholder i {
  width: 40px;
  height: 40px;
  color: var(--teal-pale);
  opacity: 0.6;
}

.btn-legalitas-zoom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--teal-dark);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.btn-legalitas-zoom:hover {
  background: var(--teal);
}

.btn-legalitas-zoom i {
  width: 15px;
  height: 15px;
}

/* ==============================
   RESPONSIVE — NEW SECTIONS
============================== */
@media (max-width: 1100px) {
  .jadwal-card { flex: 0 0 calc(50% - 12px); }
  .gallery-grid-new { grid-template-columns: repeat(3, 1fr); }
  .legalitas-doc-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .gallery-grid-new { grid-template-columns: repeat(2, 1fr); }
  .legalitas-doc-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner-card {
    padding: 32px 32px 32px 160px;
  }
  .cta-staff-wrap {
    width: 140px;
  }
}

@media (max-width: 768px) {
  .legalitas-doc-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .cta-banner-card {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
    margin-top: 50px;
  }
  .cta-staff-wrap {
    position: relative;
    left: auto;
    bottom: auto;
    width: 150px;
    height: 160px;
    margin-top: -90px;
    margin-bottom: -10px;
  }
  .cta-staff-img {
    object-position: center bottom;
  }
  .btn-cta-gold {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .gallery-grid-new { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

/* ==============================
   COMING SOON MODAL
============================== */
.coming-soon-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.coming-soon-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.coming-soon-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 45, 61, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.coming-soon-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.coming-soon-modal.open .coming-soon-card {
  transform: scale(1);
}

.coming-soon-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.coming-soon-close:hover {
  background: var(--teal-dark);
  color: var(--white);
  border-color: var(--teal-dark);
}

.coming-soon-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-pale);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.coming-soon-icon i {
  width: 32px;
  height: 32px;
}

.coming-soon-badge {
  display: inline-block;
  background: var(--teal-pale);
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.coming-soon-title {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--teal-dark);
  font-weight: 800;
  margin-bottom: 12px;
}

.coming-soon-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.btn-coming-soon-ok {
  width: 100%;
  background: var(--teal-dark);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-coming-soon-ok:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(23, 65, 85, 0.3);
}


