/*
 * =====================================================
 * THE VIEW PALM JUMEIRAH - Official Ticketing Website
 * Premium Dark Luxury Theme with Gold Accents
 * Bilingual EN/AR Support
 * =====================================================
 */

/* ==================== CSS VARIABLES ==================== */
:root {
  /* Brand Colors - Dark Luxury with Gold */
  --tv-black: #0a0a0a;
  --tv-dark: #121212;
  --tv-dark-lighter: #1a1a1a;
  --tv-dark-card: #1e1e1e;
  
  /* Gold Accents */
  --tv-gold: #C9A962;
  --tv-gold-light: #D4BA7A;
  --tv-gold-dark: #A8893F;
  --tv-gold-muted: #8B7442;
  
  /* Complementary Colors */
  --tv-copper: #B87333;
  --tv-bronze: #CD7F32;
  --tv-cream: #F5F0E6;
  
  /* Neutral Colors */
  --tv-white: #FFFFFF;
  --tv-gray-50: #FAFAFA;
  --tv-gray-100: #F5F5F5;
  --tv-gray-200: #E5E5E5;
  --tv-gray-300: #D4D4D4;
  --tv-gray-400: #A3A3A3;
  --tv-gray-500: #737373;
  --tv-gray-600: #525252;
  --tv-gray-700: #404040;
  --tv-gray-800: #262626;
  --tv-gray-900: #171717;
  
  /* Accent Colors */
  --tv-success: #10B981;
  --tv-warning: #F59E0B;
  --tv-danger: #EF4444;
  
  /* Typography */
  --tv-font-display: 'Cormorant Garamond', 'Georgia', serif;
  --tv-font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --tv-font-arabic: 'Noto Sans Arabic', 'Segoe UI', Tahoma, sans-serif;
  
  /* Spacing */
  --tv-space-xs: 0.25rem;
  --tv-space-sm: 0.5rem;
  --tv-space-md: 1rem;
  --tv-space-lg: 1.5rem;
  --tv-space-xl: 2rem;
  --tv-space-2xl: 3rem;
  --tv-space-3xl: 4rem;
  --tv-space-4xl: 6rem;
  
  /* Border Radius */
  --tv-radius-sm: 4px;
  --tv-radius-md: 8px;
  --tv-radius-lg: 12px;
  --tv-radius-xl: 20px;
  --tv-radius-full: 50px;
  
  /* Shadows */
  --tv-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --tv-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --tv-shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
  --tv-shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.6);
  --tv-shadow-gold: 0 4px 20px rgba(201, 169, 98, 0.3);
  --tv-shadow-glow: 0 0 40px rgba(201, 169, 98, 0.2);
  
  /* Transitions */
  --tv-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --tv-transition-bounce: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Layout */
  --tv-promo-height: 48px;
  --tv-header-height: 80px;
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--tv-font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--tv-white);
  background: var(--tv-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* RTL Support for Arabic */
html[dir="rtl"] body {
  font-family: var(--tv-font-arabic);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--tv-transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ==================== CONTAINER ==================== */
.tv-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--tv-space-lg);
}

/* ==================== PROMO BANNER ==================== */
.tv-promo-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  height: var(--tv-promo-height);
  background: linear-gradient(135deg, var(--tv-dark) 0%, var(--tv-dark-lighter) 50%, var(--tv-dark) 100%);
  border-bottom: 1px solid var(--tv-gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--tv-space-md);
  padding: 0 var(--tv-space-md);
  color: var(--tv-cream);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 1px;
  overflow: hidden;
}

.tv-promo-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.1), transparent);
  animation: promo-shine 4s infinite;
}

@keyframes promo-shine {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(50%); }
}

.tv-promo-banner__icon {
  font-size: 1.2rem;
}

.tv-promo-banner__text {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.tv-promo-banner__discount {
  background: linear-gradient(135deg, var(--tv-gold-dark), var(--tv-gold));
  color: var(--tv-dark);
  padding: 5px 16px;
  border-radius: var(--tv-radius-full);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  box-shadow: var(--tv-shadow-gold);
}

.tv-promo-banner__timer {
  display: flex;
  align-items: center;
  gap: var(--tv-space-sm);
  background: rgba(201, 169, 98, 0.15);
  border: 1px solid var(--tv-gold-muted);
  padding: 5px 16px;
  border-radius: var(--tv-radius-full);
  font-weight: 500;
}

.tv-promo-banner__timer span:last-child {
  font-family: var(--tv-font-body);
  font-weight: 700;
  min-width: 48px;
  font-size: 0.95rem;
  color: var(--tv-gold);
}

/* ==================== HEADER ==================== */
.tv-header {
  position: fixed;
  top: var(--tv-promo-height);
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--tv-header-height);
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  transition: var(--tv-transition);
}

.tv-header--scrolled {
  box-shadow: var(--tv-shadow-md);
  background: rgba(10, 10, 10, 0.98);
}

.tv-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.tv-header__contact {
  display: none;
  gap: var(--tv-space-md);
  font-size: 0.8rem;
  color: var(--tv-gray-400);
}

.tv-header__contact a {
  color: var(--tv-gold);
}

.tv-header__contact a:hover {
  color: var(--tv-gold-light);
}

/* Logo */
.tv-header__logo {
  display: flex;
  align-items: center;
  gap: var(--tv-space-md);
}

.tv-header__logo img {
  height: 50px;
  width: auto;
}

.tv-header__logo-text {
  display: none; /* Hidden - logo SVG contains all text */
}

.tv-header__logo-text span {
  font-family: var(--tv-font-display);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--tv-gold);
  letter-spacing: 2px;
}

.tv-header__logo-text small {
  font-size: 0.7rem;
  color: var(--tv-gray-400);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
}

/* Navigation */
.tv-header__nav {
  display: flex;
  align-items: center;
  gap: var(--tv-space-2xl);
}

.tv-header__link {
  color: var(--tv-gray-300);
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: var(--tv-space-sm) 0;
  position: relative;
}

.tv-header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--tv-gold);
  transition: var(--tv-transition);
}

.tv-header__link:hover,
.tv-header__link--active {
  color: var(--tv-gold);
}

.tv-header__link:hover::after,
.tv-header__link--active::after {
  width: 100%;
}

/* Header Actions */
.tv-header__actions {
  display: flex;
  align-items: center;
  gap: var(--tv-space-lg);
}

/* Language Switch */
.tv-lang-switch {
  display: flex;
  background: var(--tv-dark-lighter);
  border: 1px solid var(--tv-gray-700);
  border-radius: var(--tv-radius-full);
  padding: 2px;
}

.tv-lang-btn {
  padding: 6px 14px;
  border-radius: var(--tv-radius-full);
  color: var(--tv-gray-400);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  transition: var(--tv-transition);
}

.tv-lang-btn:hover {
  color: var(--tv-white);
}

.tv-lang-btn--active {
  background: var(--tv-gold);
  color: var(--tv-dark);
  box-shadow: var(--tv-shadow-sm);
}

/* Mobile Menu Button */
.tv-header__menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--tv-space-sm);
}

.tv-header__menu span {
  width: 24px;
  height: 2px;
  background: var(--tv-gold);
  border-radius: 2px;
  transition: var(--tv-transition);
}

/* ==================== BUTTONS ==================== */
.tv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--tv-space-sm);
  padding: 14px 32px;
  border-radius: var(--tv-radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--tv-transition-bounce);
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tv-btn--primary {
  background: var(--tv-gold);
  color: var(--tv-dark);
  border-color: var(--tv-gold);
}

.tv-btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: 0.5s;
}

.tv-btn--primary:hover::before {
  left: 100%;
}

.tv-btn--primary:hover {
  background: var(--tv-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--tv-shadow-gold);
}

.tv-btn--outline {
  background: transparent;
  border-color: var(--tv-gold);
  color: var(--tv-gold);
}

.tv-btn--outline:hover {
  background: var(--tv-gold);
  color: var(--tv-dark);
}

.tv-btn--gold {
  background: linear-gradient(135deg, var(--tv-gold-dark) 0%, var(--tv-gold) 50%, var(--tv-gold-light) 100%);
  color: var(--tv-dark);
  border: none;
  box-shadow: var(--tv-shadow-gold);
}

.tv-btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(201, 169, 98, 0.5);
}

.tv-btn--sm {
  padding: 10px 20px;
  font-size: 0.75rem;
}

.tv-btn--lg {
  padding: 18px 42px;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.tv-btn--block {
  width: 100%;
}

/* ==================== HERO SECTION ==================== */
.tv-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--tv-promo-height) + var(--tv-header-height));
  overflow: hidden;
}

.tv-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: url('../img/hero.webp') center center / cover no-repeat;
}

.tv-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.tv-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, 
    rgba(10, 10, 10, 0.7) 0%, 
    rgba(10, 10, 10, 0.5) 50%,
    rgba(10, 10, 10, 0.9) 100%);
  pointer-events: none;
}

.tv-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--tv-white);
  max-width: 1000px;
  padding: var(--tv-space-4xl) var(--tv-space-lg);
}

.tv-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--tv-space-sm);
  background: rgba(201, 169, 98, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid var(--tv-gold-muted);
  padding: var(--tv-space-sm) var(--tv-space-lg);
  border-radius: var(--tv-radius-full);
  font-size: 0.85rem;
  color: var(--tv-gold);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: var(--tv-space-xl);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.tv-hero__title {
  font-family: var(--tv-font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: var(--tv-space-lg);
  letter-spacing: 4px;
}

.tv-hero__title span {
  display: block;
}

.tv-hero__title-accent {
  color: var(--tv-gold);
  font-weight: 700;
}

.tv-hero__subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--tv-gray-300);
  max-width: 700px;
  margin: 0 auto var(--tv-space-2xl);
  line-height: 1.8;
  letter-spacing: 1px;
}

.tv-hero__cta {
  display: flex;
  gap: var(--tv-space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--tv-space-3xl);
}

/* Stats */
.tv-hero__stats {
  display: flex;
  gap: var(--tv-space-3xl);
  justify-content: center;
  flex-wrap: wrap;
  padding-top: var(--tv-space-xl);
  border-top: 1px solid rgba(201, 169, 98, 0.3);
}

.tv-stat-item {
  text-align: center;
}

.tv-stat-item__value {
  display: block;
  font-family: var(--tv-font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--tv-gold);
  margin-bottom: var(--tv-space-xs);
}

.tv-stat-item span:not(.tv-stat-item__value) {
  font-size: 0.8rem;
  color: var(--tv-gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Scroll Indicator */
.tv-hero__scroll {
  position: absolute;
  bottom: var(--tv-space-2xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--tv-space-sm);
  color: var(--tv-gray-400);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tv-hero__scroll-icon {
  width: 24px;
  height: 40px;
  border: 2px solid var(--tv-gold-muted);
  border-radius: 12px;
  position: relative;
}

.tv-hero__scroll-icon::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--tv-gold);
  border-radius: 2px;
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* ==================== SECTIONS ==================== */
.tv-section {
  padding: var(--tv-space-4xl) 0;
}

.tv-section--light {
  background: var(--tv-gray-50);
  color: var(--tv-dark);
}

.tv-section--dark {
  background: var(--tv-dark);
}

.tv-section--gradient {
  background: linear-gradient(180deg, var(--tv-black) 0%, var(--tv-dark) 50%, var(--tv-dark-lighter) 100%);
}

/* Section Header */
.tv-section-header {
  text-align: center;
  margin-bottom: var(--tv-space-3xl);
}

.tv-section-header__tag {
  display: inline-block;
  color: var(--tv-gold);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: var(--tv-space-md);
}

.tv-section-header__title {
  font-family: var(--tv-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--tv-white);
  margin-bottom: var(--tv-space-md);
  letter-spacing: 2px;
}

.tv-section--light .tv-section-header__title {
  color: var(--tv-dark);
}

.tv-section-header__subtitle {
  color: var(--tv-gray-400);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.tv-section--light .tv-section-header__subtitle {
  color: var(--tv-gray-600);
}

/* ==================== TICKET TABS ==================== */
.tv-ticket-tabs {
  display: flex;
  justify-content: center;
  gap: var(--tv-space-sm);
  margin-bottom: var(--tv-space-2xl);
  flex-wrap: wrap;
}

.tv-ticket-tab {
  padding: 12px 28px;
  border: 1px solid var(--tv-gray-700);
  border-radius: var(--tv-radius-full);
  color: var(--tv-gray-400);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  transition: var(--tv-transition);
}

.tv-ticket-tab:hover {
  border-color: var(--tv-gold-muted);
  color: var(--tv-gold);
}

.tv-ticket-tab--active {
  background: var(--tv-gold);
  border-color: var(--tv-gold);
  color: var(--tv-dark);
}

/* ==================== TICKET CARDS ==================== */
.tv-tickets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--tv-space-xl);
  max-width: 1200px;
  margin: 0 auto;
}

.tv-ticket-card {
  position: relative;
  background: var(--tv-dark-card);
  border: 1px solid var(--tv-gray-800);
  border-radius: var(--tv-radius-lg);
  overflow: hidden;
  transition: var(--tv-transition-bounce);
}

.tv-ticket-card:hover {
  transform: translateY(-8px);
  border-color: var(--tv-gold-muted);
  box-shadow: var(--tv-shadow-lg), var(--tv-shadow-glow);
}

.tv-ticket-card--featured {
  border-color: var(--tv-gold-muted);
}

.tv-ticket-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--tv-gold-dark), var(--tv-gold), var(--tv-gold-light));
}

.tv-ticket-card__badge {
  position: absolute;
  top: var(--tv-space-md);
  left: var(--tv-space-md);
  background: linear-gradient(135deg, var(--tv-gold-dark), var(--tv-gold));
  color: var(--tv-dark);
  padding: 6px 14px;
  border-radius: var(--tv-radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.tv-ticket-card__image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.tv-ticket-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--tv-dark-card) 100%);
}

.tv-ticket-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--tv-transition);
}

.tv-ticket-card:hover .tv-ticket-card__image img {
  transform: scale(1.05);
}

.tv-ticket-card__content {
  padding: var(--tv-space-xl);
}

.tv-ticket-card__title {
  font-family: var(--tv-font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--tv-white);
  margin-bottom: var(--tv-space-sm);
  letter-spacing: 1px;
}

.tv-ticket-card__desc {
  color: var(--tv-gray-400);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: var(--tv-space-md);
  font-weight: 300;
}

.tv-ticket-card__includes {
  margin-bottom: var(--tv-space-lg);
}

.tv-ticket-card__includes li {
  color: var(--tv-gray-300);
  font-size: 0.85rem;
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: var(--tv-space-sm);
}

.tv-ticket-card__includes li::before {
  content: '✓';
  color: var(--tv-gold);
  font-weight: 700;
  font-size: 0.8rem;
}

.tv-ticket-card__pricing {
  margin-bottom: var(--tv-space-lg);
  padding: var(--tv-space-md);
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid var(--tv-gold-muted);
  border-radius: var(--tv-radius-md);
}

.tv-ticket-card__price {
  display: flex;
  align-items: baseline;
  gap: var(--tv-space-sm);
}

.tv-ticket-card__price span {
  color: var(--tv-gray-400);
  font-size: 0.85rem;
}

.tv-ticket-card__price strong {
  font-family: var(--tv-font-display);
  font-size: 1.6rem;
  color: var(--tv-gold);
}

.tv-ticket-card__price-child {
  color: var(--tv-gray-500);
  font-size: 0.8rem;
  margin-top: var(--tv-space-xs);
}

/* ==================== ABOUT SECTION ==================== */
.tv-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--tv-space-4xl);
  align-items: center;
}

.tv-about__content {
  max-width: 600px;
}

.tv-about__title {
  font-family: var(--tv-font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--tv-white);
  margin-bottom: var(--tv-space-lg);
  letter-spacing: 2px;
}

.tv-about__desc {
  color: var(--tv-gray-400);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: var(--tv-space-xl);
  font-weight: 300;
}

.tv-about__features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tv-space-xl);
  margin-bottom: var(--tv-space-xl);
}

.tv-about__feature {
  display: flex;
  align-items: center;
  gap: var(--tv-space-md);
}

.tv-about__feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(201, 169, 98, 0.15);
  border: 1px solid var(--tv-gold-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.tv-about__feature strong {
  display: block;
  color: var(--tv-gold);
  font-size: 0.9rem;
  font-weight: 600;
}

.tv-about__feature span {
  color: var(--tv-gray-500);
  font-size: 0.8rem;
}

.tv-about__image {
  position: relative;
  border-radius: var(--tv-radius-lg);
  overflow: hidden;
}

.tv-about__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.tv-about__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.2), transparent);
}

/* ==================== EXPERIENCE CARDS ==================== */
.tv-experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--tv-space-xl);
}

.tv-experience-card {
  position: relative;
  background: var(--tv-white);
  border-radius: var(--tv-radius-lg);
  overflow: hidden;
  box-shadow: var(--tv-shadow-md);
  transition: var(--tv-transition-bounce);
}

.tv-experience-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tv-shadow-lg);
}

.tv-experience-card__image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.tv-experience-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--tv-transition);
}

.tv-experience-card:hover .tv-experience-card__image img {
  transform: scale(1.08);
}

.tv-experience-card__content {
  padding: var(--tv-space-lg);
}

.tv-experience-card__icon {
  position: absolute;
  top: calc(200px - 28px);
  right: var(--tv-space-lg);
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--tv-gold-dark), var(--tv-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: var(--tv-shadow-md);
  z-index: 2;
}

.tv-experience-card__title {
  font-family: var(--tv-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--tv-dark);
  margin-bottom: var(--tv-space-sm);
}

.tv-experience-card__desc {
  color: var(--tv-gray-600);
  font-size: 0.9rem;
  margin-bottom: var(--tv-space-md);
  font-weight: 300;
}

/* ==================== REVIEWS ==================== */
.tv-reviews-header {
  display: flex;
  justify-content: center;
  gap: var(--tv-space-3xl);
  margin-bottom: var(--tv-space-2xl);
  flex-wrap: wrap;
}

.tv-review-badge {
  display: flex;
  align-items: center;
  gap: var(--tv-space-md);
  background: var(--tv-dark-card);
  border: 1px solid var(--tv-gray-800);
  border-radius: var(--tv-radius-lg);
  padding: var(--tv-space-md) var(--tv-space-xl);
}

.tv-review-badge img {
  height: 40px;
  width: auto;
}

.tv-review-badge__info strong {
  display: block;
  color: var(--tv-white);
  font-size: 0.9rem;
  margin-bottom: var(--tv-space-xs);
}

.tv-review-badge__rating {
  display: flex;
  align-items: center;
  gap: var(--tv-space-sm);
}

.tv-review-badge__score {
  font-family: var(--tv-font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--tv-gold);
}

.tv-review-badge__stars {
  color: var(--tv-gold);
  font-size: 0.9rem;
}

.tv-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--tv-space-xl);
}

.tv-review-card {
  background: var(--tv-dark-card);
  border: 1px solid var(--tv-gray-800);
  border-radius: var(--tv-radius-lg);
  padding: var(--tv-space-xl);
  transition: var(--tv-transition);
}

.tv-review-card:hover {
  border-color: var(--tv-gold-muted);
}

.tv-review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--tv-space-sm);
}

.tv-review-card__author {
  font-weight: 600;
  color: var(--tv-white);
}

.tv-review-card__date {
  color: var(--tv-gray-500);
  font-size: 0.8rem;
}

.tv-review-card__rating {
  color: var(--tv-gold);
  margin-bottom: var(--tv-space-md);
}

.tv-review-card__text {
  color: var(--tv-gray-400);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
}

/* ==================== FEATURES GRID ==================== */
.tv-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--tv-space-xl);
}

.tv-feature-card {
  text-align: center;
  padding: var(--tv-space-2xl);
  background: var(--tv-dark-card);
  border: 1px solid var(--tv-gray-800);
  border-radius: var(--tv-radius-lg);
  transition: var(--tv-transition-bounce);
}

.tv-feature-card:hover {
  border-color: var(--tv-gold-muted);
  transform: translateY(-5px);
}

.tv-feature-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--tv-space-lg);
  background: rgba(201, 169, 98, 0.15);
  border: 1px solid var(--tv-gold-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.tv-feature-card__title {
  font-family: var(--tv-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--tv-gold);
  margin-bottom: var(--tv-space-sm);
}

.tv-feature-card__desc {
  color: var(--tv-gray-400);
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 300;
}

/* ==================== CTA SECTION ==================== */
.tv-cta-section {
  position: relative;
  padding: var(--tv-space-4xl) 0;
  text-align: center;
  overflow: hidden;
}

.tv-cta-section__bg {
  position: absolute;
  inset: 0;
  background: url('../img/cta-bg.webp') center center / cover no-repeat;
  opacity: 0.3;
}

.tv-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--tv-black) 0%, transparent 50%, var(--tv-black) 100%);
}

.tv-cta-section__content {
  position: relative;
  z-index: 1;
}

.tv-cta-section__title {
  font-family: var(--tv-font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--tv-white);
  margin-bottom: var(--tv-space-md);
  letter-spacing: 2px;
}

.tv-cta-section__subtitle {
  color: var(--tv-gray-400);
  font-size: 1.1rem;
  margin-bottom: var(--tv-space-xl);
  font-weight: 300;
}

.tv-cta-section__timer {
  display: inline-flex;
  align-items: center;
  gap: var(--tv-space-sm);
  background: rgba(201, 169, 98, 0.15);
  border: 1px solid var(--tv-gold-muted);
  padding: var(--tv-space-sm) var(--tv-space-xl);
  border-radius: var(--tv-radius-full);
  margin-bottom: var(--tv-space-xl);
  color: var(--tv-cream);
  font-weight: 500;
}

/* ==================== FOOTER ==================== */
.tv-footer {
  background: var(--tv-black);
  color: var(--tv-white);
  padding: var(--tv-space-4xl) 0 var(--tv-space-xl);
  border-top: 1px solid var(--tv-gray-800);
}

.tv-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--tv-space-3xl);
  margin-bottom: var(--tv-space-3xl);
}

.tv-footer__col h4 {
  font-family: var(--tv-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--tv-gold);
  margin-bottom: var(--tv-space-lg);
  letter-spacing: 1px;
}

.tv-footer__col p,
.tv-footer__col li,
.tv-footer__col a {
  color: var(--tv-gray-400);
  font-size: 0.9rem;
  line-height: 2;
  font-weight: 300;
}

.tv-footer__col a:hover {
  color: var(--tv-gold);
}

.tv-footer__logo {
  display: flex;
  align-items: center;
  gap: var(--tv-space-md);
  margin-bottom: var(--tv-space-md);
}

.tv-footer__logo img {
  height: 50px;
}

.tv-footer__contact-info {
  margin-top: var(--tv-space-md);
}

.tv-footer__contact-info a {
  color: var(--tv-gold);
}

.tv-footer__social {
  display: flex;
  justify-content: center;
  gap: var(--tv-space-lg);
  margin-bottom: var(--tv-space-xl);
}

.tv-footer__social a {
  width: 44px;
  height: 44px;
  background: var(--tv-dark-lighter);
  border: 1px solid var(--tv-gray-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--tv-transition);
}

.tv-footer__social a:hover {
  background: var(--tv-gold);
  border-color: var(--tv-gold);
}

.tv-footer__bottom {
  border-top: 1px solid var(--tv-gray-800);
  padding-top: var(--tv-space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--tv-space-md);
}

.tv-footer__bottom p {
  color: var(--tv-gray-500);
  font-size: 0.85rem;
}

.tv-footer__payments {
  display: flex;
  gap: var(--tv-space-sm);
  color: var(--tv-gray-500);
  font-size: 0.85rem;
  align-items: center;
}

.tv-footer__payments span {
  background: var(--tv-dark-lighter);
  padding: 6px 12px;
  border-radius: var(--tv-radius-sm);
  border: 1px solid var(--tv-gray-800);
}

/* ==================== MODAL ==================== */
.tv-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--tv-space-md);
  opacity: 0;
  visibility: hidden;
  transition: var(--tv-transition);
}

.tv-modal-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.tv-modal {
  background: var(--tv-dark);
  border: 1px solid var(--tv-gray-800);
  border-radius: var(--tv-radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--tv-shadow-xl);
  animation: modal-enter 0.3s ease-out;
  overflow: hidden;
}

@keyframes modal-enter {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.tv-modal__header {
  padding: var(--tv-space-md) var(--tv-space-lg);
  border-bottom: 1px solid var(--tv-gray-800);
  position: relative;
  background: var(--tv-dark-lighter);
  flex-shrink: 0;
}

.tv-modal__logo-wrap {
  display: flex;
  align-items: center;
}

.tv-modal__logo {
  height: 28px;
  width: auto;
}

.tv-modal__close {
  position: absolute;
  top: var(--tv-space-md);
  right: var(--tv-space-md);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tv-dark-card);
  color: var(--tv-gray-400);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tv-transition);
  border: 1px solid var(--tv-gray-700);
}

.tv-modal__close:hover {
  background: var(--tv-gold);
  color: var(--tv-dark);
  border-color: var(--tv-gold);
}

.tv-modal__body {
  padding: 16px;
  flex: 1;
  overflow-y: auto;
}

.tv-modal__promo {
  background: linear-gradient(135deg, var(--tv-dark-lighter), var(--tv-dark-card));
  border: 1px solid var(--tv-gold-muted);
  color: var(--tv-cream);
  padding: 8px 14px;
  border-radius: var(--tv-radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 6px;
}

.tv-modal__promo strong {
  color: var(--tv-gold);
}

.tv-modal__field {
  margin-bottom: 12px;
}

.tv-modal__field label {
  display: block;
  color: var(--tv-gray-400);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.tv-modal__field input,
.tv-modal__field select {
  width: 100%;
  padding: 10px 14px;
  background: var(--tv-dark-card);
  border: 1px solid var(--tv-gray-700);
  border-radius: var(--tv-radius-sm);
  color: var(--tv-white);
  font-size: 0.9rem;
  transition: var(--tv-transition);
}

.tv-modal__field input:focus,
.tv-modal__field select:focus {
  outline: none;
  border-color: var(--tv-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

.tv-modal__field input::placeholder {
  color: var(--tv-gray-600);
}

.tv-modal__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Modal Steps */
.tv-modal__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 6px;
}

.tv-step {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--tv-gray-700);
  color: var(--tv-gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.75rem;
  transition: var(--tv-transition);
}

.tv-step.active {
  background: var(--tv-gold);
  color: var(--tv-dark);
}

.tv-step.done {
  background: var(--tv-success);
  color: white;
}

.tv-step-line {
  width: 35px;
  height: 2px;
  background: var(--tv-gray-700);
  transition: var(--tv-transition);
}

.tv-step-line.done {
  background: var(--tv-success);
}

.tv-modal__title {
  font-family: var(--tv-font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--tv-white);
  margin: var(--tv-space-sm) 0 4px;
  text-align: center;
  letter-spacing: 1px;
}

.tv-modal__subtitle {
  text-align: center;
  color: var(--tv-gray-500);
  font-size: 0.8rem;
  margin-bottom: var(--tv-space-md);
}

/* Experience Cards in Modal */
.tv-exp-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: var(--tv-space-sm);
}

.tv-exp-card {
  background: var(--tv-dark-card);
  border-radius: var(--tv-radius-md);
  cursor: pointer;
  transition: var(--tv-transition);
  border: 1px solid var(--tv-gray-700);
  display: flex;
  align-items: center;
  padding: 12px;
  gap: 14px;
}

.tv-exp-card:hover {
  border-color: var(--tv-gold);
  background: rgba(201, 169, 98, 0.1);
}

.tv-exp-card__img {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  position: relative;
  background: linear-gradient(135deg, var(--tv-gold-muted), var(--tv-dark-lighter));
  border-radius: var(--tv-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tv-exp-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tv-exp-card__icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(10, 10, 10, 0.6);
}

.tv-exp-card__info {
  flex: 1;
  min-width: 0;
}

.tv-exp-card__info h4 {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--tv-white);
  margin-bottom: 3px;
}

.tv-exp-card__price {
  font-size: 0.8rem;
  color: var(--tv-gray-400);
}

.tv-exp-card__price strong {
  color: var(--tv-gold);
  font-size: 0.9rem;
}

/* Selected Experience */
.tv-selected-exp {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(201, 169, 98, 0.1);
  border: 1px solid var(--tv-gold-muted);
  border-radius: var(--tv-radius-md);
  margin-bottom: 12px;
}

.tv-selected-exp__icon {
  width: 40px;
  height: 40px;
  background: var(--tv-dark-card);
  border: 1px solid var(--tv-gold-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.tv-selected-exp strong {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--tv-white);
}

.tv-change-btn {
  background: none;
  border: none;
  color: var(--tv-gold);
  font-size: 0.75rem;
  cursor: pointer;
  text-decoration: underline;
  margin-left: auto;
}

/* Ticket Rows */
.tv-ticket-list-compact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}

.tv-ticket-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--tv-dark-card);
  border-radius: var(--tv-radius-md);
  border: 1px solid var(--tv-gray-700);
}

.tv-ticket-row__info {
  flex: 1;
}

.tv-ticket-row__info strong {
  display: block;
  font-weight: 600;
  color: var(--tv-white);
  font-size: 0.85rem;
}

.tv-ticket-row__info small {
  color: var(--tv-gray-500);
  font-size: 0.75rem;
}

.tv-ticket-row__price {
  text-align: right;
  min-width: 85px;
}

.tv-ticket-row__price .old {
  font-size: 0.7rem;
  color: var(--tv-gray-500);
  text-decoration: line-through;
  display: block;
}

.tv-ticket-row__price .now {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--tv-gold);
}

/* Quantity Controls */
.tv-qty-controls {
  display: flex;
  align-items: center;
  gap: 4px;
}

.tv-qty-btn {
  width: 30px;
  height: 30px;
  border-radius: var(--tv-radius-sm);
  background: var(--tv-dark-lighter);
  border: 1px solid var(--tv-gray-700);
  color: var(--tv-gold);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tv-transition);
}

.tv-qty-btn:hover {
  background: var(--tv-gold);
  color: var(--tv-dark);
  border-color: var(--tv-gold);
}

.tv-qty-input {
  width: 40px;
  height: 30px;
  text-align: center;
  background: var(--tv-dark-lighter);
  border: 1px solid var(--tv-gray-700);
  border-radius: var(--tv-radius-sm);
  color: var(--tv-white);
  font-size: 0.9rem;
  font-weight: 700;
}

/* Modal Actions */
.tv-modal__actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--tv-gray-800);
}

.tv-modal__actions .tv-btn {
  flex: 1;
  padding: 12px 18px;
  font-size: 0.85rem;
}

/* Booking Summary */
.tv-booking-summary {
  background: var(--tv-dark-card);
  border-radius: var(--tv-radius-md);
  overflow: hidden;
  margin-bottom: 12px;
}

.tv-summary-header {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--tv-gold-dark), var(--tv-gold));
  color: var(--tv-dark);
  font-weight: 600;
  font-size: 0.85rem;
}

.tv-summary-items {
  padding: 10px 16px;
  border-bottom: 1px solid var(--tv-gray-800);
}

.tv-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  color: var(--tv-gray-300);
  font-size: 0.85rem;
}

.tv-summary-totals {
  padding: 10px 16px;
}

.tv-totals__row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  color: var(--tv-gray-400);
  font-size: 0.8rem;
}

.tv-totals__row.discount {
  color: var(--tv-success);
}

.tv-totals__row.final {
  font-size: 1rem;
  font-weight: 700;
  color: var(--tv-white);
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid var(--tv-gray-700);
}

.tv-totals__row.final span:last-child {
  color: var(--tv-gold);
}

.tv-secure-note {
  text-align: center;
  color: var(--tv-gray-500);
  font-size: 0.75rem;
  margin-top: 10px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .tv-about-grid {
    grid-template-columns: 1fr;
    gap: var(--tv-space-2xl);
  }
  
  .tv-about__image {
    order: -1;
  }
  
  .tv-about__image img {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .tv-promo-banner {
    font-size: 0.7rem;
    gap: var(--tv-space-sm);
  }
  
  .tv-promo-banner__text {
    display: none;
  }
  
  .tv-header__contact {
    display: none;
  }
  
  .tv-header__logo img {
    height: 40px;
  }
  
  .tv-header__logo-text span {
    font-size: 1.1rem;
  }
  
  .tv-header__actions {
    gap: var(--tv-space-sm);
  }
  
  .tv-lang-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
  }
  
  .tv-btn--sm {
    padding: 8px 14px;
    font-size: 0.7rem;
  }
  
  .tv-header__nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--tv-dark);
    flex-direction: column;
    padding: var(--tv-space-lg);
    border-top: 1px solid var(--tv-gray-800);
    box-shadow: var(--tv-shadow-lg);
  }
  
  .tv-header__nav.is-open {
    display: flex;
  }
  
  .tv-header__menu {
    display: flex;
  }
  
  .tv-hero__cta {
    flex-direction: column;
    align-items: center;
  }
  
  .tv-hero__stats {
    gap: var(--tv-space-xl);
  }
  
  .tv-stat-item__value {
    font-size: 1.8rem;
  }
  
  .tv-tickets-grid {
    grid-template-columns: 1fr;
  }
  
  .tv-ticket-tabs {
    gap: var(--tv-space-xs);
  }
  
  .tv-ticket-tab {
    padding: 10px 18px;
    font-size: 0.75rem;
  }
  
  .tv-modal-overlay {
    padding: 0;
    align-items: stretch;
  }
  
  .tv-modal {
    max-width: 100%;
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }
  
  .tv-modal__row {
    grid-template-columns: 1fr;
    gap: var(--tv-space-sm);
  }
  
  .tv-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==================== RTL STYLES ==================== */
html[dir="rtl"] {
  text-align: right;
}

html[dir="rtl"] .tv-header__nav,
html[dir="rtl"] .tv-header__actions {
  flex-direction: row-reverse;
}

html[dir="rtl"] .tv-modal__close {
  right: auto;
  left: var(--tv-space-md);
}

html[dir="rtl"] .tv-ticket-row {
  flex-direction: row-reverse;
}

html[dir="rtl"] .tv-totals__row {
  flex-direction: row-reverse;
}

html[dir="rtl"] .tv-ticket-card__includes li {
  flex-direction: row-reverse;
}

html[dir="rtl"] .tv-change-btn {
  margin-left: 0;
  margin-right: auto;
}

