/* ═══════════════════════════════════════════════════════
   PMT COACHING PROGRAMS — coaching.css
═══════════════════════════════════════════════════════ */

/* ── Wrap container ── */
.coaching-wrap {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.coaching-wrap *,
.coaching-wrap *::before,
.coaching-wrap *::after {
  box-sizing: border-box;
}

/* ── WP theme overrides ── */
.entry-content .coaching-wrap h1,
.entry-content .coaching-wrap h2,
.entry-content .coaching-wrap h3,
.entry-content .coaching-wrap h4 {
  clear: none !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.entry-content .coaching-wrap p:empty {
  display: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */

.coaching-hero {
  text-align: center;
  padding-top: 0px;
  margin-bottom: 40px;
}

/* Orange label */
p.coaching-label,
.entry-content p.coaching-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  margin-bottom: 8px !important;
  margin-top: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  opacity: 1 !important;
}

p.coaching-label::before,
p.coaching-label::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #FF6000;
  flex-shrink: 0;
}

/* Center label variant (for process section) */
p.coaching-label-center {
  justify-content: center !important;
}

/* H1 */
.coaching-wrap .coaching-title,
.entry-content .coaching-wrap h1.coaching-title {
  font-size: 2.2rem !important;
  font-weight: 700 !important;
  margin: 10px 0 14px !important;
  line-height: 1.3 !important;
}

/* Subtitle */
.coaching-wrap .coaching-sub {
  font-size: 15px !important;
  color: #6b7280 !important;
  max-width: 600px !important;
  margin: 0 auto !important;
  line-height: 1.7 !important;
}

/* ════════════════════════════════
   COACHING CARDS GRID
════════════════════════════════ */

.coaching-grid {
  gap: 24px !important;
  margin-bottom: 24px !important;
}

.coaching-card {
  background: #fff !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  border: 1px solid rgba(37, 59, 128, 0.08) !important;
  box-shadow: 0 2px 12px rgba(37, 59, 128, 0.06) !important;
  padding: 0 !important;
  transition: transform 0.6s ease, box-shadow 0.25s;
}

.coaching-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(37, 59, 128, 0.13) !important;
}

/* Card image */
.coaching-card-img {
  margin: 0 !important;
}

.coaching-card-img img {
  width: 100% !important;
  height: 200px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 0 !important;
}

/* Card body */
.coaching-card-body {
  padding: 18px 20px 22px !important;
  border-top: 3px solid #FF6000 !important;
}

/* Badge */
p.coaching-badge,
.entry-content p.coaching-badge {
  display: inline-block !important;
  background: #e8f0fe !important;
  color: #253b80 !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  padding: 4px 10px !important;
  border-radius: 20px !important;
  margin-bottom: 10px !important;
  margin-top: 0 !important;
}

/* Card title */
.coaching-wrap .coaching-card-title,
.entry-content .coaching-wrap h3.coaching-card-title {
  font-size: 17px !important;
  font-weight: 700 !important;
  color: #253b80 !important;
  margin: 0 0 8px !important;
}

/* Card text */
.coaching-wrap .coaching-card-text {
  font-size: 13.5px !important;
  color: #6b7280 !important;
  line-height: 1.6 !important;
  margin: 0 0 16px !important;
}

/* Meta row */
.coaching-meta {
  display: flex !important;
  gap: 14px !important;
  flex-wrap: wrap !important;
  border-top: 1px solid rgba(37, 59, 128, 0.07) !important;
  padding-top: 14px !important;
}

.coaching-meta p {
  margin: 0 !important;
}

.coaching-meta-item {
  font-size: 12px !important;
  color: #6b7280 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
}

.coaching-meta-item strong {
  color: #253b80 !important;
}

/* ── Card scroll animations ── */
.coaching-card.pmt-animate {
  opacity: 0;
  transform: translateY(30px);
}
.coaching-card.pmt-animate.pmt-visible {
  opacity: 1;
  transform: translateY(0);
}
.coaching-card:nth-child(2) { transition-delay: 0.1s; }
.coaching-card:nth-child(3) { transition-delay: 0.2s; }

/* ════════════════════════════════
   WHY SECTION
════════════════════════════════ */

.coaching-why {
  background: #f4f6fb !important;
  border-radius: 10px !important;
  padding: 40px !important;
  margin-bottom: 0 !important;
}

/* Why label — left aligned */
.coaching-why p.coaching-label {
  justify-content: flex-start !important;
}
.coaching-why p.coaching-label::after {
  display: none !important;
}

/* Why H2 */
.coaching-wrap .coaching-why-title,
.entry-content .coaching-wrap h2.coaching-why-title {
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  margin-top: 0 !important;
}

.coaching-why-grid {
  gap: 18px !important;
  margin-bottom: 18px !important;
}

.coaching-why-grid:last-child {
  margin-bottom: 0 !important;
}

.coaching-why-card {
  background: #fff !important;
  border-radius: 8px !important;
  padding: 0 !important;
  border: 1px solid rgba(37, 59, 128, 0.07) !important;
  text-align: center !important;
  overflow: hidden !important;
  transition: transform 0.25s, box-shadow 0.25s;
}

.coaching-why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 59, 128, 0.1);
}

/* Why card image */
.coaching-why-img {
  margin: 0 !important;
}

.coaching-why-img img {
  width: 100% !important;
  height: 160px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 0 !important;
}

/* Why card title */
.coaching-wrap .coaching-why-card-title,
.entry-content .coaching-wrap h4.coaching-why-card-title {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #253b80 !important;
  margin: 14px 0 8px !important;
  padding: 0 16px !important;
}

/* Why card text */
.coaching-why-card .coaching-why-card-text {
  font-size: 13px !important;
  color: #6b7280 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  padding: 0 16px 18px !important;
}

/* ── Why card animations ── */
.coaching-why-card.pmt-animate {
  opacity: 0;
  transform: translateY(30px);
}
.coaching-why-card.pmt-animate.pmt-visible {
  opacity: 1;
  transform: translateY(0);
}
.coaching-why-card:nth-child(2) { transition-delay: 0.1s; }
.coaching-why-card:nth-child(3) { transition-delay: 0.2s; }

/* ════════════════════════════════
   PROCESS SECTION
════════════════════════════════ */

.coaching-process {
  margin-bottom: 0;
}

/* Process H2 */
.coaching-wrap .coaching-process-title,
.entry-content .coaching-wrap h2.coaching-process-title {
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  color: #253b80 !important;
  margin-bottom: 24px !important;
  margin-top: 0 !important;
  text-align: center !important;
}

.coaching-process-grid {
  gap: 18px !important;
}

.coaching-process-step {
  text-align: center !important;
  padding: 26px 18px !important;
  background: #fff !important;
  border-radius: 10px !important;
  border: 1px solid rgba(37, 59, 128, 0.08) !important;
  transition: transform 0.25s, box-shadow 0.25s;
}

.coaching-process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 59, 128, 0.1);
}

/* Step number circle */
p.coaching-process-number,
.entry-content p.coaching-process-number {
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background: #253b80 !important;
  color: #FF6000 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 14px !important;
}

/* Step title */
.coaching-wrap .coaching-process-step-title,
.entry-content .coaching-wrap h4.coaching-process-step-title {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #253b80 !important;
  margin: 0 0 8px !important;
}

/* Step text */
.coaching-process-step .coaching-process-step-text {
  font-size: 12.5px !important;
  color: #6b7280 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

/* ── Process step animations ── */
.coaching-process-step.pmt-animate {
  opacity: 0;
  transform: translateY(30px);
}
.coaching-process-step.pmt-animate.pmt-visible {
  opacity: 1;
  transform: translateY(0);
}
.coaching-process-step:nth-child(2) { transition-delay: 0.1s; }
.coaching-process-step:nth-child(3) { transition-delay: 0.2s; }
.coaching-process-step:nth-child(4) { transition-delay: 0.3s; }

/* ════════════════════════════════
   CTA SECTION
════════════════════════════════ */

.coaching-cta {
  border-radius: 10px !important;
  padding: 48px 40px !important;
  text-align: center !important;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.coaching-cta.pmt-animate {
  opacity: 0;
  transform: translateY(30px);
}
.coaching-cta.pmt-animate.pmt-visible {
  opacity: 1;
  transform: translateY(0);
}

/* CTA H2 */
.coaching-wrap .coaching-cta-title,
.entry-content .coaching-wrap h2.coaching-cta-title {
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  margin-bottom: 12px !important;
  margin-top: 0 !important;
  line-height: 1.3 !important;
}

/* CTA text */
.coaching-cta .coaching-cta-text {
  font-size: 15px !important;
  color: #f4f6fb !important;
  margin-bottom: 24px !important;
  line-height: 1.7 !important;
}

/* CTA buttons */
.coaching-cta-btn .wp-block-button__link {
  background: #FF6000 !important;
  color: #fff !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  padding: 12px 30px !important;
  text-decoration: none !important;
  border: none !important;
  transition: background 0.25s, transform 0.25s;
}
.coaching-cta-btn .wp-block-button__link:hover {
  background: #e05500 !important;
  transform: translateY(-2px);
}

.coaching-cta-btn-outline .wp-block-button__link {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.5) !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  padding: 12px 30px !important;
  text-decoration: none !important;
  transition: background 0.25s;
}
.coaching-cta-btn-outline .wp-block-button__link:hover {
  background: rgba(255, 255, 255, 0.1) !important;
}

/* ════════════════════════════════
   SCROLL ANIMATION — JS TRIGGER
   Add this JS block at bottom of page
════════════════════════════════ */

/* ════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
════════════════════════════════ */

@media (max-width: 1024px) {
  .coaching-wrap {
    padding: 0 30px;
  }
  .coaching-why {
    padding: 32px 28px !important;
  }
}

/* ════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
════════════════════════════════ */

@media (max-width: 768px) {
  .coaching-wrap {
    padding: 0 16px !important;
  }

  .coaching-hero {
    padding-top: 24px;
  }

  .coaching-grid .wp-block-column,
  .coaching-why-grid .wp-block-column,
  .coaching-process-grid .wp-block-column {
    flex-basis: 100% !important;
    min-width: 100% !important;
  }

  .coaching-grid {
    gap: 16px !important;
  }

  .coaching-why {
    padding: 24px 16px !important;
  }

  .coaching-cta {
    padding: 28px 16px !important;
  }

  .coaching-wrap .coaching-title {
    font-size: 1.6rem !important;
  }

  .coaching-wrap .coaching-why-title,
  .coaching-wrap .coaching-process-title,
  .coaching-wrap .coaching-cta-title {
    font-size: 1.4rem !important;
  }

  .coaching-why-grid {
    gap: 12px !important;
  }

  .coaching-process-grid {
    gap: 12px !important;
  }
}

/* ════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 480px)
════════════════════════════════ */

@media (max-width: 480px) {
  .coaching-wrap .coaching-title {
    font-size: 1.3rem !important;
  }

  .coaching-wrap .coaching-cta-title {
    font-size: 1.2rem !important;
  }

  .coaching-card-img img {
    height: 180px !important;
  }

  .coaching-why-img img {
    height: 130px !important;
  }
}
