:root {
  --bg: #070a12;
  --panel: rgba(255, 255, 255, 0.06);
  --panel2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --brand: #7c3aed;
  /* purple */
  --brand2: #22c55e;
  /* green */
  --cyan: #06b6d4;
  --danger: #fb7185;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius2: 26px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 20% 10%,
      rgba(124, 58, 237, 0.35),
      transparent 60%),
    radial-gradient(900px 500px at 80% 20%,
      rgba(6, 182, 212, 0.22),
      transparent 55%),
    radial-gradient(900px 600px at 65% 90%,
      rgba(34, 197, 94, 0.16),
      transparent 55%),
    var(--bg);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

/* Ambient blobs */
.blob {
  position: absolute;
  filter: blur(30px);
  opacity: 0.45;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  animation: floaty 10s ease-in-out infinite;
}

.blob.b1 {
  width: 420px;
  height: 420px;
  background: rgba(124, 58, 237, 0.45);
  top: -120px;
  left: -140px;
  border-radius: 50%;
}

.blob.b2 {
  width: 360px;
  height: 360px;
  background: rgba(6, 182, 212, 0.35);
  top: 120px;
  right: -140px;
  border-radius: 46% 54% 60% 40% / 50% 55% 45% 50%;
}

.blob.b3 {
  width: 460px;
  height: 460px;
  background: rgba(34, 197, 94, 0.25);
  bottom: -220px;
  left: 25%;
  border-radius: 55% 45% 55% 45% / 40% 60% 40% 60%;
}

@keyframes floaty {

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

  50% {
    transform: translateY(14px) translateX(10px);
  }
}

/* Topbar */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg,
      rgba(7, 10, 18, 0.78),
      rgba(7, 10, 18, 0.35));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.brand .mark {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: linear-gradient(135deg,
      rgba(124, 58, 237, 0.95),
      rgba(6, 182, 212, 0.85));
  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.25);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.brand .mark i {
  font-size: 18px;
}

.brand small {
  display: block;
  font-weight: 600;
  color: var(--muted);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.navlinks a {
  color: var(--muted);
  font-weight: 600;
  padding: 10px 10px;
  border-radius: 12px;
  transition: 0.2s ease;
}

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

.cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 700;
  transition: 0.2s ease;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
}

.btn.primary {
  background: linear-gradient(135deg,
      rgba(124, 58, 237, 0.95),
      rgba(6, 182, 212, 0.85));
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 50px rgba(124, 58, 237, 0.25);
}

.btn.primary:hover {
  filter: brightness(1.05);
}

.btn.ghost {
  background: transparent;
}

.btn.icon {
  padding: 12px 14px;
}

.menuBtn {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  padding: 42px 0 28px;
}

.heroGrid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 26px;
  align-items: stretch;
  margin-top: 18px;
}

.heroCard {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius2);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.heroLeft {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 420px;
}

.pillRow {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.pill i {
  color: rgba(255, 255, 255, 0.75);
}

h1 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.6px;
}

.sub {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.65;
  max-width: 58ch;
}

.heroActions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.miniRow {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
}

.mini {
  flex: 1 1 190px;
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.mini .ic {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mini h4 {
  margin: 0 0 2px;
  font-size: 14px;
}

.mini p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

/* Right: slider card */
.heroRight {
  padding: 14px;
}

.swiper {
  width: 100%;
  height: 420px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.slide {
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.03);
}

.s1::before {
  background-image: url("../img/slider/s1.png");
}

.s2::before {
  background-image: url("../img/slider/s2.png");
}

.s3::before {
  background-image: url("../img/slider/s3.png");
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(7, 10, 18, 0.05),
      rgba(7, 10, 18, 0.75));
}

.slideContent {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
}

.slideContent .left {
  max-width: 70%;
}

.slideContent h3 {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.slideContent p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  line-height: 1.45;
}

.badge {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
}

.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.35);
}

.swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 0.85);
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 16px;
  font-weight: 800;
}

/* Sections */
section.block {
  padding: 42px 0;
}

.titleRow {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.titleRow h2 {
  margin: 0;
  font-size: clamp(20px, 2.2vw, 30px);
  letter-spacing: -0.3px;
}

.titleRow p {
  margin: 0;
  color: var(--muted);
  max-width: 64ch;
  line-height: 1.6;
}

.grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.panel {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.07),
      rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
}

.panel.soft {
  background: rgba(255, 255, 255, 0.05);
}

.feat {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.12);
}

.feat .ficon {
  width: 42px;
  height: 42px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex: 0 0 auto;
}

.feat h4 {
  margin: 0 0 6px;
  font-size: 14.5px;
}

.feat p {
  margin: 0;
  color: var(--muted);
  font-size: 13.3px;
  line-height: 1.55;
}

/* Stats row */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.stat {
  padding: 14px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
}

.stat b {
  display: block;
  font-size: 20px;
  letter-spacing: -0.3px;
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

/* Timeline */
.timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.step {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(300px 120px at 10% 10%,
      rgba(124, 58, 237, 0.18),
      transparent 70%);
  pointer-events: none;
}

.num {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 900;
  z-index: 1;
}

.step .txt {
  z-index: 1;
}

.step h4 {
  margin: 0 0 6px;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 13.3px;
  line-height: 1.55;
}

/* Trainers */
.trainers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.trainer {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  gap: 14px;
  align-items: center;
}

.avatar {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  flex: 0 0 auto;
}

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

.trainer h4 {
  margin: 0 0 4px;
}

.trainer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.trainer .tags {
  margin-top: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.14);
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
}

/* Qalereya konteyneri */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.shot {
  position: relative;
  height: 260px; /* 🔴 BÜTÜN ŞƏKİLLƏR ÜÇÜN EYNİ HÜNDÜRLÜK */
  overflow: hidden; /* daşanı gizlət */
  border-radius: 18px;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔥 ƏSAS SİR BU */
  display: block;
  transition: transform 0.4s ease;
}

/* 1. BULANIQLAŞMA: Qalereyanın üzərinə gələndə BÜTÜN şəkilləri bulaniq et */
.gallery:hover .shot {
  filter: blur(4px);
  opacity: 0.6;
  transform: scale(0.95);
  /* Digərləri bir az kiçilsin ki, seçilən önə çıxsın */
}

/* 2. SEÇİLƏN ŞƏKİL: Üzərində olduğumuz şəkli aydınlat və önə çıxar */
.gallery .shot:hover {
  filter: blur(0);
  opacity: 1;
  z-index: 100;
  transform: scale(1.2) rotate(3deg);
/* Həm böyüyür, həm də 3 dərəcə sağa əyilir */
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

/* İSTƏYƏ BAĞLI: Hər ikinci şəkli sola əymək üçün */
.gallery .shot:nth-child(even):hover {
  transform: scale(1.2) rotate(-3deg);
  /* Cüt nömrəli şəkillər sola əyilsin */
}

.shot .cap {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  padding: 8px 10px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 12px;
}

/* Registration block */
.regWrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.regLeft {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.12);
}

.li i {
  color: rgba(255, 255, 255, 0.85);
  margin-top: 2px;
}

.li div b {
  display: block;
  margin-bottom: 3px;
}

.li div span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.regRight {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg,
      rgba(124, 58, 237, 0.14),
      rgba(255, 255, 255, 0.04));
  position: relative;
  overflow: hidden;
}

.regRight::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(420px 220px at 20% 10%,
      rgba(6, 182, 212, 0.18),
      transparent 65%);
  pointer-events: none;
}

.regRight .inner {
  position: relative;
  z-index: 1;
}

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

.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.18);
  color: var(--text);
  outline: none;
  font-weight: 600;
  margin-top: 10px;
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.note {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 10px;
  line-height: 1.5;
}

/* FAQ */
.faq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

details {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 14px 14px;
}

summary {
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  color: var(--muted);
  margin: 10px 0 0;
  line-height: 1.6;
  font-size: 13.5px;
}

.chev {
  transition: 0.2s ease;
}

details[open] .chev {
  transform: rotate(180deg);
}

/* Footer */
footer {
  padding: 36px 0 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.01));
  margin-top: 30px;
}

.footerGrid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 14px;
  align-items: flex-start;
}

.footCard {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.12);
}

.footCard h4 {
  margin: 0 0 10px;
}

.footCard p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.soc {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  transition: 0.2s ease;
}

.soc:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
}

.copyright {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12.5px;
}

/* Floating WhatsApp */
.wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  z-index: 60;
  background: rgba(37, 211, 102, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  transition: 0.2s ease;
}

.wa i {
  font-size: 26px;
}

.wa:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.05);
}

.waTip {
  position: fixed;
  right: 82px;
  bottom: 26px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  font-size: 12px;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: 0.2s ease;
  z-index: 60;
}

.wa:hover+.waTip {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: 0.6s ease;
}

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

/* Mobile */
@media (max-width: 980px) {
  .heroGrid {
    grid-template-columns: 1fr;
  }

  .swiper {
    height: 360px;
  }

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

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

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

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

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

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

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

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

  .navlinks {
    display: none;
  }

  .menuBtn {
    display: inline-flex;
  }
}