/* Kouhestaneh Swimming Pool - Redesigned Minimal Stylesheet */

/* ===== CSS Variables (Design System) ===== */
:root {
  /* Primary Colors - Ocean Blues */
  --primary-900: hsl(205, 85%, 15%);
  --primary-800: hsl(205, 80%, 22%);
  --primary-700: hsl(205, 75%, 30%);
  --primary-600: hsl(205, 70%, 38%);
  --primary-500: hsl(205, 65%, 45%);
  --primary-400: hsl(200, 70%, 55%);
  --primary-300: hsl(195, 75%, 65%);
  --primary-200: hsl(190, 80%, 80%);
  --primary-100: hsl(190, 85%, 92%);
  --primary-50: hsl(190, 90%, 97%);

  /* Accent Colors - Teal */
  --accent-500: hsl(175, 70%, 42%);
  --accent-400: hsl(175, 75%, 52%);
  --accent-300: hsl(175, 80%, 65%);

  /* Neutral Colors - Light Theme */
  --neutral-900: hsl(220, 25%, 10%);
  --neutral-800: hsl(220, 20%, 20%);
  --neutral-700: hsl(220, 15%, 35%);
  --neutral-600: hsl(220, 10%, 50%);
  --neutral-500: hsl(220, 8%, 60%);
  --neutral-400: hsl(220, 6%, 70%);
  --neutral-300: hsl(220, 5%, 82%);
  --neutral-200: hsl(220, 5%, 90%);
  --neutral-100: hsl(220, 5%, 95%);
  --neutral-50: hsl(220, 5%, 98%);
  --white: hsl(0, 0%, 100%);

  /* Theme Colors */
  --bg-primary: var(--white);
  --bg-secondary: var(--neutral-50);
  --bg-tertiary: var(--neutral-100);
  --bg-card: var(--white);
  --text-primary: var(--neutral-900);
  --text-secondary: var(--neutral-700);
  --text-muted: var(--neutral-600);
  --border-color: var(--neutral-300);
  --header-bg: hsla(0, 0%, 100%, 0.98);
  --shadow-color: hsla(205, 50%, 20%, 0.08);

  /* Gradients */
  --gradient-ocean: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-500) 50%, var(--accent-500) 100%);
  --gradient-wave: linear-gradient(180deg, var(--primary-50) 0%, var(--white) 100%);
  --gradient-hero: linear-gradient(135deg, hsla(205, 85%, 15%, 0.92) 0%, hsla(175, 70%, 42%, 0.85) 100%);
  --gradient-card: linear-gradient(145deg, var(--white) 0%, var(--primary-50) 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px var(--shadow-color);
  --shadow-md: 0 4px 16px var(--shadow-color);
  --shadow-lg: 0 8px 32px var(--shadow-color);
  --shadow-xl: 0 16px 48px var(--shadow-color);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);

  /* Typography */
  --font-primary: 'Vazirmatn', 'Tahoma', 'Arial', sans-serif;
  --font-display: 'Vazirmatn', 'Tahoma', sans-serif;

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

  /* Border Radius */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Dark Theme */
[data-theme="dark"] {
  --primary-50: hsl(205, 45%, 12%);
  --primary-100: hsl(205, 50%, 18%);
  --primary-200: hsl(205, 55%, 24%);
  
  --bg-primary: hsl(220, 30%, 8%);
  --bg-secondary: hsl(220, 28%, 12%);
  --bg-tertiary: hsl(220, 25%, 16%);
  --bg-card: hsl(220, 28%, 14%);
  --text-primary: hsl(220, 20%, 98%);
  --text-secondary: hsl(220, 15%, 85%);
  --text-muted: hsl(220, 12%, 65%);
  --border-color: hsl(220, 20%, 24%);
  --header-bg: hsla(220, 30%, 8%, 0.98);
  --shadow-color: hsla(0, 0%, 0%, 0.3);
  
  --gradient-wave: linear-gradient(180deg, hsl(220, 28%, 12%) 0%, hsl(220, 30%, 8%) 100%);
  --gradient-card: linear-gradient(145deg, hsl(220, 28%, 14%) 0%, hsl(220, 30%, 18%) 100%);
  
  --shadow-sm: 0 2px 8px var(--shadow-color);
  --shadow-md: 0 4px 16px var(--shadow-color);
  --shadow-lg: 0 8px 32px var(--shadow-color);
  --shadow-xl: 0 16px 48px var(--shadow-color);
}

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

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

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  transition: background-color var(--transition-base), color var(--transition-base);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

::selection {
  background-color: var(--primary-400);
  color: white;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

h1 { 
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.2;
}

h2 { 
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
}

h3 { 
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 600;
}

h4 { 
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 600;
}

.text-gradient {
  background: var(--gradient-ocean);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 100%;
  animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* ===== Layout ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  position: relative;
}

.section-header::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-ocean);
  border-radius: var(--radius-full);
  margin: var(--space-lg) auto;
}

.section-header p {
  margin-top: var(--space-md);
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
  line-height: 1.7;
}

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

.grid-2 { 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
}

.grid-3 { 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
}

.grid-4 { 
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
}

/* ===== Header & Navigation ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--header-bg);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.1);
  transition: all var(--transition-base);
  box-shadow: 0 1px 0 var(--border-color);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-500);
  transition: all var(--transition-fast);
}

.logo:hover {
  transform: translateY(-1px);
  color: var(--primary-600);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--gradient-ocean);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  padding: var(--space-sm);
  transition: all var(--transition-base);
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.logo:hover .logo-icon {
  transform: rotate(15deg) scale(1.05);
}

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

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

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: var(--space-sm) var(--space-md);
  position: relative;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-ocean);
  transition: all var(--transition-base);
  transform: translateX(50%);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: calc(100% - 2rem);
}

.nav-link:hover {
  color: var(--primary-500);
  background: var(--primary-50);
}

.nav-link.active {
  color: var(--primary-600);
  font-weight: 600;
}

/* Theme Toggle */
.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.theme-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-ocean);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.theme-toggle:hover::before {
  opacity: 0.1;
}

.theme-toggle:hover {
  transform: rotate(30deg);
  border-color: var(--primary-400);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  stroke: var(--text-secondary);
  transition: all var(--transition-fast);
}

.theme-toggle:hover svg {
  stroke: var(--primary-500);
  transform: scale(1.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 24px;
  padding: 0;
  background: transparent;
  position: relative;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-secondary);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

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

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.mobile-menu-btn:hover span {
  background: var(--primary-500);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--bg-primary);
  z-index: 1000;
  padding: var(--space-3xl) var(--space-xl) var(--space-xl);
  box-shadow: var(--shadow-xl);
  transition: right var(--transition-base) cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  border-left: 1px solid var(--border-color);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.mobile-nav-link {
  font-weight: 500;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  color: var(--text-secondary);
  border: 1px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary-500);
  background: var(--primary-50);
  border-color: var(--primary-100);
  transform: translateX(-8px);
}

/* Overlay for mobile menu */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: hsla(0, 0%, 0%, 0.5);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

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

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}

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

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-ocean);
  color: var(--white);
  box-shadow: var(--shadow-md);
  border: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--primary-600);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--primary-50);
  border-color: var(--primary-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--primary-700);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: hsla(0, 0%, 100%, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-lg {
  padding: var(--space-lg) var(--space-2xl);
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-sm {
  padding: var(--space-sm) var(--space-lg);
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-pool.jpg') center/cover no-repeat;
  transform: scale(1.1);
  transition: transform 10s ease;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
}

.hero:hover .hero-bg {
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  padding: var(--space-4xl) var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: hsla(0, 0%, 100%, 0.15);
  backdrop-filter: blur(20px) saturate(180%);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: var(--space-xl);
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  transition: all var(--transition-base);
}

.hero-badge:hover {
  background: hsla(0, 0%, 100%, 0.25);
  transform: translateY(-2px);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: currentColor;
}

.hero h1 {
  color: var(--white);
  margin-bottom: var(--space-lg);
  font-weight: 800;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  opacity: 0.9;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Features Section ===== */
.features {
  background: var(--gradient-wave);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-ocean);
}

.feature-card {
  background: var(--bg-card);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-ocean);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-300);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--primary-600);
  padding: var(--space-md);
  transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
  background: var(--gradient-ocean);
  color: white;
  transform: rotate(5deg) scale(1.1);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 1.5;
}

.feature-card h3 {
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

.feature-card p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== Stats Section ===== */
.stats {
  background: var(--gradient-ocean);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-2xl);
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: var(--space-xl);
  position: relative;
}

.stat-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: hsla(0, 0%, 100%, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  z-index: -1;
}

.stat-item h3 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-sm);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-item p {
  opacity: 0.9;
  font-size: 1.1rem;
  font-weight: 500;
}

/* ===== Cards ===== */
.card {
  background: var(--gradient-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--border-color);
  position: relative;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-300);
}

.card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
  z-index: 1;
}

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

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

.card-content {
  padding: var(--space-xl);
  position: relative;
}

.card-content h3 {
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

.card-content p {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== Ticket Cards ===== */
.ticket-card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.ticket-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-ocean);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.ticket-card:hover::before {
  transform: scaleX(1);
}

.ticket-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-300);
}

.ticket-card.featured {
  border: 2px solid var(--accent-400);
  transform: scale(1.02);
  z-index: 2;
}

.ticket-card.featured::before {
  height: 6px;
  background: var(--gradient-ocean);
  transform: scaleX(1);
}

.ticket-badge {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  background: var(--accent-400);
  color: var(--white);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ticket-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  color: var(--primary-600);
  padding: var(--space-md);
  transition: all var(--transition-base);
}

.ticket-card:hover .ticket-icon {
  background: var(--gradient-ocean);
  color: white;
  transform: rotate(5deg) scale(1.1);
}

.ticket-card h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.25rem;
}

.ticket-description {
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  font-size: 0.9rem;
  line-height: 1.6;
}

.ticket-price {
  margin-bottom: var(--space-lg);
}

.ticket-price .amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-500);
  line-height: 1;
}

.ticket-price .currency {
  font-size: 1rem;
  color: var(--text-muted);
  margin-right: var(--space-xs);
}

.ticket-features {
  text-align: right;
  margin-bottom: var(--space-xl);
  padding: 0 var(--space-md);
}

.ticket-features li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  position: relative;
}

.ticket-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-500);
  border-radius: 50%;
  margin-left: var(--space-sm);
}

/* ===== Schedule Table ===== */
.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.schedule-table th,
.schedule-table td {
  padding: var(--space-lg);
  text-align: right;
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-fast);
}

.schedule-table th {
  background: var(--primary-700);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.schedule-table tr:hover td {
  background: var(--primary-50);
}

.schedule-table td:first-child {
  font-weight: 600;
}

.schedule-status {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
}

.schedule-status.open {
  background: hsla(145, 70%, 45%, 0.1);
  color: hsl(145, 70%, 35%);
}

[data-theme="dark"] .schedule-status.open {
  background: hsla(145, 70%, 45%, 0.2);
  color: hsl(145, 70%, 55%);
}

.schedule-status.closed {
  background: hsla(0, 70%, 50%, 0.1);
  color: hsl(0, 70%, 45%);
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-tertiary);
}

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

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(205, 85%, 15%, 0.9), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: var(--space-lg);
  pointer-events: none;
}

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

.gallery-overlay p {
  color: var(--white);
  font-weight: 500;
  font-size: 1.125rem;
  transform: translateY(10px);
  transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: hsla(0, 0%, 0%, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  backdrop-filter: blur(20px);
}

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

.lightbox-content {
  max-width: 90vw;
  max-height: 90vh;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: var(--space-xl);
  left: var(--space-xl);
  width: 48px;
  height: 48px;
  background: hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 300;
  transition: all var(--transition-fast);
  border: 1px solid hsla(0, 0%, 100%, 0.2);
}

.lightbox-close:hover {
  background: hsla(0, 0%, 100%, 0.2);
  transform: rotate(90deg);
}

/* ===== Contact Section ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

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

.contact-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.contact-item:hover {
  transform: translateX(8px);
  border-color: var(--primary-300);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--primary-100);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-500);
  padding: var(--space-md);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.contact-item:hover .contact-icon {
  background: var(--gradient-ocean);
  color: white;
  transform: rotate(5deg);
}

.contact-item h4 {
  margin-bottom: var(--space-xs);
  font-size: 1.125rem;
}

.contact-item p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.contact-form {
  background: var(--bg-card);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.contact-form:hover {
  box-shadow: var(--shadow-xl);
}

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

.form-group label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: all var(--transition-fast);
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-400);
  box-shadow: 0 0 0 3px hsla(200, 65%, 50%, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
  line-height: 1.6;
}

/* ===== Map ===== */
.map-container {
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  position: relative;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== Footer ===== */
.footer {
  background: var(--primary-900);
  color: var(--white);
  padding: var(--space-4xl) 0 var(--space-xl);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-ocean);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: var(--space-lg);
}

.footer-brand .logo-icon {
  background: var(--white);
  color: var(--primary-700);
}

.footer-brand p {
  opacity: 0.8;
  margin-bottom: var(--space-xl);
  max-width: 320px;
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--white);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-400);
  border-radius: var(--radius-full);
}

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

.footer-links a {
  display: block;
  padding: var(--space-sm) 0;
  opacity: 0.8;
  transition: all var(--transition-fast);
  font-size: 0.95rem;
  position: relative;
  padding-right: var(--space-md);
}

.footer-links a::before {
  content: '→';
  position: absolute;
  right: 0;
  opacity: 0;
  transition: all var(--transition-fast);
  transform: translateX(5px);
}

.footer-links a:hover {
  opacity: 1;
  transform: translateX(-8px);
  color: var(--accent-300);
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-social {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.footer-social a {
  width: 44px;
  height: 44px;
  background: hsla(0, 0%, 100%, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  border: 1px solid hsla(0, 0%, 100%, 0.2);
}

.footer-social a:hover {
  background: var(--accent-400);
  border-color: var(--accent-400);
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-social a svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.footer-bottom {
  padding-top: var(--space-xl);
  border-top: 1px solid hsla(0, 0%, 100%, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  opacity: 0.7;
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

/* ===== Page Headers ===== */
.page-header {
  position: relative;
  padding: calc(80px + var(--space-4xl)) 0 var(--space-4xl);
  background: var(--gradient-ocean);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23ffffff' fill-opacity='0.05' d='M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,154.7C672,160,768,192,864,186.7C960,181,1056,139,1152,128C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") bottom/cover no-repeat;
}

.page-header h1 {
  color: var(--white);
  position: relative;
  z-index: 1;
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.page-header p {
  position: relative;
  z-index: 1;
  opacity: 0.9;
  max-width: 600px;
  margin: var(--space-md) auto 0;
  font-size: 1.125rem;
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
  font-size: 0.9rem;
  opacity: 0.8;
  position: relative;
  z-index: 1;
}

.breadcrumb a {
  transition: all var(--transition-fast);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
}

.breadcrumb a:hover {
  opacity: 1;
  background: hsla(0, 0%, 100%, 0.1);
}

.breadcrumb span {
  opacity: 0.6;
}

/* ===== Facilities ===== */
.facility-card {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  background: var(--bg-card);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.facility-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-ocean);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.facility-card:hover::before {
  transform: scaleX(1);
}

.facility-card:hover {
  transform: translateX(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-300);
}

.facility-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-100);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--primary-600);
  padding: var(--space-md);
  transition: all var(--transition-base);
}

.facility-card:hover .facility-icon {
  background: var(--gradient-ocean);
  color: white;
  transform: rotate(5deg) scale(1.1);
}

/* ===== Animations ===== */
.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.fade-in-up {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-down {
  animation: fadeInDown 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-left {
  animation: fadeInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-right {
  animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.fade-in-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-in-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-in-delay-3 { animation-delay: 0.3s; opacity: 0; }
.fade-in-delay-4 { animation-delay: 0.4s; opacity: 0; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scroll Animation Classes */
.scroll-animate {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Hover Effects */
.hover-lift {
  transition: transform var(--transition-base);
}

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

.hover-scale {
  transition: transform var(--transition-base);
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-rotate {
  transition: transform var(--transition-base);
}

.hover-rotate:hover {
  transform: rotate(5deg);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 var(--space-xl);
  }
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }
  
  .hero-content {
    padding: var(--space-3xl) var(--space-lg);
  }
  
  .section {
    padding: var(--space-3xl) 0;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav .btn {
    display: none;
  }

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

  .header-content {
    height: 70px;
  }

  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding: var(--space-2xl) var(--space-lg);
  }

  .hero h1 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-md);
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--space-xl);
  }

  .footer-brand {
    align-items: center;
  }

  .footer-brand p {
    text-align: center;
    max-width: 100%;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-title::after {
    right: 50%;
    transform: translateX(50%);
  }

  .footer-links a {
    padding-right: 0;
    justify-content: center;
  }

  .footer-links a::before {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  .schedule-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .ticket-card.featured {
    transform: none;
    order: -1;
  }

  .facility-card {
    flex-direction: column;
    text-align: center;
    gap: var(--space-lg);
  }
  
  .facility-card:hover {
    transform: translateY(-8px);
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    gap: var(--space-lg);
  }
  
  .mobile-nav {
    width: 280px;
    padding: var(--space-2xl) var(--space-lg) var(--space-xl);
  }
  
  .section-header::after {
    margin: var(--space-md) auto;
  }
}

@media (max-width: 480px) {
  :root {
    --space-xl: 1.5rem;
    --space-2xl: 2rem;
    --space-3xl: 2.5rem;
    --space-4xl: 3rem;
  }

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

  .hero-badge {
    font-size: 0.75rem;
    padding: var(--space-xs) var(--space-md);
  }

  .feature-card,
  .card,
  .ticket-card,
  .contact-form {
    padding: var(--space-xl);
  }

  .btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
  }

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

  .stat-item {
    padding: var(--space-lg);
  }

  .stat-item h3 {
    font-size: clamp(2rem, 5vw, 2.5rem);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .mobile-nav {
    width: 100%;
    right: -100%;
  }
  
  .mobile-nav.active {
    right: 0;
  }
}

/* ===== Utilities ===== */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-xl); }
.mt-3 { margin-top: var(--space-2xl); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-xl); }
.mb-3 { margin-bottom: var(--space-2xl); }
.pt-0 { padding-top: 0; }
.pt-1 { padding-top: var(--space-md); }
.pt-2 { padding-top: var(--space-xl); }
.pt-3 { padding-top: var(--space-2xl); }
.pb-0 { padding-bottom: 0; }
.pb-1 { padding-bottom: var(--space-md); }
.pb-2 { padding-bottom: var(--space-xl); }
.pb-3 { padding-bottom: var(--space-2xl); }

.hidden { display: none !important; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.block { display: block; }
.inline-block { display: inline-block; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.justify-start { justify-content: flex-start; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.gap-1 { gap: var(--space-md); }
.gap-2 { gap: var(--space-xl); }
.gap-3 { gap: var(--space-2xl); }

.w-full { width: 100%; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-none { box-shadow: none; }

.border { border: 1px solid var(--border-color); }
.border-t { border-top: 1px solid var(--border-color); }
.border-b { border-bottom: 1px solid var(--border-color); }
.border-l { border-left: 1px solid var(--border-color); }
.border-r { border-right: 1px solid var(--border-color); }

.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

.transition { transition: all var(--transition-base); }
.transition-fast { transition: all var(--transition-fast); }
.transition-slow { transition: all var(--transition-slow); }

.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.pointer-events-none { pointer-events: none; }
.select-none { user-select: none; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.z-auto { z-index: auto; }

.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(8px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); }

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-400);
  border-radius: var(--radius-full);
}

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

/* Print Styles */
@media print {
  .header,
  .footer,
  .hero-buttons,
  .theme-toggle,
  .mobile-menu-btn {
    display: none !important;
  }
  
  .hero {
    min-height: auto;
    padding-top: 0;
  }
  
  .hero-content {
    color: black;
    padding: var(--space-lg) 0;
  }
  
  .hero h1 {
    color: black;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
  
  .section {
    padding: var(--space-xl) 0;
    break-inside: avoid;
  }
}
/* FAQ Items */
.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: var(--space-lg) 0;
  transition: all var(--transition-base);
}

.faq-item:hover {
  transform: translateX(8px);
}

.faq-item h4 {
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
  font-size: 1.1rem;
}

.faq-item p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* Social Icons in Contact Page */
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--primary-100);
  border-radius: var(--radius-md);
  color: var(--primary-600);
  transition: all var(--transition-base);
}

.social-icon:hover {
  background: var(--gradient-ocean);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.social-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}
/* ===== Cart System Styles ===== */
.cart-toggle-btn {
    position: fixed;
    top: 120px;
    left: 24px;
    z-index: 999;
    background: var(--gradient-ocean);
    color: white;
    border-radius: var(--radius-full);
    padding: var(--space-sm) var(--space-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    transition: all var(--transition-base);
}

.cart-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cart-toggle-btn .badge {
    background: var(--white);
    color: var(--primary-700);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    left: -400px;
    width: 380px;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 1001;
    box-shadow: var(--shadow-xl);
    transition: left var(--transition-base);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    left: 0;
}

.cart-header {
    padding: var(--space-xl);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-lg);
}

.cart-footer {
    padding: var(--space-xl);
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.cart-item {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
    border: 1px solid var(--border-color);
}

.cart-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-sm);
}

.cart-item-header h5 {
    margin: 0;
    font-size: 1rem;
}

.btn-remove {
    color: var(--text-muted);
    padding: var(--space-xs);
    border-radius: var(--radius-sm);
}

.btn-remove:hover {
    color: hsl(0, 70%, 50%);
    background: hsla(0, 70%, 50%, 0.1);
}

.cart-item-details {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cart-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: 2px;
}

.quantity-control button {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--bg-primary);
    color: var(--text-primary);
    font-weight: bold;
}

.quantity-control button:hover {
    background: var(--primary-100);
}

.quantity-control input {
    width: 40px;
    text-align: center;
    border: none;
    background: transparent;
    color: var(--text-primary);
}

.cart-item-price {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.original-price {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discounted-price {
    font-weight: bold;
    color: var(--accent-500);
}

.empty-cart {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    color: var(--text-muted);
}

.empty-cart svg {
    margin-bottom: var(--space-md);
    opacity: 0.5;
}

.session-quantity {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.session-quantity input {
    width: 60px;
    text-align: center;
    padding: var(--space-xs);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: hsla(0, 0%, 0%, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

/* دکمه جدید در کارت سانس‌ها */
.add-to-cart-btn {
    margin-top: var(--space-md);
    width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .cart-sidebar {
        width: 100%;
        left: -100%;
    }
    
    .cart-toggle-btn {
        top: auto;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
    }
}/* ===== New Ticket System Styles ===== */

/* Gender Tabs */
.gender-selection {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  margin-bottom: var(--space-2xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.gender-tabs {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

.gender-tab {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-2xl);
  border-radius: var(--radius-lg);
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all var(--transition-base);
  color: var(--text-secondary);
  cursor: pointer;
}

.gender-tab.active {
  background: var(--tab-color);
  color: white;
  border-color: var(--tab-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gender-tab:hover:not(.active) {
  border-color: var(--tab-color);
  color: var(--tab-color);
  transform: translateY(-2px);
}

.gender-tab svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

/* Sessions Containers */
.sessions-container {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.sessions-container.active {
  display: block;
}

.sessions-title {
  text-align: center;
  padding-bottom: var(--space-lg);
  border-bottom: 3px solid;
  border-image: linear-gradient(to left, transparent, currentColor, transparent) 1;
}

/* Week Grid */
.week-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.day-sessions {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.day-sessions:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-300);
}

.day-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--border-color);
}

.day-header h4 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.date {
  font-size: 0.9rem;
  color: var(--text-muted);
  background: var(--primary-50);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
}

/* Session Cards */
.session-card {
  background: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.session-card:hover {
  border-color: var(--primary-400);
  background: var(--primary-50);
}

.session-card.selected {
  border-color: var(--accent-500);
  background: var(--accent-50);
  box-shadow: 0 0 0 3px rgba(var(--accent-500-rgb), 0.1);
}

.session-time {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--text-primary);
  flex-wrap: wrap;
}

.separator {
  color: var(--text-muted);
}

.session-duration {
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.session-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-color);
}

.price {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary-500);
}

.select-session {
  width: 100%;
  margin-top: var(--space-md);
}

/* Selected Session Summary */
.selected-summary {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-primary);
  border-top: 2px solid var(--primary-500);
  padding: var(--space-lg);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  z-index: 100;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.selected-summary.active {
  transform: translateY(0);
}

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

.summary-details {
  flex: 1;
}

.summary-details h4 {
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.summary-meta {
  display: flex;
  gap: var(--space-lg);
  color: var(--text-muted);
  font-size: 0.9rem;
}

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

/* Empty days */
.day-sessions:empty {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .gender-tabs {
    flex-direction: column;
  }
  
  .gender-tab {
    width: 100%;
    justify-content: center;
  }
  
  .week-grid {
    grid-template-columns: 1fr;
  }
  
  .day-header {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }
  
  .session-time {
    flex-direction: column;
    gap: var(--space-xs);
    align-items: flex-start;
  }
  
  .separator {
    display: none;
  }
  
  .summary-content {
    flex-direction: column;
    text-align: center;
    gap: var(--space-md);
  }
  
  .summary-meta {
    flex-direction: column;
    gap: var(--space-xs);
  }
}
/* ===== Shopping Cart Styles ===== */
.cart-toggle-btn {
  position: fixed;
  top: 120px;
  left: 24px;
  z-index: 999;
  background: var(--gradient-ocean);
  color: white;
  border-radius: var(--radius-full);
  padding: var(--space-md) var(--space-xl);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: all var(--transition-base);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cart-toggle-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.cart-badge {
  background: var(--white);
  color: var(--primary-700);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: bold;
}

.cart-sidebar {
  position: fixed;
  top: 0;
  left: -400px;
  width: 380px;
  height: 100vh;
  background: var(--bg-primary);
  z-index: 1001;
  box-shadow: var(--shadow-xl);
  transition: left var(--transition-base);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.cart-sidebar.active {
  left: 0;
}

.cart-header {
  padding: var(--space-xl);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-header h3 {
  margin: 0;
  font-size: 1.5rem;
}

.cart-close-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.cart-close-btn:hover {
  background: var(--primary-100);
  border-color: var(--primary-300);
  transform: rotate(90deg);
}

.cart-content {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-lg);
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.cart-item {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.cart-item:hover {
  border-color: var(--primary-300);
  box-shadow: var(--shadow-sm);
}

.cart-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.cart-item-header h5 {
  margin: 0;
  font-size: 1rem;
  color: var(--text-primary);
  flex: 1;
}

.btn-remove {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  transition: all var(--transition-fast);
  cursor: pointer;
  flex-shrink: 0;
}

.btn-remove:hover {
  background: hsl(0, 70%, 50%);
  border-color: hsl(0, 70%, 50%);
  color: white;
  transform: rotate(90deg);
}

.cart-item-details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.cart-item-details span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--primary-50);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.cart-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.quantity-control {
  display: flex;
  align-items: center;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.quantity-control button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-weight: bold;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.quantity-control button:hover {
  background: var(--primary-100);
  color: var(--primary-600);
}

.quantity-control input {
  width: 40px;
  height: 36px;
  text-align: center;
  border: none;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
}

.quantity-control input::-webkit-inner-spin-button,
.quantity-control input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-control input[type=number] {
  -moz-appearance: textfield;
}

.cart-item-price {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.item-total {
  font-weight: bold;
  font-size: 1.125rem;
  color: var(--primary-600);
}

.item-price {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cart-footer {
  padding: var(--space-xl);
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.cart-summary {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 600;
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--border-color);
}

.total-amount {
  color: var(--primary-600);
  font-size: 1.5rem;
}

.empty-cart {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  color: var(--text-muted);
  display: block;
}

.empty-cart svg {
  margin-bottom: var(--space-md);
  opacity: 0.3;
}

.empty-cart p {
  font-size: 1.125rem;
  margin: 0;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: hsla(0, 0%, 0%, 0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  backdrop-filter: blur(4px);
}

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

/* Toast برای خطا */
.toast-error {
  background: hsl(0, 70%, 50%) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .cart-sidebar {
    width: 100%;
    left: -100%;
  }
  
  .cart-toggle-btn {
    top: auto;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-md);
  }
  
  .cart-toggle-btn span:not(.cart-badge) {
    display: none;
  }
  
  .cart-toggle-btn .cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
  }
}
/* دکمه سبد خرید در ناوبری */
.nav-cart-btn {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  position: relative;
  cursor: pointer;
}

.nav-cart-btn:hover {
  background: var(--primary-50);
  border-color: var(--primary-300);
}

.nav-cart-badge {
  position: absolute;
  top: -8px;
  left: -8px;
  background: var(--accent-500);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  box-shadow: var(--shadow-sm);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .nav-cart-btn span:not(.nav-cart-badge) {
    display: none;
  }
  
  .nav-cart-btn {
    padding: var(--space-sm);
  }
}
