/* ---------- TRAINING PAGE ---------- */
.training-page {
  max-width: 1250px;
  margin: 0 auto;
  padding: 50px 24px;
  color: #222;
}

/* ---------- HERO ---------- */
.training-hero {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 45px;
  align-items: start;
  background: linear-gradient(135deg, #fffaf3, #ffe8cc);
  border-radius: 28px;
  padding: 45px 55px 55px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
  margin-bottom: 45px;
}

.hero-text {
  padding-top: 0;
}

.hero-text h1 {
  margin: 0 0 18px;
  font-size: 46px;
  font-weight: 900;
  line-height: 1.1;
  color: #222;
}

.hero-text p {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

.hero-sub {
  margin-bottom: 10px !important;
  font-weight: 700;
}

.hero-extra-photo {
  display: block;
  width: 100%;
  max-width: 560px;
  height: 300px;
  object-fit: cover;
  margin-top: 28px;
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.16);
}

/* ---------- VIDEO / IMAGE ---------- */
.training-media {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 14px 32px rgba(0,0,0,0.18);
}

.video-wrapper video {
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border: none;
  border-radius: 50%;
  background: rgba(46, 158, 91, 0.95);
  color: white;
  font-size: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.training-photo {
  width: 100%;
  height: 255px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 14px 32px rgba(0,0,0,0.16);
}

/* ---------- CARDS ---------- */
.training-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

.option-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 34px 28px 30px;
  box-shadow: 0 16px 35px rgba(0,0,0,0.09);
  border: 1px solid rgba(244,185,66,0.45);
  border-top: 7px solid #f4b942;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.option-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.14);
}

.option-card h3 {
  margin: 0 0 14px;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.15;
  color: #2e9e5b;
}

.option-intro {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 18px;
  color: #333;
}

.option-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.option-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px;
  font-size: 15px;
  line-height: 1.45;
  color: #222;
}

.option-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 19px;
  height: 19px;
  background: #2e9e5b;
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.option-outro {
  margin: auto 0 24px;
  font-size: 15px;
  line-height: 1.55;
  color: #555;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  margin-top: auto;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.btn-green {
  background: #2e9e5b;
  color: white;
}

.btn-green:hover {
  background: #25864c;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
}

/* ---------- COMING SOON ---------- */
.coming-soon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60vh;
  text-align: center;
}

.coming-soon p {
  font-size: 3rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1000px) {
  .training-hero {
    grid-template-columns: 1fr;
    padding: 40px 28px;
  }

  .training-options {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .video-wrapper video {
    height: 240px;
  }

  .training-photo {
    height: 260px;
  }

  .hero-extra-photo {
    max-width: 100%;
    height: 220px;
  }
}

@media (max-width: 600px) {
  .training-page {
    padding: 32px 16px;
  }

  .training-hero {
    padding: 32px 22px;
    border-radius: 22px;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .video-wrapper video {
    height: 220px;
  }

  .training-photo,
  .hero-extra-photo {
    height: 200px;
  }

  .play-button {
    width: 64px;
    height: 64px;
    font-size: 26px;
  }

  .option-card {
    padding: 30px 22px;
  }

  .option-card h3 {
    font-size: 23px;
  }

  .btn {
    width: 100%;
  }

  .coming-soon p {
    font-size: 2.5rem;
  }
}