* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0a0a;
  color: #ffffff;
  line-height: 1.6;
}

/* Navbar */
.custom-navbar {
  background: transparent;
  padding: 18px 0;
  transition: all 0.3s ease;
}

.custom-navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.navbar-brand {
  color: #ffffff;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.navbar-brand:hover {
  color: #ffffff;
}

.nav-link {
  color: #e8e8e8 !important;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-link:hover {
  color: #ff7a00 !important;
}

/* Buttons */
.btn-main {
  background: linear-gradient(135deg, #ff5a00, #ff8a00);
  border: none;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-main:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 106, 0, 0.3);
}

/* Hero */
.hero {
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.7)),
    url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  max-width: 650px;
}

.hero-text {
  color: #d4d4d4;
  font-size: 1.08rem;
  max-width: 620px;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s ease;
}

.hero-image:hover {
  transform: scale(1.02);
}

.stat-box {
  background: rgba(255, 255, 255, 0.08);
  padding: 20px 15px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-box h3 {
  margin-bottom: 6px;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ff9b3d;
}

.stat-box p {
  margin: 0;
  color: #d8d8d8;
  font-size: 0.95rem;
}

/* Sections */
.section {
  padding: 100px 0;
}

.dark-section {
  background: #111111;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-subtitle {
  max-width: 760px;
  margin: 0 auto;
  color: #bdbdbd;
  font-size: 1.05rem;
}

/* Feature boxes */
.feature-box {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 32px 28px;
  height: 100%;
  transition: all 0.35s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 18px;
}

.feature-box h5 {
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-box p {
  color: #bdbdbd;
  margin-bottom: 0;
}

/* Training section */
.rounded-custom {
  border-radius: 28px;
}

.section-image {
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  transition: transform 0.35s ease;
}

.section-image:hover {
  transform: scale(1.02);
}

.custom-list {
  list-style: none;
  padding-left: 0;
  margin-top: 18px;
}

.custom-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: #d1d1d1;
}

.custom-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff8a00;
  font-weight: 800;
}

/* Plans */
.plan-card {
  background: #151515;
  border-radius: 24px;
  padding: 34px 28px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
}

.featured-plan {
  border: 1px solid rgba(255, 138, 0, 0.45);
  transform: scale(1.03);
}

.featured-plan:hover {
  transform: scale(1.03) translateY(-8px);
}

.plan-tag {
  display: inline-block;
  margin-bottom: 14px;
  background: rgba(255, 138, 0, 0.12);
  color: #ff9b3d;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.plan-card h4 {
  font-weight: 700;
  margin-bottom: 12px;
}

.plan-price {
  font-size: 2rem;
  font-weight: 800;
  color: #ff8a00;
  margin-bottom: 14px;
}

.plan-card p {
  color: #c6c6c6;
}

/* Gallery */
.gallery-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.35s ease;
  display: block;
}

.large-gallery-img {
  height: 380px;
}

.gallery-img:hover {
  transform: scale(1.02);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.3);
}

/* Reviews */
.review-card {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 30px 26px;
  height: 100%;
  transition: all 0.35s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.28);
}

.review-card h5 {
  font-weight: 700;
  margin-bottom: 14px;
}

.review-card p {
  color: #c9c9c9;
  margin-bottom: 0;
  font-style: italic;
}

/* CTA */
.cta-box {
  background: linear-gradient(135deg, #ff5a00, #ff8a00);
  border-radius: 30px;
  padding: 50px 40px;
  box-shadow: 0 22px 45px rgba(255, 106, 0, 0.22);
}

.cta-box h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.cta-box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
}

/* Footer */
.footer {
  background: #080808;
  padding: 35px 0;
  color: #b8b8b8;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer small {
  color: #8f8f8f;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.6rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .featured-plan {
    transform: none;
  }

  .featured-plan:hover {
    transform: translateY(-8px);
  }

  .hero {
    text-align: center;
  }

  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-box {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .section {
    padding: 80px 0;
  }

  .gallery-img,
  .large-gallery-img {
    height: 260px;
  }

  .cta-box {
    padding: 35px 25px;
  }
}
@media (max-width: 991px) {
  .hero-mobile-image-block {
    display: block;
    margin-top: 30px;
  }
}
.hero-mobile-image-block {
  display: none;
}

.language-switcher {
  display: flex;
  gap: 8px;
  align-items: center;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s ease;
}

.lang-btn:hover {
  background: rgba(255,255,255,0.08);
}

.lang-btn.active {
  background: linear-gradient(135deg, #ff5a00, #ff8a00);
  border-color: transparent;
  color: white;
}

.hero-mobile-image-block {
  display: none;
}

@media (max-width: 991px) {
  .hero-mobile-image-block {
    display: block;
    margin-top: 30px;
  }

  .hero-image {
    max-height: 320px;
    object-fit: cover;
    width: 100%;
  }
}

.booking-page {
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.82)),
    url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
}

.booking-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.55));
}

.booking-card {
  background: rgba(20, 20, 20, 0.94);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
}

.booking-badge {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.booking-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
}

.booking-text {
  color: #cfcfcf;
  max-width: 640px;
  margin: 0 auto;
}

.booking-topbar {
  position: relative;
  z-index: 2;
}

.form-label {
  color: #f2f2f2;
  font-weight: 600;
}

.form-control,
.form-select {
  background: #111111;
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  border-radius: 14px;
  padding: 12px 14px;
}

.form-control:focus,
.form-select:focus {
  background: #111111;
  color: #ffffff;
  border-color: #ff7a00;
  box-shadow: 0 0 0 0.2rem rgba(255, 122, 0, 0.18);
}

.form-control::placeholder {
  color: #9a9a9a;
}

.form-select option {
  color: #000;
}

.custom-message {
  padding: 16px 18px;
  border-radius: 16px;
  margin-bottom: 20px;
  font-size: 0.98rem;
}

.success-message {
  background: rgba(25, 135, 84, 0.16);
  border: 1px solid rgba(25, 135, 84, 0.38);
  color: #d6ffe7;
}

.error-message {
  background: rgba(220, 53, 69, 0.16);
  border: 1px solid rgba(220, 53, 69, 0.38);
  color: #ffd9dd;
}

@media (max-width: 768px) {
  .booking-title {
    font-size: 2rem;
  }
}