/* ════════════════════════════════════════════════════════
   training-v2.css  —  ITR Training & Coaching page
   Amber/Gold accent (#10B981 / #34D399)
   tr- prefix for new rules
════════════════════════════════════════════════════════ */

body.tr-page { background: #040d1a !important; }

/* ── Hero ── */
.tr-hero { background: #040d1a; }

.tr-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.28);
  backdrop-filter: blur(12px);
  color: #34D399;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .6px; text-transform: uppercase;
  padding: 8px 20px; border-radius: 100px; margin-bottom: 28px;
}
.tr-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #10B981; box-shadow: 0 0 9px #10B981;
  animation: live-pulse 1.8s ease-in-out infinite;
}

.tr-hero-h1 .grad-blue-green {
  background: linear-gradient(135deg, #1A56DB 0%, #10B981 50%, #34D399 70%, #10B981 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
  display: inline-block;
}

/* ── Price callout ── */
.tr-price-callout {
  display: inline-flex; align-items: baseline; gap: 8px;
  margin-bottom: 28px;
}
.tr-price-val {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #34D399;
  letter-spacing: -2px;
  line-height: 1;
  text-shadow: 0 0 32px rgba(52,211,153,.3);
}
.tr-price-unit {
  font-size: 15px;
  color: rgba(255,255,255,.36);
  font-weight: 500;
}

/* ── Features section ── */
.tr-features-section {
  background: #060f22;
  padding: 80px 28px;
  position: relative; overflow: hidden;
}
.tr-features-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 55% at 50% 50%, rgba(16,185,129,.04), transparent 70%);
  pointer-events: none;
}

.tr-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1040px; margin: 0 auto;
  position: relative; z-index: 1;
}

.tr-feature-card {
  background: #0B2545 !important;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px; padding: 28px 22px;
  position: relative; overflow: hidden;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
}
.tr-feature-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #059669, #10B981, #34D399);
  border-radius: 20px 20px 0 0;
}
.tr-feature-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.38); }

.tr-feature-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.22);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.tr-feature-title {
  font-size: 15.5px; font-weight: 800; color: #fff; margin: 0 0 8px;
}
.tr-feature-body {
  font-size: 13px; color: rgba(255,255,255,.42); line-height: 1.7; margin: 0;
}

/* ── Topics section ── */
.tr-topics-section {
  background: #040d1a;
  padding: 80px 28px;
}

.tr-topics-card {
  background: #0B2545 !important;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 22px;
  padding: 36px 32px;
  max-width: 900px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.tr-topics-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #059669, #10B981, #34D399);
  border-radius: 22px 22px 0 0;
}

.tr-topics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.tr-topic-item {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  font-size: 13.5px; color: rgba(255,255,255,.7);
}
.tr-topic-item:nth-last-child(-n+2) { border-bottom: none; }
.tr-topic-check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  background: rgba(16,185,129,.14);
  border: 1px solid rgba(16,185,129,.28);
  display: flex; align-items: center; justify-content: center;
}

/* ── Testimonial ── */
.tr-testimonial {
  background: #060f22;
  padding: 70px 28px;
}
.tr-testimonial-inner {
  max-width: 800px; margin: 0 auto;
  background: #0B2545 !important;
  border: 1px solid rgba(16,185,129,.16);
  border-radius: 22px; padding: 40px 36px;
  display: flex; gap: 28px; align-items: flex-start;
  position: relative; overflow: hidden;
}
.tr-testimonial-inner::before {
  content: '"';
  position: absolute; top: -10px; left: 24px;
  font-size: 120px; font-weight: 900;
  color: rgba(16,185,129,.06);
  line-height: 1; pointer-events: none;
}
.tr-quote-icon {
  width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
  background: rgba(16,185,129,.12);
  border: 1px solid rgba(16,185,129,.22);
  display: flex; align-items: center; justify-content: center;
}
.tr-quote-text {
  font-size: 16px; color: rgba(255,255,255,.78);
  font-style: italic; line-height: 1.8; margin: 0 0 12px;
}
.tr-quote-author {
  font-size: 13px; font-weight: 700; color: #34D399;
}

/* ── Registration form section ── */
.tr-form-section {
  background: #040d1a;
  padding: 80px 28px 100px;
}
.tr-form-card {
  background: #0B2545 !important;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 24px; padding: 40px 36px;
  max-width: 720px; margin: 0 auto;
  position: relative; overflow: hidden;
}
.tr-form-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #059669, #10B981, #34D399);
  border-radius: 24px 24px 0 0;
}
.tr-form-title {
  font-size: 22px; font-weight: 800; color: #fff; margin: 0 0 6px;
}
.tr-form-sub {
  font-size: 13.5px; color: rgba(255,255,255,.38); margin: 0 0 28px; line-height: 1.6;
}

/* ── WA enroll button ── */
.tr-wa-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; margin-top: 20px;
  background: linear-gradient(135deg, #16a34a, #15803d);
  border: none; border-radius: 14px;
  color: #fff; font-size: 16px; font-weight: 800;
  padding: 16px 28px; cursor: pointer;
  box-shadow: 0 4px 24px rgba(22,163,74,.3);
  transition: transform .18s, box-shadow .18s;
  font-family: 'Inter', sans-serif;
}
.tr-wa-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(22,163,74,.42); }

.tr-enroll-status { margin-top: 14px; padding: 12px 16px; border-radius: 10px; font-size: 13.5px; display: none; }
.tr-enroll-status.success { background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.25); color: #34d399; }

/* ── Section header overrides ── */
.tr-dark-hd.ref-section-hd .ref-section-title { color: #fff; }
.tr-dark-hd.ref-section-hd .ref-section-sub   { color: rgba(255,255,255,.46); }
.tr-dark-hd.ref-section-hd .ref-label-pill {
  background: rgba(16,185,129,.1);
  border: 1px solid rgba(16,185,129,.2);
  color: #34D399;
}

/* ── Input overrides ── */
body.tr-page input, body.tr-page select, body.tr-page textarea {
  background: rgba(11,37,69,.5) !important;
  border: 1px solid rgba(16,185,129,.3) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 12px 14px !important;
}
body.tr-page input::placeholder,
body.tr-page textarea::placeholder { color: rgba(255,255,255,.5) !important; }
body.tr-page input:focus, body.tr-page textarea:focus {
  border-color: #10B981 !important;
  box-shadow: 0 0 0 3px rgba(16,185,129,.2) !important;
  background: rgba(11,37,69,.8) !important;
  outline: none !important;
}
body.tr-page label { color: rgba(255,255,255,.7) !important; font-size: 12.5px; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .tr-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  /* Hero badge breathing room — override inline style with !important */
  .tr-hero {
    padding: 80px 16px 52px !important;
  }
  .tr-features-section { padding: 60px 16px; }
  .tr-topics-section { padding: 60px 16px; }
  .tr-form-section { padding: 60px 16px 80px; }
  .tr-features-grid { grid-template-columns: 1fr; }
  .tr-topics-grid { grid-template-columns: 1fr; }
  .tr-topics-card { padding: 26px 18px; }
  .tr-form-card { padding: 28px 18px; }
  .tr-testimonial-inner { flex-direction: column; padding: 28px 20px; }
}


/* ── Nuke generic form styling from style.css ── */
body.tr-page form {
  background: transparent !important;
  backdrop-filter: none !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  animation: none !important;
}
body.tr-page form::before,
body.tr-page form::after {
  display: none !important;
}

