/* ============================================================
   ADDITIONS.CSS — Offline Programs + Job Alerts sections
   Dr. Jaspal Singh — jaspalsingh.in
   ============================================================ */

/* ── New brand tokens ── */
:root {
  --orange:       #FF6B35;
  --green:        #16A34A;
  --grad-orange:  linear-gradient(135deg, #FF6B35 0%, #F0345A 100%);
  --grad-green:   linear-gradient(135deg, #16A34A 0%, #22C55E 100%);
}

/* ── Button additions ── */
.btn-orange {
  background: var(--grad-orange);
  color: var(--white);
  box-shadow: 0 4px 22px rgba(255,107,53,.35);
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(255,107,53,.45);
  color: var(--white);
}

.btn-green {
  background: var(--grad-green);
  color: var(--white);
  box-shadow: 0 4px 22px rgba(22,163,74,.3);
}
.btn-green:hover {
  transform: translateY(-2px);
  color: var(--white);
}

/* ── Nav additions ── */
.nav-link.nav-programs {
  color: var(--orange);
  white-space: nowrap;
}
.nav-link.nav-programs:hover { color: var(--orange); opacity: .8; }
.nav-link.nav-programs i { display: none; }

.nav-link.nav-alerts {
  color: var(--green);
  white-space: nowrap;
}
.nav-link.nav-alerts:hover { color: var(--green); opacity: .8; }
.nav-link.nav-alerts i { display: none; }

.drawer-link.nav-programs { color: var(--orange); }
.drawer-link.nav-programs:hover { color: var(--orange); background: rgba(255,107,53,.07); }
.drawer-link.nav-alerts   { color: var(--green); }
.drawer-link.nav-alerts:hover { color: var(--green); background: rgba(22,163,74,.07); }

/* ── Section eyebrow tag ── */
.sec-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.sec-eyebrow.orange {
  color: var(--orange);
  background: rgba(255,107,53,.08);
  border: 1px solid rgba(255,107,53,.18);
}
.sec-eyebrow.green {
  color: var(--green);
  background: rgba(22,163,74,.08);
  border: 1px solid rgba(22,163,74,.18);
}

/* ============================================================
   OFFLINE PROGRAMS SECTION
   ============================================================ */

.offline-progs-section { background: var(--white); }

/* Section header row with nav arrows */
.progs-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
.progs-section-header .section-title { margin-bottom: 6px; }
.progs-section-header .section-sub { margin-bottom: 0; }

.progs-nav-arrows {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  padding-bottom: 4px;
}

.progs-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(26,26,46,0.15);
  background: var(--white);
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}
.progs-arrow:hover {
  border-color: var(--magenta);
  background: var(--magenta);
  color: #fff;
}

/* Carousel wrapper — hides overflow */
.progs-carousel-wrap {
  position: relative;
  overflow: hidden;
}

/* Horizontal scroll track */
.progs-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  /* hide scrollbar */
  scrollbar-width: none;
}
.progs-carousel::-webkit-scrollbar { display: none; }

.op-card {
  background: var(--white);
  border: 1.5px solid rgba(26,26,46,.07);
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(26,26,46,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  flex: 0 0 280px;
  scroll-snap-align: start;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}
.op-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(26,26,46,0.14);
  border-color: rgba(200,18,64,0.22);
}

/* ── Card content area ── */
.op-card-content {
  padding: 18px 20px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Program type label — coloured eyebrow */
.op-type-label {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--magenta);
  margin-bottom: 6px;
}

.op-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1.28;
  margin: 0 0 14px;
}

/* ── Feature list with icons ── */
.op-features {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.op-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: var(--body-color);
  line-height: 1.4;
  font-weight: 500;
}
.op-features li .op-fi {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}
/* Icon background colours — one accent per card (set inline) */
.op-fi-blue   { background: rgba(2,132,199,.12);   color: #0284C7; }
.op-fi-teal   { background: rgba(13,148,136,.12);  color: #0D9488; }
.op-fi-purple { background: rgba(109,40,217,.12);  color: #6D28D9; }
.op-fi-orange { background: rgba(194,65,12,.12);   color: #C2410C; }
.op-fi-green  { background: rgba(21,128,61,.12);   color: #15803D; }

/* ── Divider before price ── */
.op-price-divider {
  height: 1px;
  background: rgba(26,26,46,.07);
  margin: 0 0 14px;
}

/* ── Price block ── */
.op-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0;
}
.op-price-offer {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
}
.op-price-mrp {
  font-size: 13px;
  color: var(--body-color);
  text-decoration: line-through;
  opacity: .65;
}
.op-price-save {
  margin-left: auto;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  background: rgba(22,163,74,.10);
  color: #15803D;
  border: 1px solid rgba(22,163,74,.20);
  letter-spacing: .4px;
  text-transform: uppercase;
}

/* ── Full-width CTA ── */
.op-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 14px 16px 16px;
  padding: 13px 20px;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  background: var(--gradient);
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(200,18,64,.26);
  letter-spacing: .2px;
}
.op-card-cta:hover {
  opacity: .92;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(200,18,64,.38);
}

/* Legacy classes — hidden */
.op-card-top { display: none; }
.op-badges   { display: none; }
.op-badge    { display: none; }
.op-card-body { padding: 0; }
.op-meta     { display: none; }
.op-card-footer { display: none; }
.op-btn      { display: none; }
.op-chips    { display: none; }
.op-chip     { display: none; }
.op-desc     { display: none; }

/* Legacy enroll btn kept for programs page */
.op-enroll-btn {
  display: block;
  background: var(--grad-orange);
  color: var(--white);
  text-align: center;
  padding: 17px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.op-enroll-btn:hover { opacity: .9; color: var(--white); }

/* ============================================================
   PROGRAM CARD VISUAL THUMBNAILS
   Rich gradient header that replaces the small icon-only top row.
   Each card gets a unique gradient + dot-grid texture + meta pills.
   ============================================================ */

@keyframes seat-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

/* Thumbnail container */
.op-thumb {
  height: 196px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

/* Real image inside thumb */
.op-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay — always on top of image */
.op-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0.5) 100%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
}

.op-thumb-exam-tag {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #fff;
  background: rgba(0,0,0,0.3);
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  align-self: flex-start;
}

.op-thumb-type-tag {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  align-self: flex-start;
}

.op-thumb-status {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 3;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}
.status-soon { background: rgba(251,191,36,0.9); color: #78350F; }
.status-live { background: rgba(34,197,94,0.9);  color: #14532D; }
.status-hot  { background: rgba(239,68,68,0.9);  color: #fff; animation: seat-pulse 1.2s ease infinite; }
.status-open { background: rgba(14,165,233,0.9); color: #fff; }

/* Dot-grid texture overlay */
.op-thumb::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.13) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}

/* Bottom vignette for depth */
.op-thumb::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.18));
  pointer-events: none;
  z-index: 1;
}

/* Exam target pill — top-left corner */
.op-thumb-exam {
  position: absolute;
  top: 13px;
  left: 13px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: rgba(255,255,255,.92);
  background: rgba(0,0,0,.22);
  padding: 4px 11px;
  border-radius: 20px;
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: calc(100% - 26px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Large centred icon */
.op-thumb-icon {
  font-size: 48px;
  color: rgba(255,255,255,.93);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.28));
  margin-bottom: 8px;
}

/* Descriptor label below icon */
.op-thumb-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.62);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 2;
}

/* Seats status pill — bottom-right corner */
.op-thumb-seats {
  position: absolute;
  bottom: 13px;
  right: 13px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  background: rgba(0,0,0,.22);
  padding: 4px 11px;
  border-radius: 20px;
  z-index: 2;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* Coloured status dot inside the seats pill */
.op-seat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.op-seat-dot.seat-ok   { background: #4ADE80; }
.op-seat-dot.seat-warn { background: #FCA5A5; animation: seat-pulse 1.2s ease infinite; }
.op-seat-dot.seat-open { background: #67C8E8; }
.op-seat-dot.seat-soon { background: #FCD34D; }

/* Thin seat-fill bar immediately below the thumbnail */
.op-seats-bar {
  height: 3px;
  background: rgba(26,26,46,.07);
  overflow: hidden;
  flex-shrink: 0;
}
.op-seats-fill {
  height: 100%;
  border-radius: 0 2px 2px 0;
  transition: width .8s cubic-bezier(.4,0,.2,1);
}
.fill-orange { background: linear-gradient(90deg, #FF6B35, #f4a66a); }
.fill-red    { background: linear-gradient(90deg, #DC2626, #f87171); }
.fill-green  { background: linear-gradient(90deg, #16A34A, #4ADE80); }
.fill-blue   { background: linear-gradient(90deg, #0284C7, #38BDF8); }

/* Per-program thumbnail gradients */
.op-thumb-gate  { background: linear-gradient(145deg, #064E3B 0%, #065F46 50%, #16A34A 100%); }
.op-thumb-sscje { background: linear-gradient(145deg, #FF6B35 0%, #C81240 100%); }
.op-thumb-ae    { background: linear-gradient(145deg, #5B21B6 0%, #7B1FA2 50%, #C81240 100%); }
.op-thumb-rajae { background: linear-gradient(145deg, #7B1FA2 0%, #C81240 100%); }
.op-thumb-tests { background: linear-gradient(145deg, #0F2027 0%, #0284C7 100%); }
.op-thumb-gd    { background: linear-gradient(145deg, #065F46 0%, #16A34A 100%); }

/* ============================================================
   PROGRAM PAGE VISUAL BANNERS (programs/index.html)
   Full-width gradient strip spanning both grid columns.
   ============================================================ */

.prog-banner {
  grid-column: 1 / -1;
  height: 116px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 36px;
  gap: 24px;
  overflow: hidden;
}

/* Dot-grid texture */
.prog-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.11) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* Right-edge vignette */
.prog-banner::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 160px;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(0,0,0,.12));
  pointer-events: none;
}

.prog-banner-icon {
  font-size: 46px;
  color: rgba(255,255,255,.88);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 3px 12px rgba(0,0,0,.25));
  flex-shrink: 0;
}

.prog-banner-body {
  flex: 1;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.prog-banner-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 9px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.prog-banner-pills {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.prog-banner-pill {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .8px;
  color: rgba(255,255,255,.88);
  background: rgba(0,0,0,.2);
  padding: 3px 10px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.prog-banner-right {
  text-align: right;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.prog-banner-date {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  display: block;
  margin-bottom: 4px;
}

.prog-banner-seats-txt {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  display: block;
}
.prog-banner-seats-txt.urgent-seats { color: #FCA5A5; }

/* Per-program banner gradients */
.prog-banner-sscje { background: linear-gradient(135deg, #FF6B35 0%, #C81240 100%); }
.prog-banner-rajae { background: linear-gradient(135deg, #7B1FA2 0%, #C81240 100%); }
.prog-banner-tests { background: linear-gradient(135deg, #0F2027 0%, #0284C7 100%); }
.prog-banner-gd    { background: linear-gradient(135deg, #065F46 0%, #16A34A 100%); }

/* ============================================================
   JOB ALERTS SECTION
   ============================================================ */

.job-alerts-section { background: var(--light-grey); }

.ja-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ja-filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.ja-filter-btn {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(26,26,46,.15);
  background: var(--white);
  color: var(--body-color);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ja-filter-btn:hover { border-color: var(--charcoal); color: var(--charcoal); }
.ja-filter-btn.active                { background: var(--charcoal); color: var(--white); border-color: var(--charcoal); }
.ja-filter-btn.active.f-ssc         { background: #1565C0; border-color: #1565C0; }
.ja-filter-btn.active.f-raj-ae      { background: #7B1FA2; border-color: #7B1FA2; }
.ja-filter-btn.active.f-raj-je      { background: #E65100; border-color: #E65100; }
.ja-filter-btn.active.f-ese         { background: #B71C1C; border-color: #B71C1C; }
.ja-filter-btn.active.f-gate        { background: #1B5E20; border-color: #1B5E20; }
.ja-filter-btn.active .ja-dot       { filter: brightness(10); }

.ja-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.ja-card {
  background: var(--white);
  border: 1.5px solid rgba(26,26,46,.07);
  border-radius: var(--radius-sm);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ja-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.ja-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.ja-exam-badge {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: .6px;
  color: #fff;
}
.jab-ssc    { background: #1565C0; }
.jab-raj-ae { background: #7B1FA2; }
.jab-raj-je { background: #E65100; }
.jab-ese    { background: #B71C1C; }
.jab-gate   { background: #1B5E20; }

.ja-status {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  letter-spacing: .5px;
}
.ja-new      { background: #FEF08A; color: #713F12; }
.ja-active   { background: #BBF7D0; color: #14532D; }
.ja-upcoming { background: #BAE6FD; color: #0C4A6E; }

.ja-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.4;
}

.ja-dates { display: flex; flex-wrap: wrap; gap: 6px; }

.ja-date-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--body-color);
  background: var(--light-grey);
  padding: 4px 10px;
  border-radius: 6px;
}
.ja-date-chip i { color: var(--magenta); }
.ja-date-chip.urgent { color: #DC2626; font-weight: 700; background: rgba(220,38,38,.06); }
.ja-date-chip.urgent i { color: #DC2626; }

.ja-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px solid rgba(26,26,46,.06);
}

.ja-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1.5px solid;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}
.ja-btn-pdf      { color: #B71C1C; border-color: rgba(183,28,28,.2); }
.ja-btn-pdf:hover { background: #B71C1C; color: #fff; }
.ja-btn-apply    { color: var(--green);   border-color: rgba(22,163,74,.2); }
.ja-btn-apply:hover  { background: var(--green);   color: #fff; }
.ja-btn-strategy { color: var(--magenta); border-color: rgba(240,52,90,.2); }
.ja-btn-strategy:hover { background: var(--magenta); color: #fff; }
.ja-btn-enroll   { color: var(--orange);  border-color: rgba(255,107,53,.2); }
.ja-btn-enroll:hover { background: var(--orange);  color: #fff; }

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */

@media (max-width: 768px) {
  .progs-grid { grid-template-columns: 1fr; gap: 20px; }
  .ja-grid    { grid-template-columns: 1fr; }

  /* Banner: hide right-side meta on tablet */
  .prog-banner { height: 100px; padding: 0 24px; gap: 18px; }
  .prog-banner-icon { font-size: 36px; }
  .prog-banner-title { font-size: 17px; }
  .prog-banner-right { display: none; }
}

@media (max-width: 600px) {
  .op-meta { grid-template-columns: 1fr; }
  .ja-filter-bar { gap: 6px; }
  .ja-filter-btn { font-size: 11px; padding: 5px 12px; }

  /* Thumbnail: tighter on small phones */
  .op-thumb { height: 160px; }
  .op-thumb-icon { font-size: 40px; }
  .op-thumb-exam { font-size: 9px; padding: 3px 9px; }
  .op-thumb-seats { font-size: 9px; padding: 3px 9px; }

  /* Banner: tighter on small phones */
  .prog-banner { height: 90px; padding: 0 18px; gap: 14px; }
  .prog-banner-icon { font-size: 30px; }
  .prog-banner-title { font-size: 15px; }
  .prog-banner-pills { display: none; }
}

/* ============================================================
   PROGRAM DETAIL PAGES - shared components
   ============================================================ */

/* Highlights strip */
.prog-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: var(--white);
  border: 1.5px solid rgba(26,26,46,.08);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 28px 0 0;
}
.ph-item {
  flex: 1;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 18px 12px;
  border-right: 1px solid rgba(26,26,46,.07);
  text-align: center;
}
.ph-item:last-child { border-right: none; }
.ph-item i { font-size: 18px; margin-bottom: 4px; }
.ph-num {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
}
.ph-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--body-color);
  text-transform: uppercase;
  letter-spacing: .6px;
}

/* Pricing block inside enroll card */
.price-block {
  background: linear-gradient(135deg, rgba(200,18,64,.05) 0%, rgba(200,18,64,.02) 100%);
  border: 1.5px solid rgba(200,18,64,.15);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 16px;
}
.price-mrp {
  font-size: 12px;
  color: var(--body-color);
  margin-bottom: 4px;
}
.price-mrp span {
  text-decoration: line-through;
  color: rgba(74,74,104,.5);
  font-weight: 600;
}
.price-offer {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 6px;
}
.price-gst {
  font-size: 12px;
  font-weight: 500;
  color: var(--body-color);
  margin-left: 4px;
}
.price-save {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  background: rgba(22,163,74,.10);
  border-radius: 20px;
  padding: 3px 10px;
}

/* Instructor section */
.instructor-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px;
  background: var(--light-grey);
  border: 1.5px solid rgba(26,26,46,.07);
  border-radius: var(--radius-sm);
}
.instructor-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: 0 2px 12px rgba(26,26,46,.12);
}
.instructor-avatar-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  font-weight: 800;
  font-family: var(--font-heading);
}
.instructor-info { flex: 1; }
.instructor-name {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 4px;
}
.instructor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.inst-tag {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--white);
  border: 1.5px solid rgba(26,26,46,.10);
  color: var(--heading-color);
}
.instructor-bio {
  font-size: 13.5px;
  color: var(--body-color);
  line-height: 1.7;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1.5px solid rgba(26,26,46,.08);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
}
.faq-item summary {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--heading-color);
  padding: 16px 18px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 13px;
  color: var(--body-color);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item[open] summary { border-bottom: 1px solid rgba(26,26,46,.07); }
.faq-body {
  font-size: 13.5px;
  color: var(--body-color);
  line-height: 1.75;
  padding: 14px 18px;
}

/* Responsive for new components */
@media (max-width: 600px) {
  .prog-highlights { gap: 0; }
  .ph-item { min-width: 80px; padding: 14px 8px; }
  .ph-num { font-size: 18px; }
  .instructor-card { flex-direction: column; align-items: center; text-align: center; }
  .instructor-tags { justify-content: center; }
}

/* ============================================================
   RECOGNITION & MEDIA SECTION
   ============================================================ */
.recognition-section { background: var(--white); }

/* Award photo grid - tall cards, full photo visible */
.recog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.recog-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid rgba(26,26,46,.07);
  background: #f8f8fb;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.recog-card-img {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #f0f0f5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.recog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform .35s ease;
}
.recog-card:hover .recog-card-img img { transform: scale(1.04); }
.recog-caption {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--heading-color);
  text-align: center;
  padding: 12px 14px 14px;
  border-top: 1px solid rgba(26,26,46,.06);
}

/* Media / press row */
.media-strip {
  border-top: 1.5px solid rgba(26,26,46,.07);
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.media-strip-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(74,74,104,.40);
}
.media-strip-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}
.media-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid rgba(26,26,46,.07);
  background: #f8f8fb;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  transition: transform .3s;
}
.media-item:hover img { transform: scale(1.03); }

@media (max-width: 900px) {
  .recog-grid { grid-template-columns: repeat(2, 1fr); }
  .media-strip-items { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .recog-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .media-strip-items { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
