/* ======================================================
   AquaFalls Park — Liquid Glass Theme
   Modern UI with glassmorphism & fluid water aesthetics
   ====================================================== */

/* ---------- CSS Variables ---------- */
:root {
  /* Core palette */
  --aqua-50: #ecfeff;
  --aqua-100: #cffafe;
  --aqua-200: #a5f3fc;
  --aqua-300: #67e8f9;
  --aqua-400: #22d3ee;
  --aqua-500: #06b6d4;
  --aqua-600: #0891b2;
  --aqua-700: #0e7490;
  --aqua-800: #155e75;
  --aqua-900: #164e63;

  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;

  --emerald-400: #34d399;
  --emerald-500: #10b981;

  --violet-400: #a78bfa;
  --violet-500: #8b5cf6;

  /* Neutrals */
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;

  /* Glass properties */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-bg-hover: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-border-strong: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  --glass-shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.3);
  --glass-blur: 20px;
  --glass-blur-heavy: 40px;

  /* Gradient */
  --gradient-primary: linear-gradient(135deg, var(--aqua-400), var(--blue-500), var(--violet-400));
  --gradient-warm: linear-gradient(135deg, var(--aqua-300), var(--emerald-400));
  --gradient-glow: linear-gradient(135deg, rgba(6, 182, 212, 0.4), rgba(59, 130, 246, 0.4), rgba(139, 92, 246, 0.3));

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --section-padding: 120px 0;
  --container-max: 1280px;
  --nav-height: 72px;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-base: 0.3s var(--ease-out-expo);
  --transition-slow: 0.6s var(--ease-out-expo);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: var(--slate-950);
  color: var(--slate-100);
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

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

ul {
  list-style: none;
}

/* ---------- Three.js Canvas ---------- */
#waterfall-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Fluid Overlay ---------- */
.fluid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(6, 182, 212, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 70%, rgba(59, 130, 246, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 50%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
}

/* ---------- Glass Utilities ---------- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--glass-shadow);
  transition: all var(--transition-base);
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-strong);
  box-shadow: var(--glass-shadow-lg);
  transform: translateY(-4px);
}

.glass-card-mini {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 12px 20px;
}

.glass-frame {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  position: relative;
}

.glass-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--aqua-300);
  letter-spacing: 0.02em;
}

.glass-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gradient-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 24px rgba(6, 182, 212, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

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

.glass-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.45), inset 0 1px 0 rgba(255,255,255,0.25);
}

.glass-btn-primary:hover::before {
  left: 100%;
}

.glass-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border-strong);
  border-radius: 16px;
  color: var(--slate-100);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition-base);
}

.glass-btn-secondary:hover {
  background: var(--glass-bg-hover);
  border-color: var(--aqua-400);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.15);
}

.glass-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  color: var(--slate-300);
  transition: all var(--transition-base);
}

.glass-icon-btn:hover {
  background: var(--glass-bg-hover);
  border-color: var(--aqua-400);
  color: var(--aqua-300);
  transform: translateY(-2px);
}

.glass-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  color: var(--slate-100);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: all var(--transition-base);
}

.glass-input:focus {
  border-color: var(--aqua-400);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

.glass-input::placeholder {
  color: var(--slate-500);
}

/* ---------- Gradient Text ---------- */
.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Icons ---------- */
.btn-icon,
.badge-icon,
.tag-icon,
.form-icon,
.location-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.card-icon {
  width: 24px;
  height: 24px;
}

.stat-icon {
  width: 22px;
  height: 22px;
  color: var(--aqua-400);
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
  color: var(--aqua-400);
}

/* ---------- Navigation ---------- */
.glass-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(2, 6, 23, 0.6);
  backdrop-filter: blur(var(--glass-blur-heavy));
  -webkit-backdrop-filter: blur(var(--glass-blur-heavy));
  border-bottom: 1px solid var(--glass-border);
  transition: all var(--transition-base);
}

.glass-nav.scrolled {
  background: rgba(2, 6, 23, 0.85);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-link {
  padding: 8px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--slate-400);
  transition: all var(--transition-base);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--slate-100);
  background: var(--glass-bg);
}

.nav-link.active {
  color: var(--aqua-300);
}

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.88rem !important;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  color: var(--slate-300);
  padding: 8px;
  border-radius: 8px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 32px 80px;
  max-width: var(--container-max);
  margin: 0 auto;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  margin-bottom: 28px;
  animation: fadeInUp 0.8s var(--ease-out-expo) both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.1s both;
}

.title-line {
  display: block;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--slate-400);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.3s both;
}

.hero-btn {
  font-size: 1rem;
}

.hero-stats {
  display: flex;
  gap: 16px;
  animation: fadeInUp 0.8s var(--ease-out-expo) 0.4s both;
}

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

.stat-number {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--slate-50);
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-image-wrapper {
  flex: 1;
  max-width: 520px;
  animation: fadeInUp 1s var(--ease-out-expo) 0.3s both;
}

.hero-image {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.image-shine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%, rgba(255,255,255,0.03) 100%);
  pointer-events: none;
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  z-index: 2;
  padding: var(--section-padding);
}

.section-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

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

.section-tag {
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 20px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--slate-400);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Experience Cards ---------- */
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.experience-card {
  overflow: hidden;
  border-radius: 24px;
}

.card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.experience-card:hover .card-image img {
  transform: scale(1.08);
}

.card-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, var(--slate-950), transparent);
  pointer-events: none;
}

.card-body {
  padding: 24px 28px 28px;
}

.card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gradient-glow);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--aqua-300);
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.card-desc {
  font-size: 0.92rem;
  color: var(--slate-400);
  line-height: 1.6;
  margin-bottom: 20px;
}

.card-footer {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--slate-400);
  background: rgba(255, 255, 255, 0.04);
  padding: 6px 14px;
  border-radius: 10px;
  border: 1px solid var(--glass-border);
}

.card-tag .tag-icon {
  width: 14px;
  height: 14px;
  color: var(--aqua-400);
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 16px;
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

.gallery-item {
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  transition: opacity var(--transition-base);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  width: 28px;
  height: 28px;
}

/* ---------- Tickets ---------- */
.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.ticket-card {
  padding: 0;
  overflow: hidden;
  position: relative;
}

.ticket-featured {
  border-color: var(--aqua-500);
  box-shadow: 0 8px 40px rgba(6, 182, 212, 0.2), var(--glass-shadow);
  transform: scale(1.04);
}

.ticket-featured:hover {
  transform: scale(1.06);
}

.ticket-popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gradient-primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: white;
  z-index: 2;
}

.ticket-popular-badge .badge-icon {
  width: 14px;
  height: 14px;
}

.ticket-header {
  padding: 32px 28px 20px;
}

.ticket-tier {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--aqua-300);
  margin-bottom: 12px;
}

.tier-icon {
  width: 22px;
  height: 22px;
}

.ticket-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.price-currency {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--slate-300);
}

.price-amount {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--slate-50);
}

.price-period {
  font-size: 0.9rem;
  color: var(--slate-500);
  margin-left: 4px;
}

.ticket-body {
  padding: 0 28px 28px;
}

.ticket-features {
  margin-bottom: 28px;
}

.ticket-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.92rem;
  color: var(--slate-300);
}

.ticket-features li:last-child {
  border-bottom: none;
}

.feature-check {
  width: 18px;
  height: 18px;
  color: var(--emerald-400);
  flex-shrink: 0;
}

.feature-x {
  width: 18px;
  height: 18px;
  color: var(--slate-600);
  flex-shrink: 0;
}

.feature-disabled {
  color: var(--slate-600) !important;
}

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

.ticket-ribbon {
  height: 120px;
  overflow: hidden;
  position: relative;
}

.ticket-ribbon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.ticket-ribbon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, var(--slate-950) 0%, transparent 30%, transparent 70%, var(--slate-950) 100%);
  z-index: 1;
  pointer-events: none;
}

/* ---------- Digital Ticket Preview ---------- */
.ticket-preview-section {
  margin-top: 80px;
  text-align: center;
}

.preview-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 32px;
  color: var(--slate-300);
}

.digital-ticket {
  display: flex;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.digital-ticket:hover {
  transform: translateY(-4px);
}

.dt-left {
  flex: 1;
  padding: 32px;
  text-align: left;
}

.dt-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 28px;
  color: var(--aqua-300);
}

.dt-logo-icon {
  width: 24px;
  height: 24px;
}

.dt-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dt-label {
  font-size: 0.82rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dt-value {
  font-weight: 600;
  font-size: 0.95rem;
}

.dt-highlight {
  color: var(--aqua-300);
}

.dt-divider {
  width: 1px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dt-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--slate-950);
  position: absolute;
  z-index: 2;
}

.dt-circle-top {
  top: -12px;
}

.dt-circle-bottom {
  bottom: -12px;
}

.dt-dashed {
  width: 1px;
  height: 100%;
  background: repeating-linear-gradient(
    to bottom,
    var(--glass-border) 0px,
    var(--glass-border) 6px,
    transparent 6px,
    transparent 12px
  );
}

.dt-right {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.dt-qr {
  width: 100px;
  height: 100px;
}

.qr-placeholder {
  width: 100%;
  height: 100%;
  color: var(--slate-300);
}

.dt-code {
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-400);
  letter-spacing: 0.06em;
}

.dt-scan {
  font-size: 0.75rem;
  color: var(--slate-600);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.testimonial-card {
  padding: 32px;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.star-icon {
  width: 18px;
  height: 18px;
  color: #fbbf24;
}

.star-icon.filled {
  fill: #fbbf24;
  color: #fbbf24;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--slate-300);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  border: 2px solid var(--glass-border);
}

.author-name {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
}

.author-location {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--slate-500);
}

.location-icon {
  width: 13px;
  height: 13px;
}

/* ---------- Contact ---------- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  padding: 0;
  border-radius: 32px;
}

.contact-info {
  padding: 48px;
  border-right: 1px solid var(--glass-border);
}

.contact-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-desc {
  color: var(--slate-400);
  margin-bottom: 36px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  color: var(--aqua-400);
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-label {
  display: block;
  font-size: 0.78rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.contact-value {
  display: block;
  font-size: 0.92rem;
  color: var(--slate-200);
}

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

.contact-form-wrap {
  padding: 48px;
}

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

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--slate-400);
  margin-bottom: 8px;
}

.form-group .form-icon {
  color: var(--aqua-400);
  width: 16px;
  height: 16px;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
  margin-top: 8px;
}

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--glass-border);
  padding: 48px 0;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 32px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
}

.footer-logo-icon {
  width: 26px;
  height: 26px;
  color: var(--aqua-400);
}

.footer-tagline {
  color: var(--slate-500);
  font-size: 0.9rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.85rem;
  color: var(--slate-600);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: var(--slate-500);
  transition: color var(--transition-base);
}

.footer-links a:hover {
  color: var(--aqua-400);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s var(--ease-out-expo);
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 140px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

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

  .hero-image-wrapper {
    max-width: 100%;
  }

  .hero-image img {
    height: 360px;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .gallery-large {
    grid-column: span 2;
    grid-row: span 1;
  }

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

  .ticket-featured {
    transform: none;
  }

  .ticket-featured:hover {
    transform: translateY(-4px);
  }

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

  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    border-right: none;
    border-bottom: 1px solid var(--glass-border);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px 0;
    --nav-height: 64px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(var(--glass-blur-heavy));
    -webkit-backdrop-filter: blur(var(--glass-blur-heavy));
    flex-direction: column;
    padding: 16px;
    border-bottom: 1px solid var(--glass-border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-cta {
    display: none !important;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 120px 20px 60px;
    gap: 40px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-large,
  .gallery-wide {
    grid-column: span 1;
  }

  .section-container {
    padding: 0 20px;
  }

  .contact-info,
  .contact-form-wrap {
    padding: 32px 24px;
  }

  .digital-ticket {
    flex-direction: column;
  }

  .dt-divider {
    width: 100%;
    height: 1px;
    flex-direction: row;
  }

  .dt-circle {
    width: 24px;
    height: 24px;
  }

  .dt-circle-top {
    top: -12px;
    left: -12px;
  }

  .dt-circle-bottom {
    top: -12px;
    left: auto;
    right: -12px;
    bottom: auto;
  }

  .dt-dashed {
    width: 100%;
    height: 1px;
    background: repeating-linear-gradient(
      to right,
      var(--glass-border) 0px,
      var(--glass-border) 6px,
      transparent 6px,
      transparent 12px
    );
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ---------- Liquid Glass Shimmer Effect ---------- */
@keyframes liquidShimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.03) 40%,
    rgba(255, 255, 255, 0.06) 50%,
    rgba(255, 255, 255, 0.03) 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: liquidShimmer 8s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.glass-card > * {
  position: relative;
  z-index: 1;
}

/* Subtle water reflection on glass elements */
.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--slate-950);
}

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

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

/* ---------- Fullscreen Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(2, 6, 23, 0.92);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-out-expo);
  cursor: zoom-out;
}

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

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.4s var(--ease-out-expo);
}

.lightbox.active img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  color: var(--slate-300);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  z-index: 10000;
}

.lightbox-close:hover {
  background: var(--glass-bg-hover);
  color: white;
  border-color: var(--aqua-400);
}
