/* FlyX Aviation Academy - Master Global Stylesheet */
/* Principal Frontend Architecture & Premium UI Design System */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Theme Colors */
  --color-brand-dark: #042242;
  --color-brand-darker: #021428;
  --color-brand-blue: #308BEE;
  --color-brand-light-blue: #38a3ff;
  --color-brand-gold: #C19B44;
  --color-brand-light-gold: #E8C372;
  --color-white: #ffffff;
  --color-text-muted: #94a3b8;

  /* Typography Scale */
  --font-sans: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Inter', Roboto, Helvetica, Arial, sans-serif;
  --font-headings: 'Segoe UI', -apple-system, sans-serif;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: var(--color-brand-darker);
  color: var(--color-white);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

/* Base Layout Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Enterprise Section Padding rules */
.section-premium {
  padding: 8rem 0;
}

/* Header Navigation (Full White) */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 100;
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid rgba(4, 34, 66, 0.08);
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
}

.logo span {
  color: var(--color-brand-gold);
  transition: var(--transition-smooth);
}

.logo:hover {
  text-shadow: 0 0 10px rgba(48, 139, 238, 0.4);
}

.logo:hover span {
  text-shadow: 0 0 10px rgba(193, 155, 68, 0.6);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-brand-dark);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  transition: var(--transition-smooth);
  z-index: 110;
}

.menu-toggle i {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  background: rgba(4, 34, 66, 0.05);
  color: var(--color-brand-blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-brand-dark);
  opacity: 0.85;
  letter-spacing: 0.03em;
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
  color: var(--color-brand-blue);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-brand-light-blue);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* =========================================================
   LMS / Student Portal Nav Button
   TODO for developers: Replace the href="#" below with the
   actual LMS platform URL once it is available.
   ========================================================= */
.btn-nav-lms {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  border: 1.5px solid var(--color-brand-gold);
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-brand-gold);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-nav-lms:hover {
  background: var(--color-brand-gold);
  color: var(--color-brand-darker);
  box-shadow: 0 4px 18px rgba(193, 155, 68, 0.35), 0 0 14px rgba(232, 195, 114, 0.25);
  transform: translateY(-1px);
}

/* Dropdown Navigation wrapper & trigger */
.dropdown-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.dropdown-trigger i {
  transition: transform 0.3s ease;
}

@media (min-width: 769px) {
  .dropdown-wrapper:hover .dropdown-trigger i {
    transform: rotate(180deg);
    color: var(--color-brand-light-gold);
  }
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px) scale(0.95);
  width: 200px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(4, 34, 66, 0.08);
  border-top: 3px solid var(--color-brand-gold);
  border-radius: 6px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08), 0 0 15px rgba(193, 155, 68, 0.08);
  padding: 0.75rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transform-origin: top center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: var(--transition-smooth);
  z-index: 120;
}

@media (min-width: 769px) {
  .dropdown-wrapper:hover .nav-dropdown {
    transform: translateX(-50%) translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem;
  border-radius: 4px;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--color-brand-dark);
  transition: var(--transition-smooth);
}

.dropdown-item:hover {
  background: rgba(4, 34, 66, 0.05);
  color: var(--color-brand-blue);
  padding-left: 1.25rem;
}

.dropdown-item i {
  opacity: 0;
  transform: translateX(-4px);
  transition: var(--transition-smooth);
}

.dropdown-item:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* Master Typography Styles */
h1,
h2,
h3,
h4 {
  font-family: var(--font-headings);
  font-weight: 300;
  /* Light weight by default */
  letter-spacing: -0.025em;
}

strong,
b,
.emphasis {
  font-weight: 600;
  /* Semibold for emphasis */
}

h1.master-title {
  font-weight: 300;
  font-size: 3.15rem;
  line-height: 1.15;
}

h2.section-title {
  font-weight: 300;
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.subtitle-caps {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-brand-gold);
  margin-bottom: 1rem;
  display: block;
}

/* Glassmorphic elements */
.glass-panel {
  background: rgba(4, 34, 66, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
}

/* Premium Gradient Content Card */
.gradient-content-card {
  background: linear-gradient(135deg, #021d3d 0%, #011126 100%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 3rem;
  transition: var(--transition-smooth);
}

.gradient-content-card:hover {
  transform: translateY(-4px);
  border-color: rgba(193, 155, 68, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(232, 195, 114, 0.2);
}

/* Premium Button Styling with Hover Glows */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #E2B755 0%, #C19B44 100%);
  color: var(--color-brand-darker);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #f0ca6e 0%, #d4ae56 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(193, 155, 68, 0.35), 0 0 20px rgba(232, 195, 114, 0.3);
}

.btn-secondary {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
}

.btn-secondary:hover {
  border-color: var(--color-brand-light-blue);
  background-color: rgba(48, 139, 238, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(48, 139, 238, 0.15), 0 0 20px rgba(56, 163, 255, 0.2);
}

/* Custom Blue Button */
.btn-blue {
  background-color: var(--color-brand-blue);
  color: var(--color-white);
}

.btn-blue:hover {
  background-color: var(--color-brand-light-blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(48, 139, 238, 0.35), 0 0 20px rgba(56, 163, 255, 0.3);
}

/* ==========================================================================
   HOMEPAGE SECTIONS
   ========================================================================= */

/* 1. HERO SECTION */
.hero-section {
  position: relative;
  padding: 5rem 0 0 0;
  background: radial-gradient(circle at 80% 20%, rgba(48, 139, 238, 0.15) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(193, 155, 68, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--color-brand-darker) 0%, var(--color-brand-dark) 100%);
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(2, 20, 40, 0.95) 0%, rgba(2, 20, 40, 0.8) 40%, rgba(2, 20, 40, 0.45) 70%, rgba(2, 20, 40, 0.9) 100%),
    url('../Logo/Homepage.png');
  background-size: cover;
  background-position: 80% top;
  opacity: 0.85;
  /* Subtle overlay */
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .hero-section::before {
    background-image: 
      linear-gradient(to bottom, rgba(2, 20, 40, 0.95) 0%, rgba(2, 20, 40, 0.8) 50%, rgba(2, 20, 40, 0.95) 100%),
      url('../Logo/Homepage.png');
  }
}

.hero-section .container,
.hero-section .hero-ribbon {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  margin: 0 0 4rem 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-content h1.master-title {
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-content .subtitle-caps {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-lead {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: 0;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Bottom Info Ribbon */
.hero-ribbon {
  background: rgba(2, 20, 40, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.25rem 0;
  margin-top: auto;
  position: relative;
  z-index: 10;
}

.ribbon-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem;
}

.ribbon-item {
  display: flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.75);
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.ribbon-item::before {
  content: '•';
  color: var(--color-brand-blue);
  margin-right: 0.6rem;
  font-size: 0.9rem;
}

.ribbon-item:hover {
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 0 8px rgba(56, 163, 255, 0.4);
}


/* 2. SPLIT SECTION (Most Institutes Teach) */
#split-about {
  padding: 5rem 0;
}

#roadmap {
  padding: 5rem 0;
}

#programs {
  padding: 5rem 0;
}

#career-support {
  padding: 5rem 0;
}

#final-cta {
  padding: 3rem 0 2.5rem 0;
}

.bg-white-section {
  background-color: var(--color-white);
  color: var(--color-brand-darker);
}

.split-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
}

.split-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

.split-title {
  font-weight: 300;
  font-size: 2.75rem;
  line-height: 1.25;
  color: var(--color-brand-dark);
}

.split-title span.gold-highlight {
  font-weight: 600;
  color: var(--color-brand-gold);
}

.split-desc {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.7;
}

/* Translucent Quote Card */
.blue-quote-box {
  background: rgba(48, 139, 238, 0.04);
  border-left: 4px solid var(--color-brand-blue);
  border-radius: 0 8px 8px 0;
  padding: 1.5rem;
  width: 100%;
}

.blue-quote-box h4 {
  color: var(--color-brand-dark);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.blue-quote-box p {
  color: var(--color-brand-blue);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Obsidian Card (Right Side) */
.obsidian-card {
  background: linear-gradient(135deg, #042242 0%, #021428 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.feature-icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(193, 155, 68, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-gold);
  background: rgba(4, 34, 66, 0.4);
  transition: var(--transition-smooth);
}

.feature-item:hover .feature-icon-wrap {
  transform: scale(1.1);
  border-color: var(--color-brand-light-gold);
  color: var(--color-brand-light-gold);
  background: rgba(193, 155, 68, 0.12);
  box-shadow: 0 0 18px rgba(232, 195, 114, 0.55), 0 0 32px rgba(193, 155, 68, 0.3);
}

.feature-item:nth-child(even) .feature-icon-wrap {
  color: var(--color-brand-gold);
  border-color: rgba(193, 155, 68, 0.35);
}

.feature-item:nth-child(even):hover .feature-icon-wrap {
  color: var(--color-brand-light-gold);
  border-color: var(--color-brand-light-gold);
  background: rgba(193, 155, 68, 0.12);
  box-shadow: 0 0 18px rgba(232, 195, 114, 0.55), 0 0 32px rgba(193, 155, 68, 0.3);
}

.feature-content h4 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.feature-content p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}


/* 3. ROADMAP (TIMELINE) SECTION */
.roadmap-pill {
  border: 1px solid rgba(48, 139, 238, 0.25);
  background: rgba(4, 34, 66, 0.4);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
  color: var(--color-brand-light-blue);
  letter-spacing: 0.02em;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.timeline-wrapper {
  position: relative;
  width: 100%;
  padding: 1.5rem 0 3rem 0;
  margin-top: 0.5rem;
}

/* Background connector line */
.timeline-line {
  position: absolute;
  top: 19px;
  /* Matches center of 38px circles */
  left: 5%;
  right: 5%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

/* Active connector line */
.timeline-line-active {
  position: absolute;
  top: 19px;
  left: 5%;
  width: 90%;
  height: 2px;
  background: var(--color-brand-blue);
  z-index: 2;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1), height 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 0 8px rgba(48, 139, 238, 0.4);
}

.timeline-wrapper:hover .timeline-line-active {
  background: var(--color-brand-gold);
  box-shadow: 0 0 12px rgba(193, 155, 68, 0.6);
}

.timeline-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 3;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 9%;
  text-align: center;
  cursor: pointer;
  position: relative;
}

.step-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #071528;
  border: 1px solid rgba(56, 163, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-light-blue);
  margin-bottom: 1.25rem;
  transition: var(--transition-smooth);
  box-shadow: 0 0 0 3px rgba(48, 139, 238, 0.08), 0 0 14px rgba(48, 139, 238, 0.25);
  position: relative;
  z-index: 5;
}

.step-icon-wrap svg {
  width: 15px;
  height: 15px;
  stroke-width: 2.25;
}

.step-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.timeline-step:hover .step-icon-wrap {
  transform: scale(1.15);
  border-color: var(--color-brand-gold);
  color: var(--color-brand-light-gold);
  box-shadow: 0 0 15px rgba(232, 195, 114, 0.4);
}

/* Special highlight for Step 10 */
.timeline-step .step-icon-wrap.special {
  border-color: var(--color-brand-gold);
  background: var(--color-brand-gold);
  color: var(--color-brand-darker);
  box-shadow: 0 0 15px rgba(193, 155, 68, 0.3);
}

.timeline-step:hover .step-icon-wrap.special {
  background: var(--color-brand-light-gold);
  box-shadow: 0 0 20px rgba(232, 195, 114, 0.6);
}

.step-num {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-text-muted);
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}

.timeline-step:hover .step-num {
  color: var(--color-brand-light-gold);
}

.step-label {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.85);
  max-width: 115px;
  word-wrap: break-word;
  text-align: center;
  transition: var(--transition-smooth);
}

.timeline-step:hover .step-label {
  color: var(--color-white);
}

.timeline-step .step-label.special {
  color: var(--color-brand-light-gold);
}

/* Tooltip shown on hover above the step icon */
.step-sublabel {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: rgba(3, 22, 45, 0.97);
  border: 1px solid rgba(48, 139, 238, 0.35);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.4;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 30;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
}

/* Downward arrow tip */
.step-sublabel::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(48, 139, 238, 0.35);
}

.timeline-step:hover .step-sublabel {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* 4. THE PROGRAMS SECTION */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.program-card {
  background-color: var(--color-white);
  color: var(--color-brand-darker);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  /* Tighter padding */
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-top: 5px solid var(--color-brand-gold);
}

.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2), 0 0 25px rgba(193, 155, 68, 0.45);
  border-color: var(--color-brand-gold);
}

.program-card-header {
  margin-bottom: 0.75rem;
  /* Tighter margin */
  min-height: 105px;
  /* Tighter min-height */
}

.program-subjects-section {
  display: flex;
  flex-direction: column;
}

.program-meta {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--color-brand-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  display: block;
}

.program-card-header h3 {
  font-size: 1.25rem;
  /* Smaller title size */
  font-weight: 600;
  color: var(--color-brand-dark);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  /* Tighter margin */
}

.program-card-header p {
  font-size: 0.75rem;
  /* Smaller description text size */
  color: #475569;
  line-height: 1.4;
}

/* Badges */
.program-duration-badge {
  background: rgba(48, 139, 238, 0.08);
  border-radius: 4px;
  padding: 0.4rem 0.8rem;
  /* Tighter padding */
  font-size: 0.75rem;
  /* Smaller text size */
  font-weight: 600;
  color: var(--color-brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  /* Tighter margin */
}

/* Subjects tags list */
.subjects-title {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
  /* Tighter margin */
}

.subjects-tags-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  /* Tighter gap */
  margin-bottom: 1rem;
  /* Tighter margin */
}

.subject-tag {
  background: #f1f5f9;
  color: #334155;
  font-size: 0.65rem;
  /* Tighter tag text */
  font-weight: 600;
  padding: 0.18rem 0.4rem;
  /* Tighter padding */
  border-radius: 4px;
  white-space: nowrap;
}

.program-divider {
  border: none;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
  margin: 1rem 0;
  /* Tighter margin */
}

.effective-title {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #64748b;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  /* Tighter margin */
}

.program-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  /* Tighter gap */
  margin-bottom: 1.5rem;
  /* Tighter margin */
  flex-grow: 1;
}

.program-features li {
  font-size: 0.725rem;
  /* Smaller text size */
  font-weight: 500;
  color: #475569;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  line-height: 1.3;
}

/* Gold bullet dots */
.program-features li::before {
  content: '•';
  color: var(--color-brand-gold);
  font-size: 1rem;
  line-height: 1;
  margin-right: 0.1rem;
  margin-top: -0.1rem;
}

/* Dark action button in white cards */
.btn-view-program {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem;
  /* Tighter padding */
  background-color: var(--color-brand-dark);
  color: var(--color-white);
  border-radius: 4px;
  font-size: 0.725rem;
  /* Smaller text size */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.btn-view-program:hover {
  background-color: var(--color-brand-gold);
  color: var(--color-brand-darker);
  box-shadow: 0 10px 20px rgba(193, 155, 68, 0.3);
}


/* 5. COMPLETE CAREER SUPPORT SECTION */
#career-support {
  background-color: var(--color-white);
  color: var(--color-brand-darker);
}

#career-support .section-title {
  color: var(--color-brand-dark);
}

.subtitle-lines-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.subtitle-line {
  height: 1px;
  width: 80px;
  background: linear-gradient(90deg, transparent, var(--color-brand-gold));
}

.subtitle-line.right {
  background: linear-gradient(90deg, var(--color-brand-gold), transparent);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

/* Full-width wrapper so the lone last card centres in the row */
.support-card-lone-wrap {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
}

.support-card-lone-wrap .support-card {
  width: calc(33.333% - 1rem);
}

.support-card {
  background: rgba(4, 34, 66, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  transition: var(--transition-smooth);
}

.support-card:hover {
  background: var(--color-brand-dark);
  border-color: var(--color-brand-gold);
  box-shadow: 0 10px 20px rgba(193, 155, 68, 0.1), 0 0 15px rgba(232, 195, 114, 0.15);
  transform: translateY(-3px);
}

/* (support-card--center removed – replaced by support-card-lone-wrap) */


.support-icon-wrap {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 6px;
  background: rgba(193, 155, 68, 0.08);
  border: 1px solid rgba(193, 155, 68, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-gold);
  flex-shrink: 0;
  transition: var(--transition-smooth);
  margin-top: 2px;
}

.support-card:hover .support-icon-wrap {
  transform: scale(1.1);
  background: rgba(193, 155, 68, 0.15);
  border-color: var(--color-brand-light-gold);
  color: var(--color-brand-light-gold);
}

.support-card-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.4;
  display: block;
  margin-bottom: 0.3rem;
}

.support-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.support-card-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.55;
  font-weight: 400;
  margin: 0;
}

.support-footer-cta {
  text-align: center;
  margin-top: 3rem;
}

.support-footer-cta p {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 1.5rem;
}

.support-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 1.75rem;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.support-trust-badges span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.01em;
}

.support-trust-badges span::first-letter {
  color: var(--color-brand-gold);
  font-weight: 700;
}

.final-cta-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.final-cta-trust-badges span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.01em;
}

.final-cta-trust-badges span::first-letter {
  color: var(--color-brand-gold);
  font-weight: 700;
}


/* ==========================================================================
   REBUILT FOOTER
   ========================================================================== */
.footer-rebuilt {
  background-color: #021428;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5rem 0 2rem;
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brand-light-gold);
}

.footer-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  border-color: var(--color-brand-gold);
  color: var(--color-brand-light-gold);
  box-shadow: 0 0 10px rgba(193, 155, 68, 0.3);
  transform: translateY(-2px);
}

.footer-links-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  transition: var(--transition-smooth);
}

.footer-links-list a:hover {
  color: var(--color-brand-light-blue);
  padding-left: 0.25rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.contact-info-item i {
  color: var(--color-brand-blue);
  flex-shrink: 0;
}

/* WhatsApp CTA Button */
.btn-whatsapp {
  background-color: #25D366;
  color: var(--color-white);
  border: none;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  align-self: flex-start;
  transition: var(--transition-smooth);
}

.btn-whatsapp:hover {
  background-color: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Bottom Bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
  color: var(--color-brand-light-blue);
}

/* ==========================================================================
   ABOUT US PAGE LAYOUTS
   ========================================================================= */

.about-hero {
  padding: 2rem 0 5rem 0;
  text-align: center;
  background: radial-gradient(circle at 50% 30%, rgba(48, 139, 238, 0.12) 0%, transparent 65%),
    linear-gradient(135deg, var(--color-brand-darker) 0%, var(--color-brand-dark) 100%);
}

.about-intro-card {
  background: var(--color-white) !important;
  color: var(--color-brand-dark) !important;
  padding: 3.5rem;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 1fr 1px 1.5fr;
  gap: 3.5rem;
  align-items: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  margin-top: 3.5rem;
}

.about-quote-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.about-quote-col blockquote {
  font-size: 1.6rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--color-brand-darker);
}

.about-intro-divider {
  background: rgba(4, 34, 66, 0.10);
  width: 1px;
  height: 90%;
  align-self: center;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 0.975rem;
  color: #475569;
  line-height: 1.75;
}

/* Our Mission & Vision */
.mission-vision-section {
  background-color: var(--color-white);
  padding: 3rem 0;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 0;
}

.mv-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: var(--transition-smooth);
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.mv-card.mission:hover {
  border-color: rgba(193, 155, 68, 0.35);
}

.mv-card.vision:hover {
  border-color: rgba(193, 155, 68, 0.35);
}

.mv-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mv-icon-wrap.gold {
  background-color: var(--color-brand-gold);
  color: var(--color-brand-darker);
}

.mv-icon-wrap.blue {
  background-color: var(--color-brand-blue);
  color: var(--color-white);
}

.mv-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-brand-dark);
  margin-bottom: 1rem;
}

.mv-card p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Who We Serve */
.who-we-serve-section {
  background-color: var(--color-white);
  padding: 3rem 0;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.serve-card {
  background: #e0eefb;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
}

.serve-card:hover {
  transform: translateY(-5px);
  border-color: rgba(193, 155, 68, 0.25);
  box-shadow: 0 15px 30px rgba(193, 155, 68, 0.08);
}

.serve-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(193, 155, 68, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-gold);
  margin: 0 auto 1.25rem auto;
  transition: var(--transition-smooth);
}

.serve-card:hover .serve-icon-wrap {
  background-color: var(--color-brand-gold);
  color: var(--color-brand-darker);
}

.serve-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-brand-dark);
  margin-bottom: 0.75rem;
}

.serve-card p {
  color: #64748b;
  font-size: 0.825rem;
  line-height: 1.6;
}

/* Difference Section (Dark) */
.difference-section {
  padding: 3.5rem 0;
  background: radial-gradient(circle at 20% 80%, rgba(48, 139, 238, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(193, 155, 68, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, var(--color-brand-darker) 0%, var(--color-brand-dark) 100%);
}

.diff-desc {
  max-width: 750px;
  margin: 0 auto 2rem auto;
  color: var(--color-text-muted);
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.7;
}

.diff-desc p {
  margin-bottom: 1.25rem;
}

.diff-desc p:last-child {
  margin-bottom: 0;
}

.diff-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.diff-card {
  flex: 1 1 calc(33.333% - 1.5rem);
  min-width: 280px;
  background: rgba(2, 20, 40, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.diff-card:hover {
  transform: translateY(-4px);
  border-color: rgba(193, 155, 68, 0.35);
  background: rgba(2, 20, 40, 0.6);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(193, 155, 68, 0.15);
}

.diff-icon-wrap {
  color: var(--color-white);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  min-height: 3.25rem;
}

.diff-icon-wrap i,
.diff-icon-wrap svg {
  color: var(--color-brand-gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.diff-card p {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Testimony & FAQ Section */
.faq-section {
  background-color: #f8fafc;
  padding: 6rem 0;
  color: var(--color-brand-darker);
}

/* Testimonials Section */
.testimonials-section {
  background-color: #ffffff;
  padding: 6rem 0;
  color: var(--color-brand-darker);
  text-align: center;
}

.airline-pills-row {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 2.5rem auto 4.5rem auto;
  max-width: 1000px;
}

.airline-pill {
  background: rgba(4, 34, 66, 0.03);
  border: 1px solid rgba(4, 34, 66, 0.08);
  color: var(--color-brand-dark);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.airline-pill:hover {
  background: rgba(4, 34, 66, 0.08);
  border-color: rgba(4, 34, 66, 0.15);
}

.pill-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--color-brand-gold);
  border-radius: 50%;
  margin-right: 0.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(193, 155, 68, 0.4);
  box-shadow: 0 15px 35px rgba(4, 34, 66, 0.08);
}

.quote-icon {
  font-size: 3rem;
  color: var(--color-brand-gold);
  line-height: 1;
  opacity: 0.3;
  margin-bottom: 0.5rem;
  display: block;
}

.testimonial-text {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
}

.avatar-r {
  background: rgba(48, 139, 238, 0.08);
  border: 1.5px solid var(--color-brand-blue);
  color: var(--color-brand-blue);
}

.avatar-p {
  background: rgba(48, 139, 238, 0.08);
  border: 1.5px solid var(--color-brand-blue);
  color: var(--color-brand-blue);
}

.avatar-a {
  background: rgba(48, 139, 238, 0.08);
  border: 1.5px solid var(--color-brand-blue);
  color: var(--color-brand-blue);
}

.profile-info {
  display: flex;
  flex-direction: column;
}

.profile-name {
  color: var(--color-brand-darker);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.profile-title {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Responsive styles for Testimonials */
@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonials-section {
    padding: 4rem 0;
  }

  .airline-pills-row {
    margin-bottom: 2.5rem;
  }
}

/* FAQ Accordion */
.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--color-brand-dark);
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 12px;
}

.faq-title span {
  font-weight: 700;
  color: var(--color-brand-dark);
}

.faq-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background-color: var(--color-brand-gold);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(48, 139, 238, 0.3);
  box-shadow: 0 4px 15px rgba(48, 139, 238, 0.05);
}

.faq-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-brand-dark);
  user-select: none;
  transition: var(--transition-smooth);
}

.faq-item:hover .faq-header {
  color: var(--color-brand-blue);
}

.faq-header i {
  color: #94a3b8;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
  color: var(--color-brand-blue);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 1.5rem;
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.6;
}

.faq-item.active .faq-content {
  max-height: 250px;
  padding: 0 1.5rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

/* ==========================================================================
   RESPONSIVENESS (UNIVERSALLY MOBILE FRIENDLY)
   ========================================================================== */

@media (max-width: 1200px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .section-premium {
    padding: 6rem 0;
  }

  #split-about {
    padding-top: 3rem;
  }

  .split-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .timeline-line {
    top: 24px;
    bottom: 24px;
    left: 18px;
    width: 2px;
    height: calc(100% - 48px);
    transform: none;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
  }

  /* Vertical timeline styling - Starts exactly in center of step 1 and ends in step 10 */
  .timeline-line-active {
    top: 24px;
    bottom: 24px;
    left: 18px;
    width: 2px;
    height: calc(100% - 48px);
    transform: none;
    z-index: 2;
  }

  .timeline-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding-left: 0;
  }

  .timeline-step {
    flex-direction: row;
    align-items: center;
    width: 100%;
    text-align: left;
    gap: 1.5rem;
  }

  .step-icon-wrap {
    margin-bottom: 0;
    z-index: 10;
  }

  .step-text-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .step-label {
    max-width: 100%;
  }

  .step-sublabel {
    left: auto;
    right: 0;
    transform: translateY(-50%) translateX(10px);
    bottom: auto;
    top: 50%;
    white-space: normal;
    max-width: 42%;
  }

  .timeline-step:hover .step-sublabel {
    transform: translateY(-50%) translateX(0);
  }

  .step-sublabel::after {
    display: none;
  }

  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-card-lone-wrap .support-card {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .about-intro-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem;
  }

  .about-intro-divider {
    display: none;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .serve-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(4, 34, 66, 0.08);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 1rem 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
    pointer-events: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-link {
    width: 100%;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(4, 34, 66, 0.06);
    font-size: 1rem;
  }

  .cpl-eligibility-list {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1rem !important;
  }

  .cpl-eligibility-list span {
    white-space: normal !important;
    text-align: left !important;
    align-items: flex-start !important;
  }

  .elig-divider {
    display: none !important;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:last-of-type {
    border-bottom: none;
  }

  .btn-nav-lms {
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
    align-self: flex-start;
  }

  .dropdown-wrapper {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid rgba(4, 34, 66, 0.06);
  }

  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: none;
  }

  .nav-dropdown {
    position: static;
    transform: none;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    height: 0;
    pointer-events: none;
    background: rgba(4, 34, 66, 0.03);
    border: none;
    border-left: 2px solid var(--color-brand-gold);
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
  }

  .dropdown-wrapper.active .nav-dropdown {
    opacity: 1;
    visibility: visible;
    height: auto;
    pointer-events: auto;
    padding: 0.5rem 0 0.5rem 1rem;
    margin-bottom: 0.5rem;
  }

  .dropdown-wrapper.active .dropdown-trigger i {
    transform: rotate(180deg);
  }

  .dropdown-item {
    padding: 0.75rem 1rem;
  }

  .gradient-content-card {
    padding: 2rem 1.5rem;
  }

  h1.master-title {
    font-size: 2.25rem;
  }

  h2.section-title {
    font-size: 2.25rem;
  }

  .split-title {
    font-size: 2.25rem;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .program-card-header,
  .program-subjects-section {
    min-height: auto;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .ribbon-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    gap: 0.6rem 0.5rem;
  }

  .hero-ribbon {
    padding: 0.85rem 0;
  }

  .ribbon-item {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .ribbon-item:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .serve-grid {
    grid-template-columns: 1fr;
  }

  .diff-card {
    flex: 1 1 100%;
  }

  .faq-quote-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
  }

  .obsidian-card {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   CPL GROUND SCHOOL PAGE — SECTION STYLES
   ========================================================================== */

/* ---- 1. CPL HERO ---- */
.cpl-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.03);
}

.cpl-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 700;
  transition: var(--transition-smooth);
}

.cpl-breadcrumb a:hover {
  color: var(--color-brand-light-gold);
}

.cpl-breadcrumb-active {
  color: var(--color-brand-light-gold);
  font-weight: 700;
}

.cpl-hero {
  position: relative;
  padding: 6rem 0 5rem;
  background: radial-gradient(circle at 70% 30%, rgba(48, 139, 238, 0.12) 0%, transparent 55%),
    radial-gradient(circle at 10% 80%, rgba(193, 155, 68, 0.07) 0%, transparent 50%),
    linear-gradient(160deg, var(--color-brand-darker) 0%, #031830 100%);
  overflow: hidden;
}

.cpl-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(2, 20, 40, 0.95) 0%, rgba(2, 20, 40, 0.8) 40%, rgba(2, 20, 40, 0.45) 70%, rgba(2, 20, 40, 0.9) 100%),
    url('../Logo/CPL UPDATED.png');
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  /* Low opacity for subtle overlay */
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .cpl-hero::before {
    background-image: 
      linear-gradient(to bottom, rgba(2, 20, 40, 0.95) 0%, rgba(2, 20, 40, 0.8) 50%, rgba(2, 20, 40, 0.95) 100%),
      url('../Logo/CPL UPDATED.png');
    background-position: 65% center;
  }
}

.cpl-hero .container {
  position: relative;
  z-index: 2;
}

.cpl-hero-bg {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23308BEE' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.cpl-hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cpl-hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cpl-title-gold {
  color: var(--color-brand-light-gold);
  font-weight: 300;
}

.cpl-hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 520px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.cpl-hero-subtitle {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.cpl-hero-tags {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cpl-tag {
  display: inline-flex;
  align-items: center;
  background: transparent;
  border: none;
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0;
  letter-spacing: 0.02em;
}

.cpl-hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Price Widget */
.cpl-price-widget {
  background: linear-gradient(145deg, #042242 0%, #021428 100%);
  border: 1px solid rgba(193, 155, 68, 0.25);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(193, 155, 68, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cpw-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--color-brand-gold), var(--color-brand-light-gold));
  color: var(--color-brand-darker);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.3rem 1.2rem;
  border-radius: 30px;
  white-space: nowrap;
}

.cpw-header {
  text-align: center;
  padding-top: 0.5rem;
}

.cpw-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.cpw-price-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.cpw-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-brand-light-gold);
  margin-top: 0.5rem;
}

.cpw-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1;
}

.cpw-duration {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.cpw-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 0;
}

.cpw-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
}

.cpw-features li i {
  color: var(--color-brand-light-gold);
  flex-shrink: 0;
}

.cpw-emi-link {
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-brand-light-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition-smooth);
}

.cpw-emi-link:hover {
  color: var(--color-brand-light-gold);
}

/* ---- 2. CPL STICKY SUBNAV ---- */
.cpl-subnav {
  position: sticky;
  top: 70px;
  z-index: 90;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: none;
}

.cpl-subnav-links {
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.cpl-subnav-links::-webkit-scrollbar {
  display: none;
}

.cpl-subnav-link {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: var(--transition-smooth);
}

.cpl-subnav-link:hover {
  color: var(--color-brand-gold);
  border-bottom-color: var(--color-brand-gold);
}

.cpl-subnav-link.active {
  color: var(--color-brand-dark);
  border-bottom-color: var(--color-brand-dark);
}

/* ---- 3. OVERVIEW CARDS ---- */
.cpl-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.cpl-grid-3col {
  grid-template-columns: repeat(3, 1fr);
}

.cpl-overview-card {
  background: linear-gradient(135deg, rgba(4, 34, 66, 0.8) 0%, rgba(2, 20, 40, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.cpl-overview-card:hover {
  transform: translateY(-6px);
  border-color: rgba(193, 155, 68, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(193, 155, 68, 0.12);
}

.cov-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(48, 139, 238, 0.1);
  border: 1px solid rgba(48, 139, 238, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-light-blue);
  transition: var(--transition-smooth);
}

.cov-icon--gold {
  background: rgba(193, 155, 68, 0.1);
  border-color: rgba(193, 155, 68, 0.2);
  color: var(--color-brand-light-gold);
}

.cpl-overview-card:hover .cov-icon {
  background: rgba(48, 139, 238, 0.18);
  box-shadow: 0 0 20px rgba(48, 139, 238, 0.2);
}

.cpl-overview-card:hover .cov-icon--gold {
  background: rgba(193, 155, 68, 0.18);
  box-shadow: 0 0 20px rgba(193, 155, 68, 0.2);
}

.cpl-overview-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.3;
}

.cpl-overview-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ---- 3.5. HIGHLIGHTS SECTION ---- */
.cpl-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cpl-highlight-card-pill {
  background: #ffffff;
  border: 1px solid rgba(4, 34, 66, 0.06);
  box-shadow: 0 4px 15px rgba(4, 34, 66, 0.02);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-sizing: border-box;
  transition: var(--transition-smooth);
}

.cpl-highlight-card-pill:hover {
  border-color: var(--color-brand-blue);
  box-shadow: 0 8px 25px rgba(48, 139, 238, 0.15);
  transform: translateY(-2px);
}

.cpl-highlight-card-pill.centered {
  grid-column: 1 / span 2;
  justify-self: center;
  width: 100%;
  max-width: calc(50% - 0.5rem);
}

.cpl-highlight-star-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(48, 139, 238, 0.06);
  border: 1px solid rgba(48, 139, 238, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cpl-highlight-star {
  color: var(--color-brand-blue);
  font-size: 1.05rem;
  line-height: 1;
}

.cpl-meta-cards-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}

.cpl-meta-card {
  padding: 1.25rem 1.5rem;
}

.cpl-meta-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(48, 139, 238, 0.06);
  border: 1px solid rgba(48, 139, 238, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-blue);
  flex-shrink: 0;
}

/* Responsive Highlights */
@media (max-width: 992px) {
  .cpl-highlights-section .container>div {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .cpl-highlights-grid {
    grid-template-columns: 1fr;
  }

  .cpl-highlight-card-pill.centered {
    grid-column: span 1;
    justify-self: stretch;
    max-width: 100%;
  }

  .cpl-meta-cards-row {
    grid-template-columns: 1fr;
  }
}

/* ---- 4. ELIGIBILITY SECTION ---- */
.cpl-elig-section {
  background: radial-gradient(circle at 80% 50%, rgba(193, 155, 68, 0.06) 0%, transparent 55%),
    var(--color-brand-dark);
}

.cpl-elig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Checklist */
.cpl-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.cpl-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.cpl-check {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(193, 155, 68, 0.15);
  border: 1px solid var(--color-brand-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-light-gold);
  margin-top: 1px;
}

/* Right side highlights */
.cpl-elig-right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cpl-highlight-card {
  background: linear-gradient(135deg, rgba(4, 34, 66, 0.6) 0%, rgba(2, 20, 40, 0.8) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 2rem;
}

.cpl-highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.cpl-highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

/* Meta blocks: Duration / Mode / Batch */
.cpl-meta-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.cpl-meta-block {
  background: rgba(4, 34, 66, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  transition: var(--transition-smooth);
}

.cpl-meta-block:hover {
  border-color: rgba(193, 155, 68, 0.3);
  background: rgba(4, 34, 66, 0.8);
}

.cmb-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(48, 139, 238, 0.1);
  border: 1px solid rgba(48, 139, 238, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-light-blue);
  flex-shrink: 0;
}

.cmb-icon--gold {
  background: rgba(193, 155, 68, 0.1);
  border-color: rgba(193, 155, 68, 0.2);
  color: var(--color-brand-light-gold);
}

.cmb-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.2rem;
}

.cmb-value {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.15rem;
  white-space: nowrap;
}

.cmb-note {
  font-size: 0.72rem;
  color: var(--color-text-muted);
}

/* ---- 5. SUBJECTS SECTION ---- */
#subjects {
  background: linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    #042242 !important;
  background-size: 45px 45px, 45px 45px, auto !important;
  position: relative;
}

.cpl-subjects-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.cpl-subject-card {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  background: rgba(2, 20, 40, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
}

.cpl-subject-card:hover {
  transform: translateY(-4px);
  border-color: rgba(48, 139, 238, 0.35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3), 0 0 20px rgba(48, 139, 238, 0.1);
}

/* Left side of the card (Info panel) */
.csc-left-panel {
  background: #06192f;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.csc-left-panel .btn-primary {
  background: #308bee !important;
  border-color: #308bee !important;
  color: #ffffff !important;
  transition: var(--transition-smooth);
}

.csc-left-panel .btn-primary:hover {
  background: #1d72cf !important;
  border-color: #1d72cf !important;
  box-shadow: 0 4px 15px rgba(48, 139, 238, 0.3);
}

.csc-left-panel h3 {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
}

.csc-left-panel p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
  opacity: 0.85;
}

/* Right side of the card (Topics panel) */
.csc-right-panel {
  background: #112d4c;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.csc-right-panel-header {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-brand-light-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.csc-topics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 2rem;
}

.csc-topic-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}

.csc-topic-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(48, 139, 238, 0.1);
  border: 1px solid rgba(48, 139, 238, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-light-blue);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Responsive Subjects */
@media (max-width: 992px) {
  .cpl-subject-card {
    grid-template-columns: 1fr;
  }

  .csc-left-panel {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
  }

  .csc-right-panel {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .csc-topics-grid {
    grid-template-columns: 1fr;
  }
}

.cpl-subjects-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  background: rgba(48, 139, 238, 0.05);
  border: 1px solid rgba(48, 139, 238, 0.15);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.cpl-subjects-note strong {
  color: var(--color-white);
}

/* ---- 6. FLIGHT TRAINING PATHS ---- */
.cpl-ft-section {
  background: var(--color-brand-darker);
}

.cpl-ft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.ppl-ft-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cpl-ft-card {
  border-radius: 20px;
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.cpl-ft-dark {
  background: linear-gradient(145deg, #042242 0%, #021428 100%);
  border: 1px solid rgba(193, 155, 68, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.cpl-ft-light {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cpl-ft-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.cft-option-badge {
  display: inline-block;
  background: rgba(193, 155, 68, 0.15);
  border: 1px solid rgba(193, 155, 68, 0.3);
  color: var(--color-brand-light-gold);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.9rem;
  border-radius: 30px;
  margin-bottom: 1.25rem;
  align-self: flex-start;
}

.cft-option-badge--dark {
  background: rgba(4, 34, 66, 0.08);
  border-color: rgba(4, 34, 66, 0.15);
  color: var(--color-brand-dark);
}

.cft-title {
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  min-height: 4rem;
  /* normalizes 1-line vs 2-line title */
  display: flex;
  align-items: flex-end;
}

.cft-title--dark {
  color: var(--color-brand-dark);
}

/* Section label inside flight card (Training Pathway / Benefits) */
.cft-sub {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.4rem;
}

/* Pathway description — gets consistent min-height + gap before Benefits */
.cft-pathway-desc {
  font-size: 0.875rem;
  line-height: 1.55;
  min-height: 3rem;
  margin-bottom: 1.5rem;
}

.cft-sub--dark {
  color: #475569;
}

.cft-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.cft-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.cft-features li i {
  color: var(--color-brand-light-gold);
  flex-shrink: 0;
}

.cft-features--dark li {
  color: #334155;
}

.cft-features--dark li i {
  color: var(--color-brand-gold);
}

.cft-duration {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-brand-light-blue);
  background: rgba(48, 139, 238, 0.1);
  border: 1px solid rgba(48, 139, 238, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  align-self: flex-start;
}

.cft-duration--dark {
  color: var(--color-brand-dark);
  background: rgba(4, 34, 66, 0.08);
  border-color: rgba(4, 34, 66, 0.15);
}

.cft-pathway-box {
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  z-index: 2;
  position: relative;
  white-space: nowrap;
}

.cft-pathway-box--dark {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.95);
}

.cft-pathway-box--light {
  background: rgba(48, 139, 238, 0.02);
  border: 1px solid rgba(48, 139, 238, 0.08);
  color: var(--color-brand-dark);
}

@media (max-width: 1200px) {
  .cft-pathway-box {
    white-space: normal;
  }
}

/* ---- 7. SERVICES INCLUDED ---- */
.cpl-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cpl-services-grid--flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.cpl-services-grid--flex .cpl-service-card {
  width: calc(25% - 1.15rem);
  min-width: 250px;
}

@media (max-width: 1200px) {
  .cpl-services-grid--flex .cpl-service-card {
    width: calc(33.333% - 1rem);
  }
}

@media (max-width: 992px) {
  .cpl-services-grid--flex .cpl-service-card {
    width: calc(50% - 0.75rem);
  }
}

@media (max-width: 600px) {
  .cpl-services-grid--flex .cpl-service-card {
    width: 100%;
  }
}

.cpl-service-card {
  background: #f8fafc;
  border: 1px solid rgba(4, 34, 66, 0.05);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition-smooth);
}

.cpl-service-card:hover {
  transform: translateY(-4px);
  border-color: #e2b755;
  box-shadow: 0 10px 30px rgba(193, 155, 68, 0.15);
}

.csvc-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(48, 139, 238, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #308bee;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.csvc-icon--gold {
  background: #ffffff;
  border-color: rgba(48, 139, 238, 0.15);
  color: #308bee;
}

.cpl-service-card:hover .csvc-icon,
.cpl-service-card:hover .csvc-icon--gold {
  background: #021428;
  color: #e2b755;
  border-color: #021428;
  transform: scale(1.05);
}

.cpl-service-card h4 {
  font-size: 0.925rem;
  font-weight: 600;
  color: #0f2942;
  line-height: 1.4;
  margin: 0;
  min-height: 2.8rem;
  display: flex;
  align-items: center;
}

.cpl-service-card p {
  font-size: 0.825rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  font-weight: 300;
}

#services-included,
#ppl-services {
  background: #ffffff !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

#services-included .section-title,
#ppl-services .section-title {
  color: var(--color-brand-dark) !important;
}

#services-included .section-title + p,
#ppl-services .section-title + p {
  color: #64748b !important;
}

/* Dark section overrides for CPL and PPL Everything Included cards */
#services-included .cpl-service-card,
#ppl-services .cpl-service-card {
  background: var(--color-brand-dark);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  text-align: left;
  box-shadow: 0 4px 20px rgba(4, 34, 66, 0.15);
  transition: var(--transition-smooth);
}

#services-included .cpl-service-card:hover,
#ppl-services .cpl-service-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-brand-gold);
  background: var(--color-brand-darker);
  box-shadow: 0 15px 30px rgba(4, 34, 66, 0.3), 0 0 15px rgba(193, 155, 68, 0.2);
}

#services-included .cpl-service-card .csvc-icon,
#ppl-services .cpl-service-card .csvc-icon {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 8px !important;
  color: var(--color-brand-gold) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  align-self: flex-start !important;
  transition: var(--transition-smooth) !important;
}

#services-included .cpl-service-card .csvc-icon svg,
#ppl-services .cpl-service-card .csvc-icon svg {
  width: 24px !important;
  height: 24px !important;
  stroke: var(--color-brand-gold) !important;
  fill: none !important;
}

#services-included .cpl-service-card h4,
#ppl-services .cpl-service-card h4 {
  margin: 0;
  min-height: 3.2rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-white);
  text-align: left;
  display: flex;
  align-items: flex-start;
}

#services-included .cpl-service-card p,
#ppl-services .cpl-service-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  font-weight: 300;
  text-align: left;
}

/* Hover behavior for icon */
#services-included .cpl-service-card:hover .csvc-icon,
#ppl-services .cpl-service-card:hover .csvc-icon {
  background: var(--color-brand-gold) !important;
  color: var(--color-brand-darker) !important;
  border-color: var(--color-brand-gold) !important;
  transform: scale(1.05) !important;
}

#services-included .cpl-service-card:hover .csvc-icon svg,
#ppl-services .cpl-service-card:hover .csvc-icon svg {
  stroke: var(--color-brand-darker) !important;
}

/* ---- 8. EXPLORE PROGRAMS ---- */
.cpl-explore-section {
  background: var(--color-brand-darker);
}

.cpl-explore-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.cpl-explore-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: linear-gradient(135deg, rgba(4, 34, 66, 0.8) 0%, rgba(2, 20, 40, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 1.75rem;
  transition: var(--transition-smooth);
}

.cpl-explore-card:hover {
  transform: translateY(-4px);
  border-color: rgba(193, 155, 68, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35), 0 0 20px rgba(193, 155, 68, 0.12);
}

.cec-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(48, 139, 238, 0.1);
  border: 1px solid rgba(48, 139, 238, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-light-blue);
  transition: var(--transition-smooth);
}

.cec-icon--gold {
  background: rgba(193, 155, 68, 0.1);
  border-color: rgba(193, 155, 68, 0.2);
  color: var(--color-brand-light-gold);
}

.cpl-explore-card:hover .cec-icon {
  transform: scale(1.08);
}

.cec-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cec-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brand-light-blue);
  background: rgba(48, 139, 238, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  align-self: flex-start;
}

.cec-badge--gold {
  color: var(--color-brand-light-gold);
  background: rgba(193, 155, 68, 0.08);
}

.cec-info h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}

.cec-info p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.cec-arrow {
  color: var(--color-text-muted);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.cpl-explore-card:hover .cec-arrow {
  color: var(--color-brand-light-gold);
  transform: translateX(4px);
}

/* ---- 9. BOTTOM CTA ---- */
.cpl-cta-section {
  position: relative;
  padding: 3rem 0;
  background: radial-gradient(circle at 50% 50%, #0b2d53 0%, #042242 100%);
  overflow: hidden;
}

.cpl-bottom-cta-btn-primary {
  background: linear-gradient(135deg, #E2B755 0%, #C19B44 100%) !important;
  color: #021428 !important;
  border: none !important;
  padding: 1rem 2.25rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(193, 155, 68, 0.2);
}

.cpl-bottom-cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(193, 155, 68, 0.4);
  filter: brightness(1.05);
}

.cpl-bottom-cta-btn-secondary {
  background: transparent !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  padding: 1rem 2.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.cpl-bottom-cta-btn-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   CPL PAGE — RESPONSIVE BREAKPOINTS
   ========================================================================== */

@media (max-width: 1100px) {
  .cpl-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .cpl-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cpl-price-widget {
    max-width: 480px;
    margin: 0 auto;
  }

  .cpl-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cpl-grid-3col {
    grid-template-columns: repeat(2, 1fr);
  }

  .cpl-elig-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cpl-meta-blocks {
    grid-template-columns: repeat(2, 1fr);
  }

  .cpl-ft-grid {
    grid-template-columns: 1fr;
  }

  .ppl-ft-grid {
    grid-template-columns: 1fr;
  }

  .cpl-explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cpl-hero {
    padding: 4rem 0 3rem;
  }

  .cpl-overview-grid {
    grid-template-columns: 1fr;
  }

  .cpl-grid-3col {
    grid-template-columns: 1fr;
  }

  .cpl-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cpl-meta-blocks {
    grid-template-columns: 1fr;
  }

  .cpl-subnav-link {
    padding: 0.85rem 0.9rem;
    font-size: 0.725rem;
  }

  .cpw-amount {
    font-size: 2.5rem;
  }

  .cpl-cta-section {
    padding: 5rem 0;
  }

  .cpl-cta-section h2 {
    font-size: 2rem !important;
  }
}

@media (max-width: 480px) {
  .cpl-services-grid {
    grid-template-columns: 1fr;
  }

  .cpl-hero-btns {
    flex-direction: column;
  }

  .cpl-hero-btns .btn {
    width: 100%;
    justify-content: center;
  }

  .cpl-ft-card {
    padding: 1.75rem 1.5rem;
  }

  .cpl-explore-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CPL — WHITE BACKGROUND SECTION OVERRIDES
   Sections: Overview, Flight Training, Explore Other Programs
   ========================================================================== */

/* ---- Overview Section ---- */
#overview,
#ppl-overview,
#atpl-overview,
#tr-overview {
  background: #ffffff;
}

#overview .section-title,
#ppl-overview .section-title,
#atpl-overview .section-title,
#tr-overview .section-title {
  color: var(--color-brand-dark) !important;
}

#overview p[style*="color:var(--color-text-muted)"],
#overview>.container>div>p,
#ppl-overview p[style*="color:var(--color-text-muted)"],
#ppl-overview>.container>div>p,
#atpl-overview p[style*="color:var(--color-text-muted)"],
#atpl-overview>.container>div>p,
#tr-overview p[style*="color:var(--color-text-muted)"],
#tr-overview>.container>div>p {
  color: #475569 !important;
}

#overview .cpl-overview-card,
#ppl-overview .cpl-overview-card,
#atpl-overview .cpl-overview-card,
#tr-overview .cpl-overview-card {
  background: #ffffff;
  border-color: rgba(4, 34, 66, 0.06);
  box-shadow: 0 10px 30px rgba(4, 34, 66, 0.03);
  align-items: center;
  text-align: center;
}

#overview .cpl-overview-card:hover,
#ppl-overview .cpl-overview-card:hover,
#atpl-overview .cpl-overview-card:hover,
#tr-overview .cpl-overview-card:hover {
  background: #ffffff;
  border-color: rgba(193, 155, 68, 0.45);
  box-shadow: 0 16px 40px rgba(4, 34, 66, 0.08), 0 0 20px rgba(193, 155, 68, 0.15);
}

#overview .cpl-overview-card h3,
#ppl-overview .cpl-overview-card h3,
#atpl-overview .cpl-overview-card h3,
#tr-overview .cpl-overview-card h3 {
  color: var(--color-brand-dark);
}

#overview .cpl-overview-card p,
#ppl-overview .cpl-overview-card p,
#atpl-overview .cpl-overview-card p,
#tr-overview .cpl-overview-card p {
  color: #475569;
}

#overview .cov-icon,
#ppl-overview .cov-icon,
#atpl-overview .cov-icon,
#tr-overview .cov-icon {
  background: rgba(48, 139, 238, 0.04);
  border-color: rgba(48, 139, 238, 0.15);
  border-radius: 50%;
  color: var(--color-brand-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

#overview .cpl-overview-card:hover .cov-icon,
#ppl-overview .cpl-overview-card:hover .cov-icon,
#atpl-overview .cpl-overview-card:hover .cov-icon,
#tr-overview .cpl-overview-card:hover .cov-icon {
  background: var(--color-brand-blue) !important;
  color: #ffffff !important;
  border-color: var(--color-brand-blue) !important;
  box-shadow: 0 8px 20px rgba(48, 139, 238, 0.3);
}

/* ---- Flight Training Section ---- */
.cpl-ft-section {
  background: #ffffff !important;
}

.cpl-ft-section .section-title {
  color: var(--color-brand-dark) !important;
}

/* ---- Explore Other Programs Section ---- */
.cpl-explore-section {
  background: #ffffff !important;
}

.cpl-explore-section .section-title {
  color: var(--color-brand-dark) !important;
}

.cpl-explore-section .cpl-explore-card {
  background: #f8fafc;
  border: 1px solid rgba(4, 34, 66, 0.06);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 2rem 1.75rem;
  border-radius: 16px;
  min-height: 160px;
  justify-content: space-between;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.cpl-explore-section .cpl-explore-card:hover {
  background: #ffffff;
  border-color: var(--color-brand-blue) !important;
  box-shadow: 0 10px 30px rgba(48, 139, 238, 0.15) !important;
  transform: translateY(-4px);
}

/* CPL 'Current Program' card — styled as a premium dark navy tile */
.cpl-explore-card--current {
  cursor: default;
  background: #042242 !important;
  border: 1px solid rgba(193, 155, 68, 0.5) !important;
  box-shadow: 0 10px 25px rgba(2, 20, 40, 0.15) !important;
}

.cpl-explore-card--current:hover {
  transform: none !important;
  box-shadow: 0 10px 25px rgba(2, 20, 40, 0.15) !important;
  border-color: rgba(193, 155, 68, 0.5) !important;
}


/* ==========================================================================
   PPL — PRIVATE PILOT LICENCE PAGE STYLES
   ========================================================================== */

/* ---- PPL Hero ---- */
.ppl-hero {
  position: relative;
  padding: 5rem 0 4.5rem;
  background: linear-gradient(135deg, var(--color-brand-darker) 0%, var(--color-brand-dark) 60%, #031d3d 100%);
  overflow: hidden;
}

.ppl-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(2, 20, 40, 0.95) 0%, rgba(2, 20, 40, 0.8) 40%, rgba(2, 20, 40, 0.45) 70%, rgba(2, 20, 40, 0.9) 100%),
    url('../Logo/PPL.png');
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  /* Low opacity for subtle overlay */
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .ppl-hero::before {
    background-image: 
      linear-gradient(to bottom, rgba(2, 20, 40, 0.95) 0%, rgba(2, 20, 40, 0.8) 50%, rgba(2, 20, 40, 0.95) 100%),
      url('../Logo/PPL.png');
  }
}

.ppl-hero .container {
  position: relative;
  z-index: 2;
}

/* Page-specific overrides for ATPL and Type Rating */
.atpl-hero::before {
  background-image: 
    linear-gradient(to right, rgba(2, 20, 40, 0.95) 0%, rgba(2, 20, 40, 0.8) 40%, rgba(2, 20, 40, 0.45) 70%, rgba(2, 20, 40, 0.9) 100%),
    url('../Logo/ATPL.png');
  background-position: 80% top;
}

@media (max-width: 768px) {
  .atpl-hero::before {
    background-image: 
      linear-gradient(to bottom, rgba(2, 20, 40, 0.95) 0%, rgba(2, 20, 40, 0.8) 50%, rgba(2, 20, 40, 0.95) 100%),
      url('../Logo/ATPL.png');
    background-position: 75% center;
  }
}

.tr-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(to right, rgba(2, 20, 40, 0.95) 0%, rgba(2, 20, 40, 0.8) 40%, rgba(2, 20, 40, 0.45) 70%, rgba(2, 20, 40, 0.9) 100%),
    url('../Logo/Typerating.png');
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  pointer-events: none;
  z-index: 1;
}

.tr-hero .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .tr-hero::before {
    background-image: 
      linear-gradient(to bottom, rgba(2, 20, 40, 0.95) 0%, rgba(2, 20, 40, 0.8) 50%, rgba(2, 20, 40, 0.95) 100%),
      url('../Logo/Typerating.png');
  }
}

.ppl-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(48, 139, 238, 0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 80%, rgba(193, 155, 68, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.ppl-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.ppl-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.ppl-title-gold {
  font-weight: 300;
  color: var(--color-brand-light-gold);
}

/* ---- PPL Section Wrappers ---- */
.ppl-section-white {
  background: var(--color-brand-darker);
  padding: 5rem 0;
}

.ppl-section-light {
  background: var(--color-brand-dark);
  padding: 5rem 0;
}

/* ---- Section Title Variants ---- */
.ppl-section-title-gold {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.ppl-section-title-light {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.ppl-section-title-dark {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

/* Gold rule under titles */
.ppl-title-rule {
  width: 48px;
  height: 3px;
  background: var(--color-brand-gold);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.ppl-title-rule--center {
  margin: 0 auto 2rem;
}

.ppl-title-rule--dark {
  background: var(--color-brand-dark);
  opacity: 0.25;
}

/* ---- PPL Overview ---- */
.ppl-overview-center {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.ppl-overview-para {
  font-size: 0.975rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ---- PPL Eligibility ---- */
.ppl-elig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.ppl-split-title {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.ppl-elig-card {
  background: rgba(4, 34, 66, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
}

.ppl-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.ppl-checklist li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.9rem;
  color: var(--color-white);
  line-height: 1.5;
}

.ppl-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(193, 155, 68, 0.12);
  border: 1px solid rgba(193, 155, 68, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-light-gold);
}

/* Highlight pills grid */
.ppl-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.ppl-highlight-pill {
  background: rgba(4, 34, 66, 0.6);
  border: 1px solid rgba(193, 155, 68, 0.2);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-white);
  transition: var(--transition-smooth);
}

.ppl-highlight-pill:hover {
  border-color: rgba(193, 155, 68, 0.45);
  background: rgba(4, 34, 66, 0.85);
}

.ppl-highlight-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-brand-gold);
  flex-shrink: 0;
}

/* ---- PPL Subjects — Horizontal Rows ---- */
.ppl-subjects-rows {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ppl-subject-row {
  background: rgba(4, 34, 66, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 1.75rem 2.25rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: center;
  transition: var(--transition-smooth);
}

.ppl-subject-row:hover {
  border-color: rgba(193, 155, 68, 0.22);
  background: rgba(4, 34, 66, 0.75);
}

.ppl-sr-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
}

.ppl-sr-desc {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.ppl-core-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-brand-light-gold);
  margin-bottom: 0.85rem;
}

.ppl-core-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
}

.ppl-core-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
}

.ppl-core-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-brand-blue);
  flex-shrink: 0;
}

/* ---- PPL Flight Training — 3 Options ---- */
.ppl-ft-3grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.ppl-ft-opt {
  border-radius: 16px;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.ppl-ft-opt--light {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.ppl-ft-opt--light:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(193, 155, 68, 0.3);
}

.ppl-ft-opt--dark {
  background: linear-gradient(145deg, #042242 0%, #021428 100%);
  border: 1px solid rgba(193, 155, 68, 0.25);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-6px);
}

.ppl-ft-opt--dark:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35), 0 0 30px rgba(193, 155, 68, 0.12);
}

.ppl-ft-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brand-light-gold);
  background: rgba(193, 155, 68, 0.15);
  border: 1px solid rgba(193, 155, 68, 0.3);
  padding: 0.25rem 0.8rem;
  border-radius: 30px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.ppl-ft-badge--light {
  color: var(--color-brand-dark);
  background: rgba(4, 34, 66, 0.07);
  border-color: rgba(4, 34, 66, 0.15);
}

.ppl-ft-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-brand-light-gold);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.ppl-ft-title--dark {
  color: var(--color-brand-dark);
}

.ppl-ft-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.ppl-ft-desc--dark {
  color: #475569;
}

/* ---- PPL Services Grid ---- */
.ppl-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ppl-service-card {
  background: linear-gradient(135deg, rgba(4, 34, 66, 0.7) 0%, rgba(2, 20, 40, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  transition: var(--transition-smooth);
}

.ppl-service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(193, 155, 68, 0.25);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(193, 155, 68, 0.1);
}

.ppl-svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(193, 155, 68, 0.1);
  border: 1px solid rgba(193, 155, 68, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-gold);
  margin-bottom: 0.25rem;
  transition: var(--transition-smooth);
}

.ppl-service-card:hover .ppl-svc-icon {
  background: rgba(193, 155, 68, 0.18);
  border-color: rgba(193, 155, 68, 0.45);
  color: var(--color-brand-light-gold);
  box-shadow: 0 0 14px rgba(193, 155, 68, 0.3);
}

.ppl-service-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}

.ppl-service-card p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ---- PPL Scrollspy (JS uses ppl-subnav id) ---- */
#ppl-subnav {
  top: 70px;
}

/* ---- PPL Responsive ---- */
@media (max-width: 1100px) {
  .ppl-ft-3grid {
    gap: 1.25rem;
  }

  .ppl-services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .ppl-elig-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ppl-ft-3grid {
    grid-template-columns: 1fr;
  }

  .ppl-ft-opt--dark {
    transform: none;
  }

  .ppl-subject-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cpl-explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .cpl-explore-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ppl-hero {
    padding: 3.5rem 0 3rem;
  }

  .ppl-highlights-grid {
    grid-template-columns: 1fr;
  }

  .ppl-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ppl-core-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .ppl-services-grid {
    grid-template-columns: 1fr;
  }
}

/* PPL Services — dark navy background */
.ppl-services-dark {
  background: var(--color-brand-darker);
  padding: 5rem 0;
}

/* Service cards on dark navy background */
.ppl-services-dark .ppl-service-card {
  background: linear-gradient(135deg, rgba(4, 34, 66, 0.7) 0%, rgba(2, 20, 40, 0.9) 100%);
  border-color: rgba(255, 255, 255, 0.07);
}

.ppl-services-dark .ppl-service-card:hover {
  border-color: rgba(193, 155, 68, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(193, 155, 68, 0.1);
}

.ppl-services-dark .ppl-service-card h4 {
  color: var(--color-white);
}

.ppl-services-dark .ppl-service-card p {
  color: var(--color-text-muted);
}

.ppl-services-dark .ppl-svc-icon {
  background: rgba(48, 139, 238, 0.1);
  border-color: rgba(48, 139, 238, 0.2);
  color: var(--color-brand-light-blue);
}

.ppl-services-dark .ppl-service-card:hover .ppl-svc-icon {
  background: rgba(193, 155, 68, 0.12);
  border-color: rgba(193, 155, 68, 0.3);
  color: var(--color-brand-light-gold);
}

/* ==========================================================================
   ATPL — AIRLINE TRANSPORT PILOT LICENCE PAGE STYLES
   ========================================================================== */

/* ---- ATPL Hero ---- */
.atpl-hero {
  position: relative;
  padding: 5rem 0 4.5rem;
  background: linear-gradient(135deg, var(--color-brand-darker) 0%, var(--color-brand-dark) 60%, #031d3d 100%);
  overflow: hidden;
}

/* ---- ATPL Overview segments ---- */
.atpl-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.atpl-segment-card {
  background: #ffffff;
  border: 1px solid rgba(4, 34, 66, 0.06);
  border-radius: 14px;
  padding: 2.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.atpl-segment-card:hover {
  transform: translateY(-5px);
  border-color: rgba(48, 139, 238, 0.35);
  box-shadow: 0 12px 30px rgba(48, 139, 238, 0.08);
}

.atpl-seg-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(48, 139, 238, 0.07);
  border: 1px solid rgba(48, 139, 238, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-blue);
  margin-bottom: 0.25rem;
  transition: var(--transition-smooth);
}

.atpl-segment-card:hover .atpl-seg-icon {
  background: rgba(193, 155, 68, 0.1);
  border-color: rgba(193, 155, 68, 0.25);
  color: var(--color-brand-gold);
}

.atpl-segment-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-brand-dark);
}

.atpl-segment-card p {
  font-size: 0.825rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ---- ATPL highlights duration/mode widgets ---- */
.atpl-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-brand-darker);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.85rem;
}

.atpl-meta-badge strong {
  color: var(--color-brand-light-gold);
  font-weight: 600;
  margin-left: 0.25rem;
}

/* ---- ATPL White horizontal cards on dark subjects section ---- */
.atpl-subject-row-white {
  background: #ffffff !important;
  border: 1px solid rgba(4, 34, 66, 0.05) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.atpl-subject-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-brand-blue);
  display: block;
  margin-bottom: 0.25rem;
}

.atpl-subject-badges {
  display: flex;
  gap: 0.5rem;
  margin: 0.5rem 0 1rem;
}

.atpl-badge-pill {
  font-size: 0.65rem;
  font-weight: 700;
  background: rgba(4, 34, 66, 0.06);
  color: var(--color-brand-dark);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* ---- ATPL Services Included (White grid cards) ---- */
.atpl-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.atpl-service-card {
  background: #ffffff;
  border: 1px solid rgba(4, 34, 66, 0.06);
  border-radius: 12px;
  padding: 2.25rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.atpl-service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(193, 155, 68, 0.3);
  box-shadow: 0 12px 30px rgba(193, 155, 68, 0.08);
}

.atpl-svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(48, 139, 238, 0.08);
  border: 1px solid rgba(48, 139, 238, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-blue);
  transition: var(--transition-smooth);
}

.atpl-service-card:hover .atpl-svc-icon {
  background: rgba(193, 155, 68, 0.12);
  border-color: rgba(193, 155, 68, 0.28);
  color: var(--color-brand-gold);
}

.atpl-service-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-brand-dark);
  margin-bottom: 0.25rem;
}

.atpl-service-card p {
  font-size: 0.825rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ---- ATPL Responsive Overrides ---- */
@media (max-width: 1100px) {
  .atpl-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .atpl-overview-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .atpl-overview-grid {
    grid-template-columns: 1fr;
  }

  .atpl-services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ==========================================================================
   TYPE RATING — AIRBUS A320 PREP PAGE STYLES
   ========================================================================== */

/* ---- Type Rating Hero ---- */
.tr-hero {
  position: relative;
  padding: 5.5rem 0 5rem;
  background: linear-gradient(135deg, var(--color-brand-darker) 0%, var(--color-brand-dark) 60%, #031d3d 100%);
  overflow: hidden;
}

/* ---- Type Rating Overview split layout ---- */
.tr-highlights-split-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: center;
}

.tr-fbw-card {
  background: linear-gradient(135deg, rgba(4, 34, 66, 0.95) 0%, rgba(2, 20, 40, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 3.25rem 2.25rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tr-fbw-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(193, 155, 68, 0.12);
  border: 1px solid rgba(193, 155, 68, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-light-gold);
  margin-bottom: 0.25rem;
}

.tr-fbw-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin: 0;
}

.tr-fbw-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ---- Type Rating Services Grid ---- */
.tr-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

/* ---- Type Rating Responsive Overrides ---- */
@media (max-width: 1100px) {
  .tr-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .tr-highlights-split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .tr-fbw-card {
    max-width: 450px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .tr-services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}


/* ==========================================================================
   SERVICES PAGE STYLES
   ========================================================================== */

/* ---- Services Hero ---- */
.services-hero {
  position: relative;
  padding: 6rem 0 5rem;
  background: radial-gradient(circle at 80% 20%, rgba(48, 139, 238, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(193, 155, 68, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, var(--color-brand-darker) 0%, var(--color-brand-dark) 100%);
  text-align: center;
  overflow: hidden;
}

.services-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.services-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.services-hero .master-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 300;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.services-hero .master-title strong {
  font-weight: 700;
  color: var(--color-brand-light-gold);
}

.services-hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-muted);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* ---- Services Overview Grid ---- */
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.services-overview-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem 2rem 1.75rem;
  border: 1px solid rgba(4, 34, 66, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
}

.services-overview-card:hover {
  transform: translateY(-6px);
  border-color: rgba(193, 155, 68, 0.3);
  box-shadow: 0 20px 40px rgba(4, 34, 66, 0.08), 0 0 20px rgba(193, 155, 68, 0.1);
}

.services-overview-card .phase-badge {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.services-overview-card .phase-badge.phase-1 {
  background: rgba(4, 34, 66, 0.08);
  color: var(--color-brand-dark);
}

.services-overview-card .phase-badge.phase-2 {
  background: rgba(48, 139, 238, 0.08);
  color: var(--color-brand-light-blue);
}

.services-overview-card .phase-badge.phase-3 {
  background: rgba(193, 155, 68, 0.08);
  color: var(--color-brand-gold);
}

.services-overview-card .overview-icon {
  width: 48px;
  height: 48px;
  background: rgba(48, 139, 238, 0.08);
  border: 1px solid rgba(48, 139, 238, 0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-light-blue);
  transition: transform 0.3s ease;
}

.overview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.services-overview-card:hover .overview-icon {
  transform: scale(1.1);
}

.services-overview-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-brand-dark);
  margin: 0;
  line-height: 1.3;
}

.services-overview-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

.services-overview-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border-top: 1px solid rgba(4, 34, 66, 0.06);
  padding-top: 1.25rem;
  margin-top: auto;
}

.services-overview-list li {
  font-size: 0.88rem;
  color: var(--color-brand-dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
}

.services-overview-list li i {
  color: var(--color-brand-light-blue);
  flex-shrink: 0;
}

/* ---- Complete Service Breakdown Alternating Cards ---- */
.services-breakdown-section {
  padding: 3rem 0 6rem 0;
  background: var(--color-white);
}

.svc-card {
  display: grid;
  grid-template-columns: 40% 60%;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(4, 34, 66, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  margin-bottom: 3.5rem;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-card:last-child {
  margin-bottom: 0;
}

.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(4, 34, 66, 0.06);
}

/* Left side / dark panel styling */
.svc-dark-panel {
  background: linear-gradient(135deg, #042242 0%, #021428 100%);
  color: #ffffff;
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-right: 4px solid var(--color-brand-gold);
}

.svc-dark-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(48, 139, 238, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.svc-dark-panel .svc-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(193, 155, 68, 0.12);
  border: 1px solid rgba(193, 155, 68, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-light-gold);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.svc-card:hover .svc-icon-wrap {
  transform: scale(1.08) rotate(2deg);
}

.svc-dark-panel h3 {
  font-size: 1.85rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.svc-dark-panel .svc-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-brand-light-gold);
  margin-bottom: 1.25rem;
  display: block;
}

.svc-dark-panel p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.925rem;
  line-height: 1.65;
  margin: 0;
  font-weight: 300;
}

/* Light side / content panel styling */
.svc-light-panel {
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
}

.svc-lists-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
}

.svc-lists-container.single-col {
  grid-template-columns: 1fr;
}

.svc-list-sec h5 {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-brand-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.svc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-list li {
  font-size: 0.88rem;
  color: var(--color-brand-dark);
  margin-bottom: 0.85rem;
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.45;
  font-weight: 400;
}

.svc-list li::before {
  content: '›';
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--color-brand-gold);
  position: absolute;
  left: 0;
  top: -1px;
  font-size: 1.25rem;
  line-height: 1.25rem;
}

.svc-why-box {
  background: rgba(193, 155, 68, 0.05);
  border-left: 3px solid var(--color-brand-gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0 0;
}

.svc-why-box h6 {
  font-size: 0.825rem;
  font-weight: 700;
  color: var(--color-brand-dark);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.svc-why-box h6 i {
  color: var(--color-brand-gold);
  flex-shrink: 0;
}

.svc-why-box p {
  font-size: 0.825rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

.svc-why-box ul {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0 0;
}

.svc-why-box ul li {
  font-size: 0.825rem;
  color: var(--color-brand-dark);
  margin-bottom: 0.35rem;
  padding-left: 0.75rem;
  position: relative;
  font-weight: 500;
}

.svc-why-box ul li:last-child {
  margin-bottom: 0;
}

.svc-why-box ul li::before {
  content: '•';
  color: var(--color-brand-gold);
  position: absolute;
  left: 0;
  font-size: 1rem;
  line-height: 1;
  top: -1px;
}

.svc-action-link {
  color: var(--color-brand-gold);
  font-size: 0.925rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.75rem;
  align-self: flex-start;
  transition: color 0.2s ease, transform 0.2s ease;
}

.svc-action-link:hover {
  color: var(--color-brand-dark);
  transform: translateX(3px);
}

/* Order helper classes for alternating layouts */
.svc-card.reversed {
  grid-template-columns: 60% 40%;
}

.svc-card.reversed .svc-dark-panel {
  order: 2;
  border-right: none;
  border-left: 4px solid var(--color-brand-gold);
}

.svc-card.reversed .svc-light-panel {
  order: 1;
}

/* ---- Services Bottom CTA Banner ---- */
.services-cta-section {
  position: relative;
  padding: 4rem 0;
  background: linear-gradient(135deg, #021428 0%, #042242 50%, #021428 100%);
  overflow: hidden;
  text-align: center;
}

.services-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(193, 155, 68, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Services Mobile Responsiveness ---- */
@media (max-width: 992px) {
  .services-overview-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .services-overview-card {
    padding: 2.5rem 1.75rem 2rem;
  }

  .svc-card,
  .svc-card.reversed {
    grid-template-columns: 1fr;
  }

  .svc-card.reversed .svc-dark-panel {
    order: 1;
  }

  .svc-card.reversed .svc-light-panel {
    order: 2;
  }

  .svc-dark-panel {
    border-right: none !important;
    border-left: none !important;
    border-bottom: 4px solid var(--color-brand-gold) !important;
  }

  .svc-lists-container {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .svc-dark-panel,
  .svc-light-panel {
    padding: 3rem 2rem;
  }

  .services-breakdown-section {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: 4rem 0;
  }

  .services-cta-section {
    padding: 5rem 0;
  }
}


/* ==========================================================================
   CONTACT PAGE STYLES
   ========================================================================== */

.contact-section {
  padding: 4rem 0 6rem 0;
  background: #f8fafc;
}

.contact-card-wrapper {
  display: grid;
  grid-template-columns: 1.35fr 1.65fr;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(4, 34, 66, 0.08);
  box-shadow: 0 15px 45px rgba(4, 34, 66, 0.06);
  max-width: 1080px;
  margin: 2rem auto 0;
}

/* Left panel (Dark blue) */
.contact-dark-panel {
  background: linear-gradient(135deg, #042242 0%, #021428 100%);
  color: #ffffff;
  padding: 4.5rem 3rem;
  display: flex;
  flex-direction: column;
  position: relative;
  border-right: 4px solid var(--color-brand-gold);
}

.contact-dark-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(48, 139, 238, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 90% 90%, rgba(193, 155, 68, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.contact-dark-panel h2 {
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.contact-dark-panel h2 strong {
  font-weight: 700;
  color: var(--color-brand-light-gold);
}

.contact-dark-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.contact-dark-btns {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3.5rem;
}

.contact-dark-btns .btn {
  width: 100%;
  padding: 0.9rem 1.5rem;
  justify-content: center;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.btn-whatsapp-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.btn-whatsapp-outline:hover {
  border-color: #25d366;
  background: rgba(37, 211, 102, 0.05);
  color: #25d366;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.15);
}

.contact-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 3rem;
  margin-top: auto;
}

.contact-reach-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--color-brand-light-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
}

.contact-reach-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-reach-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-reach-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-light-gold);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.contact-reach-item:hover .contact-reach-icon {
  border-color: var(--color-brand-light-gold);
  background: rgba(193, 155, 68, 0.1);
  transform: scale(1.05);
}

.contact-reach-info h4 {
  font-size: 0.825rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-reach-info p {
  font-size: 0.95rem;
  color: #ffffff;
  font-weight: 600;
  margin: 0;
}

/* Right panel (White form) */
.contact-light-panel {
  padding: 4.5rem 3.5rem;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.contact-light-panel::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 155, 68, 0.08) 0%, rgba(193, 155, 68, 0.01) 70%);
  pointer-events: none;
  z-index: 1;
}

.contact-light-panel h3 {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--color-brand-dark);
  margin-bottom: 0.5rem;
}

.contact-light-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 3rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(4, 34, 66, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  min-height: 32px;
  display: flex;
  align-items: flex-end;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border-radius: 6px;
  border: 1px solid rgba(4, 34, 66, 0.12);
  background: #f8fafc;
  color: var(--color-brand-dark);
  font-size: 0.925rem;
  font-family: inherit;
  font-weight: 500;
  transition: var(--transition-smooth);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: #ffffff;
  border-color: var(--color-brand-gold);
  box-shadow: 0 0 0 3px rgba(193, 155, 68, 0.1);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23042242%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpolyline%20points%3D%226%209%2012%2015%2018%209%22%3E%3C%2Fpolyline%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1.1rem center;
  background-size: 1rem;
  padding-right: 3rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.contact-submit-btn {
  width: 100%;
  padding: 1.1rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: linear-gradient(135deg, #E2B755 0%, #C19B44 100%);
  color: var(--color-brand-darker);
  border: none;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  margin-top: 0.5rem;
}

.contact-submit-btn:hover {
  background: linear-gradient(135deg, #f0ca6e 0%, #d4ae56 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(193, 155, 68, 0.3);
}

.contact-reach-desktop {
  display: block;
}

.contact-reach-mobile {
  display: none;
}

/* Responsiveness */
@media (max-width: 992px) {
  .contact-reach-desktop {
    display: none !important;
  }

  .contact-reach-mobile {
    display: block !important;
  }

  .contact-card-wrapper {
    grid-template-columns: 1fr;
    margin: 1.5rem 0 0;
  }

  .contact-dark-panel {
    border-right: none;
    border-bottom: 4px solid var(--color-brand-gold);
  }

  .contact-dark-panel,
  .contact-light-panel {
    padding: 3rem 2rem;
  }

  .contact-divider {
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .form-group.full-width {
    grid-column: span 1;
  }
}

/* ==========================================================================
   PREMIUM GLASSMORPHIC TOAST NOTIFICATION
   ========================================================================= */
.premium-toast {
  position: fixed;
  bottom: 10rem;
  /* Lifted up to stack beautifully above floating CTAs */
  right: 2rem;
  background: rgba(4, 34, 66, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(193, 155, 68, 0.35);
  /* Gold border */
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  color: var(--color-white);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(193, 155, 68, 0.15);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 420px;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  pointer-events: auto;
}

.premium-toast.show {
  transform: translateY(0);
  opacity: 1;
}

.premium-toast-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(193, 155, 68, 0.15);
  color: var(--color-brand-light-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(193, 155, 68, 0.2);
}

.premium-toast-content {
  flex-grow: 1;
}

.premium-toast-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--color-brand-light-gold);
  font-family: var(--font-headings);
  letter-spacing: 0.02em;
}

.premium-toast-desc {
  font-size: 0.825rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.premium-toast-desc strong {
  color: var(--color-white);
  font-weight: 600;
}

.premium-toast-close {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, transform 0.2s ease;
}

.premium-toast-close:hover {
  color: var(--color-white);
  transform: scale(1.1);
}

@media (max-width: 576px) {
  .premium-toast {
    bottom: 8.5rem;
    /* Stack above floating CTAs on mobile too */
    left: 1.5rem;
    right: 1.5rem;
    max-width: none;
  }
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (BOTTOM RIGHT)
   ========================================================================= */
.floating-ctas {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 9998;
  /* Under toast (9999) but above standard content */
}

/* Glassmorphic Floating Button Base */
.floating-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25), 0 0 15px rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-cta-btn::before {
  content: attr(data-tooltip);
  position: absolute;
  right: 64px;
  background: rgba(4, 34, 66, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(193, 155, 68, 0.35);
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.floating-cta-btn:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* WhatsApp Floating Button */
.floating-cta-btn.whatsapp-floating {
  background: #25D366;
  color: white;
  border-color: rgba(37, 211, 102, 0.4);
}

.floating-cta-btn.whatsapp-floating:hover {
  background: #20ba5a;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

/* Consultation / Booking Button */
.floating-cta-btn.consultation-floating {
  background: var(--color-brand-gold);
  color: var(--color-brand-darker);
  border-color: rgba(193, 155, 68, 0.4);
}

.floating-cta-btn.consultation-floating:hover {
  background: var(--color-brand-light-gold);
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 35px rgba(193, 155, 68, 0.4);
}

.floating-cta-btn svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2px;
}

@media (max-width: 768px) {
  .floating-ctas {
    bottom: 1.5rem;
    right: 1.5rem;
    gap: 0.6rem;
  }

  .floating-cta-btn {
    width: 46px;
    height: 46px;
  }

  .floating-cta-btn::before {
    display: none;
    /* Hide tooltips on mobile for better UX */
  }
}

/* ==========================================================================
   CPL PAGE — DEMO TILES (blank placeholder state)
   ========================================================================== */

.cdc-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(135deg, rgba(4, 34, 66, 0.9) 0%, rgba(2, 20, 40, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cdc-thumb--blank {
  background: linear-gradient(135deg, #0a1e35 0%, #051220 100%);
  border: 1px dashed rgba(193, 155, 68, 0.25);
}

.cdc-play {
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition-smooth);
}

.cdc-coming-soon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(193, 155, 68, 0.18);
  border: 1px solid rgba(193, 155, 68, 0.4);
  color: var(--color-brand-light-gold);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 30px;
}

.cpl-demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.cpl-demo-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.cpl-demo-card:hover {
  border-color: rgba(193, 155, 68, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.cdc-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.cdc-subject {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brand-light-gold);
  margin-bottom: 0.4rem;
}

.cdc-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.4;
}

/* ==========================================================================
   CPL PAGE — PRICE WIDGET UPDATES (EMI row + meta table)
   ========================================================================== */

.cpw-emi-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(193, 155, 68, 0.08);
  border: 1px solid rgba(193, 155, 68, 0.2);
  border-radius: 6px;
  padding: 0.55rem 0.85rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.cpw-emi-row i {
  color: var(--color-brand-light-gold);
  flex-shrink: 0;
}

.cpw-emi-row strong {
  color: var(--color-brand-light-gold);
}

.cpw-meta-list {
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.cpw-meta-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.9rem;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cpw-meta-list li:last-child {
  border-bottom: none;
}

.cpw-meta-label {
  color: var(--color-text-muted);
  font-weight: 500;
}

.cpw-meta-val {
  color: var(--color-white);
  font-weight: 600;
}

/* ==========================================================================
   CPL PAGE — SUBJECTS SECTION INLINE CTA CARDS
   ========================================================================== */

.cpl-subjects-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.cpl-subjects-cta-card {
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}

.cpl-subjects-cta-light {
  background: var(--color-brand-dark);
  border: 1.5px solid rgba(193, 155, 68, 0.35);
}

.cpl-subjects-cta-light h4 {
  color: var(--color-white);
  font-size: 1.05rem;
  font-weight: 600;
}

.cpl-subjects-cta-light p {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
  margin-bottom: 0.25rem;
}

.cpl-subjects-cta-dark {
  background: var(--color-brand-darker);
  border: 1px solid rgba(193, 155, 68, 0.25);
}

.cpl-subjects-cta-dark h4 {
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .cpl-subjects-cta-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PPL PAGE — WHO IS THIS PROGRAM FOR? CARDS
   ========================================================================== */

.ppl-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ppl-who-card {
  background: #f8fafc;
  border: 1px solid rgba(4, 34, 66, 0.08);
  border-top: 3px solid var(--color-brand-gold);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: var(--transition-smooth);
}

.ppl-who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(4, 34, 66, 0.1);
  border-color: rgba(193, 155, 68, 0.35);
  border-top-color: var(--color-brand-gold);
}

.ppl-who-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(193, 155, 68, 0.1);
  border: 1px solid rgba(193, 155, 68, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-gold);
  margin-bottom: 0.25rem;
}

.ppl-who-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-brand-dark);
}

.ppl-who-card p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .ppl-who-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   PPL PAGE — FLIGHT TRAINING PATHWAY LABELS & HIGHLIGHT LISTS
   ========================================================================== */

.ppl-ft-pathway-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-brand-light-gold);
  margin-bottom: 0.2rem;
}

.ppl-ft-pathway {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
  margin-bottom: 0.75rem;
  font-style: italic;
}

.ppl-ft-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
}

.ppl-ft-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.ppl-ft-list li i {
  color: var(--color-brand-light-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   WHITE BACKGROUND DEMO CLASSES SECTION OVERRIDES
   ========================================================================== */
.cpl-demo-section {
  background: #ffffff !important;
}

.cpl-demo-section .section-title {
  color: var(--color-brand-dark) !important;
}

.cpl-demo-section>.container>div>p,
.cpl-demo-section p[style*="color:var(--color-text-muted)"] {
  color: #475569 !important;
}

.cpl-demo-section .cpl-demo-card {
  background: linear-gradient(135deg, rgba(4, 34, 66, 0.95) 0%, rgba(2, 20, 40, 0.98) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cpl-demo-section .cpl-demo-card:hover {
  background: linear-gradient(135deg, rgba(4, 34, 66, 0.98) 0%, rgba(2, 20, 40, 1) 100%) !important;
  border-color: rgba(193, 155, 68, 0.35) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25), 0 0 20px rgba(193, 155, 68, 0.15);
}

.cpl-demo-section .cdc-info h4 {
  color: var(--color-white) !important;
}

.cpl-demo-section .cdc-subject {
  color: var(--color-brand-light-gold) !important;
}

.cpl-demo-card .btn-secondary {
  background-color: var(--color-brand-gold) !important;
  border-color: var(--color-brand-gold) !important;
  color: var(--color-brand-darker) !important;
  opacity: 1 !important;
}

.cpl-demo-card .btn-secondary:hover {
  background-color: var(--color-brand-light-gold) !important;
  border-color: var(--color-brand-light-gold) !important;
  color: var(--color-brand-darker) !important;
  opacity: 1 !important;
}

/* Sibling override: Remove adjacent padding stack between demo and flight training sections */
.cpl-demo-section+.cpl-ft-section {
  padding-top: 0 !important;
}

/* Custom Utilities for responsive breaks */
.desktop-only-br {
  display: inline;
}
@media (max-width: 768px) {
  .desktop-only-br {
    display: none;
  }
}