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

:root {
  --bg-dark: #070312;
  --bg-card: rgba(15, 9, 32, 0.6);
  --bg-card-hover: rgba(114, 9, 183, 0.15);
  --primary: #7209b7;
  --primary-glow: rgba(114, 9, 183, 0.15);
  --secondary: #3f37c9;
  --secondary-glow: rgba(63, 55, 201, 0.15);
  --accent-blue: #00b4d8;
  --border-color: rgba(157, 78, 221, 0.15);
  --border-color-hover: rgba(157, 78, 221, 0.4);
  --text-white: #ffffff;
  --text-muted: #a5a1b8;
  --text-dim: #6d6984;
  --gradient-main: linear-gradient(135deg, #7209b7 0%, #3f37c9 100%);
  --gradient-blue: linear-gradient(135deg, #00b4d8 0%, #3f37c9 100%);
  --font-sans: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  position: relative;
}

/* Ambient glow spotlights */
.spotlight {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(120px);
  opacity: 0.4;
}
.spotlight-1 {
  top: -100px;
  right: -100px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
}
.spotlight-2 {
  top: 800px;
  left: -200px;
  background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
}
.spotlight-3 {
  bottom: 500px;
  right: -100px;
  background: radial-gradient(circle, var(--accent-blue) 0%, transparent 70%);
}

/* NAVIGATION */
.l-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 3, 18, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(157, 78, 221, 0.15);
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.l-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.l-nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  padding: 3px;
}
.l-nav-logo-text {
  display: flex;
  flex-direction: column;
}
.l-nav-logo-text .title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.5px;
}
.l-nav-logo-text .sub {
  font-size: 9px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.l-nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}
.l-nav-links a {
  padding: 8px 16px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.3s ease;
}
.l-nav-links a:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.05);
}
.l-nav-links a.active {
  color: var(--text-white);
  background: rgba(157, 78, 221, 0.2);
  border: 1px solid var(--border-color);
}
.l-nav-cta {
  background: var(--gradient-main);
  color: var(--text-white);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(247, 37, 133, 0.3);
  transition: all 0.3s ease;
}
.l-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(247, 37, 133, 0.5);
}
.l-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.l-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-white);
  display: block;
  transition: 0.3s;
}

/* MOBILE NAV */
.l-mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  background: rgba(7, 3, 18, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  z-index: 999;
  flex-direction: column;
  padding: 20px;
  gap: 10px;
}
.l-mobile-menu.open {
  display: flex;
}
.l-mobile-menu a {
  padding: 12px 20px;
  text-decoration: none;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  transition: 0.3s;
}
.l-mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
}

/* HERO SECTION */
.l-hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 5% 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  overflow: hidden;
  background: linear-gradient(135deg, #09031a 0%, #150935 50%, #09031a 100%);
  background-size: 200% 200%;
  animation: bgGradientMove 20s ease infinite;
}
.l-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(114, 9, 183, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(114, 9, 183, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at 75% 50%, black 20%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at 75% 50%, black 20%, transparent 85%);
  pointer-events: none;
  z-index: -1;
  animation: gridMove 25s linear infinite;
}
@keyframes gridMove {
  from { background-position: 0 0; }
  to { background-position: 50px 50px; }
}
.l-hero-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.l-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(247, 37, 133, 0.1);
  border: 1px solid rgba(247, 37, 133, 0.3);
  color: var(--secondary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.l-hero-tag span {
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  animation: pulseGlow 1.5s infinite;
}
@keyframes pulseGlow {
  0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(247, 37, 133, 0.7); }
  70% { transform: scale(1.2); opacity: 0.5; box-shadow: 0 0 0 6px rgba(247, 37, 133, 0); }
  100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(247, 37, 133, 0); }
}
.l-hero h1 {
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}
.l-hero h1 span.hl-v {
  background: linear-gradient(to right, #b5179e, var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.l-hero h1 span.hl-b {
  background: linear-gradient(to right, #4cc9f0, #3f37c9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.l-hero-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}
.l-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.l-hero-img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.l-hero-img::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(247, 37, 133, 0.2) 0%, rgba(76, 201, 240, 0.15) 45%, transparent 70%);
  filter: blur(50px);
  z-index: -1;
  animation: pulseGlowCircle 8s ease-in-out infinite alternate;
}
@keyframes pulseGlowCircle {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 1; }
}
.l-hero-img img {
  width: 100%;
  max-width: 780px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(157, 78, 221, 0.4));
  animation: floatBook 4.5s ease-in-out infinite;
}
@keyframes floatBook {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-20px) rotate(1.5deg); }
}

/* BUTTONS */
.btn-v {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gradient-main);
  color: var(--text-white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(247, 37, 133, 0.3);
}
.btn-v:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(247, 37, 133, 0.5);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-white);
  padding: 13px 31px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-color-hover);
  transform: translateY(-2px);
}

/* SECTION BASICS WITH ANIMATED BACKGROUND AND FLOATING ORBS */
.l-section {
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(135deg, #09031a 0%, #150935 50%, #09031a 100%);
  background-size: 200% 200%;
  animation: bgGradientMove 20s ease infinite;
}

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

/* Subtle, homogeneous background grid on all sections */
.l-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(247, 37, 133, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(247, 37, 133, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: -1;
}

/* Soft floating glowing orb on each section */
.l-section::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(114, 9, 183, 0.12) 0%, rgba(76, 201, 240, 0.06) 50%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: -1;
  animation: floatSectionOrb 12s ease-in-out infinite alternate;
}

/* Alternating positioning of floating orbs to break monotony */
.l-section:nth-of-type(even)::after {
  right: -100px;
  top: -100px;
  animation-delay: -3s;
}
.l-section:nth-of-type(odd)::after {
  left: -100px;
  bottom: -100px;
}

@keyframes floatSectionOrb {
  0% { transform: translate(0, 0) scale(0.9); }
  100% { transform: translate(50px, 50px) scale(1.1); }
}
.l-container {
  max-width: 1400px;
  margin: 0 auto;
}
.l-section-head {
  margin-bottom: 64px;
}
.l-section-head.center {
  text-align: center;
}
.l-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.l-section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.l-section-title span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.l-section-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
}
.l-section-sub.center {
  margin: 0 auto;
}

/* STATS ROW (Vivid Pills style from reference) */
.l-stats-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: -35px;
  margin-bottom: 55px;
  position: relative;
  z-index: 10;
}
.l-stat-pill {
  background: rgba(15, 9, 32, 0.85);
  border: 1px solid rgba(157, 78, 221, 0.45);
  padding: 12px 28px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 15px rgba(157, 78, 221, 0.15);
  transition: all 0.3s ease;
}
.l-stat-pill:hover {
  transform: translateY(-3px);
  border-color: rgba(247, 37, 133, 0.8);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(247, 37, 133, 0.3);
}
.l-stat-pill-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.5px;
}
.l-stat-pill-sub {
  font-size: 12px;
  color: #ffd166;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* CARDS GRIDS */
.l-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.l-cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.l-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.l-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.3s;
}
.l-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-color-hover);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(157, 78, 221, 0.15);
}
.l-card:hover::before {
  opacity: 1;
}
.l-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(157, 78, 221, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary);
}
.l-card-icon.blue {
  background: rgba(76, 201, 240, 0.15);
  color: var(--accent-blue);
}
.l-card-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}
.l-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.l-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.l-tag {
  display: inline-block;
  background: rgba(247, 37, 133, 0.15);
  color: var(--secondary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* SENSES SECTION */
.l-senses-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
.l-senses-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.l-senses-visual img {
  width: 100%;
  max-width: 440px;
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}
.l-senses {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.l-sense-row {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}
.l-sense-row::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: transparent;
  transition: background 0.3s;
}
.l-sense-row.active::before, .l-sense-row:hover::before {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}
.l-sense-row:hover, .l-sense-row.active {
  background: var(--bg-card-hover);
  border-color: rgba(76, 201, 240, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(114, 9, 183, 0.15);
}
.l-sense-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.5;
  margin-bottom: 16px;
  transition: all 0.3s;
}
.l-sense-row.active .l-sense-num, .l-sense-row:hover .l-sense-num {
  color: var(--secondary);
  opacity: 1;
  transform: scale(1.1);
}
.l-sense-row h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}
.l-sense-row p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* PAVILION TABS */
.l-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}
.l-tab {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s;
}
.l-tab:hover {
  color: var(--text-white);
  background: rgba(255,255,255,0.05);
}
.l-tab.active {
  color: var(--text-white);
  background: var(--gradient-main);
  box-shadow: 0 4px 15px rgba(247, 37, 133, 0.3);
}
.l-tab-content {
  display: none;
}
.l-tab-content.active {
  display: block;
}

/* Schedule Section Custom Layout (matching user screenshot) */
.schedule-header-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}
.schedule-header-left {
  text-align: left;
}
.schedule-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1.5px;
}
.schedule-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 580px;
}
.schedule-header-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Glassmorphism Info Pills */
.glass-pill-info {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 24px;
  border-radius: 16px;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
.glass-pill-info:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.glass-pill-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.glass-pill-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.glass-pill-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 2px;
  text-align: left;
}
.glass-pill-sub {
  font-size: 12px;
  color: var(--text-muted);
  text-align: left;
}

/* Pill-shaped scrolling timeline tabs */
/* 14 Nights Card Grid */
.l-nights-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 50px;
}
.l-night-card {
  background: rgba(15, 9, 32, 0.65);
  border: 2px solid var(--card-glow);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: calc(16.66% - 17px);
  min-width: 170px;
  min-height: 200px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.02);
}
.l-night-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 18px;
  box-shadow: 0 0 15px var(--card-glow);
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.3s ease, box-shadow 0.3s ease;
}
.l-night-card:hover {
  transform: translateY(-6px);
  background: rgba(22, 13, 46, 0.8);
}
.l-night-card:hover::before {
  opacity: 0.95;
  box-shadow: 0 0 25px var(--card-glow);
}
.l-night-card .night-label {
  font-size: 11px;
  font-weight: 600;
  color: #a5a1b8;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.l-night-card .night-title {
  font-size: 18px;
  font-weight: 800;
  color: #ffd166; /* Gorgeous golden yellow as in user screenshot */
  margin: 12px 0;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.l-night-card .night-sub {
  font-size: 11px;
  color: #ffffff;
  font-style: italic;
  opacity: 0.85;
  line-height: 1.4;
}

@media(max-width: 1200px) {
  .l-night-card {
    width: calc(25% - 15px); /* 4 cards per row */
  }
}
@media(max-width: 900px) {
  .l-night-card {
    width: calc(33.33% - 14px); /* 3 cards per row */
  }
}
@media(max-width: 600px) {
  .l-night-card {
    width: calc(50% - 10px); /* 2 cards per row */
    min-height: 180px;
    padding: 20px 12px;
  }
  .l-night-card .night-title {
    font-size: 15px;
  }
}
@media(max-width: 400px) {
  .l-night-card {
    width: 100%; /* 1 card per row */
  }
}
.features-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.feature-bullet {
  color: var(--secondary);
  font-weight: 800;
}
.feature-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* Mobile responsive fixes */
@media (max-width: 900px) {
  .schedule-header-row {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
  }
  .schedule-header-right {
    flex-direction: row;
  }
  .glass-pill-info {
    flex: 1;
    padding: 12px 16px;
  }
  .schedule-detail-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .schedule-detail-img-wrap {
    height: 220px;
  }
}
@media (max-width: 600px) {
  .schedule-header-right {
    flex-direction: column;
  }
  .features-list {
    grid-template-columns: 1fr;
  }
}

/* COUNTDOWN TIMER BANNER */
.l-countdown-banner {
  background: linear-gradient(90deg, #7209b7 0%, #3f37c9 100%);
  padding: 24px;
  border-radius: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 50px 0;
  border: 1px solid rgba(255,255,255,0.1);
}
.l-countdown-text {
  font-size: 18px;
  font-weight: 800;
}
.l-countdown-timer {
  display: flex;
  gap: 16px;
}
.l-countdown-item {
  background: rgba(0,0,0,0.3);
  border-radius: 12px;
  padding: 10px 18px;
  text-align: center;
  min-width: 70px;
}
.l-countdown-val {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-blue);
}
.l-countdown-lbl {
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

/* DIGITAL ECOSYSTEM SECTION */
.l-eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.l-eco-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s;
}
.l-eco-card:hover {
  border-color: var(--border-color-hover);
  background: var(--bg-card-hover);
}
.l-eco-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
}
.l-eco-card ul {
  list-style: none;
}
.l-eco-card li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 12px 0;
  border-bottom: 1px solid rgba(157, 78, 221, 0.1);
}
.l-eco-card li:last-child {
  border-bottom: none;
}

/* PATHWAY ZONES */
.l-zones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.l-zone-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 24px;
  transition: all 0.3s;
}
.l-zone-card:hover {
  border-color: var(--border-color-hover);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}
.l-zone-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.l-zone-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.l-zone-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* TICKETS */
.l-tickets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.l-ticket {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 32px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.l-ticket.selected, .l-ticket:hover {
  border-color: var(--secondary);
  background: var(--bg-card-hover);
}
.l-ticket.featured {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(157, 78, 221, 0.2);
}
.l-ticket-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-main);
  color: var(--text-white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.l-ticket-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.l-ticket-price {
  font-size: 40px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 12px;
}
.l-ticket-price sup {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}
.l-ticket-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* PROFILE CARDS */
.l-profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.l-profile-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}
.l-profile-card:hover {
  border-color: var(--border-color-hover);
  background: var(--bg-card-hover);
  transform: translateY(-5px);
}
.l-profile-type {
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.l-profile-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.l-profile-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}
.l-profile-cta {
  margin-top: auto;
}

/* FORM WRAP */
.l-form-wrap {
  background: rgba(15, 9, 32, 0.4);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 56px;
}
.l-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.l-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.l-form-group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.l-form-group input, .l-form-group select, .l-form-group textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px 18px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-white);
  outline: none;
  transition: all 0.3s;
}
.l-form-group input:focus, .l-form-group select:focus, .l-form-group textarea:focus {
  border-color: var(--secondary);
  background: rgba(255,255,255,0.06);
}
.l-form-group select option {
  background: var(--bg-dark);
  color: var(--text-white);
}
.l-form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.l-form-info {
  background: rgba(157, 78, 221, 0.1);
  border: 1px solid rgba(157, 78, 221, 0.2);
  border-radius: 14px;
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* FOOTER */
.l-footer {
  border-top: 1px solid var(--border-color);
  padding: 80px 5% 40px;
  background: #04010b;
}
.l-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.l-footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.l-footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.l-footer-col ul {
  list-style: none;
}
.l-footer-col ul li {
  margin-bottom: 12px;
}
.l-footer-col ul li a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 13px;
  transition: color 0.3s;
}
.l-footer-col ul li a:hover {
  color: var(--text-white);
}
.l-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
}

/* TOAST */
.l-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 10000;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 16px 24px;
  min-width: 300px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.l-toast.show {
  transform: translateY(0);
  opacity: 1;
}
.l-toast.success {
  border-color: #4ade80;
}
.l-toast.error {
  border-color: #f87171;
}

/* REVEAL ELEMENT */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.15, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE LAYOUT */
@media(max-width: 1100px) {
  .l-nights-grid { grid-template-columns: repeat(4, 1fr); }
  .l-zones-grid { grid-template-columns: repeat(2, 1fr); }
  .l-tickets { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 900px) {
  .l-nav-links, .l-nav-cta { display: none; }
  .l-hamburger { display: flex; }
  .l-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .l-hero-img { order: -1; }
  .l-hero-img img { max-width: 340px; margin: 0 auto; }
  .l-hero-actions { justify-content: center; }
  .l-senses-container { grid-template-columns: 1fr; }
  .l-cards-3, .l-cards-2 { grid-template-columns: 1fr; }
  .l-profiles-grid { grid-template-columns: 1fr; }
  .l-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 600px) {
  .l-nights-grid { grid-template-columns: repeat(2, 1fr); }
  .l-footer-grid { grid-template-columns: 1fr; }
  .l-footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .l-zones-grid { grid-template-columns: 1fr; }
  .l-tickets { grid-template-columns: 1fr; }
  .l-form-grid { grid-template-columns: 1fr; }
  .l-section { padding: 60px 5%; }
  .l-countdown-banner { flex-direction: column; align-items: center; text-align: center; }
}

/* Responsive Senses Grid */
@media(max-width: 1200px) {
  .l-senses { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width: 768px) {
  .l-senses { grid-template-columns: 1fr; }
}

/* FLOATING / STICKY BOTTOM CTA FOR PASSPORT RESERVATION */
.l-floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  transition: all 0.3s ease;
}
.btn-floating-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  border: 1px solid var(--border-color);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(247, 37, 133, 0.4);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
}
.btn-floating-cta:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(247, 37, 133, 0.6);
  border-color: #fff;
}
@media (max-width: 768px) {
  .l-floating-cta {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 12px 20px;
    background: rgba(7, 3, 18, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid var(--border-color);
  }
  .btn-floating-cta {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 15px;
    border-radius: 12px;
    box-shadow: none;
  }
  .btn-floating-cta:hover {
    transform: none;
  }
}

/* ==========================================
   GLOBAL MOBILE RESPONSIVENESS PATCHES
   ========================================== */

/* 1. Prevent horizontal overflow on html and body */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* 2. Support both 'open' and 'active' classes for mobile menu */
.l-mobile-menu.open,
.l-mobile-menu.active {
  display: flex !important;
}

/* 3. Clip iframe video zoom overflow and force cover aspect-ratio */
.video-bg {
  overflow: hidden !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
.video-bg iframe {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  width: 177.78vh !important;
  height: 100vh !important;
  min-width: 100vw !important;
  min-height: 56.25vw !important;
  transform: translate(-50%, -50%) scale(1.6) !important;
  pointer-events: none !important;
}

/* 4. Fix night cards min-width constraint on very small screens */
@media (max-width: 600px) {
  .l-night-card {
    min-width: 120px !important;
    width: calc(50% - 10px) !important;
  }
}

/* 5. Step indicator wrapping and form wrapping fixes for passport page */
@media (max-width: 768px) {
  .step-indicator {
    flex-wrap: wrap !important;
    gap: 16px !important;
    justify-content: center !important;
  }
  .step-item {
    font-size: 12px !important;
  }
  .l-form-wrap {
    padding: 24px !important;
  }
  .ticket-selector-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

@media (max-width: 480px) {
  .ticket-selector-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================
   REDESIGNED VISION BANNER (LANDING/HOMEPAGE)
   ========================================== */
.vision-banner {
  position: relative;
  background: linear-gradient(135deg, #10062a 0%, #05020c 100%);
  border: 1px solid var(--border-color);
  border-radius: 32px;
  padding: 60px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(255, 255, 255, 0.02);
}

.vision-banner-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.vision-banner-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.vision-banner-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 30px;
  color: var(--text-white);
}

.vision-banner-title span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-vision-cta {
  background: var(--gradient-main);
  color: var(--text-white);
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(114, 9, 183, 0.3);
  transition: all 0.3s ease;
}

.btn-vision-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(114, 9, 183, 0.5);
}

.vision-banner-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
}

.vision-banner-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Stats Row */
.vision-banner-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 50px;
  position: relative;
  z-index: 2;
}

.vision-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vision-stat-number {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
}

.vision-stat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Turbine SVG Graphic */
.vision-turbine-graphic {
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

.rotating-group {
  animation: rotateTurbine 40s linear infinite;
  transform-origin: 200px 200px;
}

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

/* RESPONSIVE BANNER */
@media (max-width: 991px) {
  .vision-banner {
    padding: 40px;
  }
  .vision-banner-top {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
  }
  .vision-banner-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-top: 40px;
  }
  .vision-turbine-graphic {
    width: 350px;
    height: 350px;
    bottom: -80px;
    right: -80px;
  }
}

@media (max-width: 576px) {
  .vision-banner {
    padding: 30px 20px;
    border-radius: 24px;
  }
  .vision-banner-stats {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vision-stat-item {
    gap: 12px;
  }
  .vision-turbine-graphic {
    opacity: 0.2;
    width: 250px;
    height: 250px;
    bottom: -50px;
    right: -50px;
  }
}

/* ==========================================
   SCROLLING TEXT BACKGROUND (TEXT SLIP)
   ========================================== */
.pavilion-text-slip-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}

.pavilion-text-slip {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: slipToLeft 28s linear infinite;
  gap: 60px;
  /* The text height will match the section height via line-height */
  line-height: 1;
}

.pavilion-text-slip span {
  /* 30vh makes the letters roughly fill the vertical space of the section */
  font-size: clamp(120px, 22vw, 30vh);
  font-weight: 900;
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -4px;
  text-transform: uppercase;
  /* Stroke outline only — very subtle */
  -webkit-text-stroke: 1.5px rgba(157, 78, 221, 0.15);
  color: transparent;
  flex-shrink: 0;
  line-height: 1;
}

@keyframes slipToLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* REDESIGNED STACKED CARD PATTERN (SECTION 3) */
.pavilion-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.pavilion-card-wrapper {
  position: relative;
  z-index: 1;
  padding-bottom: 25px; /* space for absolute stacked elements */
}

/* Layered cards behind the main card */
.pavilion-card-wrapper::before,
.pavilion-card-wrapper::after {
  content: '';
  position: absolute;
  width: 92%;
  height: calc(100% - 25px);
  left: 4%;
  border-radius: 24px;
  background: rgba(15, 9, 32, 0.5);
  border: 1px solid rgba(157, 78, 221, 0.12);
  z-index: -1;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pavilion-card-wrapper::before {
  top: 10px;
  transform: rotate(1.5deg);
  background: rgba(114, 9, 183, 0.08);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.pavilion-card-wrapper::after {
  top: 18px;
  transform: rotate(-1.5deg);
  background: rgba(63, 55, 201, 0.04);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.pavilion-stacked-card {
  position: relative;
  background: linear-gradient(135deg, rgba(16, 9, 40, 0.85) 0%, rgba(6, 3, 15, 0.95) 100%);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px 30px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.02);
}

/* Card content styling */
.pavilion-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(114, 9, 183, 0.15) 0%, rgba(0, 180, 216, 0.15) 100%);
  border: 1px solid rgba(157, 78, 221, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent-blue);
  box-shadow: 0 0 15px rgba(0, 180, 216, 0.1);
  transition: all 0.3s ease;
}

.pavilion-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent-blue);
  transition: all 0.3s ease;
}

.pavilion-card-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 8px;
}

.pavilion-card-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-white);
}

.pavilion-card-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 20px;
}

.pavilion-card-details-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pavilion-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  padding-left: 20px;
}

/* Custom bullet indicator */
.pavilion-detail-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-blue);
  box-shadow: 0 0 8px var(--accent-blue);
  transition: all 0.3s ease;
}

.pavilion-detail-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  transition: transform 0.2s ease, color 0.2s ease;
}

.pavilion-detail-desc {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Hover effects for stacked card depth and transformation */
.pavilion-card-wrapper:hover .pavilion-stacked-card {
  transform: translateY(-8px);
  border-color: var(--accent-blue);
  box-shadow: 0 30px 60px rgba(114, 9, 183, 0.3), inset 0 0 20px rgba(0, 180, 216, 0.05);
}

.pavilion-card-wrapper:hover::before {
  transform: translateY(12px) rotate(4deg) scale(0.96);
  background: rgba(114, 9, 183, 0.12);
  border-color: rgba(114, 9, 183, 0.3);
}

.pavilion-card-wrapper:hover::after {
  transform: translateY(22px) rotate(-4deg) scale(0.92);
  background: rgba(63, 55, 201, 0.08);
  border-color: rgba(63, 55, 201, 0.2);
}

.pavilion-card-wrapper:hover .pavilion-card-icon {
  background: linear-gradient(135deg, rgba(114, 9, 183, 0.3) 0%, rgba(0, 180, 216, 0.3) 100%);
  border-color: var(--accent-blue);
  box-shadow: 0 0 25px rgba(0, 180, 216, 0.35);
  transform: scale(1.05);
}

.pavilion-card-wrapper:hover .pavilion-card-icon svg {
  transform: rotate(10deg);
}

/* Details list item interactions */
.pavilion-detail-item:hover .pavilion-detail-title {
  color: var(--accent-blue);
  transform: translateX(4px);
}

.pavilion-detail-item:hover::before {
  background: var(--text-white);
  box-shadow: 0 0 10px var(--text-white);
}

/* RESPONSIVE STACKED CARDS */
@media (max-width: 991px) {
  .pavilion-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .pavilion-cards-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}




