/* ==========================================
   PREMIUM CYBERPUNK DARK/NEON GYM DESIGN
   ========================================== */

:root {
  --bg-dark: #060608;
  --bg-card: #0c0c0f;
  --bg-card-alt: #121217;
  --text-primary: #f8f9fa;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  --neon-blue: #00e5ff;
  --neon-green: #39ff14;
  --neon-amber: #ff9d00;
  --neon-red: #ff3333;
  --neon-pink: #ff007f;
  
  --font-orbitron: 'Orbitron', sans-serif;
  --font-inter: 'Inter', sans-serif;
  
  --glass-bg: rgba(22, 28, 45, 0.45);
  --glass-border: rgba(255, 255, 255, 0.04);
}

/* Base resets & styling */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-inter);
  min-height: 100%;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: #1f2937;
  border: 2px solid var(--bg-dark);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-blue);
}

/* Grid layout containers */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden {
  display: none !important;
}

/* Header & Scrolling Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #111116 0%, #1a1e29 50%, #111116 100%);
  border-bottom: 1px solid rgba(0, 229, 255, 0.25);
  color: var(--neon-blue);
  font-family: var(--font-orbitron);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  overflow: hidden;
  padding: 12px 0;
  position: relative;
  text-transform: uppercase;
  white-space: nowrap;
  width: 100%;
  z-index: 100;
  box-shadow: 0 2px 15px rgba(0, 229, 255, 0.15);
}

.announcement-scroller {
  display: inline-block;
  padding-left: 100%;
  animation: marqueeAnimation 22s linear infinite;
}

@keyframes marqueeAnimation {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

/* Transparent Sticky Navigation Bar */
.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(6, 6, 8, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.brand-logo {
  font-family: var(--font-orbitron);
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.06em;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.brand-logo .accent-color {
  color: var(--neon-blue);
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-family: var(--font-orbitron);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--neon-blue);
}

.btn-nav-join {
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid var(--neon-blue);
  padding: 10px 20px;
  border-radius: 4px;
  color: var(--neon-blue) !important;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.15);
  transition: all 0.3s ease !important;
}

.btn-nav-join:hover {
  background: var(--neon-blue) !important;
  color: #000000 !important;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.5) !important;
}

/* Hero Section (Focused Deadlift/Fit Girl Workout background) */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?q=80&w=1600') center/cover no-repeat fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(6, 6, 8, 0.95) 0%, rgba(6, 6, 8, 0.75) 50%, rgba(6, 6, 8, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 0 24px;
  margin-left: max(0px, calc((100vw - 1200px) / 2));
}

.hero-tag {
  color: var(--neon-blue);
  font-family: var(--font-orbitron);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  margin-bottom: 16px;
  text-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.hero-title {
  font-family: var(--font-orbitron);
  font-size: clamp(32px, 6vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-title span {
  color: var(--neon-blue);
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.hero-desc {
  color: var(--text-secondary);
  font-size: clamp(14px, 2.2vw, 17px);
  line-height: 1.6;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Glowing Neon Button style */
.btn-primary-neon {
  display: inline-block;
  background: linear-gradient(135deg, var(--neon-blue) 0%, #008be5 100%);
  border: none;
  border-radius: 4px;
  color: #000000;
  font-family: var(--font-orbitron);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 16px 36px;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.35);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary-neon:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
}

/* Sections Base Layout */
section {
  padding: 100px 0;
}

.alt-bg {
  background-color: var(--bg-card);
}

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

.section-tag {
  color: var(--neon-blue);
  font-family: var(--font-orbitron);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--font-orbitron);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Counter Statistics Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.stat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 48px 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  border-color: rgba(0, 229, 255, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.05);
}

.stat-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.stat-number {
  color: var(--neon-blue);
  font-family: var(--font-orbitron);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  margin-bottom: 8px;
  text-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
}

.stat-label {
  color: var(--text-secondary);
  font-family: var(--font-orbitron);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Pricing cards grid and highlights */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.plan-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px;
  font-family: var(--font-orbitron);
  color: var(--text-secondary);
}

.plan-card {
  background-color: var(--bg-card-alt);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 48px 36px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 255, 0.3) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
}

.plan-badge {
  background: var(--neon-blue);
  color: #000000;
  font-family: var(--font-orbitron);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 20px;
  position: absolute;
  top: 28px;
  right: 28px;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.3);
}

.plan-name {
  font-family: var(--font-orbitron);
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  padding-right: 80px; /* Leave space for badge */
}

.plan-rate-box {
  display: flex;
  align-items: baseline;
  margin-bottom: 24px;
}

.plan-price {
  color: var(--neon-green);
  font-family: var(--font-orbitron);
  font-size: 38px;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
}

.plan-period {
  color: var(--text-secondary);
  font-size: 14px;
  margin-left: 8px;
}

.plan-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 28px;
}

.plan-features {
  list-style: none;
  margin-bottom: 36px;
}

.plan-features li {
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.plan-check {
  color: var(--neon-green);
  font-weight: bold;
}

/* Action card select button */
.btn-select-plan {
  background: transparent;
  border: 1px solid var(--neon-blue);
  color: var(--neon-blue);
  font-family: var(--font-orbitron);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 16px;
  border-radius: 4px;
  width: 100%;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.05);
  transition: all 0.3s ease;
}

.btn-select-plan:hover {
  background-color: var(--neon-blue);
  color: #000000;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

/* Featured pulsing plan card design */
@keyframes neonPulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.25);
    border-color: var(--neon-blue);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 229, 255, 0.5);
    border-color: #ffffff;
  }
}

.plan-card.featured {
  border-color: var(--neon-blue);
  animation: neonPulseGlow 4s infinite;
}

.plan-card.featured .btn-select-plan {
  background-color: var(--neon-blue);
  color: #000000;
  border: none;
}

.plan-card.featured .btn-select-plan:hover {
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.6);
}

/* Photo Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-card {
  border-radius: 12px;
  height: 280px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background-color: var(--bg-card-alt);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.gallery-card:hover {
  border-color: var(--neon-blue);
  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.2);
}

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

/* YouTube Video Player cards and columns */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.video-card {
  background-color: var(--bg-card-alt);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.video-card:hover {
  border-color: var(--neon-blue);
}

.video-aspect-box {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-aspect-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact layout details and lead form */
.contact-split-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: center;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

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

.contact-icon {
  background: rgba(0, 229, 255, 0.06);
  border: 1px solid rgba(0, 229, 255, 0.5);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: var(--neon-blue);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.15);
}

.contact-info h3 {
  font-family: var(--font-orbitron);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin-bottom: 8px;
}

.contact-info p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

/* Form Design Styles */
.contact-form-box {
  background-color: var(--bg-card-alt);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.form-group {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  color: var(--text-secondary);
  font-family: var(--font-orbitron);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  background-color: rgba(6, 6, 8, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: var(--text-primary);
  font-family: var(--font-inter);
  font-size: 14px;
  padding: 16px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon-blue);
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.15);
}

/* Remove default dropdown arrow on custom selects */
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%2300e5ff' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

.btn-submit-neon {
  background: linear-gradient(135deg, var(--neon-blue) 0%, #008be5 100%);
  border: none;
  border-radius: 4px;
  color: #000000;
  font-family: var(--font-orbitron);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 18px;
  width: 100%;
  cursor: pointer;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(0, 229, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-submit-neon:hover {
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.5);
}

.btn-submit-neon:disabled {
  background: var(--text-muted);
  color: rgba(0, 0, 0, 0.4);
  box-shadow: none;
  cursor: not-allowed;
}

/* Form Status Banners */
.form-status {
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.form-status.success {
  background-color: rgba(57, 255, 20, 0.1);
  border: 1px solid var(--neon-green);
  color: var(--neon-green);
}

.form-status.error {
  background-color: rgba(255, 51, 51, 0.1);
  border: 1px solid var(--neon-red);
  color: var(--neon-red);
}

/* Footer Section */
.bottom-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 60px 0;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-orbitron);
  font-size: 20px;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.footer-logo .accent-color {
  color: var(--neon-blue);
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.04em;
}

/* Toast Notifications Floating Panel */
.toast-notification {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: rgba(12, 12, 15, 0.98);
  border: 1px solid var(--neon-blue);
  border-radius: 6px;
  padding: 16px 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 229, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: toastFadeIn 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: var(--font-inter);
}

.toast-notification span {
  font-size: 14px;
}

#toastIcon {
  font-size: 18px;
}

#toastMessage {
  color: var(--text-primary);
  font-weight: 600;
}

@keyframes toastFadeIn {
  0% { transform: translateY(20px) scale(0.95); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

/* ==========================================
   MEDIA RESPONSIVE QUERIES
   ========================================== */

@media (max-width: 991px) {
  .nav-links {
    display: none; /* Keep nav extremely clean or collapsed */
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .stats-grid .stat-card:last-child {
    grid-column: 1 / -1;
  }
  
  .contact-split-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  section {
    padding: 70px 0;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid .stat-card:last-child {
    grid-column: auto;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .videos-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-box {
    padding: 32px 24px;
  }
  
  /* Force AOS elements to be visible on mobile if script fails */
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
  }
}
