/*
 * AirPilot Premium Aviation Academy - Programmes Page Stylesheet
 * Scoped strictly to prevent visual leakage.
 */

.page-programmes-wrapper {
  --aviation-navy: #002147;
  --aviation-blue: #2563eb;
  --aviation-blue-hover: #1d4ed8;
  --aviation-light-blue: #eff6ff;
  --aviation-slate: #475569;
  --aviation-muted: #64748b;
  --aviation-gray: #f8fafc;
  --aviation-border: #f1f5f9;
  --aviation-shadow: 0 4px 20px rgba(0, 33, 71, 0.02);
  --aviation-shadow-lg: 0 20px 40px rgba(0, 33, 71, 0.05);
  --aviation-shadow-featured: 0 25px 60px rgba(0, 33, 71, 0.12);
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  background-color: #ffffff;
  font-family: 'Inter', sans-serif;
  color: var(--aviation-slate);
}

/* === Scoped SVG Global Restrictions & Alignments === */
.page-programmes-wrapper svg {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 0 !important;
  flex-shrink: 0 !important;
  vertical-align: middle !important;
  width: 14px !important;
  height: 14px !important;
}

.page-programmes-wrapper .btn-card-secondary svg,
.page-programmes-wrapper .btn-feat-secondary svg {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px !important;
  min-height: 14px !important;
}

/* Keep structural/decorative badge icons at proper proportions */
.page-programmes-wrapper .programme-card-icon-badge svg {
  width: 18px !important;
  height: 18px !important;
}

.page-programmes-wrapper .programme-featured-icon-badge svg {
  width: 24px !important;
  height: 24px !important;
}

.page-programmes-wrapper .expectation-icon-wrapper svg {
  width: 18px !important;
  height: 18px !important;
}

/* === Layout container === */
.page-programmes-wrapper .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

/* === Typography Helpers === */
.page-programmes-wrapper .programme-tag,
.page-programmes-wrapper .grid-tag,
.page-programmes-wrapper .cta-small-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  color: var(--aviation-blue);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.page-programmes-wrapper h1,
.page-programmes-wrapper h2,
.page-programmes-wrapper h3 {
  font-family: 'Outfit', sans-serif;
  color: var(--aviation-navy);
  margin-top: 0;
}

/* === Section 1: Hero (DEPRECATED - Now standardizing to global .page-hero in hero.css) === */
/*
.page-programmes-wrapper .programme-hero {
  position: relative;
  height: 60vh;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .page-programmes-wrapper .programme-hero {
    height: 75vh;
    min-height: 600px;
  }
}

.page-programmes-wrapper .programme-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: var(--aviation-navy);
}

.page-programmes-wrapper .programme-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.95;
}

.page-programmes-wrapper .programme-hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 33, 71, 0.1);
  z-index: 1;
}

.page-programmes-wrapper .programme-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 33, 71, 0.5) 0%, transparent 50%, rgba(0, 33, 71, 0.6) 100%);
  z-index: 2;
}

.page-programmes-wrapper .programme-hero__content {
  position: relative;
  z-index: 10;
  text-center: center;
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.page-programmes-wrapper .programme-hero__title {
  font-size: 2.25rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  tracking-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

@media (min-width: 768px) {
  .page-programmes-wrapper .programme-hero__title {
    font-size: 3.75rem;
  }
}

.page-programmes-wrapper .programme-hero__desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

@media (min-width: 768px) {
  .page-programmes-wrapper .programme-hero__desc {
    font-size: 1.25rem;
  }
}

.page-programmes-wrapper .programme-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
}

.page-programmes-wrapper .programme-hero__breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.page-programmes-wrapper .programme-hero__breadcrumb a:hover {
  color: #FFD700;
}

.page-programmes-wrapper .programme-hero__sep {
  color: #FFD700;
}

.page-programmes-wrapper .programme-hero__current {
  color: #FFD700;
}

.page-programmes-wrapper .programme-hero__chevron {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 20;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
  line-height: 0;
}

.page-programmes-wrapper .programme-hero__chevron svg {
  width: 100%;
  height: 48px;
}

@media (min-width: 768px) {
  .page-programmes-wrapper .programme-hero__chevron svg {
    height: 120px;
  }
}
*/

/* === Section 2: Overview (Centered) === */
.page-programmes-wrapper .programme-overview-centered {
  padding: 5rem 0;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .page-programmes-wrapper .programme-overview-centered {
    padding: 6rem 0;
  }
}

.page-programmes-wrapper .overview-content-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.page-programmes-wrapper .overview-main-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--aviation-navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .page-programmes-wrapper .overview-main-title {
    font-size: 2.5rem;
  }
}

.page-programmes-wrapper .overview-main-title span.text-\[\#2563eb\] {
  color: var(--aviation-blue);
}

.page-programmes-wrapper .overview-description-text {
  font-size: 17px;
  line-height: 1.8;
  color: #64748b;
  font-weight: 500;
  max-width: 48rem;
  margin: 0 auto;
}

/* === Section 3: Featured Programme Card === */
.page-programmes-wrapper .programme-featured-section {
  padding: 0 0 5rem 0;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .page-programmes-wrapper .programme-featured-section {
    padding: 0 0 6rem 0;
  }
}

.page-programmes-wrapper .programme-featured-card {
  background-color: var(--aviation-navy);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--aviation-shadow-featured);
  position: relative;
}

@media (min-width: 768px) {
  .page-programmes-wrapper .programme-featured-card {
    border-radius: 2.5rem;
  }
}

.page-programmes-wrapper .programme-featured-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .page-programmes-wrapper .programme-featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Image Side */
.page-programmes-wrapper .programme-featured-image-wrapper {
  position: relative;
  height: 280px;
  min-height: 320px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-programmes-wrapper .programme-featured-image-wrapper {
    height: 360px;
  }
}

@media (min-width: 1024px) {
  .page-programmes-wrapper .programme-featured-image-wrapper {
    height: auto;
  }
}

.page-programmes-wrapper .programme-featured-image-wrapper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.page-programmes-wrapper .programme-featured-card:hover .programme-featured-image-wrapper img {
  transform: scale(1.05);
}

.page-programmes-wrapper .programme-featured-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 33, 71, 0) 0%, rgba(0, 33, 71, 0.8) 100%);
  z-index: 1;
}

@media (min-width: 1024px) {
  .page-programmes-wrapper .programme-featured-image-overlay {
    background: linear-gradient(90deg, rgba(0, 33, 71, 0) 0%, rgba(0, 33, 71, 0.8) 100%);
  }
}

.page-programmes-wrapper .programme-featured-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 10;
  background-color: var(--aviation-blue);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-programmes-wrapper .programme-featured-badge span {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
}

/* Content Side */
.page-programmes-wrapper .programme-featured-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .page-programmes-wrapper .programme-featured-content {
    padding: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .page-programmes-wrapper .programme-featured-content {
    padding: 4rem;
  }
}

.page-programmes-wrapper .programme-featured-blur-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 240px;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  transform: translate(50%, -50%);
  filter: blur(80px);
  pointer-events: none;
}

.page-programmes-wrapper .programme-featured-body {
  position: relative;
  z-index: 10;
}

/* Metadata Icon Row */
.page-programmes-wrapper .programme-featured-meta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.page-programmes-wrapper .programme-featured-icon-badge {
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--aviation-blue);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
  flex-shrink: 0;
}

/* Icon baseline centering */
.page-programmes-wrapper .programme-featured-icon-badge svg,
.page-programmes-wrapper .programme-card-icon-badge svg,
.page-programmes-wrapper .expectation-icon-wrapper svg,
.page-programmes-wrapper .career-check-badge svg {
  display: block;
  align-self: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.page-programmes-wrapper .programme-featured-meta-text {
  display: flex;
  flex-direction: column;
}

.page-programmes-wrapper .programme-featured-meta-text .feat-duration {
  font-size: 10px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.125rem;
}

.page-programmes-wrapper .programme-featured-meta-text .feat-level {
  font-size: 10px;
  font-weight: 700;
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.page-programmes-wrapper .programme-featured-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .page-programmes-wrapper .programme-featured-title {
    font-size: 2.25rem;
  }
}

.page-programmes-wrapper .programme-featured-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #cbd5e1;
  font-weight: 500;
  max-width: 32rem;
  margin-bottom: 1.75rem;
}

/* Highlights horizontal checklist */
.page-programmes-wrapper .programme-featured-highlights {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.page-programmes-wrapper .featured-highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
}

.page-programmes-wrapper .featured-highlight-item svg {
  color: var(--aviation-blue) !important;
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
  display: inline-flex;
  vertical-align: middle;
}

/* Featured Action buttons */
.page-programmes-wrapper .programme-featured-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.page-programmes-wrapper .btn-feat-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--aviation-blue);
  color: #ffffff;
  text-decoration: none;
  padding: 0.625rem 1.25rem;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  height: 38px;
  line-height: 1.2;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.08);
  box-sizing: border-box;
}

.page-programmes-wrapper .btn-feat-primary:hover {
  background-color: var(--aviation-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.15);
}

.page-programmes-wrapper .btn-feat-primary svg {
  width: 12px !important;
  height: 12px !important;
  transition: var(--transition-smooth);
}

.page-programmes-wrapper .btn-feat-primary:hover svg {
  transform: translateX(3px);
}

.page-programmes-wrapper .btn-feat-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  text-decoration: none;
  padding: 0.625rem 1.25rem;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  height: 38px;
  line-height: 1.2;
  transition: var(--transition-smooth);
  box-sizing: border-box;
}

.page-programmes-wrapper .btn-feat-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.page-programmes-wrapper .btn-feat-secondary svg {
  width: 14px !important;
  height: 14px !important;
}

/* === Section 4: All Programmes Grid === */
.page-programmes-wrapper .programme-grid-section {
  padding: 5rem 0;
  background-color: var(--aviation-gray);
  border-top: 1px solid var(--aviation-border);
}

@media (min-width: 768px) {
  .page-programmes-wrapper .programme-grid-section {
    padding: 6rem 0;
  }
}

.page-programmes-wrapper .programme-grid-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem auto;
}

.page-programmes-wrapper .grid-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--aviation-navy);
  letter-spacing: -0.02em;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .page-programmes-wrapper .grid-title {
    font-size: 2.25rem;
  }
}

.page-programmes-wrapper .programme-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Card item */
.page-programmes-wrapper .programme-card-item {
  background-color: #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: var(--aviation-shadow);
  border: 1px solid var(--aviation-border);
  transition: var(--transition-smooth);
}

@media (min-width: 768px) {
  .page-programmes-wrapper .programme-card-item {
    border-radius: 2rem;
  }
}

.page-programmes-wrapper .programme-card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--aviation-shadow-lg);
  border-color: rgba(37, 99, 235, 0.15);
}

.page-programmes-wrapper .programme-card-columns {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .page-programmes-wrapper .programme-card-columns {
    grid-template-columns: 280px 1fr;
  }
}

@media (min-width: 1024px) {
  .page-programmes-wrapper .programme-card-columns {
    grid-template-columns: 340px 1fr;
  }
}

/* Image column */
.page-programmes-wrapper .programme-card-image-column {
  position: relative;
  height: 200px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-programmes-wrapper .programme-card-image-column {
    height: 100%;
    min-height: 260px;
  }
}

.page-programmes-wrapper .programme-card-image-column img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.page-programmes-wrapper .programme-card-item:hover .programme-card-image-column img {
  transform: scale(1.05);
}

.page-programmes-wrapper .programme-card-image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 1;
}

/* Icon badge on image */
.page-programmes-wrapper .programme-card-icon-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #0056b3;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: var(--transition-smooth);
}

.page-programmes-wrapper .programme-card-item:hover .programme-card-icon-badge {
  background-color: var(--aviation-blue);
  transform: scale(1.08) rotate(2deg);
}

/* Content column */
.page-programmes-wrapper .programme-card-content-column {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .page-programmes-wrapper .programme-card-content-column {
    padding: 2.5rem;
  }
}

/* Card metadata row */
.page-programmes-wrapper .programme-card-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.page-programmes-wrapper .card-level-badge {
  font-size: 9px;
  font-weight: 900;
  color: var(--aviation-blue);
  background-color: rgba(37, 99, 235, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.page-programmes-wrapper .card-duration-text {
  font-size: 9px;
  font-weight: 700;
  color: var(--aviation-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.page-programmes-wrapper .programme-card-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--aviation-navy);
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  transition: var(--transition-smooth);
}

.page-programmes-wrapper .programme-card-item:hover .programme-card-title {
  color: var(--aviation-blue);
}

.page-programmes-wrapper .programme-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 1.25rem;
  max-width: 48rem;
}

/* Card Highlights Checklist */
.page-programmes-wrapper .programme-card-highlights {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.page-programmes-wrapper .card-highlight-item {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 11px;
  font-weight: 700;
  color: var(--aviation-slate);
  line-height: 1;
}

.page-programmes-wrapper .card-highlight-item svg {
  color: var(--aviation-blue) !important;
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
  display: inline-flex;
  vertical-align: middle;
}

/* Card Buttons Row */
.page-programmes-wrapper .programme-card-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.page-programmes-wrapper .btn-card-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: var(--aviation-blue);
  color: #ffffff;
  text-decoration: none;
  padding: 0.625rem 1.25rem;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  height: 38px;
  line-height: 1.2;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.08);
  box-sizing: border-box;
}

.page-programmes-wrapper .btn-card-primary:hover {
  background-color: var(--aviation-blue-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.15);
}

.page-programmes-wrapper .btn-card-primary svg {
  width: 12px !important;
  height: 12px !important;
  transition: var(--transition-smooth);
}

.page-programmes-wrapper .btn-card-primary:hover svg {
  transform: translateX(3px);
}

.page-programmes-wrapper .btn-card-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  color: var(--aviation-navy);
  text-decoration: none;
  padding: 0.625rem 1.25rem;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 4px;
  height: 38px;
  line-height: 1.2;
  transition: var(--transition-smooth);
  box-sizing: border-box;
}

.page-programmes-wrapper .btn-card-secondary:hover {
  border-color: var(--aviation-blue);
  color: var(--aviation-blue);
  background-color: #ffffff;
}

.page-programmes-wrapper .btn-card-secondary svg {
  width: 14px !important;
  height: 14px !important;
}

.page-programmes-wrapper .btn-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  color: #0056b3;
  text-decoration: none;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: var(--transition-smooth);
  margin-left: 0.5rem;
  height: auto;
  border: none;
  background: none;
  padding: 0;
}

.page-programmes-wrapper .btn-card-link svg {
  width: 12px !important;
  height: 12px !important;
  transition: var(--transition-smooth);
}

.page-programmes-wrapper .btn-card-link:hover {
  color: var(--aviation-blue);
}

.page-programmes-wrapper .btn-card-link:hover svg {
  transform: translateX(3px);
}

/* === Section 5: Why Pathway Section === */
.page-programmes-wrapper .programme-section-two-wrapper {
  padding: 5rem 0;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .page-programmes-wrapper .programme-section-two-wrapper {
    padding: 6rem 0;
  }
}

.page-programmes-wrapper .programme-section-two-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .page-programmes-wrapper .programme-section-two-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
  }
}

.page-programmes-wrapper .section-two-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-programmes-wrapper .section-two-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--aviation-navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .page-programmes-wrapper .section-two-title {
    font-size: 2.5rem;
  }
}

.page-programmes-wrapper .section-two-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--aviation-slate);
  font-weight: 500;
}

/* Offset Image Frame system */
.page-programmes-wrapper .section-two-image-frame {
  position: relative;
  padding-left: 2rem;
  padding-top: 2rem;
  width: 100%;
  max-width: 30rem;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .page-programmes-wrapper .section-two-image-frame {
    max-width: 100%;
    margin: 0;
  }
}

.page-programmes-wrapper .section-two-offset-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 85%;
  background-color: var(--aviation-blue);
  border-radius: 1.5rem;
  opacity: 0.85;
  z-index: 1;
}

.page-programmes-wrapper .section-two-image-wrapper {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  border: 14px solid #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4 / 3;
  transition: var(--transition-smooth);
}

.page-programmes-wrapper .section-two-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.page-programmes-wrapper .section-two-image-frame:hover .section-two-image-wrapper {
  transform: translateY(-6px);
  box-shadow: 0 35px 85px rgba(37, 99, 235, 0.15);
}

.page-programmes-wrapper .section-two-image-frame:hover .section-two-image-wrapper img {
  transform: scale(1.04);
}

/* === Section 6: Expectations Grid === */
.page-programmes-wrapper .programme-expectations-section {
  padding: 5rem 0;
  background-color: var(--aviation-gray);
  border-top: 1px solid var(--aviation-border);
  border-bottom: 1px solid var(--aviation-border);
}

@media (min-width: 768px) {
  .page-programmes-wrapper .programme-expectations-section {
    padding: 6rem 0;
  }
}

.page-programmes-wrapper .expectations-header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3.5rem auto;
}

.page-programmes-wrapper .expectations-subtitle {
  font-size: 15px;
  color: var(--aviation-muted);
  font-weight: 500;
  margin-top: 0.75rem;
}

.page-programmes-wrapper .expectations-grid-container {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .page-programmes-wrapper .expectations-grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-programmes-wrapper .expectations-grid-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Expectation Card */
.page-programmes-wrapper .expectation-card-item {
  background-color: #ffffff;
  border: 1px solid var(--aviation-border);
  border-radius: 1.25rem;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: var(--aviation-shadow);
  transition: var(--transition-smooth);
}

.page-programmes-wrapper .expectation-card-item:hover {
  transform: translateY(-4px);
  border-color: var(--aviation-blue);
  box-shadow: var(--aviation-shadow-lg);
}

.page-programmes-wrapper .expectation-icon-wrapper {
  width: 2.25rem;
  height: 2.25rem;
  background-color: var(--aviation-light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aviation-blue);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.page-programmes-wrapper .expectation-card-item:hover .expectation-icon-wrapper {
  background-color: var(--aviation-blue);
  color: #ffffff;
}

.page-programmes-wrapper .expectation-card-info h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--aviation-navy);
  line-height: 1.4;
  margin-bottom: 0.375rem;
}

.page-programmes-wrapper .expectation-card-info p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--aviation-slate);
  margin: 0;
  font-weight: 500;
}

/* === Section 7: Career Outlook Section === */
.page-programmes-wrapper .programme-career-outlook-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

@media (min-width: 768px) {
  .page-programmes-wrapper .programme-career-outlook-section {
    padding: 6rem 0;
  }
}

.page-programmes-wrapper .programme-career-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .page-programmes-wrapper .programme-career-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
  }
}

/* Left side career image with offset background */
.page-programmes-wrapper .career-image-frame {
  position: relative;
  padding-left: 2rem;
  padding-top: 2rem;
  width: 100%;
  max-width: 30rem;
  margin: 0 auto;
  box-sizing: border-box;
}

@media (min-width: 1024px) {
  .page-programmes-wrapper .career-image-frame {
    max-width: 100%;
    margin: 0;
  }
}

.page-programmes-wrapper .career-offset-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 85%;
  height: 85%;
  background-color: var(--aviation-blue);
  border-radius: 1.5rem;
  opacity: 0.85;
  z-index: 1;
}

.page-programmes-wrapper .career-image-wrapper {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  border: 14px solid #ffffff;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
  aspect-ratio: 4 / 3;
  transition: var(--transition-smooth);
}

.page-programmes-wrapper .career-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.page-programmes-wrapper .career-image-frame:hover .career-image-wrapper {
  transform: translateY(-6px);
  box-shadow: 0 35px 85px rgba(37, 99, 235, 0.15);
}

.page-programmes-wrapper .career-image-frame:hover .career-image-wrapper img {
  transform: scale(1.04);
}

/* Right side content */
.page-programmes-wrapper .career-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-programmes-wrapper .career-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--aviation-navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .page-programmes-wrapper .career-title {
    font-size: 2.5rem;
  }
}

.page-programmes-wrapper .career-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--aviation-slate);
  font-weight: 500;
  margin-bottom: 2rem;
}

/* Checklist items list */
.page-programmes-wrapper .career-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.page-programmes-wrapper .career-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.page-programmes-wrapper .career-check-badge {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--aviation-light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--aviation-blue);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.page-programmes-wrapper .career-highlight-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--aviation-navy);
  line-height: 1.5;
}

/* === Section 8: Center Callout CTA Section === */
.page-programmes-wrapper .programme-cta-section-box {
  padding: 6rem 0;
  background-color: #ffffff;
}

.page-programmes-wrapper .programme-cta-centered-card {
  background-color: var(--aviation-navy);
  border-radius: 2rem;
  padding: 3rem 2rem;
  text-align: center;
  max-width: 56rem;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .page-programmes-wrapper .programme-cta-centered-card {
    padding: 5rem 6rem;
  }
}

.page-programmes-wrapper .cta-glow-circle {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background-color: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  transform: translate(30%, -50%);
  filter: blur(80px);
  pointer-events: none;
}

.page-programmes-wrapper .cta-content-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.page-programmes-wrapper .cta-main-title {
  font-size: 1.75rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}

@media (min-width: 768px) {
  .page-programmes-wrapper .cta-main-title {
    font-size: 2.5rem;
  }
}

.page-programmes-wrapper .cta-main-title span.text-\[\#2563eb\] {
  color: var(--aviation-blue);
}

.page-programmes-wrapper .cta-desc-text {
  font-size: 15px;
  line-height: 1.7;
  color: #94a3b8;
  font-weight: 500;
  max-width: 36rem;
  margin: 0;
}

/* CTA buttons row */
.page-programmes-wrapper .cta-buttons-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 640px) {
  .page-programmes-wrapper .cta-buttons-row {
    flex-direction: row;
    width: auto;
  }
}

.page-programmes-wrapper .btn-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background-color: var(--aviation-blue);
  color: #ffffff;
  text-decoration: none;
  padding: 1.125rem 2.25rem;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.15);
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .page-programmes-wrapper .btn-cta-primary {
    width: auto;
  }
}

.page-programmes-wrapper .btn-cta-primary:hover {
  background-color: var(--aviation-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.page-programmes-wrapper .btn-cta-primary svg {
  transition: var(--transition-smooth);
}

.page-programmes-wrapper .btn-cta-primary:hover svg {
  transform: translateX(4px);
}

.page-programmes-wrapper .btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  text-decoration: none;
  padding: 1.125rem 2.25rem;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: var(--transition-smooth);
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .page-programmes-wrapper .btn-cta-secondary {
    width: auto;
  }
}

.page-programmes-wrapper .btn-cta-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* === Standardized Page Hero Specificity Fixes for page-programmes === */
.page-programmes-wrapper .page-hero h1.page-hero__title {
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif !important;
  font-size: 2.25rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.02em !important;
  line-height: 1.1 !important;
  margin-bottom: 1rem !important;
  text-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
}

@media (min-width: 768px) {
  .page-programmes-wrapper .page-hero h1.page-hero__title {
    font-size: 3.75rem !important;
  }
}

.page-programmes-wrapper .page-hero p.page-hero__desc {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  font-style: italic !important;
  margin-bottom: 2rem !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15) !important;
}

@media (min-width: 768px) {
  .page-programmes-wrapper .page-hero p.page-hero__desc {
    font-size: 1.25rem !important;
  }
}

.page-programmes-wrapper .page-hero .page-hero__breadcrumb {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.75rem !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  color: #ffffff !important;
}

.page-programmes-wrapper .page-hero .page-hero__breadcrumb a {
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.page-programmes-wrapper .page-hero .page-hero__breadcrumb a:hover {
  color: #FFD700 !important;
}

.page-programmes-wrapper .page-hero .page-hero__sep,
.page-programmes-wrapper .page-hero .page-hero__current {
  color: #FFD700 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
}

.page-programmes-wrapper .page-hero .page-hero__chevron svg {
  display: block !important;
  width: 100% !important;
  height: 3rem !important;
}

@media (min-width: 768px) {
  .page-programmes-wrapper .page-hero .page-hero__chevron svg {
    height: 7.5rem !important;
  }
}


