/* =============================================
   VRArenaHub — Redesigned Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --primary:        #7c3aed;
  --primary-dark:   #5b21b6;
  --primary-light:  #a855f7;
  --secondary:      #06b6d4;
  --secondary-dark: #0891b2;
  --accent:         #f59e0b;
  --success:        #10b981;
  --warning:        #f59e0b;
  --error:          #ef4444;

  --bg-base:        #0a0a0f;
  --bg-surface:     #111827;
  --bg-elevated:    #1f2937;
  --bg-card:        #374151;
  --bg-hover:       #4b5563;
  --bg-gradient:    linear-gradient(135deg, #7c3aed 0%, #06b6d4 100%);

  --text-primary:   #f9fafb;
  --text-secondary: #d1d5db;
  --text-muted:     #9ca3af;
  --text-inverse:   #111827;

  --border:         #374151;
  --border-light:   #4b5563;
  --border-accent:  #7c3aed;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.3);
  --shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.5);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background: var(--bg-base);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

h1, h2, h3, h4 { 
  font-family: 'Orbitron', monospace;
  line-height: 1.1; 
  font-weight: 700; 
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p  { line-height: 1.8; color: var(--text-secondary); font-weight: 300; }

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

.section { padding: var(--space-20) 0; position: relative; }
.section--alt { 
  background: var(--bg-surface);
  position: relative;
}

.section--alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 0%, rgba(124, 58, 237, 0.03) 50%, transparent 100%);
  pointer-events: none;
}

.section__header {
  text-align: center;
  margin-bottom: var(--space-16);
  position: relative;
}

.section__label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-4);
  position: relative;
}

.section__label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -20px;
  width: 12px;
  height: 1px;
  background: var(--primary);
  transform: translateY(-50%);
}

.section__label::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -20px;
  width: 12px;
  height: 1px;
  background: var(--primary);
  transform: translateY(-50%);
}

.section__title { 
  margin-bottom: var(--space-4);
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section__subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.accent-line {
  width: 60px;
  height: 4px;
  background: var(--bg-gradient);
  border-radius: var(--radius-sm);
  margin: var(--space-4) auto 0;
  position: relative;
}

.accent-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.6);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-8);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

.btn--primary {
  background: var(--bg-gradient);
  color: var(--text-primary);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.btn--primary:hover { 
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
  backdrop-filter: blur(10px);
}

.btn--outline:hover { 
  background: var(--primary);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.3);
}

.btn--secondary {
  background: var(--secondary);
  color: var(--text-primary);
  border-color: var(--secondary);
}

.btn--secondary:hover { 
  background: var(--secondary-dark);
  transform: translateY(-2px);
}

.btn--sm { 
  padding: var(--space-3) var(--space-6); 
  font-size: 0.85rem; 
}

/* --- Photo Placeholder --- */
.photo-placeholder {
  background: var(--bg-elevated);
  border: 2px dashed var(--border-light);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(124, 58, 237, 0.05) 50%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: var(--space-4) 0;
  transition: all 0.3s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  position: relative;
}

.brand__logo { 
  width: 48px; 
  height: auto; 
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.5));
}

.brand__name {
  font-family: 'Orbitron', monospace;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.brand__name .accent { 
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.header__phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
}

.header__phone:hover { 
  color: var(--primary);
  background: rgba(124, 58, 237, 0.1);
}

.header__phone svg { 
  color: var(--primary);
  transition: transform 0.3s ease;
}

.header__phone:hover svg {
  transform: scale(1.1);
}

/* =============================================
   SECTION 1 — HERO
   ============================================= */
.hero {
  padding: calc(var(--space-20) + 80px) 0 var(--space-20);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero__bg-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-6);
  backdrop-filter: blur(10px);
  position: relative;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

.hero__title { 
  margin-bottom: var(--space-6);
  line-height: 1.1;
}

.hero__title .accent { 
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero__text {
  font-size: 1.2rem;
  margin-bottom: var(--space-8);
  max-width: 500px;
  font-weight: 300;
  line-height: 1.8;
}

.hero__actions { 
  display: flex; 
  gap: var(--space-4); 
  flex-wrap: wrap;
  justify-content: center;
}

.hero__image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-glow);
  margin-top: var(--space-8);
}


/* =============================================
   SECTION 2 — ABOUT BRIEF
   ============================================= */
.about-brief { padding: var(--space-16) 0; }

.about-brief .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  text-align: left;
}

.about-brief__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-4);
}

.about-brief__title { 
  margin-bottom: var(--space-6);
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-brief__text { 
  margin-bottom: var(--space-8);
  font-size: 1.1rem;
  font-weight: 300;
}

.about-brief__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.stat-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-4);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bg-gradient);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.stat-item__value {
  font-family: 'Orbitron', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.stat-item__label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-brief__visual { 
  width: 100%;
  position: relative;
}

.about-brief__visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
}

/* =============================================
   SECTION 3 — SERVICES
   ============================================= */
.section:nth-of-type(3) .section__header,
.section:nth-of-type(3) .services-grid {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-6);
  justify-items: center;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bg-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

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

.service-card__icon {
  width: 64px;
  height: 64px;
  background: rgba(124, 58, 237, 0.1);
  border: 2px solid rgba(124, 58, 237, 0.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  color: var(--primary);
  transition: all 0.3s ease;
}

.service-card:hover .service-card__icon {
  background: var(--primary);
  color: var(--text-primary);
  transform: scale(1.1);
}

.service-card__title {
  font-family: 'Orbitron', monospace;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.service-card p {
  font-weight: 300;
  line-height: 1.8;
}

/* =============================================
   SECTION 4 — VR ARENAS
   ============================================= */
.section:nth-of-type(4) .section__header,
.section:nth-of-type(4) .arenas-grid {
  text-align: center;
}

.arenas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: var(--space-8);
  justify-items: center;
}

.arena-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
  position: relative;
}

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

.arena-card__image { 
  aspect-ratio: 16/9; 
  position: relative;
  overflow: hidden;
}

.arena-card__image .photo-placeholder { 
  min-height: 250px;
  border-radius: 0;
  border: none;
}

.arena-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.arena-card__body { 
  padding: var(--space-8);
  position: relative;
}

.arena-card__badge {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  background: var(--bg-gradient);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.arena-card__title { 
  font-family: 'Orbitron', monospace;
  font-size: 1.4rem; 
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.arena-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.arena-meta-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.85rem;
  color: var(--text-muted);
  background: rgba(124, 58, 237, 0.1);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  font-weight: 500;
}

.arena-meta-item svg { 
  color: var(--primary);
  flex-shrink: 0;
}

/* =============================================
   SECTION 5 — ROOMS FOR RENT
   ============================================= */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-6);
}

.room-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s ease;
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.room-card__image { 
  width: 100%;
  position: relative;
}

.room-card__image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.room-card__body { 
  padding: var(--space-6);
}

.room-card__title {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.room-features {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.room-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.room-feature svg { 
  color: var(--primary); 
  flex-shrink: 0;
  background: rgba(124, 58, 237, 0.1);
  padding: var(--space-1);
  border-radius: var(--radius-sm);
}

/* =============================================
   SECTION 6 — EVENTS
   ============================================= */
.section:nth-of-type(6) .section__header,
.section:nth-of-type(6) .events-grid {
  text-align: center;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
  justify-items: center;
}

.event-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.event-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--bg-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.event-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.event-card__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.1);
  border: 3px solid rgba(124, 58, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  color: var(--primary);
  transition: all 0.3s ease;
}

.event-card:hover .event-card__icon {
  background: var(--primary);
  color: var(--text-primary);
  transform: scale(1.1);
}

.event-card__title {
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

/* =============================================
   SECTION 7 — PACKAGES / PRODUCTS
   ============================================= */
.section:nth-of-type(7) .section__header {
  text-align: center;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-8);
  text-align: center;
}

.package-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.package-card--featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  position: relative;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(124, 58, 237, 0.05) 100%);
}

.package-card--featured::before {
  content: 'Популярне';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--bg-gradient);
  color: var(--text-primary);
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-xl);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
}

.package-card__name { 
  font-family: 'Orbitron', monospace;
  font-size: 1.3rem; 
  font-weight: 700;
  color: var(--text-primary);
}

.package-card__price {
  font-family: 'Orbitron', monospace;
  font-size: 2.2rem;
  font-weight: 700;
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.package-card__price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

.package-card__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  flex: 1;
  font-weight: 300;
  line-height: 1.7;
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.package-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.package-feature svg { 
  color: var(--primary); 
  flex-shrink: 0;
  background: rgba(124, 58, 237, 0.1);
  padding: var(--space-1);
  border-radius: var(--radius-sm);
}

/* =============================================
   SECTION 8 — WHY CHOOSE US
   ============================================= */
.section:nth-of-type(8) .section__header,
.section:nth-of-type(8) .advantages-grid {
  text-align: center;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-6);
  justify-items: center;
}

.advantage-item {
  text-align: center;
  padding: var(--space-8) var(--space-4);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.advantage-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--bg-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.advantage-item:hover::before {
  transform: scaleX(1);
}

.advantage-item:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.advantage-item__icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: rgba(124, 58, 237, 0.1);
  border: 2px solid rgba(124, 58, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-4);
  color: var(--primary);
  transition: all 0.3s ease;
}

.advantage-item:hover .advantage-item__icon {
  background: var(--primary);
  color: var(--text-primary);
  transform: scale(1.1);
}

.advantage-item__title {
  font-family: 'Orbitron', monospace;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.advantage-item p { 
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
}

/* =============================================
   SECTION 9 — GALLERY
   ============================================= */
.section:nth-of-type(9) .section__header {
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: var(--space-4);
  justify-items: center;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

.gallery-item .photo-placeholder { 
  height: 100%; 
  min-height: unset;
  border-radius: 0;
  border: 2px solid var(--border);
}

.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================
   SECTION 10 — CONTACTS
   ============================================= */
.contacts .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.contacts__title { 
  margin-bottom: var(--space-8);
  background: var(--bg-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contacts__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

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

.contact-item__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(124, 58, 237, 0.1);
  border: 2px solid rgba(124, 58, 237, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-item__icon {
  background: var(--primary);
  color: var(--text-primary);
}

.contact-item__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-1);
}

.contact-item__value {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}

.contact-item__value a { 
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.contact-item__value a:hover { 
  color: var(--primary);
}

.contacts__map-box {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-card);
}

.contacts__map-box img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: var(--space-16) 0 var(--space-8);
  position: relative;
}

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

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-12);
  padding-bottom: var(--space-8);
  margin-bottom: var(--space-6);
  border-bottom: 1px solid var(--border);
}

.footer__brand { 
  display: flex; 
  flex-direction: column; 
  gap: var(--space-4); 
}

.footer__desc { 
  font-size: 0.95rem; 
  max-width: 300px; 
  line-height: 1.7;
  font-weight: 300;
}

.footer__col-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--space-4);
}

.footer__links { 
  display: flex; 
  flex-direction: column; 
  gap: var(--space-3); 
}

.footer__links a { 
  font-size: 0.95rem; 
  color: var(--text-secondary);
  font-weight: 400;
  transition: all 0.3s ease;
}

.footer__links a:hover { 
  color: var(--primary);
  transform: translateX(4px);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copy { 
  font-size: 0.85rem; 
  color: var(--text-muted);
  font-weight: 300;
}

.footer__legal { 
  display: flex; 
  gap: var(--space-6); 
}

.footer__legal a { 
  font-size: 0.85rem; 
  color: var(--text-muted);
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer__legal a:hover { 
  color: var(--primary);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1200px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .gallery-item:first-child { grid-column: span 3; grid-row: span 1; }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .arenas-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: var(--space-16) 0; }
  .hero { padding: calc(var(--space-16) + 80px) 0 var(--space-16); }
  .hero .container { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .about-brief .container { grid-template-columns: 1fr; }
  .about-brief__visual { display: none; }
  .rooms-grid { grid-template-columns: 1fr; }
  .events-grid { grid-template-columns: 1fr; }
  .packages-grid { grid-template-columns: 1fr; }
  .contacts .container { grid-template-columns: 1fr; }
  .contacts__map-box { display: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item:first-child { grid-column: span 2; }
  .footer__top { grid-template-columns: 1fr; gap: var(--space-8); }
  .header__contact .btn { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .advantages-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
  .gallery-item:first-child { grid-column: span 1; }
  .about-brief__stats { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; justify-content: center; }
}