/* =========================================================
   1. RESET
========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { overflow-x: clip; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button, input, select { font: inherit; border: none; background: none; color: inherit; }
button { cursor: pointer; }
ul { list-style: none; }
input:focus-visible, button:focus-visible, a:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* =========================================================
   2. VARIABLES
========================================================= */
:root {
  --primary-color: #E31E24;
  --primary-dark: #B3151A;
  --accent-color: #E31E24;
  --text-color: #4A4A4A;
  --text-muted: #8A8A8A;
  --heading-color: #14141A;
  --background-color: #FFFFFF;
  --background-dark: #14141A;
  --background-dark-alt: #1D1D24;
  --background-light: #F7F7F9;
  --border-color: #26262E;
  --border-color-light: #E4E4E8;
  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: #9A9AA5;
  --container-width: 1200px;
  --transition: 0.3s ease;
  --transition-smooth: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-card: 0 8px 24px rgba(0,0,0,0.35);
  --font-heading: 'Anton', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

/* =========================================================
   3. GLOBAL STYLES
========================================================= */
body {
  font-family: var(--font-body);
  color: var(--text-color);
  background: var(--background-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--heading-color);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.text-accent { color: var(--primary-color); }

.section-heading { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-heading h2 { font-size: 2.4rem; margin: 12px 0 14px; }
.section-heading p { color: var(--text-muted); font-size: 1rem; }
.section-label {
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  position: relative;
  padding-left: 22px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 14px; height: 2px;
  background: var(--primary-color);
}
.section-label--light { color: #fff; }
.section-heading .section-label { display: inline-block; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--primary-color); color: #fff; }
.btn--primary:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 12px 24px rgba(227,30,36,0.4); }
.btn--outline-light { background: transparent; border: 2px solid #fff; color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--heading-color); transform: translateY(-3px); box-shadow: 0 12px 24px rgba(0,0,0,0.25); }
.btn--signin { background: var(--background-dark-alt); color: #fff; padding: 11px 24px; font-size: 0.82rem; }
.btn--signin:hover { background: var(--primary-color); transform: translateY(-2px); }

/* =========================================================
   4. CONTAINER
========================================================= */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
/* =================================
   CONTAINER & REVEAL ENHANCEMENTS
================================= */

.reveal {
  will-change: opacity, transform;
}

.reveal.in-view {
  animation: revealGlow 0.7s ease-out;
}

@keyframes revealGlow {
  0% {
    filter: blur(3px);
  }

  100% {
    filter: blur(0);
  }
}.reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal:nth-child(2) {
  transition-delay: 0.15s;
}

.reveal:nth-child(3) {
  transition-delay: 0.25s;
}

.reveal:nth-child(4) {
  transition-delay: 0.35s;
}@media (max-width: 768px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
}@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* =========================================================
   5. HEADER
========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(20,20,26,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo { display: flex; align-items: center; }
.logo__text {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  color: #fff;
  text-transform: uppercase;
}
.logo__accent { color: var(--primary-color); }
.logo__dot { color: var(--primary-color); }

.nav__list { display: flex; gap: 36px; }
.nav__link {
  position: relative;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-on-dark-muted);
  padding-bottom: 4px;
  transition: color var(--transition-smooth);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-smooth);
}
.nav__link:hover, .nav__link.active { color: #fff; }
.nav__link:hover::after, .nav__link.active::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 18px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
}
.hamburger span { width: 22px; height: 2px; background: #fff; transition: var(--transition-smooth); border-radius: 2px; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--background-dark);
  z-index: 700;
  padding: 100px 32px 32px;
  transform: translateX(100%);
  transition: transform var(--transition-smooth);
  box-shadow: -8px 0 24px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}
.mobile-nav.active { transform: translateX(0); }
.mobile-nav__list { display: flex; flex-direction: column; gap: 26px; margin-bottom: 32px; }
.mobile-nav__link { font-size: 1.05rem; font-weight: 500; color: var(--text-on-dark-muted); display: inline-block; transition: var(--transition-smooth); }
.mobile-nav.active .mobile-nav__link { animation: navLinkIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) backwards; }
.mobile-nav__list li:nth-child(1) .mobile-nav__link { animation-delay: 0.06s; }
.mobile-nav__list li:nth-child(2) .mobile-nav__link { animation-delay: 0.11s; }
.mobile-nav__list li:nth-child(3) .mobile-nav__link { animation-delay: 0.16s; }
.mobile-nav__list li:nth-child(4) .mobile-nav__link { animation-delay: 0.21s; }
.mobile-nav__list li:nth-child(5) .mobile-nav__link { animation-delay: 0.26s; }
.mobile-nav__list li:nth-child(6) .mobile-nav__link { animation-delay: 0.31s; }
@keyframes navLinkIn { from { opacity: 0; transform: translateX(24px); } to { opacity: 1; transform: translateX(0); } }
.mobile-nav__link:hover { color: var(--primary-color); transform: translateX(6px); }

.overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 650;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.overlay.active { opacity: 1; pointer-events: auto; }
.logo__accent,
.logo__dot {
  transition: all 0.3s ease;
}

.logo:hover .logo__accent,
.logo:hover .logo__dot {
  text-shadow: 0 0 12px var(--primary-color);
}.logo {
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: translateX(3px);
}.header {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}.header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  opacity: 0.5;
}.mobile-nav {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav.active {
  box-shadow:
    -15px 0 40px rgba(0, 0, 0, 0.4),
    -2px 0 20px rgba(255, 140, 0, 0.08);
}
/* =========================================================
   6. HERO
========================================================= */
/* =========================================================
   6. HERO
========================================================= */
/* =========================================================
   6. HERO
========================================================= */

/* =========================================================
   6. HERO
========================================================= */

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 2.35 / 1;
  min-height: 650px;

  display: flex;
  align-items: center;

  overflow: hidden;

  background: var(--background-dark);
}


/* =========================================================
   HERO BACKGROUND
========================================================= */

.hero__bg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  overflow: hidden;
}


/* Hero Image */

.hero__img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;

  opacity: 0;

  transform: scale(1.05);

  animation: heroImageIn 1.5s ease forwards;
}


/* Image entrance + subtle zoom */

@keyframes heroImageIn {

  0% {
    opacity: 0;
    transform: scale(1.05);
  }

  100% {
    opacity: 0.92;
    transform: scale(1);
  }

}


/* Very subtle continuous movement */

.hero:hover .hero__img {
  transform: scale(1.02);
  transition: transform 2s ease;
}


/* =========================================================
   PROFESSIONAL GRADIENT
========================================================= */

.hero__gradient {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(12, 13, 17, 0.96) 0%,
      rgba(12, 13, 17, 0.82) 22%,
      rgba(12, 13, 17, 0.48) 48%,
      rgba(12, 13, 17, 0.12) 75%,
      rgba(12, 13, 17, 0.02) 100%
    );

  z-index: 1;
}


/* Bottom gradient */

.hero__gradient::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 30%;

  background: linear-gradient(
    to top,
    rgba(12, 13, 17, 0.75),
    transparent
  );
}


/* =========================================================
   DECORATIVE SHAPES
========================================================= */

.hero__shape {
  position: absolute;

  top: -15%;

  width: 38%;
  height: 145%;

  background: var(--primary-color);

  clip-path: polygon(
    35% 0%,
    100% 0%,
    65% 100%,
    0% 100%
  );

  z-index: 1;

  pointer-events: none;
}


.hero__shape--1 {
  left: -4%;
  opacity: 0.18;
}


.hero__shape--2 {
  left: 2%;
  opacity: 0.28;
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero__container {
  position: relative;

  z-index: 3;

  width: 100%;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero__content {
  max-width: 620px;

  opacity: 0;

  transform: translateY(35px);

  animation: heroContentIn 1s ease 0.35s forwards;
}


@keyframes heroContentIn {

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

}


/* =========================================================
   BADGE
========================================================= */

.hero__badge {

  display: inline-flex;

  align-items: center;
  gap: 9px;

  padding: 7px 13px;

  margin-bottom: 18px;

  border: 1px solid rgba(255, 255, 255, 0.25);

  background: rgba(255, 255, 255, 0.06);

  backdrop-filter: blur(10px);

  color: #fff;

  font-size: 0.72rem;

  font-weight: 700;

  letter-spacing: 0.15em;

  border-radius: 50px;
}


.hero__badge-dot {

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--primary-color);

  box-shadow:
    0 0 0 4px rgba(232, 162, 76, 0.15);

  animation: badgePulse 2s ease infinite;
}


@keyframes badgePulse {

  0%,
  100% {
    box-shadow:
      0 0 0 4px rgba(232, 162, 76, 0.12);
  }

  50% {
    box-shadow:
      0 0 0 8px rgba(232, 162, 76, 0);
  }

}


/* =========================================================
   ACCENT LINE
========================================================= */

.hero__accent-line {

  width: 70px;
  height: 3px;

  margin-bottom: 16px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.15);
}


.hero__accent-line span {

  display: block;

  width: 35px;
  height: 100%;

  background: var(--primary-color);

  animation: accentMove 2s ease-in-out infinite;
}


@keyframes accentMove {

  0% {
    transform: translateX(-35px);
  }

  50% {
    transform: translateX(35px);
  }

  100% {
    transform: translateX(-35px);
  }

}


/* =========================================================
   HERO TITLE
========================================================= */

.hero__title {

  margin: 0 0 16px;

  color: #fff;

  font-size: clamp(3.5rem, 6vw, 5.8rem);

  font-weight: 900;

  line-height: 0.88;

  letter-spacing: -0.045em;

  text-shadow:
    0 5px 30px rgba(0, 0, 0, 0.55);

  animation: titleFloat 5s ease-in-out infinite;
}


@keyframes titleFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }

}


.hero__title .text-accent {

  display: inline-block;

  color: var(--primary-color);

  position: relative;
}


/* =========================================================
   TAGLINE
========================================================= */

.hero__tagline {

  margin: 0 0 13px;

  color: #fff;

  font-size: 1rem;

  font-weight: 800;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hero__description {

  max-width: 480px;

  margin: 0 0 25px;

  color: rgba(255, 255, 255, 0.72);

  font-size: 0.98rem;

  line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.hero__actions {

  margin-bottom: 32px;
}


.hero__btn {

  display: inline-flex;

  align-items: center;
  gap: 14px;

  padding: 14px 24px;

  background: #fff;

  color: var(--heading-color);

  border: 1px solid #fff;

  font-weight: 800;

  letter-spacing: 0.05em;

  transition:
    transform 0.3s ease,
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}


.hero__btn-arrow {

  font-size: 1.2rem;

  transition: transform 0.3s ease;
}


.hero__btn:hover {

  transform: translateY(-4px);

  background: var(--primary-color);

  border-color: var(--primary-color);

  color: #fff;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.3);
}


.hero__btn:hover .hero__btn-arrow {

  transform: translateX(5px);
}


/* =========================================================
   STATS
========================================================= */

.hero__stats {

  display: flex;

  align-items: center;

  gap: 22px;
}


.hero__stat {

  display: flex;

  flex-direction: column;
}


.hero__stat strong {

  color: #fff;

  font-size: 1.45rem;

  font-weight: 800;

  line-height: 1;
}


.hero__stat strong span {

  color: var(--primary-color);
}


.hero__stat small {

  margin-top: 6px;

  color: rgba(255, 255, 255, 0.55);

  font-size: 0.62rem;

  font-weight: 700;

  letter-spacing: 0.12em;
}


.hero__stat-divider {

  width: 1px;

  height: 35px;

  background: rgba(255, 255, 255, 0.2);
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.hero__scroll {

  position: absolute;

  bottom: 25px;
  right: 40px;

  z-index: 4;

  display: flex;

  align-items: center;

  gap: 10px;

  transform: rotate(90deg);

  transform-origin: right center;
}


.hero__scroll-text {

  color: rgba(255, 255, 255, 0.55);

  font-size: 0.6rem;

  font-weight: 700;

  letter-spacing: 0.18em;
}


.hero__scroll-mouse {

  position: relative;

  width: 27px;
  height: 42px;

  border: 1px solid rgba(255, 255, 255, 0.5);

  border-radius: 15px;
}


.hero__scroll-mouse span {

  position: absolute;

  top: 7px;
  left: 50%;

  width: 3px;
  height: 8px;

  border-radius: 3px;

  background: #fff;

  transform: translateX(-50%);

  animation: scrollMove 1.7s ease-in-out infinite;
}


@keyframes scrollMove {

  0% {
    opacity: 0;
    transform: translate(-50%, 0);
  }

  30% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 15px);
  }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

  .hero {
    aspect-ratio: auto;
    min-height: 680px;
  }

  .hero__content {
    max-width: 560px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .hero {

    min-height: 680px;

    align-items: center;
  }


  .hero__img {

    object-position: center;

  }


  .hero__gradient {

    background:
      linear-gradient(
        90deg,
        rgba(12, 13, 17, 0.9),
        rgba(12, 13, 17, 0.55)
      );

  }


  .hero__shape {

    width: 65%;
  }


  .hero__content {

    max-width: 90%;

    padding-top: 30px;
  }


  .hero__title {

    font-size: clamp(
      3rem,
      14vw,
      4.5rem
    );

  }


  .hero__tagline {

    font-size: 0.8rem;

    letter-spacing: 0.1em;
  }


  .hero__description {

    font-size: 0.9rem;

    max-width: 380px;
  }


  .hero__stats {

    gap: 15px;
  }


  .hero__stat strong {

    font-size: 1.2rem;
  }


  .hero__stat small {

    font-size: 0.55rem;
  }


  .hero__stat-divider {

    height: 28px;
  }


  .hero__scroll {

    right: 20px;

    bottom: 20px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .hero {

    min-height: 650px;
  }


  .hero__badge {

    font-size: 0.65rem;

    padding: 6px 11px;
  }


  .hero__accent-line {

    width: 55px;
  }


  .hero__title {

    font-size: 3.2rem;
  }


  .hero__tagline {

    font-size: 0.7rem;
  }


  .hero__description {

    font-size: 0.85rem;

    line-height: 1.6;
  }


  .hero__btn {

    width: 100%;

    justify-content: center;
  }


  .hero__stats {

    gap: 11px;
  }


  .hero__stat strong {

    font-size: 1.05rem;
  }


  .hero__stat small {

    font-size: 0.48rem;
  }


  .hero__stat-divider {

    height: 25px;
  }


  .hero__scroll {

    display: none;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .hero__img,
  .hero__content,
  .hero__title,
  .hero__badge-dot,
  .hero__accent-line span,
  .hero__scroll-mouse span {

    animation: none;

  }

  .hero__img {

    opacity: 0.92;

    transform: none;
  }

  .hero__content {

    opacity: 1;

    transform: none;
  }

}

/* =========================================================
   HERO RESPONSIVE
========================================================= */

@media (max-width: 768px) {

  .hero {
    aspect-ratio: auto;
    min-height: 620px;
  }

  .hero__img {
    object-position: center;
  }

  .hero__title {
    font-size: 3.2rem;
  }

  .hero__content {
    max-width: 90%;
  }

}


@media (max-width: 480px) {

  .hero {
    min-height: 580px;
  }

  .hero__title {
    font-size: 2.8rem;
  }

  .hero__tagline {
    font-size: 0.95rem;
  }

  .hero__scroll {
    bottom: 20px;
  }

}
/* =========================================================
   STATS BAR
========================================================= */
.stats { background: var(--primary-color); padding: 40px 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.stat-item { color: #fff; border-right: 1px solid rgba(255,255,255,0.25); }
.stat-item:last-child { border-right: none; }
.stat-item__num { font-family: var(--font-heading); font-size: 2.4rem; display: block; }
.stat-item__label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.9; }

/* =========================================================
   ABOUT
========================================================= */
.about { padding: 100px 0; background: var(--background-color); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-md); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about__badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--primary-color);
  color: #fff;
  padding: 24px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: 0 16px 32px rgba(227,30,36,0.35);
}
.about__badge-num { font-family: var(--font-heading); font-size: 2rem; display: block; }
.about__badge-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.04em; }
.about__content h2 { font-size: 2.4rem; margin: 14px 0 20px; }
.about__content > p { color: var(--text-muted); margin-bottom: 24px; }
.about__list { margin-bottom: 32px; display: flex; flex-direction: column; gap: 14px; }
.about__list li { display: flex; align-items: center; gap: 12px; font-weight: 500; color: var(--heading-color); }
.about__list i { color: var(--primary-color); background: rgba(227,30,36,0.1); width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; }

/* =========================================================
   TRAINERS
========================================================= */
.trainers { padding: 100px 0; background: var(--background-light); }
.trainers__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.trainer-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.trainer-card:hover { transform: translateY(-10px); box-shadow: 0 22px 40px rgba(0,0,0,0.12); }
.trainer-card__media { position: relative; aspect-ratio: 3/4; overflow: hidden; }
.trainer-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.trainer-card:hover .trainer-card__media img { transform: scale(1.1); }
.trainer-card__social {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(to top, rgba(20,20,26,0.85), transparent);
  padding: 24px 16px 16px;
  display: flex;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-smooth);
}
.trainer-card:hover .trainer-card__social { opacity: 1; transform: translateY(0); }
.trainer-card__social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition-smooth);
}
.trainer-card__social a:hover { background: var(--primary-color); transform: translateY(-3px); }
.trainer-card__body { padding: 20px; text-align: center; }
.trainer-card__name { font-size: 1.1rem; font-family: var(--font-heading); text-transform: uppercase; }
.trainer-card__role { color: var(--primary-color); font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }

/* =========================================================
   CLASSES
========================================================= */
.classes { padding: 100px 0; background: var(--background-color); }
.classes__toolbar { display: flex; justify-content: center; margin-bottom: 44px; }
.filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.filter-btn {
  padding: 10px 24px;
  border-radius: 30px;
  border: 1px solid var(--border-color-light);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: var(--transition-smooth);
  background: #fff;
  color: var(--text-color);
}
.filter-btn:hover { border-color: var(--primary-color); color: var(--primary-color); transform: translateY(-2px); }
.filter-btn.active { background: var(--primary-color); color: #fff; border-color: var(--primary-color); transform: scale(1.05); }

.classes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.classes__empty { text-align: center; padding: 60px 0; color: var(--text-muted); }

.class-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}
.class-card:hover { transform: translateY(-8px); }
.class-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.class-card:hover img { transform: scale(1.12); }
.class-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,20,26,0.92) 0%, rgba(20,20,26,0.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
}
.class-card__category {
  align-self: flex-start;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.class-card__name { font-family: var(--font-heading); font-size: 1.5rem; color: #fff; text-transform: uppercase; }
.class-card__meta { color: var(--text-on-dark-muted); font-size: 0.85rem; margin-top: 6px; }

/* =========================================================
   CTA BANNER
========================================================= */
.cta-banner { position: relative; min-height: 460px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.cta-banner__bg { position: absolute; inset: 0; }
.cta-banner__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-banner__bg::after { content:''; position:absolute; inset:0; background: rgba(20,20,26,0.72); }
.cta-banner__content { position: relative; z-index: 2; text-align: center; }
.cta-banner__content h2 { color: #fff; font-size: 2.6rem; margin: 14px 0 30px; }

/* =========================================================
   PRICING
========================================================= */
.pricing { padding: 100px 0; background: var(--background-light); }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: stretch; }
.pricing-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 44px 32px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card:hover { transform: translateY(-10px); box-shadow: 0 22px 44px rgba(0,0,0,0.12); }
.pricing-card--featured { background: var(--background-dark); color: #fff; transform: scale(1.05); }
.pricing-card--featured:hover { transform: scale(1.05) translateY(-10px); }
.pricing-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 6px 18px;
  border-radius: 20px;
}
.pricing-card__name { font-family: var(--font-heading); font-size: 1.3rem; text-transform: uppercase; margin-bottom: 16px; }
.pricing-card--featured .pricing-card__name { color: #fff; }
.pricing-card__price { font-family: var(--font-heading); font-size: 3rem; margin-bottom: 4px; }
.pricing-card--featured .pricing-card__price { color: #fff; }
.pricing-card__price span { font-size: 1rem; font-family: var(--font-body); color: var(--text-muted); text-transform: none; }
.pricing-card--featured .pricing-card__price span { color: var(--text-on-dark-muted); }
.pricing-card__period { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 28px; }
.pricing-card--featured .pricing-card__period { color: var(--text-on-dark-muted); }
.pricing-card__features { flex: 1; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; text-align: left; }
.pricing-card__features li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; }
.pricing-card__features i { color: var(--primary-color); font-size: 0.85rem; }
.pricing-card__features li.disabled { opacity: 0.4; }
.pricing-card__features li.disabled i { color: var(--text-muted); }
.pricing-card .btn { width: 100%; }
.pricing-card--featured .btn--primary { background: #fff; color: var(--heading-color); }
.pricing-card--featured .btn--primary:hover { background: var(--primary-color); color: #fff; }

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonials { padding: 100px 0; background: var(--background-color); }
.testimonials__track-wrap { position: relative; display: flex; align-items: center; gap: 24px; }
.testimonials__track { flex: 1; overflow: hidden; }
.testimonials__slides { display: flex; transition: transform var(--transition-smooth); }
.testimonial-slide { min-width: 100%; display: flex; justify-content: center; }
.testimonial-card {
  max-width: 680px;
  text-align: center;
  padding: 40px;
}
.testimonial-card__stars { color: var(--primary-color); margin-bottom: 20px; font-size: 0.95rem; }
.testimonial-card__quote { font-size: 1.2rem; color: var(--heading-color); font-style: italic; margin-bottom: 28px; line-height: 1.7; }
.testimonial-card__person { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-card__person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testimonial-card__name { font-weight: 700; color: var(--heading-color); }
.testimonial-card__role { font-size: 0.82rem; color: var(--text-muted); }

.testi-nav {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-color-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--heading-color);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}
.testi-nav:hover { background: var(--primary-color); border-color: var(--primary-color); color: #fff; transform: scale(1.1); }

.testimonials__dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.testimonials__dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--border-color-light); transition: var(--transition-smooth); }
.testimonials__dots button.active { background: var(--primary-color); width: 24px; border-radius: 4px; }

/* =========================================================
   GALLERY
========================================================= */
.gallery { padding: 100px 0; background: var(--background-light); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius-md); cursor: pointer; transition: transform var(--transition-smooth), box-shadow var(--transition-smooth); }
.gallery-item:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(0,0,0,0.18); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  background: rgba(227,30,36,0.55);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

/* =========================================================
   NEWSLETTER
========================================================= */
.newsletter { padding: 90px 0; text-align: center; background: var(--background-dark); }
.newsletter__inner h2 { font-size: 2.2rem; color: #fff; margin-bottom: 14px; }
.newsletter__inner p { color: var(--text-on-dark-muted); margin-bottom: 30px; }
.newsletter__form { display: flex; justify-content: center; gap: 12px; max-width: 500px; margin: 0 auto; flex-wrap: wrap; }
.newsletter__input {
  flex: 1;
  min-width: 220px;
  padding: 15px 18px;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  background: var(--background-dark-alt);
  color: #fff;
}
.newsletter__input::placeholder { color: var(--text-on-dark-muted); }
.newsletter__input:focus { border-color: var(--primary-color); outline: none; }

/* =========================================================
   FOOTER
========================================================= */
.footer { padding: 72px 0 0; background: var(--background-dark); color: var(--text-on-dark-muted); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 48px; }
.footer__brand h3 { font-size: 1.5rem; margin-bottom: 10px; color: #fff; }
.footer__tagline { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--primary-color); }
.footer__col h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; color: #fff; margin-bottom: 20px; }
.footer__col ul { display: flex; flex-direction: column; gap: 13px; }
.footer__col a { color: var(--text-on-dark-muted); font-size: 0.9rem; transition: var(--transition-smooth); }
.footer__col a:hover { color: var(--primary-color); padding-left: 4px; }
.footer__social-list a { display: flex; align-items: center; gap: 10px; }
.footer__social-list i { width: 16px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; text-align: center; font-size: 0.85rem; }

/* =========================================================
   MODAL (Class Details)
========================================================= */
.modal { position: fixed; inset: 0; z-index: 900; display: flex; align-items: center; justify-content: center; visibility: hidden; opacity: 0; transition: opacity var(--transition-smooth), visibility var(--transition-smooth); padding: 24px; }
.modal.active { visibility: visible; opacity: 1; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.65); backdrop-filter: blur(2px); }
.modal__dialog {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  max-width: 900px;
  width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  transform: scale(0.9) translateY(30px);
  transition: transform var(--transition-smooth);
}
.modal.active .modal__dialog { transform: scale(1) translateY(0); }
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-smooth);
}
.modal__close:hover { transform: rotate(90deg) scale(1.1); background: var(--primary-color); color: #fff; }
.modal__content { display: grid; grid-template-columns: 1fr 1fr; }
.modal__img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; border-radius: var(--radius-md) 0 0 var(--radius-md); }
.modal__info { padding: 40px; display: flex; flex-direction: column; gap: 14px; }
.modal__category { align-self: flex-start; background: var(--primary-color); color: #fff; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 5px 14px; border-radius: 20px; }
.modal__name { font-family: var(--font-heading); font-size: 1.8rem; text-transform: uppercase; }
.modal__desc { color: var(--text-color); }
.modal__meta { display: flex; gap: 24px; font-size: 0.85rem; color: var(--text-muted); }
.modal__meta strong { color: var(--heading-color); display: block; font-size: 1rem; }
.modal__actions { margin-top: 12px; }
.modal__actions .btn { width: 100%; }

/* =========================================================
   AUTH MODAL (Sign In / Sign Up)
========================================================= */
.auth-modal { position: fixed; inset: 0; z-index: 950; display: flex; align-items: center; justify-content: center; visibility: hidden; opacity: 0; transition: opacity var(--transition-smooth), visibility var(--transition-smooth); padding: 24px; }
.auth-modal.active { visibility: visible; opacity: 1; }
.auth-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.65); backdrop-filter: blur(3px); }
.auth-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: var(--radius-md);
  max-width: 420px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 44px 40px 36px;
  transform: scale(0.9) translateY(30px);
  transition: transform var(--transition-smooth);
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
}
.auth-modal.active .auth-modal__dialog { transform: scale(1) translateY(0); }
.auth-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-smooth);
  color: var(--text-muted);
}
.auth-modal__close:hover { background: var(--background-light); color: var(--primary-color); transform: rotate(90deg); }

.auth-modal__header { text-align: center; margin-bottom: 28px; }
.auth-modal__logo { display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.auth-modal__logo .logo__text { color: var(--heading-color); font-size: 1.4rem; }
.auth-modal__header h2 { font-size: 1.3rem; text-transform: none; margin-bottom: 8px; }
.auth-modal__header p { color: var(--text-muted); font-size: 0.9rem; }

.auth-tabs { display: flex; background: var(--background-light); border-radius: 30px; padding: 4px; margin-bottom: 28px; position: relative; }
.auth-tab {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border-radius: 26px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  transition: var(--transition-smooth);
  position: relative;
  z-index: 1;
}
.auth-tab.active { color: #fff; }
.auth-tabs__slider {
  position: absolute;
  top: 4px; left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: var(--primary-color);
  border-radius: 26px;
  transition: transform var(--transition-smooth);
  z-index: 0;
}
.auth-tabs[data-active="signup"] .auth-tabs__slider { transform: translateX(100%); }

.auth-form { display: flex; flex-direction: column; gap: 18px; }
.auth-form.hidden { display: none; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--heading-color); }
.form-group__input-wrap { position: relative; }
.form-group__input-wrap i.field-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}
.form-group input {
  width: 100%;
  padding: 13px 14px 13px 40px;
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  font-size: 0.92rem;
}
.form-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(227,30,36,0.12);
}
.form-group__input-wrap:focus-within i.field-icon { color: var(--primary-color); transform: translateY(-50%) scale(1.1); }
.toggle-password {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}
.toggle-password:hover { color: var(--primary-color); }

.form-row { display: flex; align-items: center; justify-content: space-between; font-size: 0.85rem; }
.form-checkbox { display: flex; align-items: center; gap: 8px; color: var(--text-muted); cursor: pointer; }
.form-checkbox input { width: 16px; height: 16px; accent-color: var(--primary-color); cursor: pointer; padding: 0; }
.form-link { color: var(--primary-color); font-weight: 500; transition: var(--transition-smooth); }
.form-link:hover { text-decoration: underline; }

.auth-form .btn { width: 100%; margin-top: 4px; }

.auth-divider { display: flex; align-items: center; gap: 14px; color: var(--text-muted); font-size: 0.8rem; margin: 22px 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: var(--border-color-light); }

.auth-social { display: flex; gap: 12px; }
.auth-social button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: none;
  transition: var(--transition-smooth);
}
.auth-social button:hover { border-color: var(--primary-color); color: var(--primary-color); transform: translateY(-2px); box-shadow: 0 8px 16px rgba(227,30,36,0.12); }

.field-error {
  color: var(--primary-color);
  font-size: 0.78rem;
  min-height: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: var(--transition-smooth);
}
.field-error.show { opacity: 1; transform: translateY(0); }
.form-group input.invalid { border-color: var(--primary-color); animation: shake 0.4s ease; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

/* =========================================================
   TOAST
========================================================= */
.toast-container {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.toast {
  background: var(--background-dark);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  animation: toastIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  min-width: 240px;
  border-left: 3px solid var(--primary-color);
}
.toast.hide { animation: toastOut 0.3s ease forwards; }
.toast i { color: var(--primary-color); }
@keyframes toastIn { from { opacity: 0; transform: translateX(50px) scale(0.9); } to { opacity: 1; transform: translateX(0) scale(1); } }
@keyframes toastOut { to { opacity: 0; transform: translateX(50px) scale(0.9); } }

/* =========================================================
   RESPONSIVE MEDIA QUERIES
========================================================= */
@media (max-width: 1200px) {
  .container { padding: 0 20px; }
  .trainers__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .hero__title { font-size: 3.6rem; }
}

@media (max-width: 992px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 480px; margin: 0 auto; }
  .classes__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card--featured { transform: scale(1); order: -1; }
  .pricing-card--featured:hover { transform: translateY(-10px); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .modal__content { grid-template-columns: 1fr; }
  .modal__img { border-radius: var(--radius-md) var(--radius-md) 0 0; min-height: 260px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.25); padding-bottom: 20px; }
}

@media (max-width: 768px) {
  .hero { min-height: 560px; height: 78vh; }
  .hero__title { font-size: 3rem; }
  .hero__shape { width: 65%; }
  .about, .trainers, .classes, .pricing, .testimonials, .gallery { padding: 72px 0; }
  .trainers__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .classes__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .cta-banner__content h2 { font-size: 1.9rem; }
  .section-heading h2 { font-size: 1.8rem; }
  .testimonials__track-wrap { flex-direction: column; }
  .testi-nav { display: none; }
}

@media (max-width: 576px) {
  .hero__title { font-size: 2.3rem; }
  .trainers__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 130px; }
  .gallery-item--wide { grid-column: span 1; }
  .footer__grid { grid-template-columns: 1fr; text-align: center; }
  .footer__social-list a { justify-content: center; }
  .newsletter__form { flex-direction: column; }
  .about__badge { position: static; margin-top: -40px; margin-left: 16px; margin-right: 16px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 425px) {
  .container { padding: 0 16px; }
  .logo__text { font-size: 1.2rem; }
  .hero__title { font-size: 2.1rem; }
  .section-heading h2 { font-size: 1.5rem; }
  .btn--signin { padding: 9px 16px; font-size: 0.75rem; }
}/* ================================
   HERO TEXT ANIMATION
================================ */

/* العنوان */
.hero__title {
  animation: heroTitleMove 1.2s ease-out both;
}

/* الجملة */
.hero__tagline {
  animation: heroTaglineMove 1.2s ease-out 0.25s both;
}

/* الزر */
.hero__btn {
  animation: heroButtonMove 1.2s ease-out 0.5s both;
}


/* حركة العنوان */
@keyframes heroTitleMove {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

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


/* حركة الجملة */
@keyframes heroTaglineMove {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

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


/* حركة الزر */
@keyframes heroButtonMove {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}/* =================================
   EXTRA HERO ANIMATIONS
================================= */

/* حركة خفيفة للصورة */
.hero__img {
  animation: heroImage 8s ease-in-out infinite alternate;
}

@keyframes heroImage {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.05);
  }
}


/* حركة بسيطة لكلمة HUB */
.hero__title .text-accent {
  display: inline-block;
  animation: hubMove 2.5s ease-in-out infinite;
}

@keyframes hubMove {
  0%, 100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(8px);
  }
}


/* تأثير Hover احترافي على الزر */
.hero__btn {
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.hero__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transition: left 0.4s ease;
  z-index: -1;
}

.hero__btn:hover::before {
  left: 0;
}

.hero__btn:hover {
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}


/* حركة مؤشر الـ Scroll */
.hero__scroll {
  animation: scrollIndicator 2s ease-in-out infinite;
}

@keyframes scrollIndicator {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}


/* خط متحرك تحت العنوان */
.hero__title {
  position: relative;
  width: fit-content;
}

.hero__title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  margin-top: 14px;
  background: var(--primary-color);
  animation: titleLine 2s ease-in-out infinite alternate;
}

@keyframes titleLine {
  from {
    width: 40px;
    opacity: 0.5;
  }

  to {
    width: 90px;
    opacity: 1;
  }
}/* ================================
   HERO GLOW
================================ */

.hero::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  left: -180px;
  top: 20%;
  background: var(--primary-color);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
  animation: heroGlow 5s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  from {
    transform: scale(0.9);
    opacity: 0.12;
  }

  to {
    transform: scale(1.15);
    opacity: 0.25;
  }
}/* ================================
   ORANGE SHAPES ANIMATION
================================ */

.hero__shape--1 {
  animation: shapeOne 7s ease-in-out infinite alternate;
}

.hero__shape--2 {
  animation: shapeTwo 6s ease-in-out infinite alternate;
}

@keyframes shapeOne {
  0% {
    transform: translateX(0) skewX(0deg);
  }

  50% {
    transform: translateX(18px) skewX(-2deg);
  }

  100% {
    transform: translateX(-8px) skewX(2deg);
  }
}

@keyframes shapeTwo {
  0% {
    transform: translateX(0) skewX(0deg);
  }

  50% {
    transform: translateX(-12px) skewX(2deg);
  }

  100% {
    transform: translateX(15px) skewX(-2deg);
  }
}/* ================================
   SECTION REVEAL
================================ */

section:not(.hero) {
  animation: sectionReveal 0.8s ease both;
}

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

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