/* ============================================================
   WIPA TOUR - Modern Responsive Landing Page Stylesheet
   Color Theme: Emerald Teal & Islamic Warm Gold
   ============================================================ */

:root {
  /* Brand Colors */
  --primary: #0d9488;
  --primary-hover: #0f766e;
  --primary-dark: #064e3b;
  --primary-light: #ccfbf1;
  --primary-gradient: linear-gradient(135deg, #0f766e 0%, #0d9488 100%);

  --gold: #d97706;
  --gold-light: #fef3c7;
  --gold-accent: #f59e0b;
  --gold-gradient: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);

  /* Neutral Colors */
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-dark: #0f172a;
  --bg-dark-surface: #1e293b;
  
  --text-main: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  --border-light: #e2e8f0;
  --border-subtle: #f1f5f9;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.06);

  /* Radius & Transitions */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography Helpers */
.text-gold {
  color: var(--gold);
}

.text-primary {
  color: var(--primary);
}

.gradient-text-gold {
  background: linear-gradient(135deg, #fef08a 0%, #fbbf24 50%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px auto;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--bg-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* ============================================================
   TOP BAR & NAVIGATION
   ============================================================ */
.top-announcement-bar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.announcement-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.announcement-left, .announcement-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.announcement-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.98);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 78px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.03);
}

.drawer-logo-img {
  height: 44px;
}

.logo-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(13, 148, 136, 0.35);
}

.brand-text-col {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary-dark);
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
  transition: var(--transition);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

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

.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.btn-cta-wa:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.45);
}

.hamburger-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--border-subtle);
  color: var(--text-main);
  font-size: 1.25rem;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: white;
  z-index: 1000;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 20px;
}

.drawer-close {
  font-size: 1.4rem;
  color: var(--text-muted);
}

.drawer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.drawer-nav-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 12px;
}

.drawer-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  background-color: #064e3b;
  color: white;
  padding: 90px 0 130px 0;
  overflow: hidden;
}

/* Background Video Hero */
.hero-video-bg-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 0.75;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 78, 59, 0.88) 0%, rgba(15, 23, 42, 0.84) 100%);
  z-index: 1;
  pointer-events: none;
}

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

.hero-shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
}

.hero-shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-badges-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-rating-pill i {
  color: #fbbf24;
}

.hero-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 158, 11, 0.2);
  color: #fde68a;
  border: 1px solid rgba(245, 158, 11, 0.4);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 34px;
  max-width: 580px;
  line-height: 1.65;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-gradient);
  color: white;
  padding: 15px 30px;
  border-radius: var(--radius-full);
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(217, 119, 6, 0.4);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.55);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: white;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.hero-highlights-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.hero-hl-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-hl-item i {
  color: #34d399;
  font-size: 1.1rem;
}

/* ============================================================
   HERO RIGHT VISUAL: ANIMATED IMAGE CARD & SLIDER
   ============================================================ */
.hero-animated-card-wrap {
  position: relative;
  animation: floatHeroCard 5s ease-in-out infinite;
}

@keyframes floatHeroCard {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Floating Badges */
.hero-floating-badge {
  position: absolute;
  z-index: 15;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-floating-badge.badge-top-right {
  top: -16px;
  right: 12px;
  animation: floatBadgeTop 3.8s ease-in-out infinite alternate;
}

.hero-floating-badge.badge-bottom-left {
  bottom: -18px;
  left: 12px;
  animation: floatBadgeBottom 4.2s ease-in-out infinite alternate;
}

@keyframes floatBadgeTop {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-6px) rotate(1.5deg);
  }
}

@keyframes floatBadgeBottom {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(6px) rotate(-1.5deg);
  }
}

.live-dot-ping {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: #f59e0b;
  position: relative;
  display: inline-block;
}

.live-dot-ping::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  background: rgba(245, 158, 11, 0.6);
  animation: pingDot 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pingDot {
  0% {
    transform: scale(0.8);
    opacity: 0.9;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Card Outer Container & Animated Glow Border */
.hero-card-featured {
  background: #0f172a;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.animated-glow-border::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.6) 0%,
    rgba(13, 148, 136, 0.2) 35%,
    rgba(251, 191, 36, 0.7) 70%,
    rgba(13, 148, 136, 0.6) 100%
  );
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
  animation: borderRotate 8s linear infinite;
}

@keyframes borderRotate {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}

/* Slider Track & Slide */
.hero-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  z-index: 1;
}

.hero-flyer-card {
  min-height: 500px;
  height: 520px;
  position: relative;
  cursor: pointer;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.6s;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

/* Gambar Flyer Poster */
.hero-flyer-img-box {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0f172a;
}

.hero-flyer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-flyer-img.ken-burns {
  animation: kenBurnsFlyer 10s ease-in-out infinite alternate;
  transform-origin: center center;
}

@keyframes kenBurnsFlyer {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.06) translate(-1%, -1%);
  }
}

/* Bottom Action Bar */
.hero-flyer-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 38px 20px 20px 20px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(15, 23, 42, 0.72) 30%,
    rgba(15, 23, 42, 0.94) 100%
  );
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: auto;
}

.hero-flyer-badge {
  display: inline-block;
  background: #fbbf24;
  color: #78350f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 2px;
}

.hero-flyer-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: white;
  line-height: 1.35;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-flyer-cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-hero-flyer-wa {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: white;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 11px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.btn-hero-flyer-wa:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.55);
}

.btn-hero-flyer-zoom {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
}

.btn-hero-flyer-zoom:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

/* Hero Slider Controls */
.hero-card-controls {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 12;
  pointer-events: auto;
}

.hero-dots-row {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.hero-slide-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide-dot.active {
  width: 22px;
  background: #fbbf24;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
}

.hero-arrows-row {
  display: flex;
  gap: 6px;
}

.hero-arrow-btn {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
}

.hero-arrow-btn:hover {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
  transform: scale(1.1);
}

/* Moving Progress Bar */
.hero-progress-bar-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  z-index: 15;
}

.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gold-gradient);
  transition: width 0.1s linear;
}

/* ============================================================
   METRICS BAR (SOCIAL PROOF COUNTER)
   ============================================================ */
.metrics-section {
  margin-top: -55px;
  position: relative;
  z-index: 10;
  margin-bottom: 60px;
}

.metrics-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 30px 40px;
  border: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.metric-col {
  display: flex;
  align-items: center;
  gap: 16px;
}

.metric-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.metric-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--bg-dark);
  line-height: 1.1;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================================
   KEUNGGULAN SECTION (WHY CHOOSE US)
   ============================================================ */
.features-section {
  padding: 70px 0;
}

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

.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(13, 148, 136, 0.3);
}

.feature-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-box {
  background: var(--primary);
  color: white;
}

.feature-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   PAKET SHOWCASE & FILTER
   ============================================================ */
.packages-section {
  padding: 80px 0;
  background: #f1f5f9;
}

.package-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 700;
  background: white;
  color: var(--text-muted);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.tab-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.tab-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(13, 148, 136, 0.3);
}

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

/* Package Flyer Cards (Menampilkan Brosur Gambar Besar Saja Sesuai Permintaan) */
.package-flyer-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  position: relative;
}

.package-flyer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.16);
  border-color: rgba(13, 148, 136, 0.4);
}

.package-flyer-img-box {
  position: relative;
  width: 100%;
  height: 480px;
  background: #0f172a;
  overflow: hidden;
  cursor: pointer;
}

.package-flyer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.package-flyer-card:hover .package-flyer-img {
  transform: scale(1.04);
}

.package-flyer-hover-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.package-flyer-card:hover .package-flyer-hover-overlay {
  opacity: 1;
}

.btn-zoom-overlay {
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(12px);
  transition: transform 0.3s ease;
}

.package-flyer-card:hover .btn-zoom-overlay {
  transform: translateY(0);
}

.package-flyer-footer {
  padding: 14px 16px;
  background: white;
  border-top: 1px solid var(--border-light);
}

.btn-package-flyer-wa {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25D366;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-package-flyer-wa:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

@media (max-width: 768px) {
  .package-flyer-img-box {
    height: 420px;
  }
}

.package-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.package-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}

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

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

.package-badge-top {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  color: #fde68a;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
}

.package-duration-badge {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--primary);
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.package-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.package-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--bg-dark);
  line-height: 1.35;
  margin-bottom: 6px;
}

.package-tagline {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.package-specs-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.88rem;
}

.package-spec-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-main);
}

.package-spec-item i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}

.package-dates-tag {
  background: var(--border-subtle);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.package-dates-tag strong {
  color: var(--text-main);
}

.package-price-wrap {
  margin-top: auto;
  padding-top: 14px;
  margin-bottom: 16px;
}

.package-price-lbl {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.package-price-val {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--gold);
}

.package-actions {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 10px;
}

.btn-detail-pkg {
  background: var(--border-subtle);
  color: var(--text-main);
  padding: 10px 14px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

.btn-detail-pkg:hover {
  background: var(--border-light);
  color: var(--primary);
}

.btn-book-wa {
  background: #25D366;
  color: white;
  padding: 10px 14px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-book-wa:hover {
  background: #20ba59;
}

/* ============================================================
   FASILITAS & PERLENGKAPAN JAMAAH
   ============================================================ */
.amenities-section {
  padding: 80px 0;
}

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

.amenity-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.amenity-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.amenity-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: #fef3c7;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.amenity-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 6px;
}

.amenity-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================================
   TESTIMONIALS (GOOGLE REVIEWS SPOTLIGHT)
   ============================================================ */
.reviews-section {
  padding: 85px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
}

.google-review-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: white;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  border: 1px solid var(--border-light);
}

.google-g-logo {
  font-size: 1.8rem;
  font-weight: 900;
  background: conic-gradient(from -45deg, #ea4335 110deg, #4285f4 90deg 180deg, #34a853 180deg 270deg, #fbbc05 270deg) text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.google-rating-score {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--bg-dark);
}

.google-stars {
  color: #f59e0b;
  font-size: 1.15rem;
}

.google-review-count {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 36px;
}

.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.review-stars {
  color: #f59e0b;
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.review-quote {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 22px;
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.author-avatar-initials {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.author-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--bg-dark);
}

.author-role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.reviews-bottom-action {
  text-align: center;
}

.btn-see-google {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--text-main);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.btn-see-google:hover {
  border-color: #4285f4;
  color: #1a73e8;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   KONSULTASI & ESTIMASI CEPAT (FORM)
   ============================================================ */
.consultation-section {
  padding: 75px 0;
}

.consult-box {
  background: var(--primary-dark);
  background-image: linear-gradient(135deg, #064e3b 0%, #0d9488 100%);
  border-radius: var(--radius-lg);
  padding: 50px;
  color: white;
  box-shadow: var(--shadow-xl);
}

.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.consult-left h3 {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
}

.consult-left p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.consult-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
}

.consult-perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.consult-perk-item i {
  color: #fde68a;
}

.consult-form-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 30px;
  color: var(--text-main);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin-bottom: 6px;
}

.form-input, .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-main);
  transition: var(--transition);
  background: #f8fafc;
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

.btn-submit-consult {
  width: 100%;
  padding: 14px;
  background: #25D366;
  color: white;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-submit-consult:hover {
  background: #20ba59;
  transform: translateY(-2px);
}

/* ============================================================
   LOKASI KANTOR & KONTAK
   ============================================================ */
.location-section {
  padding: 80px 0;
  background: #f8fafc;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}

.location-info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.loc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #dbeafe;
  color: #1e40af;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.loc-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--bg-dark);
  margin-bottom: 12px;
}

.loc-address {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 14px;
}

.loc-landmark-alert {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fef3c7;
  border: 1px solid #fde68a;
  color: #92400e;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.loc-details-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.loc-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.loc-detail-row i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 3px;
  width: 18px;
}

.loc-detail-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.loc-detail-text span {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--bg-dark);
}

.loc-action-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-maps-directions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a73e8;
  color: white;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition);
}

.btn-maps-directions:hover {
  background: #1557b0;
  transform: translateY(-2px);
}

.btn-call-office {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--border-subtle);
  color: var(--text-main);
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.btn-call-office:hover {
  background: var(--border-light);
  color: var(--primary);
}

.location-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  min-height: 420px;
}

.location-map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-section {
  padding: 80px 0;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-question-btn {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--bg-dark);
  text-align: left;
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
  border: none;
}

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

.faq-icon-chevron {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.faq-item.active .faq-icon-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 22px 24px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 30px 0;
  font-size: 0.92rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.footer-brand-tag {
  color: #fbbf24;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-brand-desc {
  line-height: 1.6;
  margin-bottom: 22px;
}

.footer-social-row {
  display: flex;
  gap: 12px;
}

.social-circle-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: var(--transition);
}

.social-circle-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-link {
  transition: var(--transition);
}

.footer-nav-link:hover {
  color: white;
  padding-left: 6px;
}

.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
}

/* ============================================================
   MODAL DETAIL PAKET
   ============================================================ */
.pkg-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.pkg-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.pkg-modal-dialog {
  background: white;
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.pkg-modal.active .pkg-modal-dialog {
  transform: translateY(0);
}

.pkg-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  background: white;
  z-index: 10;
}

.pkg-modal-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--bg-dark);
}

.pkg-modal-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--border-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.pkg-modal-close:hover {
  background: #fee2e2;
  color: #ef4444;
}

.pkg-modal-body {
  padding: 24px;
}

.modal-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg-dark);
  margin: 18px 0 10px 0;
}

.modal-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.92rem;
}

.modal-check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.modal-check-item i.included {
  color: #10b981;
  margin-top: 3px;
}

.modal-check-item i.excluded {
  color: #ef4444;
  margin-top: 3px;
}

.pkg-modal-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
}

/* ============================================================
   FLOATING BUTTONS (STICKY WHATSAPP & BACK TO TOP)
   ============================================================ */
.floating-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.floating-wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  animation: pulseGreen 2.5s infinite;
}

.floating-wa-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.6);
}

.floating-wa-btn i {
  font-size: 1.5rem;
}

.btn-back-to-top {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: white;
  color: var(--text-main);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.btn-back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.btn-back-to-top:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

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

/* ============================================================
   PHOTO TESTIMONIALS CAROUSEL & LIGHTBOX
   ============================================================ */
.photo-testimonials-section {
  padding: 85px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.photo-carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  margin: 10px 0 24px 0;
}

.photo-carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 14px 4px;
}

.photo-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  will-change: transform;
}

.photo-carousel-card {
  flex: 0 0 calc((100% - 48px) / 3);
  height: 440px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: none !important;
  border: 1px solid var(--border-light);
  background: #ffffff;
  cursor: pointer;
  transition: var(--transition);
}

.photo-carousel-card:hover {
  transform: translateY(-4px);
  box-shadow: none !important;
  border-color: var(--primary);
}

.carousel-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: none !important;
  filter: none !important;
  background: #ffffff;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-carousel-card:hover .carousel-card-img {
  transform: scale(1.04);
}

.carousel-card-gradient {
  display: none !important;
  background: none !important;
  opacity: 0 !important;
  pointer-events: none;
}

.carousel-card-top-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.badge-verified-jamaah {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  color: #34d399;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(52, 211, 153, 0.3);
}

.btn-card-zoom {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition);
}

.photo-carousel-card:hover .btn-card-zoom {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.carousel-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 20px;
  z-index: 2;
  color: white;
}

.card-stars-row {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fbbf24;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.carousel-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 4px;
  color: #ffffff;
}

.carousel-card-meta {
  font-size: 0.78rem;
  color: #fde68a;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.carousel-card-quote {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}

.carousel-card-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #34d399;
  transition: var(--transition);
}

.photo-carousel-card:hover .carousel-card-action {
  gap: 10px;
  color: #6ee7b7;
}

/* Nav Arrows */
.carousel-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: white;
  color: var(--bg-dark);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: var(--transition);
}

.carousel-nav-btn.prev-btn {
  left: -22px;
}

.carousel-nav-btn.next-btn {
  right: -22px;
}

.carousel-nav-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(13, 148, 136, 0.4);
}

.carousel-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* Pagination Dots */
.carousel-dots-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: #cbd5e1;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.carousel-dot.active {
  width: 28px;
  background: var(--primary);
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.35);
}

.carousel-drag-hint {
  display: none;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Lightbox Modal */
.photo-lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.photo-lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-dialog {
  background: white;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.photo-lightbox-modal.active .lightbox-dialog {
  transform: translateY(0) scale(1);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.7);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 20;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: #ef4444;
  transform: rotate(90deg);
}

.lightbox-content-wrap {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  max-height: 90vh;
}

.lightbox-img-wrap {
  background: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lightbox-img {
  width: 100%;
  height: 100%;
  max-height: 540px;
  object-fit: cover;
}

.lightbox-caption-box {
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
  background: white;
}

.lightbox-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.lightbox-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--bg-dark);
  line-height: 1.3;
  margin-bottom: 8px;
}

.lightbox-caption-text {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 18px;
}

.lightbox-quote {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-main);
  font-style: italic;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  margin-bottom: 22px;
}

.lightbox-meta-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.lightbox-pkg-tag {
  color: var(--primary-dark);
  font-weight: 700;
}

.lightbox-loc-tag {
  color: var(--text-muted);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .metrics-card {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .consult-grid {
    grid-template-columns: 1fr;
  }
  .location-grid {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Carousel on tablet: 2 slides per view */
  .photo-carousel-card {
    flex: 0 0 calc((100% - 24px) / 2);
    height: 400px;
  }
  .carousel-nav-btn.prev-btn {
    left: 4px;
  }
  .carousel-nav-btn.next-btn {
    right: 4px;
  }
  .lightbox-content-wrap {
    grid-template-columns: 1fr;
  }
  .lightbox-img {
    max-height: 320px;
  }
  .lightbox-caption-box {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .brand-logo-img {
    height: 42px;
  }
  .nav-links, .nav-actions .btn-cta-wa {
    display: none;
  }
  .hamburger-btn {
    display: flex;
  }
  .hero-section {
    padding: 60px 0 100px 0;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-desc {
    font-size: 1rem;
  }
  .metrics-section {
    margin-top: -30px;
  }
  .metrics-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 16px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .consult-box {
    padding: 30px 20px;
  }
  .consult-left h3 {
    font-size: 1.8rem;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .floating-wa-btn span {
    display: none;
  }
  .floating-wa-btn {
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
    border-radius: var(--radius-full);
  }

  /* Carousel on mobile: 1 slide per view */
  .photo-carousel-card {
    flex: 0 0 100%;
    height: 420px;
  }
  .photo-carousel-track {
    gap: 16px;
  }
  .carousel-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }
  .carousel-nav-btn.prev-btn {
    left: 8px;
  }
  .carousel-nav-btn.next-btn {
    right: 8px;
  }
  .carousel-drag-hint {
    display: block;
  }
}

