/* Font definition - HighSpeed Local Font */
@font-face {
  font-family: 'HighSpeed';
  src: url('../fonts/HighSpeed.otf') format('opentype'),
    url('../fonts/HighSpeed.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Montserrat Local Fonts */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Font definition removed - Using Local Fonts */

:root {
  color-scheme: dark;
  --primary: #7a509a;
  --primary-dark: #24132f;
  --text: #f5eefc;
  --muted: #c2b3d6;
  --bg: #1a0d2e;
  --accent: #c75af6;
  --gradient: linear-gradient(135deg, #7a509a 0%, #c75af6 100%);
  --font-heading: 'Montserrat', sans-serif;
}

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

body {
  margin: 0;
  font-family: 'Montserrat', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: clip;
}

html {
  overflow-x: clip;
  max-width: 100%;
}


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 14px 5vw;
  display: flex;
  align-items: center;
  gap: 48px;
  background: url('../images/background-1.webp') no-repeat center/cover, #1a0d2e;
  background-color: #1a0d2e;
  /* Fallback while image loads */
  z-index: 9999;
  border-bottom: none;
}

.logo img {
  height: 36px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.primary-nav a {
  position: relative;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 8px 0;
  display: inline-block;
  line-height: 1.5;
  white-space: nowrap;
}

.primary-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent, #c75af6);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}

/* Active State (Same as Hover) */
.primary-nav a.active,
.primary-nav a:hover {
  color: var(--accent, #c75af6);
  transform: skewX(-15deg) translateX(5px);
  opacity: 1;
}

.primary-nav a.active::after,
.primary-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-separator {
  color: #ffffff;
  margin: 0 16px;
  font-size: 0.875rem;
  opacity: 0.5;
  user-select: none;
  line-height: 1.5;
  display: inline-block;
}

.btn {
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn.primary {
  background: #7a509a;
  color: #ffffff;
  border-radius: 8px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.book-now-btn {
  white-space: nowrap;
  text-decoration: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.header-partner-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-partner-img {
  height: 42px;
  margin-left: 30px;
  object-fit: contain;
  transition: transform 0.2s ease, filter 0.2s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.chevron-icon {
  transition: transform 0.2s ease;
  flex-shrink: 0;
  display: block;
}

.book-now-btn:hover .chevron-icon {
  transform: translateY(2px);
}

.btn.secondary {
  background: #ffffff;
  color: var(--primary-dark);
}

.btn.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn:hover {
  filter: brightness(1.2);
  box-shadow: 0 0 20px rgba(122, 80, 154, 0.4);
}

.btn.large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

.btn.full-width {
  width: 100%;
}

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 2.35 / 1;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 3, 11, 0.3) 0%, rgba(8, 3, 11, 0.7) 100%);
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center;
}

/* Hero Video YouTube Embed Styles */
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  transition: opacity 0.5s ease;
}

.hero-poster.hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}

.hero-play-overlay:hover {
  background: rgba(0, 0, 0, 0.4);
}

.hero-play-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.hero-play-btn {
  /* Responsive size: 60px on mobile, scales up to 100px on desktop */
  width: clamp(60px, 8vw, 100px);
  height: clamp(60px, 8vw, 100px);
  background: rgba(122, 80, 154, 0.9);
  border: clamp(2px, 0.3vw, 3px) solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero-play-btn:hover {
  transform: scale(1.15);
  background: var(--primary);
  box-shadow: 0 12px 40px rgba(122, 80, 154, 0.6);
}

.hero-play-btn svg {
  /* Responsive SVG size inside the button */
  width: clamp(20px, 3vw, 36px);
  height: clamp(20px, 3vw, 36px);
  margin-left: clamp(4px, 0.5vw, 8px);
}

.hero-youtube-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  text-align: left;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  margin: 0 0 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #c75af6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.45em;
  color: var(--muted);
  margin-bottom: 1rem;
}

.hero-content h1 {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  margin: 0 0 1rem;
}

.hero-content .subtext {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Gallery - Infinite Marquee Slider */
.hero-gallery {
  padding: 40px 0 20px;
  background: linear-gradient(180deg, rgba(26, 13, 46, 0.9) 0%, rgba(26, 13, 46, 0.98) 100%);
  overflow: hidden;
  width: 100%;
}

.hero-gallery-track {
  display: flex;
  gap: 16px;
  width: max-content;
  cursor: grab;
  /* animation: heroMarquee 60s linear infinite; - Removed for JS control */
  will-change: transform;
  /* Optimize for JS animation */
}

.hero-gallery-track:active {
  cursor: grabbing;
}

/*
.hero-gallery:hover .hero-gallery-track {
  animation-play-state: paused;
}
*/

@keyframes heroMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.hero-gallery-item {
  flex-shrink: 0;
  width: 350px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.hero-gallery-item:hover {
  transform: scale(1.02);
}

.hero-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
  /* Pass events to parent for cleaner handling */
}

.hero-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0.7;
  pointer-events: none;
}

/* Gallery Lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-lightbox.active {
  display: flex;
  opacity: 1;
}

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

.gallery-lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  user-select: none;
  transition: transform 0.3s ease;
}

.gallery-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 10001;
}

.gallery-lightbox-close:hover {
  background: var(--accent);
  transform: rotate(90deg);
}

.gallery-lightbox-prev,
.gallery-lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lightbox-prev {
  left: 24px;
}

.gallery-lightbox-next {
  right: 24px;
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.1);
}

.gallery-lightbox-counter {
  color: #fff;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 8px 16px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.hero-gallery-item {
  cursor: pointer;
}

/* Mobile responsive */
@media (max-width: 768px) {

  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    width: 44px;
    height: 44px;
  }

  .gallery-lightbox-prev {
    left: 12px;
  }

  .gallery-lightbox-next {
    right: 12px;
  }

  .gallery-lightbox-close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }
}

/* Home Experience Preview */
.home-experience-preview {
  margin-bottom: 80px;
}

.home-section-row {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}

.home-section-row--image-right {
  direction: rtl;
}

.home-section-row--image-right>* {
  direction: ltr;
}

.home-section-media {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7);
  min-height: 260px;
}

.home-section-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.home-section-content h4 {
  font-size: 1.6rem;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.home-section-content p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
}

.home-section-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.home-section-content ul li {
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.home-section-content ul li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--accent);
}

/* Removed hover brightness effect */

.section-heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0 0 32px;
  text-align: left;
}

.home-experience-preview .section-heading,
.home-why .section-heading,
.home-locations-preview .section-heading {
  text-align: center;
}

.home-experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.home-experience-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 0 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.home-experience-thumb {
  height: 140px;
  overflow: hidden;
}

.home-experience-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.home-experience-body {
  padding: 20px 20px 24px;
}

.home-experience-card h4 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.home-experience-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.home-experience-card:hover {
  border-color: rgba(199, 90, 246, 0.5);
  box-shadow: 0 0 25px rgba(122, 80, 154, 0.4);
}



.link-inline {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.link-inline:hover {
  text-decoration: underline;
}

/* Why Onion */
.home-why {
  margin-bottom: 80px;
}

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

.home-why-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 0 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.home-why-thumb {
  height: 140px;
  overflow: hidden;
}

.home-why-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.home-why-body {
  padding: 20px 20px 24px;
}

.home-why-card h4 {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.home-why-card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
}

.home-why-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-why-card ul li {
  color: var(--muted);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.home-why-card ul li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--accent);
}

/* Removed hover brightness effect */

/* Location Preview */
.home-locations-preview {
  margin-bottom: 40px;
}

.home-locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.home-location-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-location-image {
  height: 280px;
  overflow: hidden;
}

.home-location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.home-location-body {
  padding: 20px 20px 24px;
}

.home-location-body h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.home-location-body p {
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.6;
}

.home-location-card:hover {
  border-color: rgba(199, 90, 246, 0.8);
  box-shadow: 0 0 25px rgba(122, 80, 154, 0.5);
  filter: brightness(1.1);
}



/* Featured Video Section */
.home-featured-video {
  margin-bottom: 60px;
}

.featured-video-container {
  max-width: 900px;
  margin: 0 auto;
}

.featured-video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.featured-video-card:hover {
  border-color: rgba(199, 90, 246, 0.6);
  box-shadow: 0 0 30px rgba(122, 80, 154, 0.5);
  filter: brightness(1.1);
}

.featured-video-thumb-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.featured-video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-video-card:hover .featured-video-thumb {
  transform: scale(1.05);
}

.featured-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.featured-video-play {
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0.6);
  border: 3px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.featured-video-card:hover .featured-video-play {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.15);
}

.featured-video-play svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.featured-video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}

.featured-video-title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 8px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.featured-video-duration {
  display: inline-block;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 4px 10px;
  font-size: 0.9rem;
  border-radius: 6px;
  font-family: monospace;
}

.feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  padding: 120px 5vw;
  align-items: center;
  background: #120919;
}

.feature+.feature {
  padding-top: 0;
}

.feature-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  transform: rotate(-2deg);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.feature--image-right .feature-media {
  order: 2;
  transform: rotate(2deg);
}

.feature-media::before {
  content: '';
  position: absolute;
  inset: 16px 16px auto auto;
  width: 80px;
  height: 8px;
  background: linear-gradient(90deg, #c75af6, #7a509a);
  border-radius: 999px;
  z-index: 2;
}

.feature-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 0.2rem;
  margin-bottom: 1rem;
}

.feature-content p {
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 1rem;
}

.feature-content .eyebrow {
  margin-bottom: 0.5rem;
}

.feature--image-right .feature-content {
  order: 1;
}

.floating.watch-prompt {
  position: absolute;
  top: 30%;
  right: 5vw;
  z-index: 1;
  display: flex;
  align-items: center;
}

i.mute-toggle,
svg.mute-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 12px;
  box-sizing: border-box;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  user-select: none;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

i.mute-toggle:hover,
svg.mute-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

svg.mute-toggle.is-active {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px rgba(199, 90, 246, 0.4);
}

svg.mute-toggle.is-active:hover {
  box-shadow: 0 6px 28px rgba(199, 90, 246, 0.6);
}


svg.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  user-select: none;
  z-index: 2;
  animation: bounce 2s infinite;
  transition: opacity 0.3s ease;
}

svg.scroll-indicator:hover {
  opacity: 0.8;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.grid-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding: 120px 5vw 80px;
  background: var(--primary-dark);
}

.grid-section article {
  background: rgba(255, 255, 255, 0.03);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 220px;
}

.grid-section h2 {
  margin-top: 0;
  color: #ffffff;
}

.grid-section p {
  color: var(--muted);
  line-height: 1.5;
}

.site-footer {
  padding: 60px 5vw 40px;
  background: var(--bg);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto 40px;
  text-align: center;
}

.footer-section h3,
.footer-section h4 {
  margin: 0 0 16px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  font-weight: 700;
}

.footer-section p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 16px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section ul li a:hover {
  color: var(--accent);
}

.site-footer .socials {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(199, 90, 246, 0.1);
  /* Purple tint bg */
  border-radius: 50%;
  color: var(--accent);
  /* Purple icon */
  border: 1px solid rgba(199, 90, 246, 0.2);
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(199, 90, 246, 0.4);
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9rem;
}

.newsletter-form input::placeholder {
  color: var(--muted);
}

.newsletter-form button {
  padding: 12px 20px;
  font-size: 0.85rem;
}

/* Footer Partners Section */
.footer-partners {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 0 40px;
}

.footer-partners h4 {
  text-align: center;
  margin: 0 0 32px;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  height: 100px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.partner-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.partner-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.7);
  opacity: 0.6;
}

.partner-item:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

/* View All Partners Button */
.view-all-partners-btn {
  display: block;
  text-align: center;
  margin: 30px auto;
  padding: 12px 30px;
  width: fit-content;
  color: #c75af6;
  /* Purple */
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  clear: both;
  /* Đảm bảo không bị float ảnh hưởng */
}

.view-all-partners-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(199, 90, 246, 0.4);
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 0.85rem;
  margin: 0;
}

.site-footer a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer .socials {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

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

@media (max-width: 1024px) {
  .hero-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature {
    grid-template-columns: 1fr;
    padding: 80px 5vw;
    gap: 32px;
  }

  .feature--image-right .feature-media,
  .feature--image-right .feature-content {
    order: 0;
  }

  .feature-media {
    transform: rotate(0);
  }

  .site-header {
    flex-wrap: wrap;
    gap: 16px;
  }

  .primary-nav {
    order: 3;
    flex-wrap: wrap;
  }

  .floating.watch-prompt {
    position: static;
    margin-top: 24px;
    width: fit-content;
  }
}

/* Experience Section */
.experience-section {
  padding: 120px 5vw;
  background: var(--bg);
  position: relative;
}

.experience-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.section-header .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.section-header h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
}

.section-description {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.experience-grid {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.experience-category {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.experience-category.visible {
  opacity: 1;
  transform: translateY(0);
}

.category-header {
  text-align: center;
  margin-bottom: 48px;
}

.category-header h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.5rem;
  color: #ffffff;
}

.category-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0;
}

.category-zones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.category-single {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.zone-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.zone-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(122, 80, 154, 0.3);
  border-color: rgba(199, 90, 246, 0.3);
}

.zone-image {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

.zone-card:hover .zone-image img {
  transform: scale(1.1);
}

.zone-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.zone-badge.rookie {
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
}

.zone-content {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.zone-content h4 {
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: #ffffff;
}

.zone-content>p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.zone-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.zone-features li {
  color: var(--muted);
  font-size: 0.95rem;
  padding-left: 24px;
  position: relative;
}

.zone-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.zone-content .btn {
  margin-top: auto;
  width: 100%;
}

/* Intro Section */
.intro-section {
  padding: 120px 5vw;
  background: var(--bg);
  position: relative;
}

.intro-container {
  max-width: 1400px;
  margin: 0 auto;
}

.intro-title {
  font-family: 'HighSpeed', sans-serif;
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 100px;
  letter-spacing: 0.1em;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  white-space: nowrap;
  /* Force 1 line */
}

.intro-feature {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 60px;
  padding: 80px 0;
  align-items: center;
  min-height: 400px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Animation will be handled by JS, but ensure visibility */
.intro-feature.visible {
  opacity: 1;
  transform: translateY(0);
}


@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.intro-feature+.intro-feature {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.intro-feature--image-right {
  direction: rtl;
}

.intro-feature--image-right>* {
  direction: ltr;
}

.intro-feature-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  min-height: 400px;
  transform: rotate(-2deg);
  transition: transform 0.3s ease;
}

.intro-feature--image-right .intro-feature-media {
  transform: rotate(2deg);
}

.intro-feature-media::before {
  content: '';
  position: absolute;
  inset: 16px 16px auto auto;
  width: 80px;
  height: 8px;
  background: linear-gradient(90deg, #c75af6, #7a509a);
  border-radius: 999px;
  z-index: 2;
}

.intro-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.intro-feature:hover .intro-feature-media {
  transform: scale(1.05) rotate(0deg);
}

.intro-feature:hover .intro-feature-media img {
  transform: scale(1.1);
}

.locations-preview,
.experience-preview {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  height: 400px;
}

.locations-preview img,
.experience-preview img {
  height: 100%;
  object-fit: cover;
}

.experience-preview {
  grid-template-columns: repeat(3, 1fr);
}

.intro-feature-content {
  display: flex;
  flex-direction: column;
}

.intro-feature-content h3 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin: 0 0 24px;
  color: #ffffff;
  font-weight: 600;
}

.intro-feature-content p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 20px;
  font-size: 1.05rem;
}

.intro-feature-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.intro-feature-content ul li {
  color: var(--muted);
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.7;
  font-size: 1rem;
}

.intro-feature-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.intro-feature-content ul li strong {
  color: #ffffff;
  font-weight: 600;
}

.intro-feature-content .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Stats Section */
.stats-section {
  padding: 100px 5vw;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

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

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Countdown Section */
.countdown-section {
  padding: 120px 5vw;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg) 100%);
  text-align: center;
  position: relative;
}

.countdown-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(199, 90, 246, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.countdown-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.countdown-section h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin: 1rem 0 3rem;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 32px;
  min-width: 120px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(199, 90, 246, 0.3);
}

.countdown-value {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.countdown-label {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Booking Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: var(--bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.modal-content h2 {
  margin-top: 0;
  margin-bottom: 2rem;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  font-size: 0.9rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 11;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Footer Improvements */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 48px;
  margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.footer-section p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section ul li a:hover {
  color: var(--text);
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text);
  transition: all 0.3s ease;
  margin-right: 12px;
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

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

.newsletter-form input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--text);
  font-family: inherit;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: var(--muted);
}

/* Scroll Animations */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Feature Section Improvements */
.feature {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.feature-media {
  transition: transform 0.3s ease;
}

.feature:hover .feature-media {
  transform: scale(1.05) rotate(0deg);
}

@media (max-width: 1024px) {
  .home-experience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-locations-grid {
    grid-template-columns: 1fr;
  }

  .category-zones {
    grid-template-columns: 1fr;
  }

  .zone-features {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .countdown-timer {
    gap: 16px;
  }

  .countdown-item {
    min-width: 100px;
    padding: 20px 24px;
  }
}

@media (max-width: 1024px) {
  .primary-nav {
    gap: 0;
  }

  .nav-separator {
    margin: 0 8px;
  }

  .primary-nav a {
    font-size: 0.8rem;
  }
}

@media (max-width: 825px) {
  .site-header {
    justify-content: space-between;
  }

  .primary-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #0a0410;
    flex-direction: column;
    padding: 20px 5vw;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 0;
    flex: none;
  }

  .primary-nav.active {
    transform: translateX(0);
  }

  .nav-separator {
    display: none;
  }

  .primary-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .book-now-btn {
    margin-left: 0;
    order: 1;
  }

  .mobile-menu-toggle {
    display: flex;
    order: 2;
  }

  .logo {
    order: 0;
  }

  .feature {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .hero {
    padding-top: 120px;
    align-items: flex-start;
  }

  .hero-content {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
  }

  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .countdown-timer {
    gap: 12px;
  }

  .countdown-item {
    min-width: 80px;
    padding: 16px 20px;
  }

  .modal-content {
    padding: 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Smaller screens grid adjustments */
@media (max-width: 640px) {
  .hero-gallery-item {
    width: 300px;
    height: 170px;
  }

  .hero-gallery-track {
    gap: 12px;
    animation-duration: 50s;
  }

  .home-experience-grid {
    grid-template-columns: 1fr;
  }

  .home-why-grid {
    grid-template-columns: 1fr;
  }

  .experience-section {
    padding: 80px 5vw;
  }

  .experience-grid {
    gap: 60px;
  }

  .category-zones {
    grid-template-columns: 1fr;
  }

  .zone-image {
    height: 250px;
  }

  .zone-content {
    padding: 24px;
  }

  .intro-feature {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }

  .intro-feature--image-right {
    direction: ltr;
  }

  .locations-preview,
  .experience-preview {
    height: 300px;
    grid-template-columns: 1fr;
  }

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

  .intro-title {
    margin-bottom: 60px;
  }

  .hero {
    aspect-ratio: 16/9;
    /* Taller aspect ratio for tablet/mobile */
  }
}

/* Responsive - Mobile (480px) */
@media (max-width: 480px) {
  .site-header {
    padding: 10px 4vw;
  }

  .logo img {
    height: 28px;
  }

  .book-now-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .hero {
    padding: 90px 4vw 40px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .subtext {
    font-size: 0.95rem;
  }

  .hero-gallery {
    padding: 20px 0 10px;
  }

  .hero-gallery-item {
    width: 280px;
    height: 160px;
    border-radius: 12px;
  }

  .hero-gallery-track {
    gap: 10px;
    animation-duration: 45s;
  }

  .intro-container {
    padding: 40px 4vw;
  }

  .intro-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
    white-space: normal;
  }

  .section-heading {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .home-section-row {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }

  .home-section-content h4 {
    font-size: 1.25rem;
  }

  .home-section-media {
    border-radius: 16px;
    min-height: 180px;
  }

  .home-location-image {
    height: 180px;
  }

  .home-location-body {
    padding: 16px;
  }

  .home-location-body h4 {
    font-size: 1rem;
  }

  .site-footer {
    padding: 24px 4vw;
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    gap: 24px;
  }

  .footer-section h3,
  .footer-section h4 {
    font-size: 1.1rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
  }

  .modal-content {
    margin: 10px;
    padding: 20px;
    max-height: 90vh;
  }

  .modal-content h2 {
    font-size: 1.25rem;
  }
}

/* Responsive - Mobile nhỏ (375px) */
@media (max-width: 375px) {
  .site-header {
    padding: 8px 3vw;
    gap: 8px;
  }

  .logo img {
    height: 24px;
  }

  .book-now-btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .btn.primary {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .hero-content h1 {
    font-size: 1.75rem;
  }

  .intro-title {
    font-size: 1.5rem;
  }

  .section-heading {
    font-size: 1.25rem;
  }

  .home-section-content h4 {
    font-size: 1.1rem;
  }

  .home-section-content p,
  .home-section-content ul li {
    font-size: 0.875rem;
  }

  .link-inline {
    font-size: 0.85rem;
  }

  .modal-content {
    margin: 5px;
    padding: 16px;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}

/* Loading Spinner */
.spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Button disabled state */
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Highlights Section */
.highlights-section {
  padding: 2rem 1rem;
  background-color: #0a0a0a;
}

#highlights {
  background: url('../images/background-2.webp') no-repeat center/cover, #0a0a0a;
}

#featuredVideo {
  background: url('../images/background-3.webp') no-repeat center/cover, #0a0a0a;
}

.highlights-container {
  max-width: 1400px;
  margin: 0 auto;
}

.highlights-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.highlights-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.highlights-nav {
  display: flex;
  gap: 1rem;
}

.nav-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.highlights-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.highlights-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  -ms-overflow-style: none;
  /* IE/Edge */
  scrollbar-width: none;
  /* Firefox */
}

.highlights-slider::-webkit-scrollbar {
  display: none;
}

.highlight-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  background: #151515;
  transition: transform 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

@media(min-width: 768px) {
  .highlight-card {
    flex: 0 0 400px;
  }
}

.highlight-card:hover {
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(122, 80, 154, 0.4);
  filter: brightness(1.2);
}

.highlight-thumb-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

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



.play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

.highlight-card:hover .play-icon {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translate(-50%, -50%);
}

.highlight-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 3px 8px;
  font-size: 0.8rem;
  border-radius: 4px;
  font-weight: 500;
  font-family: monospace;
}

.highlight-info {
  padding: 1.25rem;
}

.highlight-title {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Modal Video Player */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.video-modal.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  background: #000;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(0, 255, 136, 0.2);
}

.video-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}

.video-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Feedback Section via F1 Style */
.feedback-section {
  padding: 2rem 1rem;
  background: #1a0d2e;
}

.feedback-container {
  max-width: 1400px;
  margin: 0 auto;
  background-color: #24132f;
  /* Combine Pattern + Gradient: Pattern on top */
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E"),
    linear-gradient(135deg, #6a3a90 0%, #24132f 100%);
  border: 1px solid rgba(122, 80, 154, 0.4);
  border-radius: 20px;
  padding: 4rem 3rem;
  color: #fff;
}

.feedback-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  background: linear-gradient(#ffffff, #ffffff), url('../images/background-1.webp');
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feedback-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-weight: 500;
  max-width: 600px;
  line-height: 1.6;
  color: #c2b3d6;
  /* Muted text */
}

.feedback-btn {
  background: #fff;
  color: #24132f;
  /* Dark Purple Text */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 99px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
}

.feedback-btn:hover {
  transform: none !important;
  box-shadow: none !important;
  background: #f0f0f0;
}

@media (max-width: 768px) {
  .feedback-container {
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
  }
}

/* Header Scroll Effect */
.site-header {
  transition: all 0.3s ease;
  /* Removed global transparent background to fix other pages */
}

.site-header.transparent-mode {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

.site-header.scrolled {
  /* Explicitly force all background properties to match default .site-header */
  background-image: url('../images/background-1.webp') !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: cover !important;

  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);

  /* Remove extra effects to ensure consistency */
  border-bottom: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding-top: 14px;
  /* Restore default padding */
  padding-bottom: 14px;
}

/* --- UI/UX Improvements --- */

/* 1. Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0410;
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* 2. Accessibility Focus State */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* 3. Mobile Optimizations */
@media (max-width: 768px) {

  /* Fix iOS Input Zoom by enforcing 16px font size */
  input,
  select,
  textarea {
    font-size: 16px !important;
  }

  /* Optimize Touch Areas */
  .btn,
  .nav-btn,
  button,
  a.link-inline {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Global Section Header H1 */
.section-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin: 0 0 1.5rem;
  background: var(--gradient, linear-gradient(135deg, #7a509a 0%, #c75af6 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  text-transform: uppercase;
  line-height: 1.4;
  font-weight: 700;
  padding: 0.2em 0;
}

/* ==========================================
   Cookie Consent Banner
   ========================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 4, 16, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99999;
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  gap: 24px;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  flex: 1;
  max-width: 800px;
}

.cookie-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 8px 0;
  font-weight: 500;
}

.cookie-link {
  color: #c75af6;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.cookie-link:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.cookie-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.cookie-actions .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.cookie-actions .btn-necessary {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-actions .btn-necessary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-actions .btn-all {
  background: #c75af6;
  color: #fff;
  box-shadow: 0 0 15px rgba(199, 90, 246, 0.3);
}

.cookie-actions .btn-all:hover {
  background: #d87bff;
  color: #fff;
  box-shadow: 0 0 25px rgba(199, 90, 246, 0.5);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .cookie-actions .btn {
    width: 100%;
    justify-content: center;
  }
}