/* ===================================================
   ARAFAH RAYA GEMILANG - UMROH NOVEMBER 2026
   Clean, Precise, White-Dominant Luxury Stylesheet
   =================================================== */

/* ===== CSS VARIABLES / DESIGN TOKENS (WHITE LUXURY THEME) ===== */
:root {
  /* White-Dominant Backgrounds */
  --bg-page: #ffffff;
  --bg-surface: #ffffff;
  --bg-subtle: #f8fafc;
  --bg-mint: #f0fdf4;
  --bg-gold-tint: #fffbeb;
  --bg-card: #ffffff;

  /* Typography Colors */
  --text-heading: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --white: #ffffff;

  /* Brand Islamic Emerald Green (Kubah Hijau & Raudhah) */
  --green-950: #022c22;
  --green-900: #064e3b;
  --green-800: #065f46;
  --green-700: #047857;
  --green-600: #059669;
  --green-500: #10b981;
  --green-400: #34d399;
  --green-100: #d1fae5;
  --green-50: #ecfdf5;

  /* Brand Ka'bah Gold & Kiswah Amber (Emas Kaligrafi & Multazam) */
  --gold-900: #713f12;
  --gold-800: #854d0e;
  --gold-700: #a16207;
  --gold-600: #ca8a04;
  --gold-500: #d4af37;
  --gold-400: #eab308;
  --gold-100: #fef9c3;
  --gold-50: #fffdf0;

  /* WhatsApp Brand */
  --wa-green: #25d366;
  --wa-dark: #128c7e;

  /* Typography */
  --font-main: 'Outfit', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing Grid */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Precision Borders */
  --border-light: #e2e8f0;
  --border-subtle: #edf2f7;
  --border-green: rgba(4, 120, 87, 0.28);
  --border-gold: rgba(212, 175, 55, 0.4);

  /* Elevation Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 12px 32px -4px rgba(0, 0, 0, 0.08), 0 4px 12px -2px rgba(0, 0, 0, 0.03);
  --shadow-green: 0 8px 24px -4px rgba(4, 120, 87, 0.3);
  --shadow-gold: 0 8px 24px -4px rgba(212, 175, 55, 0.3);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 160ms;
  --dur-normal: 260ms;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: var(--bg-subtle);
}
::-webkit-scrollbar-thumb {
  background: var(--green-600);
  border-radius: var(--radius-full);
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 700;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--dur-normal) var(--ease-out);
  box-shadow: 0 4px 16px rgba(4, 120, 87, 0.32);
  white-space: nowrap;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #047857 0%, #059669 100%);
  border-color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(4, 120, 87, 0.42);
  color: var(--white);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-sm  { padding: 0.55rem 1.35rem; font-size: 0.88rem; }
.btn-md  { padding: 0.8rem 1.85rem;  font-size: 1rem; }
.btn-lg  { padding: 1rem 2.2rem;     font-size: 1.05rem; }
.btn-xl  { padding: 1.15rem 2.6rem;  font-size: 1.12rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-700);
  font-family: var(--font-main);
  font-weight: 700;
  border: 1.5px solid var(--green-600);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--dur-normal) var(--ease-out);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-outline:hover {
  background: var(--green-50);
  border-color: var(--green-700);
  color: var(--green-800);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.15);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
  color: var(--white);
  font-family: var(--font-main);
  font-weight: 700;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--dur-normal) var(--ease-out);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #0f7a6e 0%, #22c35e 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  color: var(--white);
}

.wa-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Pulse Button Glow */
.pulse-btn {
  position: relative;
}

.pulse-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid var(--green-500);
  animation: pulseGlow 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
  pointer-events: none;
}

@keyframes pulseGlow {
  0%   { transform: scale(0.98); opacity: 0.8; }
  70%  { transform: scale(1.08); opacity: 0; }
  100% { transform: scale(1.12); opacity: 0; }
}

/* ===== SECTION COMMONS ===== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #fffdf0 0%, #ecfdf5 100%);
  color: var(--green-900);
  border: 1.5px solid var(--gold-500);
  padding: 0.4rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.16);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.22;
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
}

.section-desc {
  color: var(--text-body);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
}

.badge-gold {
  background: var(--gold-50);
  border: 1.5px solid var(--gold-500);
  color: var(--gold-900);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}

.badge-green {
  background: var(--green-50);
  border: 1.5px solid var(--green-600);
  color: var(--green-900);
  box-shadow: 0 2px 8px rgba(4, 120, 87, 0.15);
}

/* ===================================================
   NAVBAR (WHITE CRISP GLASS)
   =================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
  padding: 0.65rem 1.5rem;
  transition: all var(--dur-normal) var(--ease-out);
}

.navbar.scrolled {
  padding: 0.5rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  text-decoration: none;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  margin: 0 auto;
}

.nav-link {
  color: var(--text-body);
  font-weight: 600;
  font-size: 0.92rem;
  position: relative;
  transition: color var(--dur-fast);
  padding: 0.35rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--gold-500), var(--green-600));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur-normal) var(--ease-out);
  border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
  color: var(--green-700);
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px 10px;
  min-width: 44px;
  min-height: 44px;
  transition: all var(--dur-fast);
}

.hamburger:hover {
  background: var(--green-50);
  border-color: var(--green-400);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-heading);
  border-radius: 2px;
  transition: all var(--dur-normal) var(--ease-out);
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  padding: 1.25rem;
  margin-top: 0.75rem;
  animation: slideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mobile-menu.open {
  display: flex;
}

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

.mobile-menu-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.mobile-badge {
  font-size: 0.72rem;
  background: var(--green-50);
  color: var(--green-700);
  border: 1px solid var(--green-400);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-weight: 700;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mob-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--dur-fast);
  background: var(--bg-subtle);
}

.mob-icon {
  font-size: 1.15rem;
}

.mob-link:hover, .mob-link:active {
  background: var(--green-50);
  color: var(--green-700);
  transform: translateX(4px);
}

.mobile-menu-cta {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.btn-tel-quick {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--bg-subtle);
  color: var(--text-heading);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border-light);
  transition: background var(--dur-fast);
}

.btn-tel-quick:hover {
  background: var(--green-50);
  color: var(--green-700);
}

/* ===================================================
   HERO SECTION (WHITE-DOMINATED LUXURY SPLIT HERO)
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-page);
  padding-top: 6rem;
  padding-bottom: 3.5rem;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s var(--ease-out);
  transform: scale(1.04);
}

.hero-slide.active {
  opacity: 0.08; /* Very subtle so white elegance & contrast are pristine */
  animation: kenBurns 12s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.1) translate(1%, -1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.92) 50%,
    #ffffff 100%
  );
  z-index: 1;
}

.particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.3), transparent);
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: var(--space-3xl);
  align-items: center;
}

/* Left Column */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-bismillah {
  font-family: 'Amiri', serif;
  font-size: 1.85rem;
  color: var(--gold-800);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
}

.hero-badges-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.hero-brand-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-badge-logo {
  height: 22px;
  width: auto;
  object-fit: contain;
}

.hero-pill-company {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--green-800);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-heading {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: var(--space-lg);
}

.hero-subhead {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--green-700);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-title-main {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.2vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  background: linear-gradient(135deg, #064e3b 0%, #047857 32%, #854d0e 72%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.01em;
}

.hero-tagline {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-top: 0.35rem;
  max-width: 580px;
}

.hero-usp-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem var(--space-md);
  margin-bottom: var(--space-xl);
  width: 100%;
  max-width: 580px;
}

.hero-usp-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-md);
  transition: all var(--dur-normal);
}

.hero-usp-item:hover {
  background: var(--bg-mint);
  border-color: var(--green-300);
  transform: translateY(-2px);
}

.usp-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
}

.usp-text {
  display: flex;
  flex-direction: column;
}

.usp-text strong {
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.2;
}

.usp-text span {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-rating-stars {
  color: var(--gold-500);
  font-size: 1rem;
  letter-spacing: 2px;
}

.hero-rating-score {
  font-weight: 800;
  color: var(--text-heading);
}

.hero-rating-divider {
  color: var(--text-light);
}

.hero-rating-text {
  font-weight: 600;
}

/* Right Column: Floating Booking Card */
.hero-right {
  display: flex;
  justify-content: center;
}

.hero-booking-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: 0 16px 40px -8px rgba(6, 78, 59, 0.12), 0 4px 16px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 440px;
  position: relative;
  transition: transform var(--dur-normal) var(--ease-out);
}

.hero-booking-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-400);
}

.hbc-badge-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-mint);
  color: var(--green-800);
  border: 1px solid var(--green-300);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

.hbc-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hbc-flight-box {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.75rem var(--space-md);
  margin-bottom: var(--space-md);
}

.hbc-flight-icon {
  font-size: 1.8rem;
  animation: flyPlane 2.5s ease-in-out infinite alternate;
}

@keyframes flyPlane {
  from { transform: translateX(-3px) rotate(-4deg); }
  to   { transform: translateX(3px) rotate(4deg); }
}

.hbc-flight-details {
  display: flex;
  flex-direction: column;
}

.hbc-flight-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 700;
}

.hbc-flight-date {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--gold-800);
}

.hbc-flight-sub {
  font-size: 0.74rem;
  color: var(--green-700);
  font-weight: 600;
}

.hbc-countdown-container {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.85rem var(--space-md);
  margin-bottom: var(--space-md);
  text-align: center;
}

.hbc-cd-title {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.countdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.countdown-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 54px;
  padding: 0.45rem 0.6rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.countdown-box span {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text-heading);
  line-height: 1;
}

.countdown-box small {
  font-size: 0.64rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 3px;
}

.countdown-sep {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-600);
}

.hbc-seat-status {
  background: var(--gold-50);
  border: 1px solid rgba(217, 119, 6, 0.2);
  border-radius: var(--radius-md);
  padding: 0.75rem var(--space-md);
  margin-bottom: var(--space-md);
}

.hbc-seat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--gold-900);
  margin-bottom: 6px;
}

.hbc-seat-count {
  font-weight: 800;
  color: var(--gold-800);
}

.hbc-progress-track {
  width: 100%;
  height: 8px;
  background: rgba(217, 119, 6, 0.15);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 4px;
}

.hbc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-500), var(--green-600));
  border-radius: var(--radius-full);
  transition: width 1s ease;
}

.hbc-seat-urgency {
  font-size: 0.72rem;
  color: var(--gold-800);
  font-weight: 700;
}

.hbc-price-box {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding-top: var(--space-xs);
}

.hbc-price-content {
  text-align: center;
}

.hbc-price-small {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.hbc-price-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin: 2px 0;
}

.hbc-curr {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-700);
}

.hbc-val {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--green-700);
  line-height: 1;
}

.hbc-unit {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

.hbc-dp-text {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--gold-800);
  display: block;
}

.hbc-cta-btn {
  padding: 0.85rem 1.2rem;
  font-size: 0.95rem;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 3;
}

.scroll-arrow {
  width: 16px;
  height: 16px;
  border-right: 2px solid var(--green-600);
  border-bottom: 2px solid var(--green-600);
  transform: rotate(45deg);
  animation: bounceDown 1.5s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50%       { transform: rotate(45deg) translate(4px, 4px); }
}

/* ===================================================
   TRUST BADGES BAR
   =================================================== */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: var(--space-xl) 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  padding: 1rem var(--space-md);
  border-radius: var(--radius-lg);
  transition: all var(--dur-normal);
}

.trust-item:hover {
  background: var(--bg-mint);
  border-color: var(--green-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.trust-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 1rem;
  color: var(--text-heading);
  font-weight: 800;
}

.trust-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ===================================================
   CARD-BASED UI: KATALOG PAKET UMROH NOVEMBER 2026
   =================================================== */
.catalog-section {
  padding: var(--space-4xl) 0;
  background: linear-gradient(180deg, var(--bg-page) 0%, var(--bg-subtle) 40%, var(--white) 100%);
}

.catalog-filters {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.cat-filter-btn {
  background: var(--white);
  color: var(--text-muted);
  border: 1.5px solid var(--border-light);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--dur-normal);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.cat-filter-btn:hover {
  border-color: var(--green-400);
  color: var(--green-800);
  background: var(--green-50);
}

.cat-filter-btn.active {
  background: var(--green-700);
  color: var(--white);
  border-color: var(--green-700);
  box-shadow: 0 4px 14px rgba(4, 120, 87, 0.25);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
  align-items: stretch;
}

.package-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition: all var(--dur-normal) var(--ease-out);
  overflow: hidden;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: var(--green-300);
}

.package-card.featured {
  border: 2px solid var(--green-600);
  box-shadow: 0 16px 36px rgba(4, 120, 87, 0.12);
}

.package-card.featured:hover {
  box-shadow: 0 24px 50px rgba(4, 120, 87, 0.2);
  border-color: var(--green-500);
}

.pkg-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xs);
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.pkg-room-tag {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--green-800);
  background: var(--green-50);
  border: 1px solid var(--green-200, #a7f3d0);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
}

.pkg-ribbon {
  background: var(--gold-50);
  color: var(--gold-800);
  border: 1px solid var(--gold-300);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.pkg-ribbon.featured {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-600) 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 2px 8px rgba(4, 120, 87, 0.3);
}

.pkg-ribbon.gold {
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-600) 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
}

.pkg-header {
  margin-bottom: var(--space-md);
  padding-right: 0;
}

.pkg-title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.2;
  margin-bottom: 4px;
}

.pkg-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.pkg-price-wrap {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.85rem var(--space-md);
  margin-bottom: var(--space-md);
}

.pkg-price-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: block;
}

.pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 2px 0;
}

.pkg-cur {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-700);
}

.pkg-val {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--green-700);
  line-height: 1;
}

.pkg-unit {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pkg-dp-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-800);
}

.pkg-hotels {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-light);
}

.pkg-hotel-item {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.45rem 0.65rem;
}

.phi-city {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
}

.pkg-hotel-item strong {
  font-size: 0.88rem;
  color: var(--text-heading);
}

.pkg-hotel-item small {
  font-size: 0.72rem;
  color: var(--green-700);
  font-weight: 600;
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: var(--space-lg);
  flex-grow: 1;
}

.pkg-features li {
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.4;
  font-weight: 500;
}

.pkg-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: auto;
}

.pkg-actions .btn-block {
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
}

/* ===================================================
   KEMUDAHAN TRANSAKSI: 3 LANGKAH MUDAH
   =================================================== */
.transaction-flow-card {
  background: var(--bg-mint);
  border: 1.5px solid var(--green-200, #a7f3d0);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  margin-bottom: var(--space-2xl);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.06);
}

.tflow-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.tflow-badge {
  display: inline-block;
  background: var(--white);
  color: var(--green-800);
  border: 1px solid var(--green-300);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: var(--space-xs);
}

.tflow-header h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 4px;
}

.tflow-header p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.tflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.tflow-step {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.tflow-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-600);
  color: var(--white);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.tflow-step h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: var(--space-xs);
}

.tflow-step p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* ===================================================
   5 PASTI UMROH KEMENAG RI GUARANTEE BAR
   =================================================== */
.kemenag-guarantee-bar {
  background: var(--white);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 1rem var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 4px 16px rgba(217, 119, 6, 0.08);
}

.kgb-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--gold-900);
}

.kgb-icon {
  font-size: 1.4rem;
}

.kgb-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.kgb-tag {
  background: var(--gold-50);
  border: 1px solid var(--gold-300);
  color: var(--gold-900);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

/* ===================================================
   FASILITAS SECTION (TABS)
   =================================================== */
.fasilitas {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.tabs {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-2xl);
}

.tab-btn {
  background: var(--bg-subtle);
  color: var(--text-muted);
  border: 1.5px solid var(--border-light);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--dur-normal);
}

.tab-btn:hover {
  border-color: var(--green-400);
  color: var(--text-heading);
}

.tab-btn.active {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.28);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.facility-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--dur-normal);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.facility-card:hover {
  border-color: var(--green-400);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: var(--bg-mint);
}

.fac-icon {
  font-size: 2.2rem;
  margin-bottom: var(--space-sm);
}

.facility-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: var(--space-xs);
}

.facility-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* Exclude List */
.exclude-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.exclude-item {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  box-shadow: var(--shadow-sm);
}

.exc-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.exclude-item h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.exclude-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.exclude-note {
  background: var(--gold-50);
  border: 1.5px solid var(--gold-300);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: space-between;
}

.exclude-note p {
  font-size: 0.95rem;
  color: var(--gold-900);
}

/* ===================================================
   DESTINASI SUCI: MASJIDIL HARAM & MASJID NABAWI
   =================================================== */
.holy-places-section {
  padding: var(--space-4xl) 0;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-subtle) 50%, #ffffff 100%);
  position: relative;
}

.holy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: stretch;
}

.holy-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 36px -6px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  transition: all var(--dur-normal) var(--ease-out);
}

.holy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -8px rgba(6, 78, 59, 0.14);
  border-color: var(--green-400);
}

.holy-image-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #0f172a;
}

.holy-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}

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

.holy-img-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 6px;
}

.holy-img-badge.gold {
  color: var(--gold-800);
  border: 1.5px solid var(--gold-400);
}

.holy-img-badge.green {
  color: var(--green-800);
  border: 1.5px solid var(--green-500);
}

.holy-city-pill {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: rgba(6, 78, 59, 0.88);
  color: var(--white);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.holy-body {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.holy-quran-quote {
  background: var(--gold-50);
  border-left: 4px solid var(--gold-500);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 0.85rem 1.15rem;
  margin-bottom: var(--space-lg);
}

.hqq-arabic {
  display: block;
  font-family: 'Amiri', serif;
  font-size: 1.18rem;
  color: var(--gold-900);
  line-height: 1.6;
  margin-bottom: 4px;
}

.hqq-trans {
  display: block;
  font-size: 0.78rem;
  color: var(--gold-800);
  font-style: italic;
  line-height: 1.4;
}

.holy-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-heading);
  line-height: 1.25;
  margin-bottom: var(--space-xs);
}

.holy-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

.holy-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: var(--space-xl);
  flex-grow: 1;
}

.holy-hl-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  padding: 0.65rem 0.9rem;
  border-radius: var(--radius-md);
  transition: background var(--dur-fast);
}

.holy-hl-item:hover {
  background: var(--bg-mint);
  border-color: var(--green-300);
}

.hhl-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
}

.holy-hl-item div {
  display: flex;
  flex-direction: column;
}

.holy-hl-item strong {
  font-size: 0.86rem;
  color: var(--text-heading);
  font-weight: 800;
}

.holy-hl-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===================================================
   HOTEL SECTION
   =================================================== */
.hotel-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-subtle);
}

.hotel-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  max-width: 1000px;
  margin: 0 auto;
}

.hotel-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all var(--dur-normal);
}

.hotel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.09);
  border-color: var(--green-400);
}

.hotel-img-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.hotel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

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

.hotel-img-overlay {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--green-900);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hotel-body {
  padding: var(--space-xl);
}

.hotel-stars-row {
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
}

.hotel-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.hotel-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.hotel-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hotel-features li {
  font-size: 0.88rem;
  color: var(--text-body);
  font-weight: 600;
}

/* ===================================================
   ITINERARY TIMELINE
   =================================================== */
.itinerary-section {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-left: var(--space-2xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--green-600), var(--gold-500));
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
}

.timeline-dot {
  position: absolute;
  left: calc(-1 * var(--space-2xl) + 1px);
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3.5px solid var(--green-600);
  box-shadow: 0 0 0 4px var(--green-50);
}

.timeline-content {
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--dur-normal);
}

.timeline-item:hover .timeline-content {
  border-color: var(--green-300);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.timeline-day {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--green-700);
  background: var(--green-50);
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xs);
}

.timeline-content h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: var(--space-xs);
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.5;
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonials {
  padding: var(--space-4xl) 0;
  background: var(--bg-subtle);
}

.testi-slider {
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
}

.testi-track {
  display: flex;
  transition: transform 0.5s var(--ease-out);
}

.testi-card {
  flex: 0 0 100%;
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.testi-stars {
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
}

.testi-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: var(--space-xl);
}

.testi-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 2px solid var(--green-500);
}

.testi-author strong {
  display: block;
  font-size: 1rem;
  color: var(--text-heading);
}

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

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.testi-btn {
  background: var(--white);
  border: 1px solid var(--border-light);
  color: var(--text-heading);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-fast);
  box-shadow: var(--shadow-sm);
}

.testi-btn:hover {
  background: var(--green-600);
  color: var(--white);
  border-color: var(--green-600);
}

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

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  cursor: pointer;
  transition: all var(--dur-fast);
}

.testi-dot.active {
  background: var(--green-600);
  width: 24px;
  border-radius: 5px;
}

/* ===================================================
   KALKULATOR & SIMULASI INTERAKTIF
   =================================================== */
.calc-section {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.calc-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.calc-group {
  margin-bottom: var(--space-xl);
}

.calc-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-heading);
  margin-bottom: var(--space-sm);
}

.calc-value-badge {
  background: var(--green-50);
  color: var(--green-800);
  border: 1px solid var(--green-300);
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 800;
}

.pax-selector-btns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.pax-btn {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  color: var(--text-body);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.3rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: all var(--dur-fast);
}

.pax-btn:hover {
  background: var(--green-50);
  border-color: var(--green-400);
  color: var(--green-800);
}

.pax-btn.active {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--border-light);
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green-600);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: transform var(--dur-fast);
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.room-selector {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.room-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem var(--space-md);
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--dur-fast);
}

.room-option:hover {
  background: var(--green-50);
  border-color: var(--green-300);
}

.room-option.active {
  background: var(--green-50);
  border-color: var(--green-600);
}

.room-option input {
  margin-right: 0.75rem;
  accent-color: var(--green-600);
  width: 18px;
  height: 18px;
}

.room-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-info strong {
  font-size: 0.95rem;
  color: var(--text-heading);
}

.room-info small {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.room-price {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--green-700);
}

/* Result Box */
.calc-result-box {
  background: linear-gradient(145deg, var(--bg-mint) 0%, var(--white) 100%);
  border: 1.5px solid var(--green-200, #a7f3d0);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.08);
}

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

.calc-logo-mini {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.calc-guarantee-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-800);
}

.calc-summary-rows {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: var(--space-lg);
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  color: var(--text-body);
}

.calc-row strong {
  color: var(--text-heading);
  font-weight: 700;
}

.calc-row.highlight-free {
  background: var(--white);
  border: 1px solid var(--green-300);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.85rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.calc-row.highlight-free span {
  color: var(--gold-800);
  font-weight: 800;
  font-size: 0.8rem;
}

.calc-row.highlight-free strong {
  color: var(--green-800);
  font-size: 0.82rem;
}

.calc-total-wrap {
  text-align: center;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--border-light);
  margin-bottom: var(--space-md);
}

.calc-total-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.calc-total-price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--green-700);
  line-height: 1.2;
  margin: 0.2rem 0;
}

.calc-dp-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

/* ===================================================
   FAQ SECTION
   =================================================== */
.faq-section {
  padding: var(--space-4xl) 0;
  background: var(--bg-subtle);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--dur-normal);
}

.faq-item.open {
  border-color: var(--green-400);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem var(--space-lg);
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  cursor: pointer;
}

.faq-icon {
  font-size: 1.4rem;
  color: var(--green-600);
  transition: transform var(--dur-normal);
  flex-shrink: 0;
}

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

.faq-a {
  display: none;
  padding: 0 var(--space-lg) 1.25rem;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-md);
}

.faq-item.open .faq-a {
  display: block;
}

/* ===================================================
   CONTACT SECTION
   =================================================== */
.contact-section {
  padding: var(--space-4xl) 0;
  background: var(--white);
}

.contact-card {
  background: var(--bg-subtle);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.05);
}

.contact-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.contact-brand-logo {
  height: 50px;
  width: auto;
  max-width: 230px;
  object-fit: contain;
}

.contact-brand-text h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-heading);
}

.contact-brand-sub {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-700);
  margin: 2px 0 6px;
}

.contact-brand-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0.85rem var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--white);
  transition: all var(--dur-normal);
}

.contact-info-item:hover {
  background: var(--green-50);
  border-color: var(--green-400);
  transform: translateX(4px);
}

.ci-icon {
  font-size: 1.4rem;
  width: 36px;
  text-align: center;
  flex-shrink: 0;
}

.ci-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.ci-value {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-heading);
  transition: color var(--dur-fast);
}

.contact-info-item:hover .ci-value {
  color: var(--green-700);
}

/* Contact Right */
.seat-badge-top {
  display: inline-block;
  background: var(--gold-50);
  border: 1px solid var(--gold-400);
  color: var(--gold-800);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-sm);
}

.contact-right h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 0.25rem;
}

.contact-right > p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

/* Seat Meter */
.seat-meter {
  margin-bottom: var(--space-xl);
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
}

.seat-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  font-weight: 600;
}

.seat-label strong {
  color: var(--green-800);
  font-weight: 800;
}

.seat-bar {
  height: 10px;
  background: var(--border-light);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: var(--space-sm);
}

.seat-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-500), var(--gold-500));
  border-radius: 5px;
  transition: width 1.5s var(--ease-out);
}

.seat-urgency {
  font-size: 0.82rem;
  color: var(--gold-800);
  font-weight: 700;
}

.contact-response {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: var(--space-md);
  font-weight: 600;
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--bg-subtle);
  border-top: 1px solid var(--border-light);
  padding: var(--space-3xl) 0 calc(var(--space-2xl) + 20px);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.footer-logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: var(--space-xs);
}

.footer-brand-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.footer-company-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-heading);
  letter-spacing: 0.04em;
}

.footer-license {
  font-size: 0.82rem;
  color: var(--green-700);
  font-weight: 700;
}

.footer-trust-tags {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: center;
  margin: var(--space-xs) 0;
}

.ft-tag {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  color: var(--text-body);
  font-weight: 600;
}

.footer-socials {
  display: flex;
  gap: var(--space-md);
}

.social-link {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--dur-normal) var(--ease-out);
}

.social-link svg {
  width: 18px; height: 18px;
}

.social-link:hover {
  background: var(--green-600);
  border-color: var(--green-600);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

/* ===================================================
   FLOATING WA BUTTON (Desktop)
   =================================================== */
.float-wa {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  background: linear-gradient(135deg, #128c7e, #25d366);
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--dur-normal) var(--ease-out);
}

.float-wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid var(--wa-green);
  animation: pulseGlow 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
  pointer-events: none;
}

.float-wa svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
}

.float-wa:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
}

/* ===================================================
   MOBILE STICKY BOTTOM QUICK-ACTION BAR
   =================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1.5px solid var(--border-light);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.55rem 0.85rem calc(0.55rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  grid-template-columns: 1fr 1.1fr 2fr;
  gap: 0.5rem;
  align-items: center;
}

.mob-bottom-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0.45rem 0.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.72rem;
  transition: all var(--dur-fast);
}

.mob-call-btn {
  background: var(--bg-subtle);
  color: var(--text-heading);
  border: 1px solid var(--border-light);
}

.mob-calc-btn {
  background: var(--gold-50);
  color: var(--gold-800);
  border: 1px solid var(--gold-300);
}

.mob-wa-btn {
  flex-direction: row;
  gap: 0.4rem;
  background: linear-gradient(135deg, #128c7e, #25d366);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  padding: 0.65rem 0.85rem;
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.35);
}

.mob-wa-icon {
  width: 18px;
  height: 18px;
}

.mob-btn-icon {
  font-size: 1.15rem;
  line-height: 1;
}

/* ===================================================
   SCROLL REVEAL ANIMATIONS
   =================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

/* ===================================================
   RESPONSIVE - TABLET
   =================================================== */
@media (max-width: 1024px) {
  .hero-split-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .hero-left {
    align-items: center;
    text-align: center;
  }

  .hero-badges-wrapper {
    justify-content: center;
  }

  .hero-usp-list {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust-bar {
    justify-content: center;
  }

  .hero-booking-card {
    max-width: 480px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .tflow-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calc-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .holy-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin: 0 auto;
  }

  .hotel-cards {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
}

/* ===================================================
   RESPONSIVE - MOBILE (< 768px)
   =================================================== */
@media (max-width: 768px) {
  body {
    padding-bottom: 74px; /* Space for mobile sticky bottom bar */
  }

  .container {
    padding: 0 var(--space-md);
  }

  /* Nav */
  .nav-links { display: none; }
  .nav-actions #nav-cta { display: none; }
  .hamburger { display: flex; }

  .navbar {
    padding: 0.55rem var(--space-md);
  }

  .brand-logo-img {
    height: 38px;
    max-width: 165px;
  }

  /* Hero Mobile */
  .hero {
    padding-top: 5rem;
    padding-bottom: 2.5rem;
  }

  .hero-split-grid {
    gap: var(--space-xl);
  }

  .hero-bismillah {
    font-size: 1.45rem;
  }

  .hero-brand-pill {
    padding: 0.25rem 0.75rem;
  }

  .hero-subhead {
    font-size: 0.82rem;
  }

  .hero-title-main {
    font-size: clamp(2.4rem, 11vw, 3.4rem);
  }

  .hero-tagline {
    font-size: 0.95rem;
  }

  .hero-usp-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: var(--space-sm);
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .hero-booking-card {
    padding: var(--space-md);
  }

  /* Trust */
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  .trust-item {
    padding: 0.75rem var(--space-sm);
  }

  /* Catalog Mobile */
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .cat-filter-btn {
    padding: 0.45rem 0.85rem;
    font-size: 0.78rem;
  }

  .package-card {
    padding: var(--space-md);
  }

  .pkg-val {
    font-size: 1.65rem;
  }

  .transaction-flow-card {
    padding: var(--space-md);
  }

  .tflow-header h3 {
    font-size: 1.35rem;
  }

  .kemenag-guarantee-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  /* Holy Places Mobile */
  .holy-image-wrap {
    height: 240px;
  }

  .holy-body {
    padding: var(--space-lg) var(--space-md);
  }

  .holy-title {
    font-size: 1.35rem;
  }

  .hqq-arabic {
    font-size: 1.05rem;
  }

  /* Facilities */
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .facility-card {
    padding: var(--space-md) var(--space-sm);
  }

  .fac-icon {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
  }

  .facility-card h3 {
    font-size: 0.95rem;
  }

  .facility-card p {
    font-size: 0.78rem;
  }

  /* Calculator */
  .calc-card {
    padding: var(--space-md);
  }

  .pax-selector-btns {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .calc-result-box {
    padding: var(--space-md);
  }

  /* Testimonials */
  .testi-card {
    flex: 0 0 100%;
    padding: var(--space-lg);
  }

  /* Timeline */
  .timeline {
    padding-left: var(--space-xl);
  }

  /* Contact */
  .contact-card {
    padding: var(--space-lg) var(--space-md);
  }

  .contact-brand-logo {
    height: 42px;
    max-width: 190px;
  }

  /* Hide desktop floating button, activate mobile bottom bar */
  .float-wa {
    display: none;
  }

  .mobile-bottom-bar {
    display: grid;
  }

  /* Section Spacings */
  .catalog-section, .calc-section, .contact-section, .faq-section, .hotel-section, .itinerary-section, .testimonials, .fasilitas {
    padding: 3rem 0;
  }
}

@media (max-width: 480px) {
  .facilities-grid {
    grid-template-columns: 1fr;
  }

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

  .tabs {
    flex-wrap: wrap;
  }
}
