/* ============================================================
   PROGRAMS.CSS — Extra styles for programs.html ONLY
   Save this file as: css/programs.css
   Load AFTER style.css on the programs page.
   ============================================================ */

/* ---------- PAGE HERO ---------- */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  padding: 120px 28px 60px;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(255,92,0,0.10) 0%, transparent 55%),
    linear-gradient(160deg, #0a0a0a 0%, #111111 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,92,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,92,0,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.78rem; color: var(--text-muted);
  letter-spacing: 1px; text-transform: uppercase;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--orange); font-weight: 700; }
.breadcrumb span { color: var(--text-dim); }

/* ---------- SCHEDULE TABLE ---------- */
.schedule-wrapper { overflow-x: auto; }
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.schedule-table thead tr {
  background: var(--orange);
}
.schedule-table th {
  padding: 14px 18px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.78rem;
  text-align: left;
}
.schedule-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--steel);
  color: var(--text-muted);
  background: var(--surface);
}
.schedule-table tr:nth-child(even) td { background: var(--surface2); }
.schedule-table tr:hover td { background: rgba(255,92,0,0.05); color: var(--text); }
.schedule-table .class-name { color: var(--text); font-weight: 700; }
.sch-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.sch-orange { background: rgba(255,92,0,0.15); color: var(--orange); border: 1px solid rgba(255,92,0,0.3); }
.sch-gray   { background: var(--steel); color: var(--text-muted); }
.sch-green  { background: rgba(46,204,113,0.1); color: #4caf78; border: 1px solid rgba(46,204,113,0.25); }

/* ---------- TRAINER CARDS ---------- */
.trainers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.trainer-card {
  background: var(--surface);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.trainer-card:hover { border-color: var(--orange); transform: translateY(-6px); }
/* Trainer visual panel */
.trainer-visual {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  background: linear-gradient(135deg, var(--surface2), var(--steel));
  position: relative;
  overflow: hidden;
}
.trainer-visual::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--surface), transparent);
}
.trainer-body { padding: 24px; }
.trainer-body h3 { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 1px; color: var(--text); margin-bottom: 4px; }
.trainer-role { color: var(--orange); font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px; }
.trainer-body p { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 14px; }
.trainer-specialties { display: flex; flex-wrap: wrap; gap: 6px; }
.trainer-specialties span {
  background: var(--steel);
  color: var(--text-muted);
  font-size: 0.7rem;
  padding: 3px 10px;
  border-radius: 3px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.trainer-exp {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 700;
}

/* ---------- FAQ ACCORDION ---------- */
.faq-list { display: flex; flex-direction: column; gap: 4px; max-width: 760px; margin: 0 auto; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--steel);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--orange); }
.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--orange); }
.faq-item.open .faq-question { color: var(--orange); }
.faq-icon {
  color: var(--orange);
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: var(--transition);
  font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 20px; }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: var(--orange);
  padding: 72px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-banner-content { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  letter-spacing: 3px;
  color: #fff;
  margin-bottom: 14px;
}
.cta-banner p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 32px; }
.cta-banner .cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-dark {
  background: rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}
.btn-dark:hover { background: rgba(0,0,0,0.5); border-color: #fff; transform: translateY(-2px); }
.btn-white-solid {
  background: #fff;
  color: var(--orange);
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
}
.btn-white-solid:hover { background: #f0f0f0; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .trainers-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .trainers-grid { grid-template-columns: 1fr; }
}
