/* ==========================================================================
   DESIGN TOKENS & VARIABLES
   ========================================================================== */
:root {
  --bg-color: #0a0a0a;         /* Pitch Black */
  --bg-secondary: #121212;     /* Charcoal Grey */
  --bg-card: #181818;          /* Matte Black */
  --bg-card-hover: #202020;
  
  --primary-color: #a3e635;    /* Neon Lime Green */
  --primary-hover: #bcf74c;
  --secondary-color: #f97316;  /* Electric Orange */
  --secondary-hover: #fb923c;
  
  --text-main: #ffffff;        /* Clean White */
  --text-muted: #a3a3a3;       /* Muted Silver */
  --text-dark: #1e1e1e;
  
  --border-color: rgba(255, 255, 255, 0.06);
  --border-glow-primary: rgba(163, 230, 53, 0.2);
  --border-glow-secondary: rgba(249, 115, 22, 0.2);
  
  --font-headings: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --header-height: 80px;
  --header-height-shrink: 68px;
  --transition-speed: 0.3s;
  --max-width: 1200px;
  
  --shadow-neon-primary: 0 0 15px rgba(163, 230, 53, 0.4);
  --shadow-neon-secondary: 0 0 15px rgba(249, 115, 22, 0.4);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height-shrink);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

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

ul {
  list-style: none;
}

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

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 50px;
}

.subtitle {
  font-family: var(--font-headings);
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 0.15em;
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}

.section-title {
  font-size: 36px;
  margin-bottom: 15px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 16px;
}

/* Glow effects */
.text-glow {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.text-glow-accent {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(163, 230, 53, 0.3);
}

.text-glow-orange {
  color: var(--secondary-color);
  text-shadow: 0 0 10px rgba(249, 115, 22, 0.3);
}

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

/* ==========================================================================
   BUTTONS (TOUCH TARGET INCLUSIVE)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-headings);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
  min-height: 48px; /* Touch target guideline */
  padding: 12px 28px;
  font-size: 16px;
  border: 2px solid transparent;
}

.btn-sm {
  min-height: 40px;
  padding: 8px 18px;
  font-size: 14px;
}

.btn-lg {
  min-height: 52px;
  padding: 14px 32px;
  font-size: 18px;
}

.btn-block {
  display: flex;
  width: 100%;
}

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

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

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border-color: var(--text-main);
}

.btn-outline:hover {
  background-color: var(--text-main);
  color: var(--bg-color);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: #ffffff;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.btn-icon {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   HEADER / NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all var(--transition-speed) ease;
}

.header.shrink {
  height: var(--header-height-shrink);
  background-color: rgba(10, 10, 10, 0.9);
}

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

.logo {
  font-family: var(--font-headings);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}

.logo-accent {
  color: var(--primary-color);
}

.nav-list {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-family: var(--font-headings);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  padding: 8px 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-speed) ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-cta-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.hamburger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1010;
  height: 48px; /* Touch target */
  width: 48px;
}

.hamburger-menu .bar {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--text-main);
  margin: 5px auto;
  transition: all var(--transition-speed) ease;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: var(--header-height);
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
  padding: 40px 0;
}

.badge-label {
  display: inline-block;
  background-color: rgba(163, 230, 53, 0.1);
  border: 1px solid rgba(163, 230, 53, 0.3);
  color: var(--primary-color);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  border-radius: 4px;
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.hero-subheadline {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 580px;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

.hero-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

/* ==========================================================================
   STATS BAR
   ========================================================================== */
.stats-bar {
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 10;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 30px 20px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stat-item.border-left-right {
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
}

.stat-number {
  font-family: var(--font-headings);
  font-size: 40px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 5px;
  text-shadow: 0 0 10px rgba(163, 230, 53, 0.2);
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   FACILITIES SECTION
   ========================================================================== */
.facilities {
  background-color: var(--bg-color);
}

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

.facility-card {
  position: relative;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 40px 30px;
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-glow-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle 180px at var(--mouse-x, 50%) var(--mouse-y, 50%), var(--border-glow-primary), transparent 80%);
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
  pointer-events: none;
  z-index: 1;
}

.facility-card:hover .card-glow-bg {
  opacity: 1;
}

.facility-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(163, 230, 53, 0.08);
}

.facility-icon {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  background-color: rgba(163, 230, 53, 0.05);
  border: 1px solid rgba(163, 230, 53, 0.15);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-bottom: 25px;
  transition: all var(--transition-speed) ease;
}

.facility-icon svg {
  width: 26px;
  height: 26px;
}

.facility-card:hover .facility-icon {
  background-color: var(--primary-color);
  color: var(--text-dark);
  box-shadow: var(--shadow-neon-primary);
}

.facility-title {
  position: relative;
  z-index: 2;
  font-size: 20px;
  margin-bottom: 12px;
}

.facility-desc {
  position: relative;
  z-index: 2;
  color: var(--text-muted);
  font-size: 14px;
}

/* ==========================================================================
   PRICING PLAN SECTION
   ========================================================================== */
.pricing {
  background-color: var(--bg-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

.pricing-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-speed) ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.VIP {
  border-color: var(--primary-color);
  box-shadow: 0 10px 40px rgba(163, 230, 53, 0.05);
}

.pricing-card.VIP:hover {
  box-shadow: var(--shadow-neon-primary);
}

.vip-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  color: var(--text-dark);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 4px 16px;
  border-radius: 30px;
  box-shadow: var(--shadow-neon-primary);
}

.pricing-header {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 25px;
}

.plan-name {
  font-size: 24px;
  margin-bottom: 15px;
}

.price-wrap {
  display: flex;
  align-items: baseline;
  margin-bottom: 15px;
}

.currency {
  font-family: var(--font-headings);
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
}

.pricing-card.VIP .currency {
  color: var(--primary-color);
}

.price {
  font-family: var(--font-headings);
  font-size: 54px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-main);
}

.period {
  font-size: 15px;
  color: var(--text-muted);
  margin-left: 5px;
}

.plan-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.pricing-body {
  flex-grow: 1;
  margin-bottom: 35px;
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-main);
}

.plan-features svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary-color);
}

.plan-features li.muted {
  color: var(--text-muted);
  opacity: 0.5;
}

.plan-features li.muted svg {
  color: var(--text-muted);
}

.pricing-footer {
  margin-top: auto;
}

/* ==========================================================================
   BATCH SCHEDULE SECTION
   ========================================================================== */
.schedule {
  background-color: var(--bg-color);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.schedule-block {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.schedule-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px 30px;
  border-bottom: 1px solid var(--border-color);
}

.schedule-header.morning {
  background: linear-gradient(90deg, rgba(163, 230, 53, 0.05), transparent);
  border-left: 4px solid var(--primary-color);
}

.schedule-header.evening {
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.05), transparent);
  border-left: 4px solid var(--secondary-color);
}

.schedule-icon {
  width: 28px;
  height: 28px;
}

.schedule-header.morning .schedule-icon {
  color: var(--primary-color);
}

.schedule-header.evening .schedule-icon {
  color: var(--secondary-color);
}

.schedule-header h3 {
  font-size: 22px;
}

.schedule-list {
  padding: 10px 30px;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-color);
}

.schedule-item:last-child {
  border-bottom: none;
}

.schedule-item .time {
  font-family: var(--font-headings);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
}

.schedule-item .batch-name {
  font-size: 14px;
  color: var(--text-muted);
}

/* ==========================================================================
   FREE TRIAL LEAD FORM & TICKET
   ========================================================================== */
.trial {
  background-color: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.trial::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.03) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.trial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.trial-info .subtitle {
  color: var(--secondary-color);
}

.trial-text {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 30px;
}

.trial-benefits {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-icon {
  width: 24px;
  height: 24px;
  background-color: rgba(163, 230, 53, 0.1);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.trial-form-wrapper {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  position: relative;
}

.form-title {
  font-size: 24px;
  margin-bottom: 25px;
  text-align: center;
}

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

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  border-radius: 4px;
  transition: all var(--transition-speed) ease;
  min-height: 48px; /* Touch target */
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(163, 230, 53, 0.15);
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}

/* Glassmorphic Live Pass Ticket styling */
.pass-ticket-wrapper {
  perspective: 1000px;
}

.pass-ticket-wrapper.hidden {
  display: none !important;
}

.pass-ticket {
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), var(--shadow-neon-primary);
  margin-bottom: 25px;
  animation: ticketEntrance 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes ticketEntrance {
  0% {
    opacity: 0;
    transform: rotateX(-30deg) translateY(30px);
  }
  100% {
    opacity: 1;
    transform: rotateX(0) translateY(0);
  }
}

.ticket-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.1) 0%, transparent 60%);
  pointer-events: none;
  animation: ticketGlowFloat 6s ease-in-out infinite alternate;
}

@keyframes ticketGlowFloat {
  0% { transform: translate(-5%, -5%) scale(1); }
  100% { transform: translate(5%, 5%) scale(1.1); }
}

.ticket-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.ticket-brand {
  font-family: var(--font-headings);
  font-size: 22px;
  font-weight: 700;
}

.ticket-type {
  font-family: var(--font-headings);
  font-size: 13px;
  background-color: var(--primary-color);
  color: var(--text-dark);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.ticket-middle {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.ticket-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.ticket-field {
  display: flex;
  flex-direction: column;
}

.field-label {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.field-value {
  font-family: var(--font-headings);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.03em;
}

.ticket-barcode-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.barcode {
  display: flex;
  height: 40px;
  width: 100%;
  max-width: 280px;
  background-color: transparent;
  align-items: stretch;
  opacity: 0.8;
}

.barcode span {
  flex-grow: 1;
  background-color: var(--text-main);
  margin-right: 2px;
}

.barcode span:nth-child(2n) { width: 3px; }
.barcode span:nth-child(3n) { width: 1px; }
.barcode span:nth-child(5n) { width: 4px; }
.barcode span:last-child { margin-right: 0; }

.barcode-number {
  font-family: var(--font-headings);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.25em;
}

.ticket-cut-circles .circle-left,
.ticket-cut-circles .circle-right {
  position: absolute;
  bottom: 74px; /* Align with dashed lines or separator */
  width: 20px;
  height: 20px;
  background-color: var(--bg-card);
  border-radius: 50%;
  z-index: 10;
}

.ticket-cut-circles .circle-left {
  left: -10px;
  box-shadow: inset -3px 0 5px rgba(0,0,0,0.5);
}

.ticket-cut-circles .circle-right {
  right: -10px;
  box-shadow: inset 3px 0 5px rgba(0,0,0,0.5);
}

.pass-actions {
  text-align: center;
}

.pass-hint {
  font-size: 13px;
  color: var(--primary-color);
  margin-bottom: 15px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

/* ==========================================================================
   ELEGANT FOOTER
   ========================================================================== */
.footer {
  background-color: #050505;
  border-top: 1px solid var(--border-color);
  padding: 80px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo {
  font-size: 30px;
  margin-bottom: 20px;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 25px;
  max-width: 300px;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed) ease;
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--text-dark);
  box-shadow: var(--shadow-neon-primary);
  transform: translateY(-3px);
}

.social-links svg {
  width: 18px;
  height: 18px;
}

.footer-title {
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
}

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

.footer-links a {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--text-main);
  padding-left: 5px;
}

.footer-info-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-info-list li {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.info-label {
  font-weight: 600;
  color: var(--text-main);
  display: inline-block;
  margin-right: 5px;
}

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

.link-hover:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
}

.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright,
.credit {
  font-size: 13px;
  color: var(--text-muted);
}

.credit-link {
  color: var(--text-main);
  font-weight: 600;
}

.credit-link:hover {
  color: var(--primary-color);
}

/* ==========================================================================
   SCROLL REVEAL & CORE ANIMATIONS
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframe Animations for Hero load */
.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.hero-title.animate-slide-up {
  animation-delay: 0.2s;
}

.hero-subheadline.animate-fade-in {
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-ctas.animate-slide-up {
  animation-delay: 0.6s;
  opacity: 0;
}

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

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

/* ==========================================================================
   MEDIA QUERIES (MOBILE FIRST COMPATIBLE RESPONSIVENESS)
   ========================================================================== */

/* Large screens and Desktops (up to 1200px) */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 50px;
  }
  
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Tablets & Small Desktops (max 768px) */
@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  /* Navigation Menu styling for Mobile */
  .hamburger-menu {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
    padding: 40px 20px;
    transition: left var(--transition-speed) ease;
    z-index: 999;
    overflow-y: auto;
  }
  
  .nav-menu.open {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 35px;
  }
  
  .nav-link {
    font-size: 20px;
  }
  
  .header-cta-btn {
    display: none; /* Hide top CTA on mobile, rely on Hero & bottom buttons */
  }
  
  /* Hero section adjustments */
  .hero {
    min-height: auto;
    padding: 140px 0 80px;
    text-align: center;
  }
  
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 38px;
  }
  
  .hero-subheadline {
    font-size: 15px;
    margin-bottom: 25px;
  }
  
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 15px;
  }
  
  .hero-ctas .btn {
    width: 100%;
  }
  
  /* Stats grid */
  .stats-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-item.border-left-right {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
  }
  
  /* Grids adjustments */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .pricing-card.VIP {
    transform: none !important;
  }
  
  .schedule-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .trial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .trial-info {
    text-align: center;
  }
  
  .trial-benefits {
    align-items: center;
  }
  
  .trial-form-wrapper {
    padding: 25px 20px;
  }
  
  /* Hamburger trigger state */
  .hamburger-menu.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .hamburger-menu.open .bar:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger-menu.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* Small mobile screens (max 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .facility-card {
    padding: 30px 20px;
  }
  
  .pricing-card {
    padding: 30px 20px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
  }
  
  .ticket-row-double {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .pass-ticket {
    padding: 20px 15px;
  }
}
