@keyframes float {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
:root {
  --deep-purple: #2e1a47;
  --vibrant-pink: #e91e8c;
  --light-purple: #6b5b95;
  --soft-pink: #ffe5f3;
  --dark-navy: #1a1a2e;
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --gray: #6c757d;
  --body-text: #6b7280;
  --pink-hover: #d4177d;
  --purple-light: rgba(46, 26, 71, 0.05);
  --font-family:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --section-padding: 100px 0;
  --container-width: 1200px;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}
*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-text);
  background-color: var(--white);
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: 0 0;
}
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}
.text-gradient {
  background: linear-gradient(
    135deg,
    var(--vibrant-pink) 0%,
    var(--light-purple) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-full);
  transition: all var(--transition-medium);
  white-space: nowrap;
}
.btn-primary {
  background: var(--vibrant-pink);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--pink-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 30, 140, 0.35);
}
.btn-outline {
  background: 0 0;
  color: var(--dark-navy);
  border: 2px solid var(--deep-purple);
}
.btn-outline:hover {
  background: var(--deep-purple);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--vibrant-pink);
}
.btn-white:hover {
  background: var(--soft-pink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-header.light,
.section-header.light .section-title {
  color: var(--white);
}
.section-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(107, 91, 149, 0.1);
  color: var(--light-purple);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section-badge.light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}
.section-title {
  font-size: 40px;
  font-weight: 800;
  color: var(--deep-purple);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 18px;
  color: var(--light-purple);
  line-height: 1.7;
}
.section-header.light .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-medium);
}
.header.scrolled {
  box-shadow: var(--shadow-md);
}
.logo,
.nav {
  display: flex;
  align-items: center;
}
.nav {
  justify-content: space-between;
  height: 80px;
}
.logo {
  gap: 10px;
}
.logo-img {
  height: 40px;
  width: auto;
}
.logo-text {
  font-size: 24px;
  font-weight: 800;
  color: var(--deep-purple);
}
.footer-links a:hover,
.logo-accent,
.nav-link.active,
.nav-link:hover {
  color: var(--vibrant-pink);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-navy);
  position: relative;
  padding: 8px 0;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--vibrant-pink);
  transition: width var(--transition-medium);
}
.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.lang-dropdown {
  position: relative;
}
.lang-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: 0 0;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: var(--dark-navy);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}
.lang-dropdown-btn:hover {
  background: var(--light-gray);
  border-color: var(--vibrant-pink);
}
.lang-current {
  line-height: 1;
}
.lang-arrow {
  width: 16px;
  height: 16px;
  color: var(--dark-navy);
  transition: transform 0.3s ease;
}
.lang-dropdown.active .lang-arrow {
  transform: rotate(180deg);
}
.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}
.lang-dropdown.active .lang-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 16px;
  background: 0 0;
  border: 0;
  color: var(--deep-purple);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: left;
}
.lang-dropdown-item:hover {
  background: var(--light-gray);
  color: var(--vibrant-pink);
}
.lang-dropdown-item.active {
  background: rgba(233, 30, 140, 0.08);
}
.lang-check {
  width: 16px;
  height: 16px;
  opacity: 0;
  transition: opacity var(--transition-fast);
}
.lang-dropdown-item.active .lang-check {
  opacity: 1;
  color: var(--vibrant-pink);
}
.mobile-actions {
  display: none;
}
.mobile-menu-toggle {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
}
.hamburger,
.hamburger::after,
.hamburger::before {
  width: 24px;
  height: 2px;
  background: var(--dark-navy);
  position: absolute;
  left: 4px;
  transition: all var(--transition-medium);
}
.hamburger {
  top: 15px;
}
.hamburger::before {
  content: "";
  top: -8px;
}
.hamburger::after {
  content: "";
  top: 8px;
}
.mobile-menu-toggle.active .hamburger {
  background: 0 0;
}
.mobile-menu-toggle.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}
.mobile-menu-toggle.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}
.hero {
  padding: 160px 0 100px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content {
  max-width: 560px;
}
.badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(107, 91, 149, 0.1);
  color: var(--light-purple);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--deep-purple);
  margin-bottom: 24px;
}
.hero-subtitle {
  font-size: 18px;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.trust-indicator {
  display: flex;
  align-items: center;
  gap: 16px;
}
.avatar,
.trust-avatars {
  display: flex;
}
.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--white);
  margin-left: -12px;
  align-items: center;
  justify-content: center;
  padding: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.avatar:first-child {
  margin-left: 0;
}
.trust-text {
  font-size: 14px;
  color: var(--body-text);
}
.trust-text strong {
  color: var(--deep-purple);
}
.hero-visual {
  position: relative;
  height: 500px;
}
.hero-image-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.hero-professional-image {
  max-width: 600px;
  max-height: 600px;
  display: block;
}
.floating-card,
.floating-icon {
  display: flex;
  align-items: center;
}
.floating-card {
  position: absolute;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-navy);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}
.floating-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(107, 91, 149, 0.1);
  color: var(--light-purple);
  justify-content: center;
}
.floating-icon svg {
  width: 20px;
  height: 20px;
}
.floating-icon.success {
  background: #e8f5e9;
  color: #4caf50;
}
.floating-icon.global {
  background: #e3f2fd;
  color: #2196f3;
}
.card-1 {
  top: 10px;
  left: 0;
  animation-delay: 0s;
}
.card-2 {
  top: 100px;
  right: -40px;
  animation-delay: 1s;
}
.card-3 {
  bottom: 20px;
  left: 10px;
  animation-delay: 2s;
}
.partners {
  padding: 80px 0;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.partners-heading {
  font-size: 16px;
  font-weight: 500;
  color: var(--body-text);
  text-align: center;
  letter-spacing: 0.5px;
  margin-bottom: 48px;
  text-transform: none;
}
.partners-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}
.partners-track {
  display: flex;
  gap: 32px;
  animation: scroll 30s linear infinite;
  width: fit-content;
}
.partners-track:hover {
  animation-play-state: paused;
}
.partner-item {
  position: relative;
  flex-shrink: 0;
  width: 280px;
  height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  overflow: hidden;
}
.partner-item:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 0, 0, 0.15);
}
.partner-item,
.partner-item img,
.partner-reference {
  transition: all var(--transition-medium);
}
.partner-item img {
  width: 180px;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  position: relative;
  z-index: 1;
}
.partner-item:hover img {
  filter: grayscale(0%) opacity(1);
}
.partner-reference {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 14px;
  font-weight: 500;
  color: #06c;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  padding: 12px 16px;
  text-align: center;
  background: rgba(0, 102, 204, 0.05);
  transform: translateY(100%);
}
.partner-item:hover .partner-reference {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.partner-reference:hover {
  color: #004999;
  background: rgba(0, 102, 204, 0.1);
}
.services {
  padding: var(--section-padding);
  background: var(--light-gray);
}
.services-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-main-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--deep-purple);
  margin-bottom: 16px;
  line-height: 1.2;
}
.services-main-subtitle {
  font-size: 18px;
  color: var(--body-text);
  line-height: 1.6;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  grid-column: span 2;
  background: var(--white);
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid #e5e7eb;
  transition: all var(--transition-medium);
  display: flex;
  flex-direction: column;
}
.services-grid .service-card:nth-child(4) {
  grid-column: 2/4;
}
.services-grid .service-card:nth-child(5) {
  grid-column: 4/6;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.service-card.featured {
  background: linear-gradient(135deg, #f5f3ff 0, #fff5fa 100%);
  border: 2px solid var(--vibrant-pink);
}
.service-icon-circle {
  width: 64px;
  height: 64px;
  background: #ffe5f3;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vibrant-pink);
  margin-bottom: 20px;
}
.service-card.featured .service-icon-circle {
  background: var(--white);
}
.feature-icon svg,
.service-icon-circle svg {
  width: 32px;
  height: 32px;
}
.service-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--deep-purple);
  margin-bottom: 12px;
  line-height: 1.3;
}
.service-card-description {
  font-size: 15px;
  color: var(--body-text);
  line-height: 1.6;
}
.why-us {
  padding: var(--section-padding);
  background: var(--white);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all var(--transition-medium);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 72px;
  height: 72px;
  background: rgba(107, 91, 149, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-purple);
  margin: 0 auto 20px;
}
.feature-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--deep-purple);
  margin-bottom: 12px;
}
.feature-description {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.7;
}
.process {
  padding: 80px 0;
  background: var(--white);
}
.process-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}
.process-header {
  text-align: center;
  margin-bottom: 60px;
}
.process-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--deep-purple);
  margin-bottom: 12px;
  line-height: 1.2;
}
.process-subtitle {
  font-size: 17px;
  color: var(--body-text);
  line-height: 1.6;
}
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto 60px;
}
.timeline-line {
  position: absolute;
  left: 50%;
  top: 35px;
  bottom: 35px;
  width: 3px;
  background: var(--vibrant-pink);
  transform: translateX(-50%);
  z-index: 1;
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 80px;
}
.timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-circle {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--white);
  border: 3px solid var(--vibrant-pink);
  border-radius: 50%;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(233, 30, 140, 0.2);
  transition: all var(--transition-medium);
  grid-column: 2;
}
.timeline-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(233, 30, 140, 0.35);
}
.timeline-circle svg {
  width: 30px;
  height: 30px;
  color: var(--deep-purple);
  stroke-width: 2.5;
}
.timeline-circle,
.timeline-content {
  display: flex;
  align-items: center;
}
.timeline-connector {
  width: 50px;
  height: 2px;
  background: var(--vibrant-pink);
  flex-shrink: 0;
}
.timeline-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-medium);
}
.timeline-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.timeline-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--deep-purple);
  margin-bottom: 10px;
  line-height: 1.3;
}
.timeline-card-desc {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.6;
  margin: 0;
}
.timeline-item--left .timeline-content {
  grid-column: 1;
  justify-content: flex-end;
}
.timeline-item--left .timeline-card {
  text-align: right;
}
.timeline-item--right .timeline-content {
  grid-column: 3;
  justify-content: flex-start;
}
.timeline-item--right .timeline-card {
  text-align: left;
}
.process-cta {
  text-align: center;
}
.trainers {
  padding: var(--section-padding);
  background: var(--white);
}
.trainers-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}
.trainers-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--deep-purple);
  margin-bottom: 16px;
  line-height: 1.2;
}
.trainers-subtitle {
  font-size: 18px;
  color: var(--body-text);
  line-height: 1.6;
}
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.trainer-card {
  text-align: center;
}
.trainer-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  background: #f3f4f6;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: pointer;
}
.trainer-overlay,
.trainer-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.trainer-placeholder {
  width: 100%;
  height: 100%;
  background: #f3f4f6;
}
.trainer-placeholder svg {
  width: 80px;
  height: 80px;
  color: #d1d5db;
}
.trainer-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  background: rgba(46, 26, 71, 0.92);
  padding: 20px;
  flex-direction: column;
  gap: 8px;
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}
.trainer-photo:hover .trainer-overlay {
  transform: translateY(0);
}
.trainer-overlay-name,
.trainer-overlay-title {
  display: none;
}
.trainer-socials {
  display: flex;
  gap: 12px;
  align-items: center;
}
.trainer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-medium);
}
.trainer-social-icon:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.trainer-social-icon svg {
  width: 18px;
  height: 18px;
}
.trainer-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--deep-purple);
  margin-bottom: 6px;
}
.trainer-title {
  font-size: 14px;
  color: var(--body-text);
  margin-bottom: 16px;
}
.trainer-view-profile {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--vibrant-pink);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition:
    color 0.2s,
    gap 0.2s;
}
.trainer-view-profile:hover {
  color: var(--deep-purple);
}
.stats {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.stats-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  gap: 40px;
}
.stats-headline {
  flex: 1;
  max-width: 500px;
}
.stats-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--deep-purple);
  line-height: 1.3;
}
.stats-numbers {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}
.stat-box {
  text-align: center;
}
.stat-value {
  font-size: 48px;
  font-weight: 800;
  color: var(--deep-purple);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-value span {
  font-size: 32px;
  color: var(--light-purple);
}
.stat-desc {
  font-size: 13px;
  color: var(--body-text);
  line-height: 1.4;
  max-width: 120px;
}
.world-map {
  position: relative;
  width: 100%;
  height: 500px;
  background-image: url(../images/vecteezy_dotted-world-map_36643421.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-lg);
}
.flag-circle,
.flag-marker {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flag-marker {
  position: absolute;
  z-index: 2;
}
.flag-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid #e5e7eb;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all var(--transition-medium);
  cursor: pointer;
}
.flag-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flag-circle:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  border-color: var(--light-purple);
}
.contact-form-section {
  padding: 80px 0;
  background: #f8f9fa;
}
.contact-form-card {
  background: #f8f9fa;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 24px;
  padding: 80px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.contact-info-col {
  flex: 0 0 40%;
  width: 40%;
}
.contact-info-heading {
  font-size: 36px;
  font-weight: 800;
  color: var(--deep-purple);
  margin-bottom: 16px;
}
.contact-info-desc {
  font-size: 16px;
  color: var(--body-text);
  line-height: 1.6;
  margin-bottom: 40px;
}
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 50px;
}
.contact-info-item {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--vibrant-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
  stroke: var(--white);
}
.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-info-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--body-text);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.contact-info-value,
.form-group label {
  font-size: 16px;
  font-weight: 600;
  color: var(--deep-purple);
}
.contact-socials {
  display: flex;
  gap: 12px;
}
.contact-social-btn,
.form-group input,
.form-group textarea {
  transition: all var(--transition-fast);
  color: var(--deep-purple);
}
.contact-social-btn {
  width: 40px;
  height: 40px;
  background: rgba(46, 26, 71, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.contact-social-btn svg,
.social-link svg {
  width: 18px;
  height: 18px;
}
.contact-social-btn:hover {
  background: var(--vibrant-pink);
  color: var(--white);
}
.contact-form-col {
  flex: 1;
  min-width: 0;
}
.contact-form {
  gap: 20px;
}
.contact-form,
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 14px;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: var(--white);
  box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--vibrant-pink);
  box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.services-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background-color var(--transition-fast);
}
.checkbox-wrapper:hover {
  background-color: rgba(233, 30, 140, 0.05);
}
.checkbox-wrapper input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--vibrant-pink);
  margin: 0;
  flex-shrink: 0;
}
.checkbox-wrapper span,
.contact-map-heading h3 {
  font-size: 14px;
  color: var(--deep-purple);
  font-weight: 500;
}
.contact-form .btn-primary {
  width: 100%;
  padding: 16px 32px;
  background: var(--vibrant-pink);
  color: var(--white);
  border: 0;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-top: 8px;
}
.contact-form .btn-primary:hover {
  background: var(--pink-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(233, 30, 140, 0.3);
}
.contact-form .btn-primary:active {
  transform: translateY(0);
}
.contact-map-section {
  padding: 80px 0;
  background: var(--white);
}
.contact-map-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.contact-map-heading {
  margin-bottom: 24px;
}
.contact-map-heading h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-map-heading p {
  font-size: 16px;
  color: var(--body-text);
}
.contact-map-frame {
  height: 450px;
  border-radius: 16px;
  overflow: hidden;
}
.contact-map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.footer {
  background: var(--deep-purple);
  padding: 80px 0 32px;
  color: var(--white);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo-text {
  color: var(--white);
}
.footer-tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
  line-height: 1.7;
}
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-medium);
}
.social-link:hover {
  background: var(--vibrant-pink);
  transform: translateY(-4px);
}
.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links ul li {
  margin-bottom: 12px;
}
.contact-info li,
.footer-links a {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
}
.footer-links a {
  transition: color var(--transition-fast);
}
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.contact-info svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--vibrant-pink);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-lang .lang-dropdown-btn {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
}
.footer-lang .lang-dropdown-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}
.copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 1200px) {
  .hero-title {
    font-size: 44px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trainers-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .stats-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .stats-headline {
    max-width: 100%;
  }
  .stats-title {
    font-size: 28px;
  }
  .stats-numbers {
    gap: 32px;
  }
  .world-map {
    height: 400px;
  }
  .flag-circle {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 32px;
    gap: 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-medium);
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .nav-actions {
    display: none;
  }
  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .mobile-actions .lang-dropdown-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
  .mobile-actions .lang-dropdown-menu {
    right: 0;
    min-width: 100px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  .hero-buttons,
  .trust-indicator {
    justify-content: center;
  }
  .hero-visual {
    height: 400px;
    order: -1;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .service-card {
    grid-column: span 1;
  }
  .services-grid .service-card:nth-child(4) {
    grid-column: span 1;
  }
  .services-grid .service-card:nth-child(5) {
    grid-column: 1/-1;
    max-width: 50%;
    margin: 0 auto;
  }
  .timeline-card {
    max-width: 350px;
    padding: 24px;
  }
  .timeline-card-title {
    font-size: 19px;
  }
  .timeline-card-desc {
    font-size: 14px;
  }
  .timeline-connector {
    width: 40px;
  }
  .timeline-circle {
    width: 55px;
    height: 55px;
  }
  .timeline-circle svg {
    width: 28px;
    height: 28px;
  }
  .trainers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .contact-form-card {
    padding: 60px 48px;
    gap: 48px;
  }
  .contact-info-heading {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
  .hero {
    padding: 120px 0 60px;
  }
  .partners {
    padding: 60px 0;
  }
  .partners-heading {
    font-size: 15px;
    margin-bottom: 36px;
  }
  .partners-track {
    gap: 24px;
  }
  .partner-item {
    width: 240px;
    height: 140px;
    padding: 20px;
  }
  .partner-item img {
    width: 160px;
    height: 70px;
  }
  .partner-reference {
    font-size: 13px;
    padding: 10px 14px;
  }
  .hero-title {
    font-size: 36px;
  }
  .section-title,
  .services-main-title {
    font-size: 32px;
  }
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .service-card {
    grid-column: span 1;
    padding: 28px 24px;
  }
  .services-grid .service-card:nth-child(4),
  .services-grid .service-card:nth-child(5) {
    grid-column: span 1;
    max-width: 100%;
    margin: 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .trainers-title {
    font-size: 32px;
  }
  .trainers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .process {
    padding: 50px 0;
  }
  .process-container {
    padding: 0 20px;
  }
  .process-title {
    font-size: 26px;
  }
  .process-subtitle {
    font-size: 15px;
  }
  .process-header {
    margin-bottom: 40px;
  }
  .timeline {
    margin-bottom: 30px;
    padding: 0 0 0 85px;
    max-width: 100%;
  }
  .timeline-line {
    left: 30px;
    transform: none;
    top: 30px;
    bottom: 30px;
  }
  .timeline-item {
    display: block;
    margin-bottom: 40px;
    position: relative;
  }
  .timeline-item:last-child {
    margin-bottom: 0;
  }
  .timeline-circle {
    position: absolute;
    left: -85px;
    top: 0;
    width: 55px;
    height: 55px;
  }
  .timeline-circle svg {
    width: 24px;
    height: 24px;
  }
  .timeline-content {
    display: block;
  }
  .timeline-connector {
    display: none;
  }
  .timeline-card {
    padding: 18px;
    margin: 0;
    width: 100%;
  }
  .timeline-item--left .timeline-card,
  .timeline-item--right .timeline-card {
    text-align: left;
  }
  .timeline-card-title {
    font-size: 17px;
    margin-bottom: 8px;
  }
  .timeline-card-desc {
    font-size: 14px;
    line-height: 1.5;
  }
  .process-cta {
    margin-top: 30px;
  }
  .contact-map-heading h3,
  .stat-value span,
  .stats-title {
    font-size: 24px;
  }
  .stats-numbers {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }
  .stat-value {
    font-size: 36px;
  }
  .stat-desc {
    font-size: 12px;
  }
  .world-map {
    height: 300px;
  }
  .flag-circle {
    width: 38px;
    height: 38px;
    font-size: 20px;
  }
  .contact-form-section {
    padding: 60px 0;
  }
  .contact-form-card {
    padding: 40px 24px;
    border-radius: 16px;
    flex-direction: column;
    gap: 40px;
  }
  .contact-info-col {
    flex: none;
    width: 100%;
  }
  .contact-info-heading {
    font-size: 28px;
  }
  .contact-info-desc {
    font-size: 15px;
    margin-bottom: 28px;
  }
  .contact-info-items {
    margin-bottom: 28px;
  }
  .services-checkboxes {
    grid-template-columns: 1fr;
  }
  .contact-map-section {
    padding: 60px 0;
  }
  .contact-map-frame {
    height: 320px;
    border-radius: 12px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .floating-card {
    padding: 12px 16px;
    font-size: 12px;
  }
  .floating-icon {
    width: 32px;
    height: 32px;
  }
  .floating-icon svg {
    width: 16px;
    height: 16px;
  }
  .card-2 {
    right: -30px;
  }
}
@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .partners-track {
    gap: 20px;
  }
  .partner-item {
    width: 200px;
    height: 120px;
    padding: 16px;
  }
  .partner-item img {
    width: 140px;
    height: 60px;
  }
  .partner-reference {
    font-size: 12px;
    padding: 8px 12px;
  }
  .btn-lg {
    padding: 14px 28px;
    width: 100%;
  }
  .hero-professional-image {
    max-width: 400px;
    max-height: 400px;
  }
}
.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
.answer-capsule {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #374151;
  max-width: 720px;
  margin-bottom: 1.5rem;
}
.content-meta {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}
.content-meta time {
  font-style: italic;
}
.entity-definition {
  font-size: 1rem;
  line-height: 1.7;
  color: #374151;
  border-left: 3px solid #7c3aed;
  padding-left: 1rem;
  margin: 1.5rem 0;
}
.brand-entity {
  border-top: 1px solid #e5e7eb;
  padding-top: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #9ca3af;
}
.geo-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.geo-stat-item {
  background: #f9fafb;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}
.geo-stat-item strong {
  display: block;
  font-size: 1.5rem;
  color: #7c3aed;
}
.contact-faq {
  padding: 100px 0;
  background: #f8f9fa;
}
.contact-faq-header {
  text-align: center;
  margin-bottom: 60px;
}
.contact-faq-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--vibrant-pink);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.contact-faq-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--deep-purple);
  line-height: 1.2;
  margin-bottom: 16px;
}
.contact-faq-subtitle {
  font-size: 18px;
  color: #6b7280;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #e5e7eb;
}
.faq-question {
  width: 100%;
  background: 0 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
.faq-question-text {
  font-size: 18px;
  font-weight: 700;
  color: var(--deep-purple);
  transition: color var(--transition-fast);
  line-height: 1.4;
}
.faq-icon,
.faq-question:hover .faq-question-text {
  color: var(--vibrant-pink);
}
.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 400;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
}
.faq-answer-text {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.7;
  padding-bottom: 24px;
}
@media (max-width: 768px) {
  .contact-faq {
    padding: 60px 0;
  }
  .contact-faq-title {
    font-size: 28px;
  }
  .faq-question-text {
    font-size: 16px;
  }
}
.about-hero {
  background: linear-gradient(135deg, var(--deep-purple) 0%, #4a3580 100%);
  padding: 80px 0;
  text-align: center;
}
.about-hero .container {
  padding-left: 100px !important;
  padding-right: 100px !important;
}
.about-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.about-hero-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #e91e8c;
  margin-bottom: 20px;
}
.about-hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  max-width: 1000px;
  margin: 0 auto 28px;
}
.about-hero-subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .about-hero .container {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .about-hero-title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .about-hero {
    padding: 60px 0;
  }
  .about-hero .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .about-hero-title {
    font-size: 32px;
  }
  .about-hero-subtitle {
    font-size: 16px;
  }
}
