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

:root {
  --bg-primary: #1B1E26;
  --bg-secondary: #232731;
  --bg-card: #2A2E3A;
  --accent: #FF6B35;
  --accent-hover: #E85D2C;
  --text-primary: #FFFFFF;
  --text-secondary: #A0A4B0;
  --text-muted: #6B6F7C;
  --border-color: #333744;
  --gradient-1: linear-gradient(135deg, #FF6B35, #FF8C5A);
  --gradient-2: linear-gradient(135deg, #7C3AED, #A78BFA);
  --gradient-3: linear-gradient(135deg, #10B981, #34D399);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
  --radius: 12px;
  --radius-lg: 16px;
  --max-width: 1200px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(27, 30, 38, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(27, 30, 38, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  cursor: pointer;
}

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

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

.logo-fit {
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-icon {
  font-size: 1.4rem;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Buttons */
.btn {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--gradient-1);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

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

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(255, 107, 53, 0.08);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1.5rem;
}

.btn-dark {
  background: var(--bg-card);
  color: var(--text-primary);
  padding: 14px 28px;
  font-size: 1.5rem;
  border: 1.5px solid var(--border-color);
}

.btn-dark:hover {
  border-color: var(--accent);
  background: rgba(255, 107, 53, 0.1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 20px;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
}

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

.mobile-cta {
  text-align: center;
  margin-top: 12px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 20px 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(124, 58, 237, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 5.6rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.highlight {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.8rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

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

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
}

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

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 600px;
}

/* Trust Badges */
.trust-badges {
  padding: 40px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.trust-badges p {
  font-size: 1.2rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.badges span {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.6;
  letter-spacing: 0.5px;
}

/* Sections Common */
section:not(.hero) {
  padding: 100px 20px;
}

.section-title {
  font-size: 4rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-sub {
  text-align: center;
  font-size: 1.8rem;
  color: var(--text-secondary);
  margin-bottom: 60px;
}

/* Services */
.services {
  position: relative;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 60px auto 0;
}

.service-card {
  background: var(--bg-card);
  padding: 40px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.service-icon {
  font-size: 3.6rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 1.4rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.learn-more {
  color: var(--accent);
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.learn-more:hover {
  opacity: 0.8;
  padding-left: 4px;
}

/* cultpass Plans */
.cultpass {
  background: var(--bg-secondary);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.plan-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.plan-featured {
  border-color: var(--accent);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.1);
  transform: scale(1.02);
}

.plan-featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-1);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.plan-header {
  text-align: center;
  margin-bottom: 24px;
}

.plan-header h3 {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.plan-header p {
  font-size: 1.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.plan-price {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border-color);
}

.plan-price .price {
  font-size: 4rem;
  font-weight: 900;
}

.plan-price .period {
  font-size: 1.4rem;
  color: var(--text-muted);
}

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

.plan-features li {
  font-size: 1.4rem;
  color: var(--text-secondary);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.plan-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1.5rem;
}

/* App Download */
.app-download {
  position: relative;
}

.app-download .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.app-content h2 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.app-content p {
  font-size: 1.8rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 450px;
}

.app-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.app-buttons .btn span {
  font-size: 1.8rem;
}

.qr-code {
  display: flex;
  align-items: center;
  gap: 16px;
}

.qr-code span {
  font-size: 1.4rem;
  color: var(--text-muted);
}

.qr-placeholder {
  width: 60px;
  height: 60px;
  background: var(--bg-card);
  border: 2px dashed var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.app-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  max-height: 500px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

/* Testimonials */
.testimonials {
  background: var(--bg-secondary);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 60px auto 0;
}

.testimonial-card {
  background: var(--bg-card);
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.stars {
  color: #F59E0B;
  font-size: 1.6rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

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

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

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.4rem;
}

.testimonial-author strong {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 2px;
}

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

/* Footer */
.footer {
  padding: 80px 20px 0;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto 40px;
}

.footer-brand p {
  font-size: 1.4rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 320px;
}

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

.social-links a {
  width: 36px;
  height: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-contact p {
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 20px 0;
  text-align: center;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .hero-text h1 {
    font-size: 4.2rem;
  }

  .section-title {
    font-size: 3.2rem;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 32px;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }

  .service-grid,
  .plans-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .app-download .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .app-content p {
    margin: 0 auto 32px;
  }

  .app-buttons {
    justify-content: center;
  }

  .qr-code {
    justify-content: center;
  }

  .app-image {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand p {
    margin: 16px auto 24px;
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero-text h1 {
    font-size: 3.2rem;
  }

  .hero-text p {
    font-size: 1.6rem;
  }

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

  .section-title {
    font-size: 2.8rem;
  }

  .plan-featured {
    transform: none;
  }

  .plan-featured:hover {
    transform: translateY(-4px);
  }

  section:not(.hero) {
    padding: 60px 20px;
  }

  .nav-right .btn-outline,
  .nav-right .btn-primary {
    display: none;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* ========== NEW FEATURE STYLES ========== */

/* Page Hero (inner pages) */
.page-hero {
  padding: 140px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: 5rem;
  font-weight: 900;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
}

.page-hero p {
  font-size: 1.8rem;
  color: var(--text-secondary);
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* City Selector */
.city-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1.3rem;
  color: var(--text-secondary);
  background: transparent;
}

.city-selector:hover {
  border-color: var(--accent);
  background: rgba(255, 107, 53, 0.06);
}

.city-selector .city-icon {
  font-size: 1.4rem;
}

.city-selector .city-name {
  font-weight: 500;
}

.city-selector .city-dropdown-icon {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

/* Gallery Section */
.gallery {
  padding: 100px 20px;
  background: var(--bg-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--max-width);
  margin: 60px auto 0;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

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

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

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

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

.gallery-item .gallery-overlay span {
  color: white;
  font-size: 1.4rem;
  font-weight: 600;
}

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

/* FAQ Section */
.faq {
  padding: 100px 20px;
  background: var(--bg-secondary);
}

.faq-list {
  max-width: 800px;
  margin: 60px auto 0;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--accent);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-card);
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question .faq-toggle {
  font-size: 1.8rem;
  transition: transform 0.3s ease;
  color: var(--text-muted);
}

.faq-item.active .faq-question .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
  background: var(--bg-card);
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 1.4rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Newsletter */
.newsletter {
  padding: 80px 20px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-color);
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-content h2 {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.newsletter-content p {
  font-size: 1.6rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 8px;
  border: 1.5px solid var(--border-color);
  background: var(--bg-card);
  color: var(--text-primary);
  font-size: 1.4rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-1);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

/* ========== GYM PAGE ========== */

/* BMI Calculator */
.bmi-calculator {
  padding: 100px 20px;
  background: var(--bg-secondary);
}

.bmi-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.bmi-card h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 28px;
  text-align: center;
}

.bmi-input-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.bmi-field label {
  display: block;
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 500;
}

.bmi-field input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 1.5rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
}

.bmi-field input:focus {
  border-color: var(--accent);
}

.bmi-result {
  text-align: center;
  margin-top: 20px;
  padding: 20px;
  background: var(--bg-primary);
  border-radius: var(--radius);
  display: none;
}

.bmi-result.show {
  display: block;
}

.bmi-result .bmi-value {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bmi-result .bmi-category {
  font-size: 1.6rem;
  color: var(--text-secondary);
  margin-top: 8px;
}

.bmi-result .bmi-range {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  font-size: 1.2rem;
  color: var(--text-muted);
}

/* Trainers Grid */
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 60px auto 0;
}

.trainer-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: center;
}

.trainer-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.trainer-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.trainer-card .trainer-info {
  padding: 20px;
}

.trainer-card .trainer-info h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.trainer-card .trainer-info span {
  font-size: 1.3rem;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.trainer-card .trainer-info .trainer-specialty {
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 600;
}

/* Equipment Grid */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 60px auto 0;
}

.equipment-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.equipment-item .equip-icon {
  font-size: 3.6rem;
  margin-bottom: 16px;
}

.equipment-item h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.equipment-item p {
  font-size: 1.3rem;
  color: var(--text-secondary);
}

/* ========== WORKOUTS PAGE ========== */

/* Schedule Table */
.schedule-section {
  padding: 100px 20px;
}

.schedule-table-wrap {
  overflow-x: auto;
  max-width: var(--max-width);
  margin: 60px auto 0;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.schedule-table thead {
  background: var(--bg-card);
}

.schedule-table th {
  padding: 16px 20px;
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border-color);
  text-align: left;
}

.schedule-table td {
  padding: 16px 20px;
  font-size: 1.4rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

.schedule-table tbody tr {
  transition: background 0.2s ease;
}

.schedule-table tbody tr:hover {
  background: var(--bg-card);
}

.schedule-table .class-name {
  font-weight: 600;
  color: var(--text-primary);
}

.schedule-table .class-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
}

.class-tag.yoga { background: rgba(124, 58, 237, 0.15); color: #A78BFA; }
.class-tag.hiit { background: rgba(255, 107, 53, 0.15); color: #FF8C5A; }
.class-tag.zumba { background: rgba(16, 185, 129, 0.15); color: #34D399; }
.class-tag.boxing { background: rgba(239, 68, 68, 0.15); color: #F87171; }
.class-tag.pilates { background: rgba(59, 130, 246, 0.15); color: #93C5FD; }

/* Workout Types Grid */
.workout-types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 60px auto 0;
}

.workout-type-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.workout-type-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.workout-type-card .wt-icon {
  font-size: 3.6rem;
  margin-bottom: 16px;
}

.workout-type-card h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.workout-type-card p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.workout-type-card .wt-duration {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  background: rgba(255, 107, 53, 0.1);
  color: var(--accent);
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
}

/* ========== SPORTS PAGE ========== */

/* Sports Facilities */
.sports-facilities {
  padding: 100px 20px;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 60px auto 0;
}

.facility-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  transition: all 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.facility-card .facility-img {
  width: 200px;
  min-height: 200px;
  flex-shrink: 0;
}

.facility-card .facility-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-card .facility-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.facility-card .facility-info h4 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.facility-card .facility-info p {
  font-size: 1.3rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.facility-card .facility-info .facility-meta {
  display: flex;
  gap: 16px;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.facility-card .facility-info .facility-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Court Booking */
.booking-section {
  padding: 100px 20px;
  background: var(--bg-secondary);
}

.booking-card {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.booking-card h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 28px;
  text-align: center;
}

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

.booking-form .form-group label {
  display: block;
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 500;
}

.booking-form .form-group select,
.booking-form .form-group input {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 1.4rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
}

.booking-form .form-group select:focus,
.booking-form .form-group input:focus {
  border-color: var(--accent);
}

.booking-form .form-group select {
  appearance: none;
  cursor: pointer;
}

.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ========== ABOUT PAGE ========== */

.about-story {
  padding: 100px 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-grid .about-text h2 {
  font-size: 3.6rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.about-grid .about-text p {
  font-size: 1.6rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-grid .about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Team Section */
.team-section {
  padding: 100px 20px;
  background: var(--bg-secondary);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 60px auto 0;
}

.team-card {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px 20px;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.team-card .team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 auto 16px;
}

.team-card h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card .team-role {
  font-size: 1.3rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}

.team-card p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Stats Section (about page) */
.stats-section {
  padding: 80px 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

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

.stat-card .stat-number-lg {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card .stat-label {
  font-size: 1.3rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

/* ========== CONTACT PAGE ========== */

.contact-section {
  padding: 100px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form-wrap h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 28px;
}

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

.contact-form .form-group label {
  display: block;
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 500;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--border-color);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 1.4rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--accent);
}

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

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.contact-info-card .ci-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.contact-info-card h4 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-info-card p {
  font-size: 1.4rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Map Container */
.map-container {
  margin-top: 24px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: none;
  display: block;
}

/* ========== RESPONSIVE ADDITIONS ========== */

@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:first-child {
    grid-column: span 1;
    grid-row: span 1;
  }
  .trainers-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .equipment-grid,
  .workout-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .facility-card {
    flex-direction: column;
  }
  .facility-card .facility-img {
    width: 100%;
    height: 200px;
  }
  .booking-form .form-row,
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
  .page-hero h1 {
    font-size: 3.6rem;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .city-selector {
    display: none;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .trainers-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .equipment-grid,
  .workout-types-grid {
    grid-template-columns: 1fr;
  }
  .facility-grid {
    grid-template-columns: 1fr;
  }
  .page-hero h1 {
    font-size: 2.8rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.plan-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease both;
}

.service-card:nth-child(2) { animation-delay: 0.1s; }
.service-card:nth-child(3) { animation-delay: 0.2s; }
.plan-card:nth-child(2) { animation-delay: 0.1s; }
.plan-card:nth-child(3) { animation-delay: 0.2s; }
.testimonial-card:nth-child(2) { animation-delay: 0.1s; }
.testimonial-card:nth-child(3) { animation-delay: 0.2s; }
