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

:root {
  --color-dark: #000000;
  --color-primary: #101010;
  --color-accent: #ede3d7;
  --color-highlight: #ffffff;
  --color-gold: #b4975a;
  --color-muted: rgba(255, 255, 255, 0.65);
  --font-heading: "Playfair Display", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --max-width: 1440px;
  --transition-base: 200ms ease-in-out;
  --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* ===================================
   CIRCULAR ORBIT BUTTON
   =================================== */
.cta-orbit {
  position: fixed;
  top: clamp(6rem, 18vh, 12rem);
  right: clamp(2rem, 6vw, 4rem);
  width: clamp(120px, 20vw, 200px);
  height: clamp(120px, 20vw, 200px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at center,
      rgba(255, 255, 255, 0.18),
      rgba(16, 16, 16, 0.65));
  border: 1px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  color: var(--color-highlight);
  overflow: hidden;
  backdrop-filter: blur(6px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
  isolation: isolate;
  z-index: 20;
  cursor: pointer;
  --orbit-rotation: 0deg;
}

.cta-orbit__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(var(--orbit-rotation));
}

.cta-orbit__text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 6px;
  fill: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.cta-orbit__label {
  position: relative;
  z-index: 1;
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: var(--color-highlight);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.cta-orbit:hover .cta-orbit__label,
.cta-orbit:focus-visible .cta-orbit__label {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 680px) {
  .cta-orbit {
    right: 1.25rem;
    top: clamp(4rem, 22vh, 7rem);
    width: 110px;
    height: 110px;
  }

  .cta-orbit__text {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .cta-orbit__label {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    padding: 0.55rem 0.85rem;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-highlight);
  background-color: var(--color-primary);
  line-height: 1.6;
  letter-spacing: 0.01em;
  margin: 0;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--color-highlight);
  margin-top: 0;
}

.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4 {
  color: var(--color-primary);
}

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

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
  padding: 1rem 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.7);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Desktop layout - reset order */
@media (min-width: 769px) {

  .logo,
  .nav-menu,
  .language-switcher,
  .cta-btn,
  .hamburger {
    order: initial;
  }

  .language-switcher {
    margin-left: 0;
    margin-right: 1rem;
  }
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo h1 {
  font-size: 1.5rem;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--color-highlight);
}

.price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-gold);
  font-family: var(--font-heading);
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--color-muted);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding-bottom: 0.25rem;
  transition: color 0.3s ease;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cta-btn {
  background: var(--color-highlight);
  color: var(--color-primary);
  border: none;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.cta-btn:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  background: transparent;
  border: none;
  width: 44px;
  height: 44px;
  position: relative;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--color-highlight);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 3px;
  display: block;
}

.hamburger span:nth-child(1) {
  width: 28px;
}

.hamburger span:nth-child(2) {
  width: 22px;
  margin-left: auto;
}

.hamburger span:nth-child(3) {
  width: 28px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  width: 28px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  width: 28px;
}

.close-menu {
  display: none;
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-highlight);
  transition: all 0.3s ease;
  z-index: 1002;
}

.close-menu:hover {
  background: rgba(180, 151, 90, 0.2);
  border-color: var(--color-gold);
  transform: rotate(90deg);
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      var(--primary-black) 0%,
      var(--secondary-black) 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 Q 25 25, 50 50 T 100 50" stroke="rgba(212,197,185,0.03)" fill="none" stroke-width="2"/></svg>');
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.4);
  /* backdrop-filter: blur(2px); */
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 2rem;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--color-highlight);
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--color-highlight);
  margin-bottom: 3rem;
  font-weight: 400;
  letter-spacing: 1px;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition-base),
    box-shadow var(--transition-base), background-color var(--transition-base),
    color var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background-color: var(--color-highlight);
  color: var(--color-primary);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background-color: var(--color-accent);
}

.btn-dark {
  background-color: rgba(16, 16, 16, 0.85);
  color: var(--color-highlight);
  box-shadow: var(--shadow-soft);
}

.btn-dark:hover {
  background-color: rgba(16, 16, 16, 1);
}

.btn-secondary,
.btn-light {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--color-highlight);
}

.btn-secondary:hover,
.btn-light:hover {
  border-color: var(--color-highlight);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--color-highlight);
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.scroll-line {
  width: 2px;
  height: 50px;
  background: var(--color-highlight);
  animation: scrollAnimation 2s infinite;
}

@keyframes scrollAnimation {

  0%,
  100% {
    transform: scaleY(0.5);
    opacity: 0.5;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* ===================================
   ANIMATIONS
   =================================== */
.fade-in {
  animation: fadeIn 1s ease-out;
}

.fade-in-delay {
  animation: fadeIn 1s ease-out 0.3s both;
}

.fade-in-delay-2 {
  animation: fadeIn 1s ease-out 0.6s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 600ms ease-out,
    transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
}

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

.reveal-delay {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 600ms ease-out 200ms,
    transform 700ms cubic-bezier(0.19, 1, 0.22, 1) 200ms;
}

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

.reveal-delay-2 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 600ms ease-out 400ms,
    transform 700ms cubic-bezier(0.19, 1, 0.22, 1) 400ms;
}

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

/* ===================================
   CONTAINER & SECTIONS
   =================================== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section--light {
  background-color: var(--color-highlight);
  color: var(--color-primary);
}

.section--dark {
  background-color: var(--color-primary);
  color: var(--color-highlight);
}

.section-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  color: var(--color-highlight);
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg,
      transparent,
      var(--color-gold),
      transparent);
}

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

.section--light .section-title::after {
  background: linear-gradient(90deg,
      transparent,
      var(--color-primary),
      transparent);
}

.subsection-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin: 5rem 0 3rem;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 1rem;
}

.subsection-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg,
      transparent,
      var(--color-gold),
      transparent);
}

/* ===================================
   ABOUT SECTION
   =================================== */
/* About section styles handled by .section--light */

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 6rem;
}

.about-text .mission {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.4;
  color: inherit;
}

.about-text .description {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: inherit;
  opacity: 0.85;
}

.my-bold {
  font-weight: 600;
}

.about-image {
  position: relative;
  height: 500px;
  border-radius: 0;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-placeholder,
.placeholder-text {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
  font-size: 1.2rem;
  font-style: italic;
}

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

.feature-card {
  text-align: center;
  padding: 3.5rem 2.5rem;
  background: #ffffff;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.feature-card:hover,
.feature-card.reveal:hover,
.feature-card.reveal-delay:hover,
.feature-card.reveal-delay-2:hover,
.feature-card.reveal.active:hover,
.feature-card.reveal-delay.active:hover,
.feature-card.reveal-delay-2.active:hover {
  transform: translateY(-12px) !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 0, 0, 0.15);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  transition: color 0.3s ease;
}

.feature-card:hover h4 {
  color: var(--color-gold);
}

.feature-card p {
  line-height: 1.8;
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.feature-card:hover p {
  opacity: 0.9;
}

/* ===================================
   CLASSES SECTION
   =================================== */
/* Classes section styles handled by .section--dark */

.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 4rem;
  margin-bottom: 5rem;
}

.class-card {
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  position: relative;
  cursor: pointer;
}

.class-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--color-gold);
  transition: height 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 3;
}

.class-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right,
      rgba(180, 151, 90, 0.08) 0%,
      transparent 60%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
  z-index: 1;
}

.class-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(180, 151, 90, 0.15);
  border-color: rgba(180, 151, 90, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.class-card:hover::before {
  height: 100%;
}

.class-card:hover::after {
  opacity: 1;
}

.class-image {
  height: 300px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  border-radius: 16px 16px 0 0;
}

.class-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(180, 151, 90, 0.15) 0%,
      transparent 50%,
      rgba(180, 151, 90, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
}

.class-card:hover .class-image::after {
  opacity: 1;
}

.class-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1),
    filter 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.class-card:hover .class-image img {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.05);
}

.class-content {
  padding: 2.5rem;
  position: relative;
  z-index: 2;
}

.class-content h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  color: var(--color-highlight);
  transition: color 0.3s ease, transform 0.3s ease;
}

.class-card:hover .class-content h3 {
  color: var(--color-gold);
  transform: translateX(4px);
}

.class-content p {
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.8;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.class-card:hover .class-content p {
  color: rgba(255, 255, 255, 0.85);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--color-highlight);
  color: var(--color-highlight);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-primary);
  background-color: var(--color-gold);
  box-shadow: 0 8px 20px rgba(180, 151, 90, 0.3);
}

.megaformer-info {
  background: rgba(255, 255, 255, 0.03);
  padding: 2.5rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer;
}

.megaformer-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--color-gold);
  transition: height 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 3;
}

.megaformer-info::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right,
      rgba(180, 151, 90, 0.08) 0%,
      transparent 60%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.megaformer-info:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(180, 151, 90, 0.15);
  border-color: rgba(180, 151, 90, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.megaformer-info:hover::before {
  height: 100%;
}

.megaformer-info:hover::after {
  opacity: 1;
}

.megaformer-info h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  color: var(--color-highlight);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease, transform 0.3s ease;
}

.megaformer-info:hover h3 {
  color: var(--color-gold);
  transform: translateY(-2px);
}

.megaformer-info p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.megaformer-info:hover p {
  color: rgba(255, 255, 255, 0.85);
}

/* ===================================
   SCHEDULE SECTION
   =================================== */
/* Schedule section styles handled by .section--light */

.schedule-container {
  max-width: 1000px;
  margin: 0 auto;
}

.bsport-integration {
  background: rgba(16, 16, 16, 0.04);
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  min-height: 400px;
  box-shadow: var(--shadow-soft);
}

.schedule-placeholder {
  text-align: center;
}

.schedule-placeholder>p {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
}

.schedule-demo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: left;
}

.schedule-day {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.schedule-day:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border-color: rgba(180, 151, 90, 0.3);
}

.schedule-day h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  border-bottom: 2px solid var(--color-gold);
  padding-bottom: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
}

.schedule-slot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: padding-left 0.3s ease;
}

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

.schedule-day:hover .schedule-slot {
  padding-left: 0.5rem;
}

.schedule-slot .time {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1rem;
}

.schedule-slot .class-name {
  color: #666;
  font-size: 0.95rem;
}

.btn-small {
  padding: 0.5rem 1rem;
  background: var(--color-primary);
  color: var(--color-highlight);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: transform var(--transition-base),
    background-color var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-small:hover {
  background: var(--color-gold);
  transform: translateY(-2px);
}

.cta-large {
  display: block;
  margin: 0 auto;
  padding: 1.2rem 4rem;
  font-size: 1.1rem;
  background: var(--color-primary);
  color: var(--color-highlight);
  border: 1px solid var(--color-primary);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cta-large::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
      rgba(180, 151, 90, 0.3) 0%,
      transparent 70%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.cta-large::after {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg,
      transparent 30%,
      rgba(180, 151, 90, 0.4) 50%,
      transparent 70%);
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.cta-large:hover {
  background: var(--color-primary);
  border-color: var(--color-gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(180, 151, 90, 0.4),
    inset 0 0 20px rgba(180, 151, 90, 0.1);
  transform: translateY(-4px);
  color: var(--color-highlight);
}

.cta-large:hover::before {
  opacity: 1;
}

.cta-large:hover::after {
  opacity: 1;
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

/* ===================================
   PRICING SECTION
   =================================== */
/* Pricing section styles handled by .section--dark */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 5rem;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--color-gold);
  transition: height 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.pricing-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right,
      rgba(180, 151, 90, 0.08) 0%,
      transparent 60%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(180, 151, 90, 0.15);
  border-color: rgba(180, 151, 90, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.pricing-card:hover::before {
  height: 100%;
}

.pricing-card:hover::after {
  opacity: 1;
}

.pricing-card.featured {
  border: 2px solid var(--color-gold);
  background: rgba(180, 151, 90, 0.05);
}

.pricing-card.featured:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 0 40px rgba(180, 151, 90, 0.25);
}

.popular-badge {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-gold);
  color: var(--color-primary);
  padding: 0.5rem 1.5rem;
  border-radius: 999px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease, transform 0.3s ease;
}

.pricing-card:hover h3 {
  color: var(--color-gold);
  transform: translateY(-2px);
}

.price {
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.currency {
  font-size: 2rem;
  vertical-align: top;
  transition: color 0.3s ease;
}

.amount {
  font-size: 4rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
  transition: color 0.3s ease;
}

.pricing-card:hover .amount {
  color: var(--color-gold);
}

.period {
  font-size: 1.2rem;
  color: var(--text-gray);
}

.price-note {
  color: var(--text-gray);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
  text-align: left;
  position: relative;
  z-index: 1;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  transition: all 0.3s ease;
}

.pricing-card:hover .pricing-features li {
  color: rgba(255, 255, 255, 0.85);
  padding-left: 0.5rem;
}

.pricing-features li::before {
  content: "✓";
  color: var(--color-gold);
  font-weight: bold;
  margin-right: 1rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.pricing-card:hover .pricing-features li::before {
  transform: scale(1.2);
}

.pricing-card .btn {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}

.pricing-faq {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.pricing-faq h3 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 1rem;
}

.pricing-faq h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg,
      transparent,
      var(--color-gold),
      transparent);
}

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

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer;
}

.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--color-gold);
  transition: height 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.faq-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right,
      rgba(180, 151, 90, 0.08) 0%,
      transparent 60%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.faq-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 30px rgba(180, 151, 90, 0.15);
  border-color: rgba(180, 151, 90, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.faq-item:hover::before {
  height: 100%;
}

.faq-item:hover::after {
  opacity: 1;
}

.faq-item h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-item h4::before {
  content: "?";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(180, 151, 90, 0.15);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-gold);
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  flex-shrink: 0;
}

.faq-item:hover h4 {
  color: var(--color-gold);
  transform: translateX(4px);
}

.faq-item:hover h4::before {
  background: var(--color-gold);
  color: var(--color-primary);
  transform: rotate(360deg) scale(1.1);
}

.faq-item p {
  color: var(--text-gray);
  line-height: 1.8;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.faq-item:hover p {
  color: rgba(255, 255, 255, 0.85);
}

/* ===================================
   NEWSLETTER SECTION
   =================================== */
/* Newsletter section styles handled by .section--light */

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

.newsletter-text {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: var(--text-gray);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.newsletter-form input {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(16, 16, 16, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-primary);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.newsletter-form input::placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(180, 151, 90, 0.15);
}

.newsletter-form button {
  padding: 0.85rem 1.8rem;
  background: var(--color-primary);
  color: var(--color-highlight);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  transition: transform var(--transition-base),
    background-color var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.newsletter-form button:hover {
  background: var(--color-gold);
  transform: translateY(-2px);
}

.form-note {
  color: var(--text-gray);
  font-size: 0.9rem;
}

/* ===================================
   CONTACT SECTION
   =================================== */
/* Contact section styles handled by .section--dark */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

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

.contact-form input,
.contact-form textarea {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-highlight);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(180, 151, 90, 0.15);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form textarea {
  resize: vertical;
}

.contact-info {
  margin-top: 2rem;
}

.contact-item {
  margin-bottom: 2rem;
}

.contact-item h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.whatsapp-link {
  color: var(--color-highlight);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-base);
}

.whatsapp-link:hover {
  color: var(--color-gold);
}

.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-icon {
  width: 50px;
  height: 50px;
  border: 2px solid var(--color-highlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-highlight);
  transition: transform var(--transition-base),
    background-color var(--transition-base), border-color var(--transition-base);
}

.social-icon:hover {
  background: var(--color-gold);
  color: var(--color-primary);
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.map-container {
  height: 500px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-text {
  color: var(--text-gray);
  font-size: 1.2rem;
  font-style: italic;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  background: #0b0b0b;
  color: rgba(255, 255, 255, 0.6);
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-logo h3 {
  font-size: 1.8rem;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--color-highlight);
  text-decoration: none;
  transition: var(--transition);
}

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

.footer-bottom {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}

/* ===================================
   ANIMATIONS
   =================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms ease-out, transform 700ms ease-out;
}

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

.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 600ms ease-out,
    transform 700ms cubic-bezier(0.19, 1, 0.22, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 600ms ease-out 200ms,
    transform 700ms cubic-bezier(0.19, 1, 0.22, 1) 200ms;
}

.reveal-delay.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 960px) {
  .nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 6rem 2rem 2rem;
    gap: 0;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    transition: transform 400ms cubic-bezier(0.19, 1, 0.22, 1),
      opacity 400ms ease;
    overflow-y: auto;
    z-index: 999;
  }

  .nav-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .close-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    color: var(--color-highlight);
    padding: 1.5rem;
    margin: 1rem;
    margin-bottom: 2rem;
    cursor: pointer;
    align-self: flex-end;
    transition: var(--transition-base);
    min-width: 60px;
    min-height: 60px;
    backdrop-filter: blur(10px);
  }

  .close-menu:hover {
    color: var(--color-gold);
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-highlight);
    transform: rotate(90deg) scale(1.1);
  }

  .close-menu svg {
    width: 36px;
    height: 36px;
    stroke-width: 3;
  }

  .nav-link {
    font-size: 1.2rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
  }

  .nav-link:hover {
    padding-left: 1rem;
    color: var(--color-gold);
  }

  /* Mobile navbar layout: Logo -> Language -> Sign Up -> Hamburger */
  .nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    gap: 0.5rem;
  }

  .logo {
    order: 1;
    flex-shrink: 0;
    margin-right: auto;
  }

  .language-switcher {
    order: 2;
    margin-right: 0;
    margin-left: 0;
  }

  .cta-btn {
    order: 3;
    display: inline-flex;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    margin-right: 0;
    position: static;
    z-index: auto;
  }

  .hamburger {
    order: 4;
    display: flex;
    position: static;
    z-index: auto;
    margin-left: 0;
  }

  .nav-menu {
    order: 5;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

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

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

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .features-grid,
  .faq-grid,
  .schedule-demo {
    grid-template-columns: 1fr;
  }

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

  .pricing-card.featured {
    transform: scale(1);
  }

  .bsport-integration {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

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

  .logo h1 {
    font-size: 1.2rem;
  }

  .cta-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
  }
}

/* ===================================
   INSTRUCTORS SECTION
   =================================== */
.instructors {
  padding: 6rem 0;
}

.instructors-carousel-container {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
}

.instructors-carousel-viewport {
  width: 100%;
  overflow: hidden;
}

.instructors-carousel {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease-in-out;
  padding: 2rem 0;
  width: fit-content;
}

/* Desktop: Show exactly 3 cards */
@media (min-width: 1024px) {
  .instructors-carousel-container {
    width: calc(3 * 300px + 2 * 2rem);
    /* 3 cards + 2 gaps */
  }
}

/* Tablet: Show exactly 2 cards */
@media (min-width: 768px) and (max-width: 1023px) {
  .instructors-carousel-container {
    width: calc(2 * 300px + 1 * 2rem);
    /* 2 cards + 1 gap */
  }
}

/* Mobile: Show exactly 1 card */
@media (max-width: 767px) {
  .instructors-carousel-container {
    width: 300px;
    /* 1 card */
  }
}

.instructor-card {
  flex: 0 0 300px;
  background: var(--color-highlight);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition-base);
  cursor: pointer;
  position: relative;
}

.instructor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.instructor-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}

.instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base);
}

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

.instructor-info {
  padding: 1.5rem;
  text-align: center;
}

.instructor-info h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.instructor-info p {
  font-family: var(--font-body);
  color: var(--color-gold);
  font-size: 0.9rem;
  font-weight: 500;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--color-gold);
  background: transparent;
  color: var(--color-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
}

.carousel-btn:hover:not(:disabled) {
  background: var(--color-gold);
  color: var(--color-highlight);
  transform: scale(1.1);
}

.carousel-btn:disabled {
  cursor: not-allowed;
  border-color: rgba(180, 151, 90, 0.3);
  color: rgba(180, 151, 90, 0.3);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(180, 151, 90, 0.3);
  cursor: pointer;
  transition: all var(--transition-base);
}

.carousel-dot.active {
  background: var(--color-gold);
  transform: scale(1.2);
}

/* ===================================
   INSTRUCTOR MODAL
   =================================== */
.instructor-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.instructor-modal.active {
  display: flex;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  background: var(--color-highlight);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.1);
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  z-index: 1;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.modal-instructor-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.modal-instructor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-instructor-details {
  padding: 2rem;
}

.modal-instructor-details h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.modal-instructor-details p {
  font-family: var(--font-body);
  color: var(--color-primary);
  line-height: 1.6;
  font-size: 1rem;
}

/* ===================================
   RESPONSIVE - INSTRUCTORS
   =================================== */
@media (max-width: 768px) {
  .instructors {
    padding: 4rem 0;
  }

  .instructor-card {
    flex: 0 0 280px;
  }

  .instructor-image {
    height: 300px;
  }

  .carousel-controls {
    margin-top: 1rem;
  }

  .carousel-btn {
    width: 45px;
    height: 45px;
  }

  .modal-content {
    margin: 1rem;
    max-height: 90vh;
  }

  .modal-instructor-image {
    height: 300px;
  }

  .modal-instructor-details {
    padding: 1.5rem;
  }

  .modal-instructor-details h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .instructors-carousel-container {
    width: 280px;
    /* Smaller cards on very small screens */
  }

  .instructor-card {
    flex: 0 0 280px;
  }

  .instructor-image {
    height: 250px;
  }

  .instructor-info {
    padding: 1rem;
  }

  .modal-instructor-image {
    height: 250px;
  }

  .modal-instructor-details {
    padding: 1rem;
  }
}

/* ===================================
   LANGUAGE SWITCHER
   =================================== */
.language-switcher {
  display: flex;
  gap: 0.5rem;
  margin-right: 1rem;
}

.lang-btn {
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-base);
}

.lang-btn:hover {
  background: var(--color-gold);
  color: var(--color-highlight);
}

.lang-btn.active {
  background: var(--color-gold);
  color: var(--color-highlight);
}

@media (max-width: 768px) {
  .language-switcher {
    order: 2;
    margin-right: 0.5rem;
    margin-bottom: 0;
    margin-left: 0;
  }

  .lang-btn {
    padding: 0.2rem 0.4rem;
    font-size: 0.75rem;
  }
}

/* ===================================
   BSPORT WIDGET CUSTOMIZATION
   =================================== */

/* Global Widget Container Styling */
div[id^="bsport-widget-"] {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Specific Bsport internal container reset to allow 100% width */
div[id^="bsport-widget-"] .cleanslate {
  width: 100% !important;
  max-width: 100% !important;
}

/* Force text colors to be dark (primary color) within all widgets */
div[id^="bsport-widget-"] [class*="MuiTypography-root"],
div[id^="bsport-widget-"] [class*="MuiTypography-h6"],
div[id^="bsport-widget-"] [class*="jss"],
div[id^="bsport-widget-"] h1,
div[id^="bsport-widget-"] h2,
div[id^="bsport-widget-"] h3,
div[id^="bsport-widget-"] h4,
div[id^="bsport-widget-"] h5,
div[id^="bsport-widget-"] h6,
/* div[id^="bsport-widget-"] p, */
div[id^="bsport-widget-"] span,
div[id^="bsport-widget-"] div {
  color: var(--color-primary) !important;
}

/* Ensure images are visible and not hidden by overlays */
div[id^="bsport-widget-"] img {
  opacity: 1 !important;
}

/* HIDE BRANDING GLOBALLY */
/* Hide 'Powered by Bsport' text and links */
div[id^="bsport-widget-"] a[href*="bsport.io"],
div[id^="bsport-widget-"] div[class*="powered-by"],
div[id^="bsport-widget-"] div[class*="jss"]>a[target="_blank"],
footer a[href*="bsport.io"] {
  display: none !important;
}

/* Target internal Bsport footer specifically if classes vary */
div[id^="bsport-widget-"] div:last-child>div>a[target="_blank"] {
  display: none !important;
}

/* ===================================
   PROMOTIONAL POPUP
   =================================== */

.promo-popup-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  backdrop-filter: blur(8px);
}

.promo-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.promo-popup-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.promo-popup-overlay.active .promo-popup-content {
  transform: scale(1);
}

.promo-popup-image {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: block;
}

.promo-popup-close {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 44px;
  height: 44px;
  background-color: var(--color-gold);
  color: #101010;
  border: none;
  border-radius: 50%;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  z-index: 10001;
}

.promo-popup-close:hover {
  background-color: var(--color-highlight);
  transform: rotate(90deg) scale(1.1);
}

@media (max-width: 768px) {
  .promo-popup-close {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 22px;
  }
}

/* Promo Popup CTA Button */
.promo-popup-cta {
  margin-top: 1.5rem;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--color-gold), #d4a85a);
  color: var(--color-primary);
  border: none;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(180, 151, 90, 0.4);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.promo-popup-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(180, 151, 90, 0.5);
  background: linear-gradient(135deg, #d4a85a, var(--color-gold));
}

.promo-popup-cta:active {
  transform: translateY(0) scale(1);
}

@media (max-width: 768px) {
  .promo-popup-cta {
    padding: 0.85rem 2rem;
    font-size: 1rem;
    margin-top: 1rem;
  }
}

/* ===================================
   APP DOWNLOAD SECTION
   =================================== */
.app-download {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.app-download-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.app-download .section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2.5rem;
  line-height: 1.4;
}

.app-store-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.app-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  border-radius: 12px;
  overflow: hidden;
}

.app-store-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.store-badge {
  height: 55px;
  width: auto;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .app-download .section-title {
    font-size: 1.3rem;
    padding: 0 1rem;
  }

  .app-store-buttons {
    gap: 1rem;
  }

  .store-badge {
    height: 45px;
  }
}

@media (max-width: 480px) {
  .app-store-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .store-badge {
    height: 50px;
  }
}