/* ============================================================
   Over Gym — Modern Redesign
   Style: Bold & Aggressive (Nike/CrossFit aesthetic)
   Fonts: Bebas Neue / Barlow Condensed / Inter
   Colors: #000 / #f36100 / #fff
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  line-height: 1;
  color: #fff;
}

/* ---- Layout ---- */
.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---- Section Labels ---- */
.section-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #f36100;
  margin-bottom: 10px;
}
.section-heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(38px, 5vw, 62px);
  color: #fff;
  letter-spacing: 0.04em;
  line-height: 1;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header-flex {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: #f36100;
  padding: 16px 40px;
  border: 2px solid #f36100;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}
.btn-primary:hover { background: transparent; color: #f36100; }
.btn-outline {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  padding: 16px 40px;
  border: 2px solid #fff;
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}
.btn-outline:hover { background: #fff; color: #000; }
.btn-outline-small {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #f36100;
  background: transparent;
  padding: 12px 28px;
  border: 2px solid #f36100;
  transition: background 0.3s, color 0.3s;
}
.btn-outline-small:hover { background: #f36100; color: #fff; }

/* ---- Preloader ---- */
#preloder {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(243,97,0,0.2);
  border-top-color: #f36100;
  border-radius: 50%;
  animation: og-spin 0.7s linear infinite;
}
@keyframes og-spin { to { transform: rotate(360deg); } }

/* ---- Scroll to Top ---- */
#scroll-top-btn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: #f36100;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
}
#scroll-top-btn.visible { display: flex; }
#scroll-top-btn:hover { background: #d45400; transform: translateY(-4px); }

/* ===============================
   HEADER / NAVBAR
   =============================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 80px;
  transition: background 0.4s, backdrop-filter 0.4s, height 0.3s, border-color 0.4s;
}
.site-header.scrolled {
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 65px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
}
.header-logo:hover { opacity: 0.85; }
.desktop-nav ul { display: flex; align-items: center; gap: 32px; }
.desktop-nav ul li a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.desktop-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: #f36100;
  transition: width 0.3s ease;
}
.desktop-nav ul li a:hover { color: #fff; }
.desktop-nav ul li a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 28px; height: 2px;
  background: #fff;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===============================
   MOBILE OVERLAY MENU
   =============================== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-overlay.open { transform: translateX(0); }
.mobile-close {
  position: absolute;
  top: 24px; right: 30px;
  background: none; border: none;
  color: #fff; font-size: 28px;
  cursor: pointer;
  transition: color 0.3s;
}
.mobile-close:hover { color: #f36100; }
.mobile-nav ul { text-align: center; }
.mobile-nav ul li {
  margin-bottom: 4px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s, transform 0.35s;
}
.mobile-overlay.open .mobile-nav ul li { opacity: 1; transform: translateY(0); }
.mobile-nav ul li:nth-child(1) { transition-delay: 0.06s; }
.mobile-nav ul li:nth-child(2) { transition-delay: 0.12s; }
.mobile-nav ul li:nth-child(3) { transition-delay: 0.18s; }
.mobile-nav ul li:nth-child(4) { transition-delay: 0.24s; }
.mobile-nav ul li:nth-child(5) { transition-delay: 0.30s; }
.mobile-nav ul li:nth-child(6) { transition-delay: 0.36s; }
.mobile-nav ul li:nth-child(7) { transition-delay: 0.42s; }
.mobile-nav ul li:nth-child(8) { transition-delay: 0.48s; }
.mobile-nav ul li a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 7vw, 72px);
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  line-height: 1.15;
  transition: color 0.3s;
}
.mobile-nav ul li a:hover { color: #f36100; }
.mobile-social {
  position: absolute;
  bottom: 40px;
  display: flex; gap: 20px;
}
.mobile-social a {
  font-size: 22px;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s;
}
.mobile-social a:hover { color: #f36100; }

/* ===============================
   HERO SECTION
   =============================== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 1100px;
  width: 100%;
}
.hero-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #f36100;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-title {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: baseline;
  gap: 0.12em;
  margin-bottom: 22px;
}
.hero-title-line {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(96px, 17vw, 200px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: #fff;
  display: block;
  opacity: 0;
  transform: translateY(70px);
}
.hero-title-line.orange { color: #f36100; }
.hero-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 42px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.hero-scroll-hint i { animation: og-bounce 1.6s ease-in-out infinite; }
.hero-scroll-hint:hover { color: #f36100; }
@keyframes og-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ===============================
   ABOUT SECTION
   =============================== */
.about-section {
  background: #0a0a0a;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.about-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 14vw, 180px);
  color: rgba(255,255,255,0.022);
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  user-select: none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 1;
  margin-bottom: 80px;
}
.about-left .section-heading { margin-bottom: 24px; }
.about-text {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 44px;
}
.about-stats { display: flex; gap: 44px; }
.stat-item { display: flex; flex-direction: column; }
.stat-num-wrap {
  display: flex;
  align-items: baseline;
  gap: 2px;
  line-height: 1;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: #f36100;
  line-height: 1;
}
.stat-plus {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 40px;
  color: #f36100;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 6px;
}
.about-video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}
.about-video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative; z-index: 1;
}
.feature-card {
  background: #111;
  padding: 40px 28px;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.feature-card:hover { border-color: #f36100; background: #161616; }
.feature-icon {
  display: block;
  font-size: 38px;
  color: #f36100;
  margin-bottom: 18px;
}
.feature-card h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 21px;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.feature-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ===============================
   CUSTOM MODALS
   =============================== */
.modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: #111;
  border: 1px solid #2a2a2a;
  border-top: 3px solid #f36100;
  max-width: 640px;
  width: 100%;
  padding: 50px 50px 44px;
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
  animation: og-modal-in 0.3s ease;
}
@keyframes og-modal-in {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-dismiss {
  position: absolute;
  top: 18px; right: 18px;
  background: none; border: none;
  color: rgba(255,255,255,0.35);
  font-size: 20px; cursor: pointer;
  line-height: 1; transition: color 0.3s;
}
.modal-dismiss:hover { color: #f36100; }
.modal-title-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: 0.03em;
}
.modal-box p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 14px;
}
.modal-box p:last-child { margin-bottom: 0; }

/* ===============================
   LESSONS / CLASSES SECTION
   =============================== */
.lessons-section {
  background: #000;
}
.lessons-section .container-custom { padding-bottom: 0; }
.lessons-section .section-header { padding-top: 100px; padding-bottom: 0; margin-bottom: 40px; }
.lessons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 380px;
}
.lesson-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.lesson-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.01);
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.lesson-card:hover .lesson-img { transform: scale(1.1); }
.lesson-info {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.3) 50%,
    rgba(0,0,0,0) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 26px;
  transform: translateY(48px);
  transition: transform 0.4s ease;
}
.lesson-card:hover .lesson-info { transform: translateY(0); }
.lesson-info h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.lesson-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f36100;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: gap 0.3s;
}
.lesson-btn:hover { gap: 14px; }

/* ===============================
   PRICING SECTION
   =============================== */
.pricing-section {
  background: #0a0a0a;
  padding: 100px 0;
}
.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 56px;
}
.pricing-tab {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 34px;
  background: transparent;
  color: rgba(255,255,255,0.4);
  border: 1px solid #2a2a2a;
  cursor: pointer;
  transition: all 0.3s;
  line-height: 1.2;
}
.pricing-tab span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.6;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.pricing-tab.active { background: #f36100; border-color: #f36100; color: #fff; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}
.pricing-card {
  background: #111;
  padding: 50px 36px;
  text-align: center;
  border-top: 3px solid transparent;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  position: relative;
}
.pricing-card:hover { border-color: #f36100; background: #141414; transform: translateY(-6px); }
.pricing-card.featured { border-color: #f36100; background: #141414; }
.pricing-card.featured::before {
  content: 'Önerilen';
  position: absolute;
  top: 0; right: 24px;
  background: #f36100;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  color: #fff;
}
.pricing-lesson-count {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 90px;
  color: #f36100;
  line-height: 1;
  margin-bottom: 2px;
}
.pricing-lesson-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 28px;
}
.pricing-divider {
  width: 40px; height: 2px;
  background: #f36100;
  margin: 0 auto 28px;
}
.pricing-price-row { margin-bottom: 10px; }
.pricing-price-row h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: #fff;
  line-height: 1;
}
.pricing-price-row span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.pricing-comment {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 22px;
  line-height: 1.5;
  font-family: 'Barlow Condensed', sans-serif;
}

/* ===============================
   GALLERY SECTION
   =============================== */
.gallery-section-new {
  background: #000;
  padding: 100px 0 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  grid-auto-flow: dense;
  gap: 4px;
  margin-top: 0;
}
.gs-item { position: relative; overflow: hidden; }
.gs-item.grid-wide { grid-column: span 2; }
.gs-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
}
.gs-item:hover .gs-bg { transform: scale(1.07); }
.gs-overlay {
  position: absolute; inset: 0;
  background: rgba(243, 97, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: rgba(255,255,255,0);
  transition: background 0.4s, color 0.4s;
}
.gs-item:hover .gs-overlay {
  background: rgba(243, 97, 0, 0.5);
  color: #fff;
}

/* ===============================
   VIDEOS SECTION
   =============================== */
.videos-section {
  background: #0a0a0a;
  padding: 100px 0;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.video-card {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
  background: #111;
}
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.video-card:hover img { transform: scale(1.05); }
.video-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 12px;
}
.video-card:hover .video-card-overlay { opacity: 1; }
.video-card-overlay .play-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f36100;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  flex-shrink: 0;
}
.video-card-overlay .play-icon i { color: #fff; font-size: 18px; margin-left: 3px; }
.video-card-title {
  color: #fff;
  font-size: 12px;
  font-family: 'Inter', sans-serif;
  text-align: center;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-load-more {
  text-align: center;
  margin-top: 40px;
}
/* Video Modal */
.video-modal-box {
  max-width: 860px;
  padding: 40px 40px 32px;
}
.video-embed-wrap {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
  margin-bottom: 16px;
}
.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
#video-modal-title {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}
/* Responsive */
@media (max-width: 1024px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .video-modal-box { padding: 24px 20px 20px; }
}
@media (max-width: 480px) {
  .video-grid { grid-template-columns: 1fr; }
}

/* ===============================
   TEAM SECTION
   =============================== */
.team-section-new {
  background: #0a0a0a;
  padding: 100px 0;
}
.trainer-card {
  position: relative;
  overflow: hidden;
  background: #111;
}
.trainer-img {
  height: 500px;
  background-size: cover;
  background-position: top center;
  transition: transform 0.55s ease;
}
.trainer-card:hover .trainer-img { transform: scale(1.05); }
.trainer-info {
  padding: 26px 28px 30px;
  background: #111;
  border-top: 3px solid #f36100;
  transition: background 0.3s;
}
.trainer-card:hover .trainer-info { background: #161616; }
.trainer-info h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}
.trainer-info span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #f36100;
}
.team-slider.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 36px;
}
.team-slider.owl-carousel .owl-dots button {
  width: 24px; height: 3px;
  background: #2a2a2a;
  margin: 0 4px;
  border-radius: 2px;
  transition: background 0.3s, width 0.3s;
  display: inline-block;
}
.team-slider.owl-carousel .owl-dots button.active {
  background: #f36100;
  width: 40px;
}

/* ===============================
   REVIEWS SECTION
   =============================== */
.reviews-section {
  background: #000;
  padding: 100px 0;
}

/* ===============================
   CONTACT SECTION
   =============================== */
.contact-section-new { background: #0a0a0a; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.contact-info { padding: 80px 60px; }
.contact-info .section-tag { margin-bottom: 8px; }
.contact-info .section-heading { margin-bottom: 48px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 26px;
}
.contact-item i {
  width: 46px; height: 46px;
  background: #f36100;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
}
.contact-item p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  padding-top: 10px;
  line-height: 1.6;
}
.contact-social { display: flex; gap: 12px; margin-top: 36px; }
.contact-social a {
  width: 46px; height: 46px;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: rgba(255,255,255,0.45);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.contact-social a:hover { border-color: #f36100; color: #fff; background: #f36100; }
.contact-map { height: 100%; }
.contact-map iframe { display: block; width: 100%; height: 100%; min-height: 400px; }

/* ===============================
   FOOTER
   =============================== */
.site-footer {
  background: #000;
  border-top: 1px solid #1a1a1a;
  padding: 28px 0;
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo img { height: 42px; width: auto; opacity: 0.65; transition: opacity 0.3s; }
.footer-logo:hover img { opacity: 1; }
.footer-copy {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.28);
}
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  font-size: 18px;
  color: rgba(255,255,255,0.32);
  transition: color 0.3s;
}
.footer-social a:hover { color: #f36100; }

/* ===============================
   OWL CAROUSEL MINIMAL OVERRIDES
   =============================== */
.owl-carousel .owl-nav { display: none; }
.owl-carousel .owl-stage { display: flex; }

/* ===============================
   MAGNIFIC POPUP OVERRIDES
   =============================== */
.mfp-bg { background: rgba(0,0,0,0.95) !important; }
.mfp-close { color: #fff !important; font-size: 36px !important; opacity: 0.7 !important; }
.mfp-close:hover { opacity: 1 !important; color: #f36100 !important; }

/* ===============================
   GSAP INITIAL STATES
   =============================== */
.hero-tag, .hero-title-line, .hero-sub, .hero-cta {
  will-change: opacity, transform;
}

/* ===============================
   RESPONSIVE
   =============================== */
@media (max-width: 1200px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .lessons-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
  .desktop-nav { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 360px; }
  .container-custom { padding: 0 24px; }
  .header-inner { padding: 0 24px; }
  .footer-inner { padding: 0 24px; }
}

@media (max-width: 768px) {
  .lessons-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 300px;
  }
  .lesson-info { transform: translateY(0); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .gs-item.grid-wide { grid-column: span 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .about-stats { gap: 24px; }
  .stat-num { font-size: 48px; }
  .contact-info { padding: 60px 30px; }
  .section-header-flex { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-inner { justify-content: center; text-align: center; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-title-line { font-size: clamp(72px, 18vw, 130px); }
}

@media (max-width: 480px) {
  .lessons-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
  .gallery-grid .gs-item.grid-wide { grid-column: span 1; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-toggle { flex-direction: column; align-items: center; }
  .modal-box { padding: 36px 24px 30px; }
}
