/* 
  Fun Foresta v4.5 — 100% Mobile-First Luxury Design System
  Optimized for iOS, Android & Desktop | Ultra-Vibrant & Instant Response
  Category Hub: All Collections Visible at Once (No Horizontal Scrolling)
*/

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

:root {
  /* 🌟 High-Vibrancy Core Colors */
  --primary-orange: #ff5400;
  --primary-orange-hover: #e04800;
  --primary-orange-light: #ff7b25;
  --primary-yellow: #ffb703;
  --primary-yellow-light: #ffd166;
  --accent-emerald: #10b981;
  --accent-violet: #8b5cf6;
  --accent-rose: #f43f5e;
  --accent-cyan: #06b6d4;

  /* 🌈 Vibrant Gradients */
  --gradient-sunburst: linear-gradient(135deg, #ff5400 0%, #ff9e00 100%);
  --gradient-sunset: linear-gradient(135deg, #ff5400 0%, #ff7a00 50%, #ffb703 100%);
  --gradient-gold: linear-gradient(135deg, #ffd166 0%, #ffb703 100%);
  --gradient-dark: linear-gradient(135deg, #0b0f19 0%, #1e293b 100%);
  --gradient-card: linear-gradient(180deg, #ffffff 0%, #fffbf7 100%);

  /* 🎨 Backgrounds & Surfaces */
  --bg-cream: #faf7f2;
  --bg-warm-tint: #fff6ed;
  --bg-card: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --border-amber: #fed7aa;
  --border-orange: #ffedd5;
  --border-subtle: rgba(255, 84, 0, 0.12);

  /* 🔮 Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(255, 84, 0, 0.1);
  --shadow-lg: 0 16px 40px rgba(15, 23, 42, 0.12);

  /* Geometry */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.55;
  overflow-x: hidden;
  position: relative;
  padding-bottom: 72px; /* Space for mobile sticky bottom bar */
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

/* ✨ SPARKLES FLOATING BACKGROUND (Subtle & Non-Obtrusive) */
.sparkles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
  opacity: 0.18;
}

.sparkle-item {
  position: absolute;
  color: var(--primary-yellow);
  font-size: 0.9rem;
  opacity: 0;
  animation: sparkleFloat 16s linear infinite;
  will-change: transform, opacity;
}

@keyframes sparkleFloat {
  0% { transform: translateY(105vh) rotate(0deg); opacity: 0; }
  20% { opacity: 0.5; }
  80% { opacity: 0.3; }
  100% { transform: translateY(-15vh) rotate(360deg); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════
   🌟 LUXURY CELEBRATION PRELOADER (Responsive & Large Animated Logo)
═══════════════════════════════════════════════════════ */
#preloader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at center, #ffffff 0%, #fff7ed 60%, #ffedd5 100%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.55s ease;
  animation: preloaderAutoExit 0.6s cubic-bezier(0.16, 1, 0.3, 1) 2.4s forwards;
  overflow: hidden;
}

#preloader.fade-out {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

@keyframes preloaderAutoExit {
  0% { opacity: 1; visibility: visible; }
  100% { opacity: 0; visibility: hidden; pointer-events: none; }
}

.preloader-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 28px;
  max-width: 480px;
  width: 90%;
  position: relative;
  z-index: 2;
}

/* Outer Logo Ring Wrap with Floating Sparkles */
.preloader-logo-ring-wrap {
  position: relative;
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

/* Outer Golden Orbit Dashed Ring */
.preloader-outer-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 138, 0, 0.55);
  animation: rotatePreloaderRing 12s linear infinite;
}

@keyframes rotatePreloaderRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Inner Pulsing Glowing Ring */
.preloader-inner-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2.5px solid transparent;
  background: linear-gradient(135deg, #ff5400, #ffb703, #fb8500, #ff5400) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: pulsePreloaderAura 2s ease-in-out infinite alternate;
}

@keyframes pulsePreloaderAura {
  0% {
    transform: scale(0.98);
    filter: drop-shadow(0 0 8px rgba(255, 84, 0, 0.35));
  }
  100% {
    transform: scale(1.02);
    filter: drop-shadow(0 0 18px rgba(255, 183, 3, 0.65));
  }
}

/* Large Round Logo Container */
.preloader-logo-wrap {
  width: 142px;
  height: 142px;
  border-radius: 50%;
  padding: 4px;
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(255, 84, 0, 0.22), 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  z-index: 3;
}

.preloader-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  animation: breatheLogo 3s ease-in-out infinite alternate;
}

@keyframes breatheLogo {
  0% { transform: scale(1); }
  100% { transform: scale(1.04); }
}

/* Sparkle Badges Around Logo */
.preloader-sparkle {
  position: absolute;
  font-size: 1.3rem;
  pointer-events: none;
  z-index: 5;
  filter: drop-shadow(0 2px 6px rgba(255, 183, 3, 0.5));
  animation: preloaderSparkleBlink 2s ease-in-out infinite alternate;
}

.preloader-sparkle.sp-1 {
  top: 4px;
  right: 6px;
  animation-delay: 0s;
}

.preloader-sparkle.sp-2 {
  bottom: 12px;
  left: 4px;
  font-size: 1.15rem;
  animation-delay: 0.7s;
}

.preloader-sparkle.sp-3 {
  top: 50%;
  left: -14px;
  font-size: 1.25rem;
  animation-delay: 1.2s;
}

@keyframes preloaderSparkleBlink {
  0% { transform: scale(0.7) rotate(0deg); opacity: 0.4; }
  50% { transform: scale(1.2) rotate(15deg); opacity: 1; }
  100% { transform: scale(0.85) rotate(-10deg); opacity: 0.6; }
}

/* Brand Text */
.preloader-brand {
  margin-bottom: 18px;
}

.preloader-title {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ff5400 0%, #fb8500 50%, #d97706 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}

.preloader-tagline {
  font-size: 0.82rem;
  color: #78716c;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* Progress bar & Luxury Dots */
.preloader-progress-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.preloader-progress-bar {
  width: 210px;
  height: 4px;
  background: rgba(255, 138, 0, 0.15);
  border-radius: 99px;
  overflow: hidden;
  position: relative;
}

.preloader-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 45%;
  background: linear-gradient(90deg, #ff5400, #ffb703, #ff5400);
  border-radius: 99px;
  animation: preloaderBarSweep 1.3s ease-in-out infinite;
}

@keyframes preloaderBarSweep {
  0% { left: -45%; width: 30%; }
  50% { width: 55%; }
  100% { left: 100%; width: 30%; }
}

.preloader-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.preloader-dots .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffb703;
  animation: dotBounce 1.4s ease-in-out infinite;
}

.preloader-dots .dot:nth-child(1) { animation-delay: 0s; }
.preloader-dots .dot:nth-child(2) { animation-delay: 0.2s; }
.preloader-dots .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
  40% { transform: scale(1.2); opacity: 1; background: #ff5400; }
}

/* 📱 Responsive Preloader for Mobile Devices */
@media (max-width: 768px) {
  .preloader-card {
    padding: 24px 20px;
  }

  .preloader-logo-ring-wrap {
    width: 140px;
    height: 140px;
    margin-bottom: 20px;
  }

  .preloader-outer-ring {
    inset: -9px;
  }

  .preloader-logo-wrap {
    width: 118px;
    height: 118px;
  }

  .preloader-title {
    font-size: 1.75rem;
  }

  .preloader-tagline {
    font-size: 0.72rem;
    letter-spacing: 0.8px;
  }

  .preloader-progress-bar {
    width: 170px;
  }
}

@media (max-width: 420px) {
  .preloader-logo-ring-wrap {
    width: 125px;
    height: 125px;
    margin-bottom: 16px;
  }

  .preloader-outer-ring {
    inset: -8px;
  }

  .preloader-logo-wrap {
    width: 104px;
    height: 104px;
  }

  .preloader-title {
    font-size: 1.55rem;
  }

  .preloader-tagline {
    font-size: 0.68rem;
  }

  .preloader-progress-bar {
    width: 150px;
  }
}

/* ── LAYOUT CONTAINER ── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* ── LUXURY LIQUID GLASS FLOATING NAVBAR ── */
.navbar {
  position: sticky;
  top: 18px;
  max-width: 1280px;
  margin: 0 auto;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(32px) saturate(210%);
  -webkit-backdrop-filter: blur(32px) saturate(210%);
  border: 1.5px solid rgba(255, 255, 255, 0.96);
  border-radius: 50px;
  z-index: 1000;
  padding: 13px 26px;
  min-height: 68px;
  box-shadow: 0 20px 42px -10px rgba(0, 0, 0, 0.09), 0 4px 18px rgba(255, 84, 0, 0.06), inset 0 1px 2px #ffffff;
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.navbar-scrolled {
  top: 10px;
  padding: 10px 24px;
  min-height: 60px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 50px -12px rgba(0, 0, 0, 0.14), 0 6px 22px rgba(255, 84, 0, 0.1), inset 0 1px 2px #ffffff;
  border-color: rgba(255, 255, 255, 1);
}

@media (max-width: 991px) {
  .navbar {
    top: 10px;
    margin: 0 12px;
    border-radius: 35px;
    padding: 10px 16px;
    min-height: auto;
  }
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

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

.nav-round-logo-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-round-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-orange);
  box-shadow: 0 0 12px rgba(255, 84, 0, 0.32);
}

.brand-text h1 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 850;
  letter-spacing: -0.3px;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin: 0;
}

.brand-text span {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display: block;
  margin-top: 1px;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 4px;
  align-items: center;
  margin: 0;
  padding: 0;
}

@media (min-width: 992px) {
  .nav-links {
    display: flex;
  }
}

.nav-links a {
  text-decoration: none;
  color: #1e293b;
  font-weight: 600;
  font-size: 0.90rem;
  padding: 8px 14px;
  border-radius: 25px;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  line-height: 1.2;
}

.nav-links a:hover {
  color: var(--primary-orange);
  background: rgba(255, 84, 0, 0.07);
  transform: translateY(-1px);
}

/* Primary CTA WhatsApp Shimmer Button */
.nav-links a.nav-cta-btn {
  background: var(--gradient-sunset);
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.90rem;
  padding: 10px 22px;
  border-radius: 30px;
  box-shadow: 0 4px 18px rgba(255, 84, 0, 0.4);
  margin-left: 8px;
  position: relative;
  overflow: hidden;
}

.nav-links a.nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 84, 0, 0.52);
  color: #ffffff !important;
}

/* Responsive optimization for 992px to 1200px viewports (no wrapping) */
@media (min-width: 992px) and (max-width: 1200px) {
  .navbar {
    padding: 10px 18px;
  }
  .nav-links {
    gap: 2px;
  }
  .nav-links a {
    font-size: 0.83rem;
    padding: 6px 9px;
  }
  .brand-text span {
    display: none;
  }
}

/* Mobile sliding drawer menu */
@media (max-width: 991px) {
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    padding: 22px 18px;
    gap: 10px;
    border-radius: 24px;
    border: 1.5px solid rgba(255, 183, 3, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 4px 16px rgba(255, 84, 0, 0.1);
    animation: slideDownMenu 0.25s ease;
  }

  .nav-links.active a {
    font-size: 0.96rem;
    font-weight: 700;
    padding: 12px 18px;
    width: 100%;
    text-align: left;
    border-radius: 14px;
    border-bottom: none;
    background: #f8fafc;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-links.active a:hover {
    background: rgba(255, 84, 0, 0.08);
  }

  .nav-links.active a.nav-cta-btn {
    background: var(--gradient-sunset);
    color: #ffffff !important;
    justify-content: center;
    margin-top: 8px;
    margin-left: 0;
    padding: 14px;
    font-size: 1.02rem;
    border-radius: 30px;
  }
}

@keyframes slideDownMenu {
  0% { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}


.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-warm-tint);
  border: 1.5px solid var(--border-amber);
  color: var(--primary-orange);
  font-size: 1.3rem;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  cursor: pointer;
  line-height: 1;
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-weight: 800;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  line-height: 1.2;
}

.btn-primary {
  background: var(--gradient-sunset);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(255, 84, 0, 0.35);
}

.btn-primary:hover, .btn-primary:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 84, 0, 0.45);
}

.btn-secondary {
  background: #ffffff;
  color: var(--text-dark);
  border: 1.5px solid var(--border-amber);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-secondary:hover, .btn-secondary:active {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
  background: var(--bg-warm-tint);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.82rem;
}

.btn-ghost {
  background: rgba(255, 84, 0, 0.06);
  border: 1px solid var(--border-amber);
  color: var(--text-dark);
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: var(--primary-orange);
  color: var(--primary-orange);
  background: var(--bg-warm-tint);
}

.hero-btn-attractions {
  background: #ffffff;
  border: 1.5px solid var(--primary-orange);
  color: var(--primary-orange);
  box-shadow: 0 3px 12px rgba(255, 84, 0, 0.12);
  font-weight: 800;
  border-radius: var(--radius-full);
}

.hero-btn-attractions:hover, .hero-btn-attractions:active {
  background: var(--gradient-sunset);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 84, 0, 0.35);
}

/* ── HERO SECTION ── */
.hero {
  padding: 24px 0 24px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 183, 3, 0.16) 0%, rgba(255, 84, 0, 0.04) 50%, transparent 80%);
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 992px) {
  .hero {
    padding: 48px 0 36px;
  }
  .hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 40px;
  }
}

.eyebrow-pill {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #ffffff;
  border: 1px solid var(--border-amber);
  border-radius: var(--radius-full);
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--primary-orange);
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  max-width: 100%;
  text-align: center;
  line-height: 1.4;
}

.hero-text h2 {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 800;
}

@media (min-width: 768px) {
  .hero-text h2 {
    font-size: 2.7rem;
  }
}

@media (min-width: 992px) {
  .hero-text h2 {
    font-size: 3.1rem;
  }
}

.hero-text h2 span {
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 8px;
  line-height: 1.35;
}

.hero-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 480px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* ═══════════════════════════════════════════════════════
   👑 HERO DP: ULTRA-PREMIUM ROTATING ANIMATED BORDER
═══════════════════════════════════════════════════════ */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 18px auto 6px;
  position: relative;
  z-index: 5;
}

@media (min-width: 992px) {
  .hero-visual {
    margin: 0;
    justify-content: center;
  }
}

.hero-dp-container {
  position: relative;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
}

@media (min-width: 768px) {
  .hero-dp-container {
    width: 255px;
    height: 255px;
  }
}

@media (min-width: 1200px) {
  .hero-dp-container {
    width: 285px;
    height: 285px;
  }
}

/* ═══════════════════════════════════════════════════════
   👑 ULTRA-LUXURY MULTI-LAYER HERO ROTATING BORDER
═══════════════════════════════════════════════════════ */

/* Pulsing atmospheric warm golden-sunset aura behind DP */
.hero-dp-glow-aura {
  position: absolute;
  inset: -36px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 183, 3, 0.55) 0%, rgba(255, 84, 0, 0.28) 45%, rgba(225, 29, 72, 0.12) 65%, transparent 80%);
  filter: blur(14px);
  animation: heroAuraBreathe 3.5s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease;
}

/* Outer counter-rotating dashed starry orbit ring with 8 sparkling jewels */
.hero-dp-orbit-ring {
  position: absolute;
  inset: -22px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 183, 3, 0.7);
  box-shadow: 0 0 20px rgba(255, 183, 3, 0.35), inset 0 0 14px rgba(255, 84, 0, 0.2);
  animation: heroCounterRotate 18s linear infinite;
  pointer-events: none;
  z-index: 2;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.hero-dp-orbit-ring .orbit-sparkle {
  position: absolute;
  font-size: 0.95rem;
  color: #ffd700;
  text-shadow: 0 0 8px #ffffff, 0 0 16px #ffb703, 0 0 24px #ff5400;
  line-height: 1;
  display: inline-block;
  animation: sparkleTwinkle 2s ease-in-out infinite alternate;
}

/* 8-Point Astrolabe Jewel Positions */
.hero-dp-orbit-ring .sp-1 { top: -10px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.hero-dp-orbit-ring .sp-2 { top: 12%; right: 12%; font-size: 0.85rem; animation-delay: 0.25s; }
.hero-dp-orbit-ring .sp-3 { right: -10px; top: 50%; transform: translateY(-50%); font-size: 1rem; animation-delay: 0.5s; }
.hero-dp-orbit-ring .sp-4 { bottom: 12%; right: 12%; font-size: 0.85rem; animation-delay: 0.75s; }
.hero-dp-orbit-ring .sp-5 { bottom: -10px; left: 50%; transform: translateX(-50%); animation-delay: 1s; }
.hero-dp-orbit-ring .sp-6 { bottom: 12%; left: 12%; font-size: 0.85rem; animation-delay: 1.25s; }
.hero-dp-orbit-ring .sp-7 { left: -10px; top: 50%; transform: translateY(-50%); font-size: 1rem; animation-delay: 1.5s; }
.hero-dp-orbit-ring .sp-8 { top: 12%; left: 12%; font-size: 0.85rem; animation-delay: 1.75s; }

/* 💫 DUAL-SWEEP PHOTON COMET ROTATING BORDER 💫 */
.hero-dp-rotating-border {
  position: absolute;
  inset: -9px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #ff5400 0%,
    #ffb703 12%,
    #ffffff 20%,
    #ffd700 28%,
    rgba(255, 84, 0, 0.15) 42%,
    #e11d48 50%,
    #fbbf24 62%,
    #ffffff 70%,
    #ff8a00 78%,
    rgba(255, 183, 3, 0.15) 92%,
    #ff5400 100%
  );
  animation: heroBorderRotate 5.5s linear infinite;
  box-shadow: 0 0 32px rgba(255, 183, 3, 0.75), inset 0 0 20px rgba(255, 84, 0, 0.5);
  z-index: 3;
  transition: box-shadow 0.4s ease, filter 0.4s ease;
}

/* Neon Plasma Halo behind the rotating border */
.hero-dp-rotating-border::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: inherit;
  filter: blur(12px);
  opacity: 0.85;
  z-index: -1;
}

/* Crisp Golden Counter-Spinning Accent Crescent Ring */
.hero-dp-rotating-border::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #ffd700;
  border-bottom-color: #ff5400;
  filter: drop-shadow(0 0 8px #ffb703);
  animation: heroCounterRotate 8s linear infinite;
  pointer-events: none;
}

/* Dynamic Interactive Hover Overdrive */
.hero-dp-container:hover .hero-dp-rotating-border {
  animation-duration: 1.8s;
  box-shadow: 0 0 55px rgba(255, 183, 3, 0.95), 0 0 24px rgba(255, 84, 0, 0.8);
  filter: saturate(1.4) brightness(1.1);
}

.hero-dp-container:hover .hero-dp-rotating-border::after {
  animation-duration: 2.5s;
  border-top-color: #ffffff;
  border-bottom-color: #ffd700;
  filter: drop-shadow(0 0 14px #ffffff);
}

.hero-dp-container:hover .hero-dp-orbit-ring {
  animation-duration: 6s;
  border-color: rgba(255, 215, 0, 1);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}

.hero-dp-container:hover .hero-dp-glow-aura {
  opacity: 1;
  transform: scale(1.18);
  filter: blur(18px);
}

/* Inner Imperial Bezel Framing the DP Photo */
.hero-dp-inner-ring {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2d241e 0%, #120f0c 100%);
  padding: 6.5px;
  border: 2px solid rgba(255, 215, 0, 0.75);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.85), 0 16px 42px rgba(0, 0, 0, 0.45);
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.hero-dp-container:hover .hero-dp-inner-ring {
  border-color: #ffd700;
  box-shadow: inset 0 0 24px rgba(255, 183, 3, 0.3), 0 20px 48px rgba(0, 0, 0, 0.55);
}

.hero-animated-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2.5px solid rgba(255, 215, 0, 0.95);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.4);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-dp-container:hover .hero-animated-logo-img {
  transform: scale(1.06) rotate(1.5deg);
}

/* Royal hallmark badge at bottom of avatar */
.hero-dp-royal-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  background: linear-gradient(135deg, #191512 0%, #2a221b 100%);
  border: 1.5px solid #ffb703;
  color: #ffd700;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 14px rgba(255, 183, 3, 0.45);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.hero-dp-container:hover .hero-dp-royal-badge {
  transform: translateX(-50%) translateY(-3px) scale(1.03);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.65), 0 0 24px rgba(255, 183, 3, 0.75);
  border-color: #ffd700;
}

.hero-dp-royal-badge .badge-icon {
  font-size: 0.9rem;
}

.hero-dp-royal-badge .badge-rating {
  color: #ffb703;
  font-weight: 800;
  font-size: 0.68rem;
  background: rgba(255, 183, 3, 0.18);
  padding: 1px 7px;
  border-radius: 8px;
  border: 1px solid rgba(255, 183, 3, 0.35);
}

/* ═══════════════════════════════════════════════════════
   🌟 HERO SERVICES TICKER (BROCHURE LIVE SERVICES)
═══════════════════════════════════════════════════════ */
.hero-services-ticker-wrap {
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 183, 3, 0.38);
  border-radius: 999px;
  padding: 7px 14px;
  box-shadow: 0 8px 24px rgba(255, 84, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  max-width: 100%;
}

.hero-ticker-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: var(--primary-orange);
  text-transform: uppercase;
  white-space: nowrap;
  padding-right: 12px;
  border-right: 1.5px solid rgba(255, 183, 3, 0.45);
}

.hero-ticker-label .ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff5400;
  box-shadow: 0 0 8px #ff5400;
  animation: pulseDot 1.5s infinite;
}

.hero-services-ticker-track {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.hero-services-ticker-content {
  display: flex;
  gap: 10px;
  animation: tickerScroll 42s linear infinite;
  white-space: nowrap;
  will-change: transform;
}

.hero-services-ticker-track:hover .hero-services-ticker-content {
  animation-play-state: paused;
}

.service-ticker-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #2b2622;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.service-ticker-chip:hover {
  background: #fff8f0;
  border-color: #ff5400;
  color: #ff5400;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(255, 84, 0, 0.2);
}

.service-ticker-chip.highlight-new {
  border-color: rgba(225, 29, 72, 0.45);
  background: #fff1f2;
  color: #be123c;
}

.service-ticker-chip.highlight-new span {
  background: #e11d48;
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 6px;
  margin-left: 2px;
}

/* Ticker mobile text handling */
.hero-ticker-label .ticker-text-short {
  display: none;
}
.hero-ticker-label .ticker-text-long {
  display: inline;
}

@media (max-width: 640px) {
  .hero-services-ticker-wrap {
    margin-top: 14px;
    padding: 5px 8px;
    gap: 8px;
    border-radius: 999px;
  }
  .hero-ticker-label {
    font-size: 0.65rem;
    padding-right: 8px;
    gap: 5px;
    letter-spacing: 0.4px;
    flex-shrink: 0;
  }
  .hero-ticker-label .ticker-dot {
    width: 6px;
    height: 6px;
  }
  .service-ticker-chip {
    padding: 4px 10px;
    font-size: 0.72rem;
    gap: 4px;
  }
  .hero-services-ticker-content {
    gap: 7px;
  }
}

@media (max-width: 480px) {
  .hero-services-ticker-wrap {
    padding: 4px 6px;
    gap: 6px;
    border-radius: 999px;
  }
  .hero-ticker-label .ticker-text-long {
    display: none;
  }
  .hero-ticker-label .ticker-text-short {
    display: inline;
  }
  .hero-ticker-label {
    font-size: 0.58rem;
    padding-right: 6px;
    gap: 4px;
    border-right-width: 1px;
  }
  .service-ticker-chip {
    padding: 3px 8px;
    font-size: 0.68rem;
  }
}

/* 🎯 Targeted Service Card Glow when jumped to via anchor */
:target {
  scroll-margin-top: 90px;
  animation: targetCardGlow 2.5s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes targetCardGlow {
  0% {
    box-shadow: var(--shadow-sm);
  }
  25%, 65% {
    box-shadow: 0 0 0 4px #ffb703, 0 16px 45px rgba(255, 84, 0, 0.45);
    transform: translateY(-4px);
  }
  100% {
    box-shadow: var(--shadow-sm);
  }
}

/* KEYFRAMES FOR ROTATING ANIMATIONS */
@keyframes heroBorderRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes heroCounterRotate {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

@keyframes heroAuraBreathe {
  0% {
    transform: scale(0.93);
    opacity: 0.65;
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes sparkleTwinkle {
  0% {
    opacity: 0.4;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1.25);
  }
}

@keyframes pulseDot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.6;
  }
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ── STATS BANNER ── */
.stats-banner {
  margin: 8px 0 32px;
}

.stats-grid {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 14px 10px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-amber);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 22px;
    gap: 16px;
  }
}

.stat-item {
  padding: 4px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 2.2rem;
  }
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ── SECTION COMMONS ── */
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-orange);
  background: var(--bg-warm-tint);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-amber);
  margin-bottom: 8px;
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
}

.section-subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── ABOUT SECTION ── */
.about-section {
  padding: 36px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-orange);
  border-bottom: 1px solid var(--border-orange);
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

@media (min-width: 992px) {
  .about-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
  }
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

.highlight-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-warm-tint);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-amber);
}

.highlight-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.about-visual-showcase {
  background: var(--gradient-sunburst);
  padding: 6px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  cursor: pointer;
}

.about-visual-inner {
  position: relative;
  height: 230px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (min-width: 768px) {
  .about-visual-inner {
    height: 320px;
  }
}

.about-visual-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leadership-float-badge-1 {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.badge-avatar {
  font-size: 1.3rem;
}

.badge-text-h4 {
  font-weight: 800;
  font-size: 0.88rem;
}

.badge-text-sub {
  font-size: 0.72rem;
  color: var(--primary-yellow-light);
  font-weight: 600;
}

/* ═════════════════════════════════════════════════════════════
   🎯 ALL-AT-ONCE VISIBLE CATEGORY COLLECTION GRID (No Horizontal Scroll)
═════════════════════════════════════════════════════════════ */
.attractions-section {
  padding: 36px 0;
}

.category-selection-wrap {
  margin-bottom: 32px;
}

.category-selection-title {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 12px;
}

/* 📱 Responsive Grid: 3 columns on mobile, 5 on tablet, 9 on desktop */
.filter-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
}

@media (min-width: 640px) {
  .filter-bar {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
}

@media (min-width: 992px) {
  .filter-bar {
    grid-template-columns: repeat(9, 1fr);
    gap: 10px;
  }
}

.filter-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 6px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-amber);
  background: #ffffff;
  color: var(--text-dark);
  font-family: var(--font-main);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.filter-btn:hover {
  border-color: var(--primary-orange);
  background: var(--bg-warm-tint);
  transform: translateY(-2px);
}

.filter-btn .filter-icon {
  font-size: 1.35rem;
  margin-bottom: 4px;
  line-height: 1;
}

.filter-btn .filter-name {
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
}

.filter-btn .filter-count {
  margin-top: 4px;
  background: var(--bg-warm-tint);
  color: var(--primary-orange);
  font-size: 0.65rem;
  font-weight: 900;
  padding: 1px 6px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-amber);
}

/* 🌟 Active High-Vibrancy Gradient State */
.filter-btn.active {
  background: var(--gradient-sunset);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(255, 84, 0, 0.4);
  transform: translateY(-2px) scale(1.02);
}

.filter-btn.active .filter-name {
  color: #ffffff;
}

.filter-btn.active .filter-count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

/* ── CATEGORY SHELVES ── */
.category-shelf {
  background: #ffffff;
  border-radius: 20px;
  border: 1.5px solid rgba(255, 183, 3, 0.35);
  overflow: hidden;
  margin-bottom: 36px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  content-visibility: auto;
  contain-intrinsic-size: 1px 750px;
}

.shelf-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--shelf-color, #ff5400) 0%, color-mix(in srgb, var(--shelf-color, #ff5400) 80%, white) 100%);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .shelf-header {
    padding: 18px 22px;
    gap: 16px;
  }
}

.shelf-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.shelf-icon-emoji {
  font-size: 1.45rem;
}

.shelf-title-content {
  flex: 1;
  min-width: 0;
}

.shelf-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  .shelf-title {
    font-size: 1.4rem;
  }
}

.shelf-subtitle {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.shelf-count-badge {
  display: none;
}

@media (min-width: 600px) {
  .shelf-count-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.22);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 6px 12px;
    min-width: 54px;
    flex-shrink: 0;
  }
  .shelf-count-badge span {
    font-size: 1.25rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
  }
  .shelf-count-badge small {
    font-size: 0.62rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
  }
}

/* ── ATTRACTIONS GRID ── */
.attractions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 14px;
}

@media (min-width: 600px) {
  .attractions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 18px;
  }
}

@media (min-width: 992px) {
  .attractions-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 22px;
  }
}

/* ── SERVICE CARD (PREMIUM & LIGHTNING FAST) ── */
.service-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1.5px solid rgba(255, 183, 3, 0.28);
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(255, 84, 0, 0.16), 0 4px 12px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-orange);
}

.card-img-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(90deg, #f7f5f2 0%, #ece7df 50%, #f7f5f2 100%);
  background-size: 200% 100%;
  animation: cardShimmer 1.8s ease-in-out infinite;
  contain: paint;
}

@media (min-width: 768px) {
  .card-img-wrapper {
    height: 220px;
  }
}

.card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}

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

@keyframes cardShimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0);
  transition: background 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img-wrapper:hover .card-img-overlay {
  background: rgba(15, 23, 42, 0.4);
}

.card-zoom-hint {
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.card-img-wrapper:hover .card-zoom-hint {
  opacity: 1;
}

.card-category-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  padding: 4px 11px;
  border-radius: var(--radius-full);
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title-h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 4px;
  cursor: pointer;
}

.card-title-h3:hover {
  color: var(--primary-orange);
}

.card-tagline-h4 {
  font-style: italic;
  font-size: 0.82rem;
  color: var(--primary-orange);
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.35;
}

.card-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  flex-grow: 1;
}

.card-feats {
  list-style: none;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card-feats li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.35;
}

.feat-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  min-width: 15px;
  border-radius: 50%;
  background: var(--gradient-sunset);
  color: #ffffff;
  font-size: 0.58rem;
  font-weight: 900;
  margin-top: 1px;
}

.card-footer {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 84, 0, 0.15);
  display: flex;
  gap: 8px;
  align-items: center;
}

.card-book-btn {
  flex: 1;
}

/* ── EVENTS WE SERVE ── */
.events-section {
  padding: 36px 0;
  background: var(--bg-warm-tint);
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 600px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .events-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

.event-cat-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 18px 14px;
  border: 1px solid var(--border-amber);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.event-cat-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.event-cat-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text-dark);
}

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

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 36px 0;
  background: #ffffff;
  border-top: 1px solid var(--border-orange);
  border-bottom: 1px solid var(--border-orange);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

.review-card {
  background: var(--bg-warm-tint);
  border-radius: var(--radius-md);
  padding: 18px;
  border: 1px solid var(--border-amber);
  box-shadow: var(--shadow-sm);
}

.review-stars {
  color: var(--primary-yellow);
  font-size: 1.05rem;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.review-text {
  font-size: 0.86rem;
  color: var(--text-dark);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 12px;
}

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

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-sunset);
  color: #ffffff;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
}

.author-info h4 {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-dark);
}

.author-info span {
  font-size: 0.72rem;
  color: var(--primary-orange);
  font-weight: 700;
}

/* ── FAQ ACCORDION ── */
.faq-section {
  padding: 36px 0;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-amber);
  overflow: hidden;
}

.faq-item.active {
  border-color: var(--primary-orange);
}

.faq-question {
  width: 100%;
  padding: 12px 14px;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  gap: 8px;
}

.faq-icon {
  color: var(--primary-orange);
  font-size: 0.78rem;
  transition: transform 0.25s ease;
}

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

.faq-answer {
  padding: 0 14px 12px;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.55;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ── BOOKING SECTION ── */
.booking-section {
  padding: 36px 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(255, 183, 3, 0.12) 0%, transparent 60%);
}

.booking-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (min-width: 992px) {
  .booking-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 32px;
  }
}

.contact-info-card, .booking-form {
  background: #ffffff;
  padding: 20px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-amber);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .contact-info-card, .booking-form {
    padding: 28px;
  }
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.info-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-warm-tint);
  border: 1px solid var(--border-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-text h4 {
  font-size: 0.72rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.info-text p {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
}

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

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.form-control {
  width: 100%;
  padding: 11px 13px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #cbd5e1;
  font-family: var(--font-main);
  font-size: 0.95rem; /* Prevents auto zoom on iOS */
  background: var(--bg-cream);
  transition: border-color 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-orange);
  background: #ffffff;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 600px) {
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* ── MASTER LUXURY FOOTER (5-COLUMN DESKTOP & MOBILE RESPONSIVE) ── */
.footer {
  background: #0b0f19;
  border-top: 2px solid var(--border-amber);
  color: #e2e8f0;
  padding: 56px 0 24px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-orange), var(--primary-yellow), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

@media (min-width: 540px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (min-width: 820px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}

@media (min-width: 1100px) {
  .footer-grid {
    grid-template-columns: 1.8fr 1fr 1fr 1.1fr 1.1fr;
    gap: 32px;
  }
}

.footer-brand-col p {
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.footer-founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 84, 0, 0.12);
  border: 1px solid rgba(255, 84, 0, 0.35);
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffd166;
  margin-bottom: 14px;
}

.footer-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.8rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer h4, .footer .footer-title {
  font-size: 1.02rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #ffffff;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 8px;
}

.footer h4::after, .footer .footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--primary-orange);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
  color: #94a3b8;
  padding: 0;
  margin: 0;
}

.footer-links li a {
  text-decoration: none;
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  line-height: 1.4;
}

.footer-links li a:hover {
  color: var(--primary-yellow);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 10px;
  line-height: 1.5;
}

.footer-contact-item a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: var(--primary-orange-light);
}

.footer-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff !important;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 10px 18px;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 10px;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.footer-whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: #94a3b8;
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-badge {
  background: rgba(255, 183, 3, 0.1);
  border: 1px solid rgba(255, 183, 3, 0.25);
  color: var(--primary-yellow);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* ── LIGHTBOX MODAL ── */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 15, 25, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 12px;
}

.lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 1.3rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100002;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100002;
}

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

.lightbox-content {
  max-width: 580px;
  width: 100%;
  background: #0f172a;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-img-wrap {
  width: 100%;
  height: 260px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .lightbox-img-wrap {
    height: 360px;
  }
}

.lightbox-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lightbox-caption-box {
  padding: 14px 18px;
  background: #0f172a;
  text-align: center;
}

/* ── 📱 ULTRA SLEEK MOBILE STICKY BOTTOM BAR ── */
.mobile-sticky-bar {
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(11, 15, 25, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 84, 0, 0.35);
  padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
  z-index: 9999;
  box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.25);
}

@media (min-width: 992px) {
  .mobile-sticky-bar {
    display: none;
  }
}

.mobile-sticky-inner {
  display: flex;
  gap: 6px;
  max-width: 480px;
  margin: 0 auto;
}

.mobile-sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 6px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
  color: #ffffff;
  white-space: nowrap;
  line-height: 1;
}

.mobile-sticky-btn.wa {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  flex: 1.2;
}

.mobile-sticky-btn.call {
  background: var(--gradient-sunset);
  flex: 1;
}

.mobile-sticky-btn.games {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  flex: 0.85;
}

/* ── SCROLL ANIMATIONS ── */
.animate-up {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Force All Shelves and Cards to be fully visible immediately (Prevents Scroll Animation Blank Spaces & Late Pop-in) */
.category-shelf,
.category-shelf.animate-up,
.service-card,
.service-card.animate-up,
.exp-card,
.exp-card.animate-up,
.attractions-section .animate-up {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, border-color 0.25s ease !important;
}

/* Hero Mobile Centering & Optimization */
@media (max-width: 768px) {
  .hero-text {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-subtitle {
    text-align: center;
  }
  .hero-desc {
    text-align: center;
  }
  .hero-actions {
    width: 100%;
    justify-content: center;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
  }
}


/* ═══════════════════════════════════════════════════════
   🌟 SIGNATURE EXPERIENCES HUB (DUAL COLUMN ARCHITECTURE)
   Hands-on Experiences (Left) + Our Experiences (Right)
═══════════════════════════════════════════════════════ */

.experiences-section {
  padding: 80px 0 100px;
  background: 
    radial-gradient(ellipse 60% 40% at 15% 20%, rgba(255, 84, 0, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 85% 60%, rgba(139, 92, 246, 0.07) 0%, transparent 70%),
    var(--bg-cream);
  position: relative;
  overflow: hidden;
}

.experiences-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-amber), transparent);
}

/* 🎛️ Control Bar (Tabs & Real-Time Search) */
.exp-control-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-orange);
  box-shadow: var(--shadow-md);
  margin-bottom: 36px;
  position: sticky;
  top: 76px;
  z-index: 20;
  transition: all 0.3s ease;
}

.exp-tab-switches {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.exp-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: var(--radius-full);
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.exp-tab-btn:hover {
  color: var(--text-dark);
  background: rgba(255, 84, 0, 0.08);
}

.exp-tab-btn.active {
  background: var(--gradient-sunburst);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(255, 84, 0, 0.35);
  transform: translateY(-1px);
}

.exp-tab-btn .tab-count {
  display: inline-block;
  font-size: 0.75rem;
  padding: 2px 7px;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.08);
  color: inherit;
  font-weight: 800;
}

.exp-tab-btn.active .tab-count {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.exp-search-box {
  display: flex;
  align-items: center;
  position: relative;
  flex: 1;
  min-width: 260px;
  max-width: 420px;
}

.exp-search-box .search-icon {
  position: absolute;
  left: 14px;
  font-size: 1rem;
  pointer-events: none;
  opacity: 0.6;
}

.exp-search-box input {
  width: 100%;
  padding: 10px 38px 10px 38px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-amber);
  background: #ffffff;
  font-family: var(--font-main);
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: all 0.25s ease;
}

.exp-search-box input:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(255, 84, 0, 0.18);
}

.search-clear-btn {
  position: absolute;
  right: 12px;
  background: rgba(0, 0, 0, 0.08);
  border: none;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  cursor: pointer;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.search-clear-btn:hover {
  background: rgba(255, 84, 0, 0.2);
  color: var(--primary-orange);
}

/* 🏛️ Dual Column Grid Structure - Full Width Responsive Layout */
.experiences-dual-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.experiences-dual-grid.single-column-view {
  display: flex;
  flex-direction: column;
}

.exp-column-wrapper {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
  position: relative;
  transition: all 0.3s ease;
}

.hands-on-wrapper {
  border-top: 4px solid var(--primary-orange);
  background: linear-gradient(180deg, rgba(255, 247, 237, 0.85) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.our-exp-wrapper {
  border-top: 4px solid var(--accent-violet);
  background: linear-gradient(180deg, rgba(245, 243, 255, 0.85) 0%, rgba(255, 255, 255, 0.95) 100%);
}

/* Column Header Banners */
.column-header-banner {
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1.5px dashed var(--border-amber);
  position: relative;
}

.our-exp-wrapper .column-header-banner {
  border-bottom-color: rgba(139, 92, 246, 0.25);
}

.column-badge-top {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.hands-on-wrapper .column-badge-top {
  background: rgba(255, 84, 0, 0.12);
  color: var(--primary-orange);
}

.our-exp-wrapper .column-badge-top {
  background: rgba(139, 92, 246, 0.12);
  color: var(--accent-violet);
}

.column-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.col-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.hands-on-wrapper .col-icon-wrap {
  background: var(--gradient-sunburst);
  color: #fff;
}

.our-exp-wrapper .col-icon-wrap {
  background: linear-gradient(135deg, var(--accent-violet) 0%, #6366f1 100%);
  color: #fff;
}

.column-heading {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.column-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 3px;
}

/* Stack of cards within column */
.exp-cards-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* Base Card Styling for Experiences */
.exp-card {
  border-radius: var(--radius-md);
  background: #ffffff;
  border: 1px solid rgba(255, 84, 0, 0.14);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.28s ease !important;
}

.exp-card:hover {
  transform: translateY(-6px) scale(1.008) !important;
  box-shadow: 0 16px 32px rgba(255, 84, 0, 0.16) !important;
  border-color: var(--primary-orange) !important;
}

.our-exp-wrapper .exp-card {
  border-color: rgba(139, 92, 246, 0.16);
}

.our-exp-wrapper .exp-card:hover {
  border-color: var(--accent-violet) !important;
  box-shadow: 0 16px 32px rgba(139, 92, 246, 0.18) !important;
}

.exp-card .card-img-wrapper {
  height: 200px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: #111827;
}

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

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

.exp-card .card-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.exp-card .card-title-h3 {
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 4px;
}

.exp-card .card-tagline-h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-orange);
  margin-bottom: 10px;
}

.our-exp-wrapper .exp-card .card-tagline-h4 {
  color: var(--accent-violet);
}

.exp-card .card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
  flex: 1;
}

.exp-card .card-feats {
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.exp-card .card-feats li {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.exp-card .feat-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent-emerald);
  font-weight: 900;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.exp-card .card-footer {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: auto;
}

.exp-card .card-footer .card-book-btn {
  flex: 1;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Search Highlight */
.exp-card.search-match {
  animation: matchHighlight 0.8s ease;
}

@keyframes matchHighlight {
  0% { box-shadow: 0 0 0 0 rgba(255, 84, 0, 0.7); }
  50% { box-shadow: 0 0 0 10px rgba(255, 84, 0, 0); }
  100% { box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05); }
}

/* 📱 Tablet & Medium Screens */
@media (min-width: 600px) and (max-width: 1024px) {
  .exp-cards-stack {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* 💻 DESKTOP OPTIMIZATION (min-width: 1025px) */
@media (min-width: 1025px) {
  .experiences-dual-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .exp-column-wrapper {
    width: 100%;
    padding: 30px 28px 34px;
    border-radius: 24px;
    box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06), 0 2px 8px rgba(15, 23, 42, 0.03);
  }

  /* Full-width balanced multi-column grid across desktop - zero blank voids */
  .exp-cards-stack {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(295px, 1fr)) !important;
    gap: 24px;
    align-items: stretch;
  }

  .experiences-dual-grid.single-column-view .exp-cards-stack {
    grid-template-columns: repeat(auto-fill, minmax(295px, 1fr)) !important;
    gap: 24px;
  }

  .exp-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    border: 1px solid rgba(255, 183, 3, 0.28);
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
    background: #ffffff;
  }

  .exp-card .card-img-wrapper {
    height: 200px;
    flex-shrink: 0;
  }

  .exp-card .card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .exp-card .card-title-h3 {
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.28;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .exp-card .card-tagline-h4 {
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 8px;
  }

  .exp-card .card-desc {
    font-size: 0.85rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .exp-card .card-feats {
    margin-bottom: 14px;
    gap: 6px;
  }

  .exp-card .card-feats li {
    font-size: 0.8rem;
    line-height: 1.4;
    gap: 7px;
  }

  .exp-card .card-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
    gap: 8px;
  }

  .exp-card .card-footer .card-book-btn {
    padding: 9px 14px;
    font-size: 0.82rem;
  }

  .exp-card .card-footer .card-btn-circle {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
}

/* 🖥️ WIDE DESKTOP OPTIMIZATION (min-width: 1400px) */
@media (min-width: 1400px) {
  .experiences-dual-grid {
    gap: 44px;
  }

  .exp-column-wrapper {
    padding: 34px 32px 38px;
  }

  .exp-cards-stack {
    grid-template-columns: repeat(auto-fill, minmax(315px, 1fr)) !important;
    gap: 26px;
  }

  .exp-card .card-img-wrapper {
    height: 215px;
  }

  .exp-card .card-title-h3 {
    font-size: 1.25rem;
  }
}

/* 📱 Responsive Breakpoint for Dual Columns */
@media (max-width: 1024px) {
  .experiences-dual-grid {
    gap: 28px;
  }
  
  .exp-control-bar {
    position: static;
  }
}

@media (max-width: 600px) {
  .exp-tab-switches {
    width: 100%;
    justify-content: center;
  }
  
  .exp-tab-btn {
    flex: 1;
    justify-content: center;
    padding: 8px 10px;
    font-size: 0.82rem;
  }
  
  .exp-search-box {
    width: 100%;
    max-width: 100%;
  }
  
  .exp-column-wrapper {
    padding: 16px;
  }
  
  .column-heading {
    font-size: 1.4rem;
  }
}

/* ═══════════════════════════════════════════════════════
   ✨ ULTRA-LUXURY ANIMATIONS & VISUAL POLISH
═══════════════════════════════════════════════════════ */

/* Subtle breathing glow behind hero logo */
.hero-animated-logo-wrap {
  animation: heroGlowAura 5s ease-in-out infinite alternate;
}

@keyframes heroGlowAura {
  0% {
    filter: drop-shadow(0 10px 25px rgba(255, 84, 0, 0.25));
  }
  50% {
    filter: drop-shadow(0 16px 40px rgba(255, 183, 3, 0.45));
  }
  100% {
    filter: drop-shadow(0 10px 25px rgba(255, 84, 0, 0.25));
  }
}

/* Shiny sweep on primary buttons */
.btn-primary {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    60deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: btnShineSweep 4.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes btnShineSweep {
  0% { left: -70%; }
  35% { left: 140%; }
  100% { left: 140%; }
}

/* Glowing pulse for active badges */
.card-category-badge {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.exp-card:hover .card-category-badge {
  transform: scale(1.05);
}

/* Floating WhatsApp Pulsing Ring effect */
.mobile-sticky-btn.wa {
  position: relative;
  overflow: hidden;
}

.mobile-sticky-btn.wa::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: pulseRing 2.2s infinite cubic-bezier(0.24, 0, 0.38, 1);
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* ═══════════════════════════════════════════════════════
   📜 BROCHURE SPOTLIGHT SHOWCASE CARD
═══════════════════════════════════════════════════════ */
.brochure-spotlight-card {
  background: linear-gradient(145deg, #1f1b18, #14110f);
  border: 1.5px solid rgba(255, 183, 3, 0.45);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.25), 0 0 30px rgba(255, 84, 0, 0.1);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .brochure-spotlight-card {
    padding: 32px 36px;
  }
}

.brochure-spotlight-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
}

@media (min-width: 992px) {
  .brochure-spotlight-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.spotlight-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: #ffb703;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.spotlight-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .spotlight-title {
    font-size: 2rem;
  }
}

.spotlight-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  max-width: 620px;
  line-height: 1.55;
}

.station-meta-badge {
  background: rgba(255, 183, 3, 0.12);
  border: 1px solid rgba(255, 183, 3, 0.5);
  border-radius: var(--radius-md);
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

@media (min-width: 992px) {
  .station-meta-badge {
    align-items: flex-end;
  }
}

.smb-gold {
  color: #ffd700;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.smb-tagline {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.brochure-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
  gap: 12px;
}

.bs-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: #f8fafc;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.25;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.bs-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: left 0.6s ease;
}

.bs-item:hover::before {
  left: 100%;
}

.bs-item:hover {
  background: rgba(255, 183, 3, 0.18);
  border-color: #ffb703;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 183, 3, 0.24);
}

.bs-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: #ffb703;
  background: rgba(255, 183, 3, 0.12);
  border: 1px solid rgba(255, 183, 3, 0.35);
  padding: 2px 6px;
  border-radius: 6px;
  min-width: 25px;
  text-align: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.bs-name {
  flex: 1;
  white-space: normal;
  word-break: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.85rem;
  font-weight: 600;
}

.bs-badge {
  font-size: 0.6rem;
  font-weight: 800;
  padding: 3px 6px;
  border-radius: 5px;
  background: #e11d48;
  color: #ffffff;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(225, 29, 72, 0.35);
}

.bs-badge.popular {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.4);
}

.bs-badge.new {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.bs-badge.viral {
  background: linear-gradient(135deg, #ec4899, #e11d48);
  box-shadow: 0 2px 8px rgba(236, 72, 153, 0.4);
}

.bs-badge.trending {
  background: linear-gradient(135deg, #8b5cf6, #6366f1);
  box-shadow: 0 2px 8px rgba(139, 92, 246, 0.4);
}

.bs-badge.vip {
  background: linear-gradient(135deg, #ff5400, #ffb703);
  color: #111827;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(255, 183, 3, 0.5);
}

.bs-item.bs-highlight {
  border-color: rgba(225, 29, 72, 0.55);
  background: rgba(225, 29, 72, 0.14);
}

.bs-item.bs-highlight-vip {
  border-color: rgba(255, 183, 3, 0.65);
  background: rgba(255, 183, 3, 0.14);
}

/* ═══════════════════════════════════════════════════════
   🎉 SITE-WIDE CELEBRATION PARTICLES OVERLAY
═══════════════════════════════════════════════════════ */
.celebration-particles-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none !important;
  z-index: 950;
  opacity: 0.95;
  transition: opacity 0.5s ease;
}

@media (prefers-reduced-motion: reduce) {
  .celebration-particles-overlay {
    display: none !important;
  }
}

