@font-face {
  font-family: Arad;
  src: url(font/Arad-Regular.ttf);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Arad", sans-serif;
  background: linear-gradient(145deg, #faf5ff 0%, #ede9fe 100%);
  color: #1e1b4b;
  overflow-x: hidden;
  position: relative;
}
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}
.bg-animation .circle {
  position: absolute;
  background: radial-gradient(
    circle,
    rgba(109, 40, 217, 0.1) 0%,
    rgba(124, 58, 237, 0.06) 100%
  );
  border-radius: 50%;
  animation: floatBg 20s infinite ease-in-out;
}
@keyframes floatBg {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(5%, 5%) scale(1.05);
  }
  50% {
    transform: translate(-5%, 10%) scale(1.1);
  }
  75% {
    transform: translate(10%, -5%) scale(1.05);
  }
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #ddd6fe;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  border-radius: 10px;
}
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1300px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 80px;
  padding: 0.5rem 2rem;
  z-index: 1000;
  box-shadow:
    0 10px 40px rgba(109, 40, 217, 0.1),
    0 0 0 1px rgba(109, 40, 217, 0.05);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  top: 0;
  width: 100%;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(109, 40, 217, 0.12);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.6rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo i {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 8px;
}
.nav-menu {
  display: flex;
  gap: 0.5rem;
  list-style: none;
}
.nav-menu a {
  color: #4c1d95;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.95rem;
}
.nav-menu a:hover,
.nav-menu a.active {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  color: #fff;
  box-shadow: 0 5px 15px rgba(109, 40, 217, 0.4);
}
.nav-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}
.hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(109, 40, 217, 0.12);
  border-radius: 50px;
  color: #6d28d9;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.hero h1 {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 span {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.2rem;
  color: #5b21b6;
  margin-bottom: 2rem;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  color: #fff;
  box-shadow: 0 10px 25px -5px rgba(109, 40, 217, 0.5);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 35px -8px rgba(109, 40, 217, 0.6);
}
.btn-outline {
  background: transparent;
  border: 2px solid #6d28d9;
  color: #6d28d9;
}
.btn-outline:hover {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
}
.section {
  padding: 6rem 2rem;
  position: relative;
}
.container {
  max-width: 1300px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(109, 40, 217, 0.12);
  border-radius: 50px;
  color: #6d28d9;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e1b4b;
  margin-bottom: 1rem;
}
.section-subtitle {
  color: #6d28d9;
  font-size: 1.1rem;
}
.coaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.coach-card {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 35px -12px rgba(109, 40, 217, 0.12);
  position: relative;
}
.coach-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.coach-card:hover::before {
  transform: scaleX(1);
}
.coach-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 45px -15px rgba(109, 40, 217, 0.3);
}
.coach-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.coach-info {
  padding: 1.8rem;
  text-align: center;
}
.coach-name {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: #1e1b4b;
}
.coach-title {
  color: #6d28d9;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.coach-desc {
  color: #6d28d9;
  font-size: 0.9rem;
}
.coach-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}
.coach-social a {
  color: #7c3aed;
  transition: 0.3s;
  font-size: 1.2rem;
}
.coach-social a:hover {
  color: #6d28d9;
}
.sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.session-card {
  background: #fff;
  border-radius: 28px;
  padding: 2rem;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 30px -8px rgba(109, 40, 217, 0.08);
  border: 1px solid rgba(109, 40, 217, 0.06);
}
.session-card:hover {
  transform: scale(1.02);
  border-color: rgba(109, 40, 217, 0.25);
  box-shadow: 0 15px 35px -10px rgba(109, 40, 217, 0.2);
}
.session-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.session-time {
  font-size: 1.6rem;
  font-weight: 800;
  color: #6d28d9;
}
.session-day {
  color: #6d28d9;
  margin: 0.5rem 0;
}
.session-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e1b4b;
  margin: 1rem 0 0;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.package-card {
  background: #fff;
  border-radius: 32px;
  padding: 2rem;
  text-align: center;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}
.package-card.featured {
  border: 2px solid #6d28d9;
  transform: scale(1.02);
}
.package-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
}
.package-icon {
  font-size: 3rem;
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.package-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.package-price {
  font-size: 2rem;
  font-weight: 800;
  color: #6d28d9;
  margin: 1rem 0;
}
.package-price small {
  font-size: 0.8rem;
  font-weight: normal;
}
.package-features {
  list-style: none;
  margin: 1.5rem 0;
}
.package-features li {
  padding: 0.6rem 0;
  color: #5b21b6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-bottom: 1px solid #ede9fe;
}
.package-features li i {
  color: #6d28d9;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(109, 40, 217, 0.9),
    rgba(124, 58, 237, 0.9)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay i {
  font-size: 2.5rem;
  color: #fff;
}
.stats-section {
  background: linear-gradient(135deg, #1e1b4b, #312e81);
  border-radius: 48px;
  margin: 0 2rem;
  padding: 4rem;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  color: #c4b5fd;
  margin-top: 0.5rem;
}
.contact-section {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  border-radius: 48px;
  padding: 4rem;
  text-align: center;
  color: #fff;
}
.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.contact-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.btn-light {
  background: #fff;
  color: #6d28d9;
  border: none;
}
.btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.floating-call {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 5px 20px rgba(109, 40, 217, 0.5);
  transition: 0.3s;
  animation: pulse 2s infinite;
}
.floating-call:hover {
  transform: scale(1.1);
}
.floating-call a {
  color: #fff;
  font-size: 1.6rem;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(109, 40, 217, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(109, 40, 217, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(109, 40, 217, 0);
  }
}
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: 0.3s;
  z-index: 100;
  box-shadow: 0 5px 15px rgba(109, 40, 217, 0.2);
  color: #6d28d9;
}
.scroll-top.visible {
  opacity: 1;
}
.footer {
  background: #1e1b4b;
  color: #fff;
  padding: 4rem 2rem 2rem;
  margin-top: 4rem;
}
.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.footer-about p {
  color: #c4b5fd;
  line-height: 1.8;
}
.footer-links h4,
.footer-contact h4 {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.8rem;
}
.footer-links a {
  color: #c4b5fd;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #a78bfa;
}
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}
.social-icons a:hover {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  transform: translateY(-3px);
}
.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a78bfa;
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 27, 75, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 20px;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 768px) {
  .navbar {
    width: 95%;
    padding: 0.5rem 1rem;
  }
  .nav-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: #fff;
    flex-direction: column;
    padding: 2rem;
    transition: 0.3s;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(109, 40, 217, 0.12);
  }
  .nav-menu.active {
    left: 0;
  }
  .hero h1 {
    font-size: 2.2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .stats-section,
  .contact-section {
    margin: 0 1rem;
    padding: 2rem;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn {
    justify-content: center;
  }
}

.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.discipline-card {
  background: #fff;
  border-radius: 32px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.discipline-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px -15px rgba(255, 107, 53, 0.2);
}

.discipline-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.discipline-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.discipline-card:hover .discipline-image img {
  transform: scale(1.08);
}

.discipline-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
}

.discipline-badge {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.discipline-info {
  padding: 1.5rem;
  text-align: center;
}

.discipline-icon {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.discipline-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0f172a;
}

.discipline-desc {
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.discipline-features {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.discipline-features span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  background: #f1f5f9;
  border-radius: 50px;
  color: #475569;
}

.discipline-features span i {
  color: #7c3aed;
  font-size: 0.7rem;
}

.discipline-btn {
  width: 100%;
  padding: 0.8rem;
  background: transparent;
  border: 2px solid #7c3aed;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  color: #7c3aed;
  font-size: 0.9rem;
}

.discipline-btn:hover {
  background: linear-gradient(135deg, #6d28d9, #7c3aed);
  color: #fff;
  border-color: transparent;
}

@media (max-width: 768px) {
  .disciplines-grid {
    grid-template-columns: 1fr;
  }
  .discipline-image {
    height: 180px;
  }
}

* {
  font-family: Arad;
}
