/* ==========================================================================
   Total Fitness - Premium UI
   ========================================================================== */

:root {
  --bg-dark: #050503;
  --bg-glass: rgba(15, 10, 15, 0.6);
  --glass-border: rgba(255, 255, 255, 0.06);
  --accent-color: #d4af37;
  --accent-glow: rgba(212, 175, 55, 0.4);
  --accent-gradient: linear-gradient(135deg, #f1c40f 0%, #b8860b 100%);
  
  --text-main: #FFFFFF;
  --text-muted: #9CA3AF;
  
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Outfit', sans-serif;
  
  --ts-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --ts-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

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

section[id] {
  scroll-margin-top: 5.5rem;
}

/* Interactive elements use crisp native pointer */
a, button, select, [role="button"], .toggle-btn, .bento-item, .service-card, .class-card, .price-card, .trainer-card, .social-btn {
  cursor: pointer;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  line-height: 1.1;
}

h1 { font-size: clamp(3rem, 8vw, 7rem); }
h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.75rem; margin-bottom: 1rem; }

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-pad {
  padding: 8rem 0;
}

.mt-4 { margin-top: 2rem; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  background: var(--accent-gradient);
  border: none;
  border-radius: 100px;
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--ts-fast);
  cursor: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.hero-actions .btn-primary,
.hero-actions .btn-secondary {
  letter-spacing: 1.4px;
  box-shadow: 0 14px 38px rgba(212, 175, 55, 0.22);
}

.main-nav .btn-primary {
  padding: 0.6rem 1.75rem;
  font-size: 0.875rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  min-height: 58px;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  text-decoration: none;
  text-transform: uppercase;
  transition: var(--ts-fast);
  cursor: none;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.55);
  background: rgba(212, 175, 55, 0.12);
}

/* Glass Card */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  transition: var(--ts-fast);
  position: relative;
  overflow: hidden;
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.05), transparent 50%);
  pointer-events: none;
}

.glass-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Floating Pill Header */
.glass-header {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1280px;
  background: rgba(10, 10, 15, 0.4);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 0.5rem 1.5rem 0.5rem 2rem;
  z-index: 100;
  transition: var(--ts-fast);
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.glass-header.scrolled {
  top: 1rem;
  background: rgba(3, 3, 5, 0.92);
  box-shadow: 0 10px 30px rgba(0,0,0,0.6);
  border-color: rgba(255,255,255,0.1);
}

.glass-header.menu-open {
  border-radius: 20px 20px 0 0;
  background: rgba(10, 10, 15, 0.95);
  border-bottom: none;
}

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

.logo-wrapper { 
  display: flex; 
  align-items: center; 
  padding: 4px 0; 
  flex: 0 0 auto;
}

.brand-logo { 
  max-height: 48px; 
  width: auto;
  object-fit: contain; 
  transition: transform 0.3s ease;
}
.brand-logo:hover {
  transform: scale(1.05);
}

/* Centered Navigation Menu */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex: 1 1 auto;
  margin: 0 auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 0 0 auto;
}

.desktop-cta {
  display: inline-flex;
  padding: 0.65rem 1.4rem;
  font-size: 0.8125rem;
  letter-spacing: 1px;
}

.mobile-cta-only {
  display: none !important;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  transition: var(--ts-fast);
}

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

/* Navigation Dropdown */
.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  transition: var(--ts-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.6rem 0;
  font-family: var(--font-body);
}

.nav-dropdown-trigger:hover,
.nav-dropdown:hover .nav-dropdown-trigger {
  color: var(--text-main);
}

.nav-dropdown-trigger .chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-trigger .chevron {
  transform: rotate(180deg);
  color: var(--accent-color);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  min-width: 220px;
  background: rgba(12, 10, 15, 0.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 0.6rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 1000;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(4px);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 10px;
  transition: var(--ts-fast);
  white-space: nowrap;
}

.dropdown-item:hover {
  background: rgba(212, 175, 55, 0.12);
  color: #fff;
  padding-left: 1.25rem;
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  position: relative;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  z-index: 101;
}
.mobile-menu-btn span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s ease, top 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}
.mobile-menu-btn span:nth-child(1) { top: 14px; }
.mobile-menu-btn span:nth-child(2) { top: 21px; }
.mobile-menu-btn span:nth-child(3) { top: 28px; }

.mobile-menu-btn.is-active span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
  background: var(--accent-color);
}
.mobile-menu-btn.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-btn.is-active span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
  background: var(--accent-color);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100dvh;
  padding: 12rem 0 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(5,5,3,0.8) 0%, rgba(5,5,3,0.3) 50%, rgba(5,5,3,0) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #050503;
}

.hero-media iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  transform: translate(-50%, -50%) scale(1.2);
  pointer-events: none;
  border: 0;
  filter: saturate(0.96) contrast(1.12) brightness(0.88);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.24;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.06) 0 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  mix-blend-mode: overlay;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(0deg, rgba(5,5,3,0.98) 0%, rgba(5,5,3,0.4) 50%, rgba(5,5,3,0.8) 100%),
    radial-gradient(circle at center, rgba(212,175,55,0.15), transparent 50%);
}

.hero-content {
  width: min(1150px, 100%);
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 4;
}

.hero-content::before {
  content: '';
  width: 4.5rem;
  height: 3px;
  margin-bottom: 1.6rem;
  border-radius: 999px;
  background: var(--accent-gradient);
  box-shadow: 0 0 28px rgba(212,175,55,0.5);
}

.hero-content h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 1.25rem;
  text-align: center;
  text-shadow: 0 20px 65px rgba(0,0,0,0.55);
}

.hero-title-top {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 2.4rem);
  font-weight: 700;
  letter-spacing: clamp(1px, 0.3vw, 3px);
  color: #ffffff;
  line-height: 1.15;
  text-wrap: balance;
  max-width: 100%;
  overflow-wrap: break-word;
}

.hero-title-main {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 5.2vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-wrap: balance;
  max-width: 100%;
  overflow-wrap: break-word;
}

.badge {
  display: inline-block;
  padding: 0.55rem 1rem;
  background: rgba(8,8,6,0.48);
  border: 1px solid rgba(212,175,55,0.28);
  border-radius: 10px;
  color: rgba(255,255,255,0.86);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  margin-bottom: 1.35rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-desc {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: rgba(255,255,255,0.86);
  max-width: 780px;
  line-height: 1.65;
  margin: 0 auto 2.5rem;
  text-wrap: pretty;
  text-shadow: 0 10px 34px rgba(0,0,0,0.72);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.hero-proof span {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: rgba(255,255,255,0.74);
  background: rgba(8,8,6,0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.hero-proof strong {
  color: var(--accent-color);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-right: 0.25rem;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  padding: 0;
  display: block;
}

.about-text h2 {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  padding: 1.5rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--ts-fast);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0.5;
  transition: var(--ts-fast);
}

.stat-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(212, 175, 55, 0.12);
}

.stat-card:hover::before {
  opacity: 1;
  box-shadow: 0 0 10px var(--accent-color);
}

.stat-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

.stat-card .stat-num {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.35rem;
  letter-spacing: -0.5px;
}

.stat-card .stat-title {
  color: var(--text-main);
  font-weight: 700;
  font-size: 0.9375rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.stat-card .stat-sub {
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin: 0.25rem 0 0 0;
  line-height: 1.3;
}

/* Fallback for basic stat */
.stat h3 {
  font-size: 3.5rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat span {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}

/* Features */
.section-title {
  text-align: center;
  margin-bottom: 5rem;
}
.section-title p {
  color: var(--text-muted);
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.icon-wrapper {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card p {
  color: var(--text-muted);
}

/* Features */
.features-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: stretch;
}

.features-grid-vertical {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--accent-gradient);
  color: #000;
  border-color: transparent;
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}

.service-card h3 {
  font-size: 1.1rem;
  margin: 0;
  color: #fff;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.glow-badge {
  background: var(--accent-gradient);
  color: #000;
  font-weight: 800;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px var(--accent-glow);
  letter-spacing: 2px;
}

/* Gallery */
.gallery-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(212,175,55,0.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 34%);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 1rem;
}

.bento-item {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: rgba(255,255,255,0.04);
  min-height: 0;
}

.bento-wide {
  grid-column: span 2;
}

.bento-tall {
  grid-row: span 2;
}

.bento-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s;
  filter: saturate(0.96) brightness(0.82);
}

.bento-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,0.8));
  pointer-events: none;
}

.bento-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) brightness(1.05);
}

.bento-item figcaption {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0,0,0,0.7);
  transition: var(--ts-fast);
}

.bento-item:hover figcaption {
  color: var(--accent-color);
}

/* Pricing Section */
.pricing-note-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  width: fit-content;
  max-width: 90%;
  margin: 0 auto 3rem;
  padding: 0.75rem 1.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 100px;
  color: var(--text-muted);
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.pricing-note-banner strong {
  color: var(--accent-color);
  font-family: var(--font-heading);
}

.pricing-note-banner .pricing-divider {
  color: rgba(255, 255, 255, 0.2);
}

/* Split Pricing Section */
.split-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.price-card {
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 3rem 2rem;
  height: 100%;
}

.highlight-card {
  border-color: var(--accent-color);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
}

.card-header-flex {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.icon-avatar {
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-color);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.25);
  flex-shrink: 0;
}

.highlight-icon {
  background: rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.5);
}

.card-header-flex h3 {
  margin: 0;
  font-size: 2.5rem;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -1px;
}

.couple-sub {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.pricing-toggle {
  display: flex;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 4px;
  margin: 2rem 0;
}

.toggle-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 0.75rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--ts-fast);
}

.toggle-btn.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.toggle-btn.highlight-bg.active {
  background: var(--accent-gradient);
  color: #fff;
}

.pricing-rows {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-grow: 1;
}

.p-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 1.5rem;
  border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.p-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.p-duration {
  font-weight: bold;
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.p-cost {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}

.strike {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 4px;
}

.cost {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  line-height: 1;
  letter-spacing: -1px;
}

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

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features li.disabled {
  opacity: 0.4;
}

.check {
  color: var(--accent-color);
  font-weight: bold;
}

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

/* Reviews Scroller */
.reviews-container {
  overflow: hidden;
  position: relative;
  height: 600px;
  max-width: 900px;
  margin: 0 auto;
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.reviews-track {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  animation: scroll-vert 30s linear infinite;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-vert {
  0% { transform: translateY(0); }
  100% { transform: translateY(calc(-50% - 1rem)); }
}

.review-card {
  padding: 2.5rem;
}

.stars {
  color: var(--accent-color);
  font-size: 1.25rem;
  letter-spacing: 3px;
  margin-bottom: 1.5rem;
}

.quote {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--glass-border);
  padding-top: 1.5rem;
}

.author h4 {
  margin: 0;
  font-size: 1.125rem;
  color: var(--accent-color);
}

.author span {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* ==========================================================================
   Contact & WhatsApp Form Section
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.contact-card, .contact-form-card {
  padding: 2.5rem;
}

.contact-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.contact-item p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.4;
}

.contact-item a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--ts-fast);
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-actions-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 1.5rem;
}

.map-embed-wrapper {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
}

.map-embed-wrapper iframe {
  display: block;
  filter: invert(90%) hue-rotate(180deg) contrast(1.1);
}

/* Contact Form */
.form-header {
  margin-bottom: 1.75rem;
}

.form-header p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 0.9rem 1.15rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--ts-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 20px var(--accent-glow);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d4af37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.2rem;
  padding-right: 2.5rem;
}

.form-select option {
  background-color: #0f0a0f;
  color: #fff;
  padding: 0.5rem;
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

.wa-submit-btn {
  width: 100%;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border: none;
  font-size: 1rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  transition: var(--ts-fast);
}

.wa-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5);
  background: linear-gradient(135deg, #2ecc71 0%, #16a085 100%);
}

/* ==========================================================================
   Studio & Cultural Classes Section
   ========================================================================== */
.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.class-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--ts-fast);
  position: relative;
}

.class-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.15);
}

.class-img-box {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.class-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.class-card:hover .class-img-box img {
  transform: scale(1.08);
}

.class-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(5, 5, 3, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
}

.class-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.class-body h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.class-body p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex: 1;
}

.class-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--glass-border);
  padding-top: 1.25rem;
  margin-top: auto;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.class-meta .schedule {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent-color);
  font-weight: 600;
}

/* ==========================================================================
   Events & Workshops Section
   ========================================================================== */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
}

.event-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--ts-fast);
}

.event-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.15);
}

.event-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.event-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.event-card:hover .event-img-wrap img {
  transform: scale(1.08);
}

.event-date-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--accent-gradient);
  color: #000;
  font-weight: 800;
  font-family: var(--font-heading);
  padding: 0.5rem 0.9rem;
  border-radius: 12px;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.event-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-category {
  color: var(--accent-color);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.event-body h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.event-body p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.event-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--glass-border);
  padding-top: 1.25rem;
  margin-top: auto;
}

.event-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

/* ==========================================================================
   Meet Our Coaches Section
   ========================================================================== */
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}

.trainer-card {
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  overflow: hidden;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--ts-fast);
  position: relative;
}

.trainer-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.15);
}

.trainer-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 1.25rem;
  position: relative;
  transition: var(--ts-fast);
}

.trainer-card:hover .trainer-avatar {
  border-color: var(--accent-color);
  box-shadow: 0 0 20px var(--accent-glow);
}

.trainer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trainer-role {
  color: var(--accent-color);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.35rem;
}

.trainer-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.trainer-bio {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

.trainer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: auto;
}

.trainer-tags span {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* Footer */
.footer {
  border-top: 1px solid var(--glass-border);
  padding: 4rem 0 2rem;
  background: rgba(10,10,15,0.3);
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 90px;
  transform: scale(1.3);
  transform-origin: left center;
  margin-bottom: 1rem;
}
.footer-brand p {
  color: var(--text-muted);
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 1.25rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  text-decoration: none;
  transition: var(--ts-fast);
}

.social-btn svg {
  transition: transform 0.2s ease;
}

.social-btn:hover {
  transform: translateY(-3px);
}

.social-btn:hover svg {
  transform: scale(1.15);
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.4);
}

.social-btn.facebook:hover {
  background: #1877f2;
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
}

.footer-links {
  display: flex; gap: 2rem;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 1px;
}
.footer-links a:hover {
  color: var(--text-main);
}

.footer-bottom {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
}

/* Reveal Animations */
.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-item.active {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ==========================================================================
   Responsive Design & Mobile Optimizations
   ========================================================================== */

@media (max-width: 1200px) {
  .main-nav {
    gap: 1.8rem;
  }
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 1024px) {
  .glass-header {
    width: 95%;
    padding: 0.5rem 1.25rem;
  }
  .main-nav {
    gap: 1.25rem;
  }
  .section-pad {
    padding: 6rem 0;
  }
  .hero-section {
    padding: 10rem 0 5rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .bento-wide,
  .bento-tall {
    grid-column: auto;
    grid-row: auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .features-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  /* Cursor Reset for Touch / Mobile */
  body, .btn-primary, .btn-secondary, .mobile-menu-btn, a, button, select, input, textarea {
    cursor: auto !important;
  }
  .btn-primary, .btn-secondary, .mobile-menu-btn, a, button, .toggle-btn, .nav-dropdown-trigger {
    cursor: pointer !important;
  }
  .cursor-dot, .cursor-outline {
    display: none !important;
  }

  /* Header & Navigation */
  .glass-header {
    width: calc(100% - 1.5rem);
    max-width: 100%;
    top: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .glass-header.menu-open {
    border-radius: 20px;
    background: rgba(10, 8, 12, 0.98);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.15);
  }

  .desktop-cta {
    display: none !important;
  }

  .mobile-cta-only {
    display: flex !important;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    width: 100%;
    background: rgba(10, 8, 12, 0.98);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 1.25rem 1.25rem 1.75rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    max-height: calc(85vh - 70px);
    overflow-y: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 30px rgba(212, 175, 55, 0.1);
    z-index: 100;
  }

  .main-nav.mobile-open {
    display: flex;
    animation: menuSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  @keyframes menuSlideDown {
    from {
      opacity: 0;
      transform: translateY(-10px) scale(0.98);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .main-nav .nav-link {
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
  }

  .nav-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
  }

  .nav-dropdown-trigger {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    justify-content: space-between;
    border: none;
    border-radius: 12px;
  }

  .nav-dropdown.open .nav-dropdown-trigger {
    color: var(--accent-color);
  }

  .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 0;
    visibility: hidden;
    height: 0;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
  }

  .nav-dropdown.open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    height: auto;
    max-height: 400px;
    pointer-events: auto;
    padding: 0.4rem;
  }

  .dropdown-item {
    padding: 0.65rem 0.85rem;
    font-size: 0.8125rem;
  }

  .main-nav .btn-primary {
    width: 100%;
    padding: 0.85rem;
    font-size: 0.9rem;
    margin-top: 0.4rem;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .container {
    padding: 0 1.25rem;
  }

  .section-pad {
    padding: 4.5rem 0;
  }

  .section-title {
    margin-bottom: 2.75rem;
  }

  .section-title h2 {
    font-size: clamp(2rem, 7.5vw, 2.75rem);
    margin-bottom: 0.75rem;
  }

  .section-title p {
    font-size: 1rem;
    line-height: 1.5;
  }

  /* Hero Section */
  .hero-section {
    min-height: 100dvh;
    padding: 8rem 0 3.5rem;
    align-items: center;
  }

  .hero-media iframe {
    width: 100vw;
    height: 56.25vw;
    min-width: 177.78vh;
    min-height: 100vh;
    transform: translate(-50%, -50%) scale(1.6);
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-content::before {
    width: 3rem;
    height: 2.5px;
    margin-bottom: 1rem;
  }

  .badge {
    font-size: 0.75rem;
    padding: 0.45rem 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
  }

  .hero-content h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .hero-title-top {
    font-size: clamp(0.85rem, 3.8vw, 1.25rem);
    letter-spacing: 1px;
    white-space: normal;
    text-wrap: balance;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-title-main {
    font-size: clamp(1.45rem, 6.6vw, 2.4rem);
    letter-spacing: -0.01em;
    line-height: 1.12;
    white-space: normal;
    text-wrap: balance;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    padding: 0 0.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 360px;
    gap: 0.75rem;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    min-height: 52px;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    width: 100%;
    max-width: 380px;
    margin-top: 1.75rem;
  }

  .hero-proof span {
    padding: 0.6rem 0.75rem;
    font-size: 0.8rem;
    text-align: center;
    border-radius: 10px;
  }

  .hero-proof span:last-child {
    grid-column: span 2;
  }

  /* About Section */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image img {
    border-radius: 18px;
    max-height: 260px;
    width: 100%;
    object-fit: cover;
  }

  .about-text h2 {
    font-size: clamp(1.85rem, 6.5vw, 2.5rem);
    margin-bottom: 1rem;
  }

  .about-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
  }

  .stat-card {
    padding: 1rem 0.75rem;
    border-radius: 16px;
    text-align: center;
    align-items: center;
    gap: 0.5rem;
  }

  .stat-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .stat-card .stat-num {
    font-size: 1.85rem;
    margin-bottom: 0.2rem;
  }

  .stat-card .stat-title {
    font-size: 0.8rem;
    letter-spacing: 0.2px;
  }

  .stat-card .stat-sub {
    font-size: 0.72rem;
    margin: 0;
  }

  /* Services Grid (Compact 2-Column Mobile Layout) */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .service-card {
    padding: 1.35rem 0.75rem;
    border-radius: 16px;
    min-height: 120px;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.6rem;
  }
  .service-icon svg {
    width: 22px;
    height: 22px;
  }

  .service-card h3 {
    font-size: 0.875rem;
    line-height: 1.25;
    letter-spacing: 0.5px;
  }

  .glow-badge {
    padding: 0.75rem 1.25rem;
    font-size: clamp(0.75rem, 3.2vw, 0.95rem);
    letter-spacing: 1px;
    border-radius: 100px;
    max-width: 100%;
    display: inline-block;
  }

  /* Classes Section */
  .classes-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .class-card {
    border-radius: 20px;
  }

  .class-img-box {
    height: 190px;
  }

  .class-badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.75rem;
    top: 0.75rem;
    left: 0.75rem;
  }

  .class-body {
    padding: 1.35rem 1.25rem;
  }

  .class-body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }

  .class-body p {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .class-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    padding-top: 1rem;
    font-size: 0.8125rem;
  }

  /* Mobile Bento Gallery */
  .bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 0.75rem;
  }

  .bento-item {
    border-radius: 14px;
  }

  .bento-item.bento-wide:first-child {
    grid-column: span 2;
    grid-row: span 1;
    height: 190px;
  }

  .bento-item:nth-child(4) {
    grid-row: span 2;
    height: 100%;
  }

  .bento-item:last-child {
    grid-column: span 2;
    height: 170px;
  }

  .bento-item figcaption {
    font-size: 0.75rem;
    left: 0.75rem;
    bottom: 0.75rem;
    letter-spacing: 0.5px;
  }

  /* Events Section */
  .events-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .event-card {
    border-radius: 20px;
  }

  .event-img-wrap {
    height: 180px;
  }

  .event-date-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.75rem;
    top: 0.75rem;
    right: 0.75rem;
  }

  .event-body {
    padding: 1.35rem 1.25rem;
  }

  .event-category {
    font-size: 0.75rem;
  }

  .event-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .event-body p {
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
  }

  .event-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding-top: 1rem;
  }

  .event-footer .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1rem !important;
    font-size: 0.875rem !important;
  }

  /* Trainers Section */
  .trainers-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trainer-card {
    padding: 1.5rem 1.25rem;
    border-radius: 20px;
  }

  .trainer-avatar {
    width: 110px;
    height: 110px;
    margin-bottom: 1rem;
  }

  .trainer-role {
    font-size: 0.75rem;
  }

  .trainer-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
  }

  .trainer-bio {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .trainer-tags span {
    font-size: 0.72rem;
    padding: 0.25rem 0.6rem;
  }

  /* Pricing Section */
  .pricing-note-banner {
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.75rem 1.25rem;
    border-radius: 16px;
    font-size: 0.8125rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .pricing-divider {
    display: none;
  }

  .split-pricing {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 440px;
  }

  .price-card {
    padding: 1.75rem 1.25rem;
    border-radius: 20px;
  }

  .card-header-flex {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }

  .icon-avatar {
    width: 56px;
    height: 56px;
    font-size: 2rem;
    flex-shrink: 0;
  }

  .card-header-flex h3 {
    font-size: 1.5rem;
    letter-spacing: 0;
    line-height: 1.15;
  }

  .couple-sub {
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
  }

  .pricing-toggle {
    margin: 1.25rem 0;
    padding: 3px;
  }

  .toggle-btn {
    padding: 0.6rem 0.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
  }

  .pricing-rows {
    gap: 1rem;
  }

  .p-row {
    padding-bottom: 1rem;
  }

  .p-duration {
    font-size: 0.95rem;
  }

  .cost {
    font-size: 1.75rem;
  }

  .strike {
    font-size: 0.85rem;
  }

  /* Reviews Section */
  .reviews-container {
    height: 440px;
  }

  .review-card {
    padding: 1.5rem 1.25rem;
    border-radius: 18px;
  }

  .stars {
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
  }

  .quote {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
  }

  .author {
    padding-top: 1rem;
  }

  .author h4 {
    font-size: 0.95rem;
  }

  .author span {
    font-size: 0.8rem;
  }

  /* Contact & Form Section */
  .contact-card, .contact-form-card {
    padding: 1.5rem 1.25rem;
    border-radius: 20px;
  }

  .contact-card h3, .contact-form-card h3 {
    font-size: 1.35rem;
  }

  .contact-sub {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }

  .contact-items {
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
    border-radius: 10px;
  }

  .contact-item strong {
    font-size: 0.875rem;
  }

  .contact-item p {
    font-size: 0.85rem;
  }

  .contact-actions-row {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding-top: 1.25rem;
  }

  .contact-actions-row .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.25rem !important;
  }

  .contact-actions-row .social-links {
    justify-content: center;
    margin: 0;
  }

  .map-embed-wrapper iframe {
    height: 190px;
  }

  .form-group label {
    font-size: 0.75rem;
  }

  .form-control, .form-select, textarea.form-control {
    font-size: 16px;
    padding: 0.75rem 1rem;
    border-radius: 10px;
  }

  .wa-submit-btn {
    padding: 0.85rem;
    font-size: 0.95rem;
  }

  /* Footer */
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-flex {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .footer-brand img {
    height: 60px;
    transform: none;
    margin: 0 auto 0.75rem;
  }

  .footer-brand p {
    font-size: 0.85rem;
    margin: 0 auto;
  }

  .footer-brand .social-links {
    justify-content: center;
    margin-top: 1rem;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem 0.75rem;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .footer-links a {
    font-size: 0.78rem;
    padding: 0.25rem;
  }

  .footer-bottom {
    padding-top: 1.5rem;
    font-size: 0.78rem;
  }

  /* About Page Responsive */
  .page-header {
    padding: 7.5rem 0 3rem !important;
  }

  .page-header h1 {
    font-size: clamp(2rem, 8vw, 2.75rem) !important;
  }
}

@media (max-width: 380px) {
  .container {
    padding: 0 0.85rem;
  }

  .hero-title-top {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: break-word;
  }
  .hero-title-main {
    font-size: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
    white-space: normal;
    text-wrap: balance;
    overflow-wrap: break-word;
  }

  .services-grid {
    gap: 0.5rem;
  }

  .service-card {
    padding: 1.15rem 0.5rem;
  }

  .service-card h3 {
    font-size: 0.8rem;
  }

  .stat-card .stat-num {
    font-size: 1.6rem;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   Why Choose Total Fitness Section
   ========================================================================== */
.why-choose-section {
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.why-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: rgba(18, 18, 16, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 0 24px rgba(212, 175, 55, 0.12);
}

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

.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.why-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-color);
  opacity: 0.85;
}

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
}

.why-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #ffffff;
  line-height: 1.3;
}

.why-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  margin: 0;
}

.why-closing-banner {
  margin-top: 3.5rem;
  padding: 1.75rem 2.5rem;
  background: linear-gradient(135deg, rgba(28, 26, 20, 0.85), rgba(18, 18, 16, 0.92));
  border: 1px solid rgba(212, 175, 55, 0.32);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.why-closing-banner p {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin: 0;
}

.why-closing-banner p span {
  color: var(--accent-color);
}

/* ==========================================================================
   Free Trial Section
   ========================================================================== */
.trial-section {
  padding: 4rem 0 6rem;
  position: relative;
}

.trial-card {
  position: relative;
  padding: 4rem 3.5rem;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.15), transparent 60%),
              linear-gradient(135deg, rgba(24, 22, 18, 0.95), rgba(14, 14, 12, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55), 0 0 35px rgba(212, 175, 55, 0.08);
  overflow: hidden;
  text-align: center;
}

.trial-content {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.trial-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.2rem;
  color: #ffffff;
}

.trial-desc {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.65;
  margin-bottom: 2rem;
}

.trial-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.trial-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.15rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.trial-pill svg {
  color: var(--accent-color);
}

.trial-actions {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
}

.trial-actions .btn-primary {
  padding: 1.15rem 3rem;
  font-size: 1.15rem;
  gap: 0.65rem;
}

/* ==========================================================================
   Prominent Google Rating & Authentic Reviews Grid
   ========================================================================== */
.google-rating-wrap {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 2rem;
  background: rgba(20, 20, 18, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  margin: 1.25rem auto 1.75rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.google-g-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.google-rating-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.google-score-box {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.google-score {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.google-stars {
  color: #FFB800;
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.google-meta {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 1rem;
}

.google-label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}

.google-sub {
  display: block;
  font-size: 0.8rem;
  color: var(--accent-color);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.review-card-item {
  padding: 2.25rem 2rem;
  background: rgba(18, 18, 16, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.review-card-item:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.review-stars {
  color: #FFB800;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.google-verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}

.review-card-item .quote {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 1.75rem;
  font-style: normal;
  flex-grow: 1;
}

.review-card-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.2rem;
}

.review-card-author h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0;
}

.review-card-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Responsive Rules for New Sections
   ========================================================================== */
@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .trial-card {
    padding: 3rem 1.5rem;
  }
  .trial-features {
    flex-direction: column;
    align-items: center;
  }
  .google-rating-wrap {
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    gap: 0.75rem;
    text-align: center;
  }
  .google-rating-info {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .google-meta {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0;
    padding-top: 0.5rem;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .why-closing-banner {
    padding: 1.5rem 1.25rem;
  }
}

/* ==========================================================================
   Walkthrough Video Showcase
   ========================================================================== */
.gallery-video-showcase {
  margin-bottom: 3.5rem;
}

.gallery-video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(18, 18, 16, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.08);
}

.gallery-video-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.25);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.gallery-video-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.gallery-video-header-left h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #ffffff;
}

.gallery-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 48%;
  height: 0;
  overflow: hidden;
  background: #000000;
}

.gallery-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 991px) {
  .gallery-video-wrap {
    padding-bottom: 56.25%;
  }
}

/* ==========================================================================
   Fixed Mobile Bottom Navigation Bar (CALL | WHATSAPP | DIRECTIONS | JOIN)
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(14, 13, 10, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(212, 175, 55, 0.35);
    padding: 0.5rem 0.25rem;
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom));
    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.7);
  }

  .mobile-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    padding: 0.4rem 0.15rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    transition: all 0.2s ease;
    border-radius: 8px;
  }

  .mobile-bar-item:active {
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-bar-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: var(--accent-color);
  }

  .mobile-bar-item.mobile-bar-highlight {
    background: var(--accent-gradient);
    border-radius: 10px;
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.4);
  }

  .mobile-bar-item.mobile-bar-highlight .mobile-bar-icon {
    color: #000000;
  }

  .mobile-bar-item.mobile-bar-highlight span {
    color: #000000;
    font-weight: 800;
  }

  body {
    padding-bottom: 68px;
  }
}


