/* =============================================
   TORQEMI.COM — Premium Juegos Club Paraguay
   Main Stylesheet
   ============================================= */

:root {
  --primary: #0ff0fc;
  --primary-dark: #00c8d7;
  --accent: #f5c518;
  --dark: #080c12;
  --dark-2: #0d1520;
  --dark-3: #131d2e;
  --dark-4: #1a263a;
  --text: #e8edf5;
  --text-muted: #8a9ab5;
  --white: #ffffff;
  --gradient-hero: linear-gradient(135deg, #080c12 0%, #0d1a2e 50%, #0a1628 100%);
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Rajdhani', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 30px rgba(15,240,252,0.15);
  --radius: 12px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-primary);
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============ TYPOGRAPHY ============ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(15,240,252,0.08);
  border: 1px solid rgba(15,240,252,0.2);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}

.section-title span { color: var(--primary); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--dark);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15,240,252,0.4);
  filter: brightness(1.1);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: rgba(15,240,252,0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15,240,252,0.2);
}

.btn-white {
  background: var(--white);
  color: var(--dark);
}

.btn-white:hover {
  background: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(15,240,252,0.4);
}

/* ============ HEADER / NAV ============ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(8,12,18,0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15,240,252,0.1);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo .logo-icon {
  width: 44px;
  height: 44px;
}

.nav-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--white);
}

.nav-logo .logo-text span { color: var(--primary); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
  background: rgba(15,240,252,0.08);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-phone i { color: var(--primary); font-size: 0.85rem; }

.nav-phone:hover { color: var(--primary); }

/* Mobile burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,12,18,0.92) 0%,
    rgba(8,12,18,0.75) 50%,
    rgba(8,12,18,0.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15,240,252,0.1);
  border: 1px solid rgba(15,240,252,0.3);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 28px;
}

.hero-badge i { font-size: 0.7rem; animation: blink 1.5s infinite; }

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

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.05;
}

.hero h1 .highlight {
  color: var(--primary);
  text-shadow: 0 0 40px rgba(15,240,252,0.5);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stat-item .stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-item .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll i { color: var(--primary); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============ SECTIONS ============ */
section { padding: 100px 0; }

.section-header { margin-bottom: 60px; }

/* ============ FEATURES / ABOUT ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  background: var(--dark-4);
  border-color: rgba(15,240,252,0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(15,240,252,0.1);
  border: 1px solid rgba(15,240,252,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: rgba(15,240,252,0.2);
  box-shadow: 0 0 20px rgba(15,240,252,0.3);
}

.feature-card h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 12px;
}

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

/* ============ ZONES / HALLS ============ */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.zone-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.zone-card:hover {
  border-color: rgba(15,240,252,0.2);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.zone-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}

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

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

.zone-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(8,12,18,0.85);
  border: 1px solid rgba(15,240,252,0.3);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.zone-body { padding: 28px; }

.zone-body h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 10px;
}

.zone-body p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.zone-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.zone-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.zone-spec i { color: var(--primary); font-size: 0.8rem; }

/* ============ EQUIPMENT SECTION ============ */
.equipment-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.equipment-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

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

.equipment-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(15,240,252,0.2);
  border-radius: var(--radius);
  z-index: 1;
  pointer-events: none;
}

.equipment-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.equip-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: var(--transition);
}

.equip-item:hover {
  border-color: rgba(15,240,252,0.2);
  background: var(--dark-4);
}

.equip-item i {
  color: var(--primary);
  font-size: 1.3rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.equip-item-content h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.equip-item-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ============ TOURNAMENTS ============ */
.tournaments-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 60px;
  height: 450px;
}

.tournaments-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tournament-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,12,18,0.95) 30%, transparent 70%);
  display: flex;
  align-items: flex-end;
  padding: 50px;
}

.tournament-overlay-content { max-width: 600px; }

.tournament-overlay-content .section-label { margin-bottom: 12px; }

.tournament-overlay-content h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.tournament-overlay-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

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

.tournament-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
}

.tournament-card:hover {
  border-color: rgba(15,240,252,0.2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.tournament-game-icon {
  width: 52px;
  height: 52px;
  background: rgba(15,240,252,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.tournament-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.tournament-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.tournament-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.tournament-prize {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 700;
}

.tournament-date {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.tournament-date i { color: var(--primary); }

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

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

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

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

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,12,18,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-overlay-content {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(15,240,252,0.15);
  transform: translateY(-4px);
}

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

.testimonial-stars i { color: var(--accent); font-size: 0.9rem; }

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

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

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  flex-shrink: 0;
}

.author-info .name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

.author-info .role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============ CTA BANNER ============ */
.cta-section {
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 100%);
  border: 1px solid rgba(15,240,252,0.15);
  border-radius: 20px;
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 0 0 100px;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(15,240,252,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 40px;
}

.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand .logo-text span { color: var(--primary); }

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: rgba(15,240,252,0.1);
  border-color: rgba(15,240,252,0.3);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.footer-links a i { font-size: 0.7rem; color: var(--primary); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-contact-item a {
  color: var(--text-muted);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

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

.footer-legal a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

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

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  padding: 160px 0 80px;
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(15,240,252,0.06) 0%, transparent 70%);
}

.page-hero .container { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a { color: var(--primary); }
.breadcrumb i { font-size: 0.6rem; }

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.8;
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-info-card h3 {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 28px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail .icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(15,240,252,0.1);
  border: 1px solid rgba(15,240,252,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-detail p, .contact-detail a {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}

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

.contact-form {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 48px;
}

.contact-form h3 {
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-form p {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.form-group { margin-bottom: 20px; }

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(138,154,181,0.5); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(15,240,252,0.4);
  background: rgba(26,38,58,0.8);
  box-shadow: 0 0 0 3px rgba(15,240,252,0.08);
}

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

.form-group select option { background: var(--dark-3); }

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.form-success h4 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.form-success p { color: var(--text-muted); }

/* ============ MAP ============ */
.map-section { padding: 0 0 100px; }

.map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  display: block;
  filter: grayscale(0.3) brightness(0.85);
  border: none;
}

/* ============ LEGAL PAGES ============ */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 0;
}

.legal-content h2 {
  font-size: 1.8rem;
  color: var(--white);
  margin: 40px 0 16px;
}

.legal-content h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin: 28px 0 10px;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.legal-content ul li {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.legal-content a { color: var(--primary); }

.legal-updated {
  display: inline-block;
  background: rgba(15,240,252,0.08);
  border: 1px solid rgba(15,240,252,0.2);
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* ============ HOURS TABLE ============ */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.hours-table th, .hours-table td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.hours-table th {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hours-table td { color: var(--text); }

.hours-table .open { color: #4ade80; }
.hours-table .today { background: rgba(15,240,252,0.04); }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark-2);
  border-top: 1px solid rgba(15,240,252,0.15);
  padding: 20px 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 200px;
}

.cookie-text i { color: var(--primary); font-size: 1.2rem; flex-shrink: 0; }

.cookie-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.cookie-text a { color: var(--primary); }

.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ SCROLL ANIMATIONS ============ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ============ MOBILE DRAWER ============ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: var(--dark-2);
  border-left: 1px solid rgba(15,240,252,0.1);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 100px 32px 40px;
  overflow-y: auto;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}

.mobile-menu-overlay.open { opacity: 1; pointer-events: all; }

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu nav a {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-radius: 8px;
  transition: var(--transition);
}

.mobile-menu nav a:hover,
.mobile-menu nav a.active {
  color: var(--primary);
  background: rgba(15,240,252,0.08);
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 8px;
  transition: var(--transition);
}

.mobile-menu-close:hover { color: var(--primary); }

.mobile-menu-contact {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu-contact p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.mobile-menu-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 12px;
}

.mobile-menu-contact a i { color: var(--primary); font-size: 0.9rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .equipment-layout { grid-template-columns: 1fr; gap: 40px; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item.large { grid-column: span 1; grid-row: span 1; }

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

@media (max-width: 768px) {
  section { padding: 70px 0; }

  .nav-menu, .nav-phone { display: none; }
  .burger { display: flex; }

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

  .hero-stats { gap: 24px; }

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

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .tournament-overlay { padding: 28px; }
  .tournament-overlay-content h2 { font-size: 1.8rem; }

  .cta-section { padding: 50px 28px; }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

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

  .contact-form { padding: 28px; }
  .contact-info-card { padding: 28px; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }

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

  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; justify-content: center; }
}

/* ============ UTILITIES ============ */
.divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.badge-success { background: rgba(74,222,128,0.1); color: #4ade80; border: 1px solid rgba(74,222,128,0.2); }
.badge-warning { background: rgba(245,197,24,0.1); color: var(--accent); border: 1px solid rgba(245,197,24,0.2); }
.badge-primary { background: rgba(15,240,252,0.1); color: var(--primary); border: 1px solid rgba(15,240,252,0.2); }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }
.mb-0 { margin-bottom: 0; }
.gap-12 { gap: 12px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }
