/* ============================================================
   NCM Theme – Component Styles
   ============================================================ */

/* --- Pillar Card --- */
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  height: 100%;
}
.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
  border-top-color: var(--gold);
}
/* Pillar card top border color variants — only on hover */
.pillar-card--sky:hover    { border-top-color: #2196F3; }
.pillar-card--cream:hover  { border-top-color: var(--gold); }
.pillar-card--mint:hover   { border-top-color: #4CAF50; }
.pillar-card--peach:hover  { border-top-color: var(--orange); }
.pillar-card .pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}
.pillar-card .pillar-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 10px;
}
.pillar-card .pillar-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Pillar card — Center icon variant */
/* Pillar cards bg — applied when section has bg data or on homepage */
/* Homepage-only pillar cards overlap */
.home .pillar-cards-section {
  margin-top: -244px;
  padding-top: 230px !important;
}
.pillar-card--center {
  background: var(--white);
  border: 1px solid #eef0f3;
  border-top: 1px solid #eef0f3;
  text-align: center;
  padding: 40px 24px 36px;
}
.pillar-card--center:hover {
  border-top-color: transparent;
}
.pillar-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 20px;
  background: #E8F0FE;
  color: var(--navy);
}
.pillar-card--center .pillar-title {
  font-size: 18px;
}

/* --- Why Card --- */
.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  border: 1px solid var(--border);
  height: 100%;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.why-card .why-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.why-card .why-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 8px;
}
.why-card .why-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 0;
}

/* --- Info Card --- */
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  transition: all var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.info-card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.info-card .info-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: #FFF8E8;
  color: var(--gold);
}
.info-card .info-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 4px;
}
.info-card .info-value {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0;
}

/* --- Callout Card --- */
.callout-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.callout-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.callout-card::after {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: var(--gold);
  opacity: 0.12;
}
.callout-card .callout-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.callout-card .callout-text {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* --- Course Card --- */
.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.course-card .course-thumb {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.course-card .course-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.course-card:hover .course-thumb img {
  transform: scale(1.05);
}
.course-card .course-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  background-color: var(--gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.course-card .course-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.course-card .course-category {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 8px;
}
.course-card .course-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 10px;
}
.course-card .course-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.course-card .course-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--gray);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.course-card .course-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Course link */
.course-card .course-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  transition: gap var(--transition), color var(--transition);
}
.course-card .course-link:hover {
  color: var(--gold);
  gap: 10px;
}
.course-card .course-link i {
  font-size: 16px;
}
.course-card .course-title a {
  color: inherit;
  text-decoration: none;
}
.course-card .course-title a:hover {
  color: var(--gold);
}
.course-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8edf2 0%, #f4f6f8 100%);
}

/* --- Testimonials --- */
.testimonials-section {
  background: var(--white);
}
.testimonial-card {
  background: var(--white);
  border: 1px solid #eef0f3;
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-avatar {
  margin-bottom: 20px;
}
.testimonial-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.testimonial-photo-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f0f2f5;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 24px;
}
.testimonial-quote {
  font-family: var(--font-body);
  font-size: 15px;
  font-style: italic;
  color: var(--dark-navy);
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
  position: relative;
}
.testimonial-quote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: -5px;
  line-height: 1;
}
.testimonial-name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 4px;
}
.testimonial-role {
  font-size: 13px;
  color: var(--gray);
}
.testimonial-swiper .swiper-slide {
  height: auto;
}
.testimonial-pagination {
  margin-top: 32px;
  text-align: center;
}
.testimonial-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ddd;
  opacity: 1;
}
.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* --- Stats Bar Simple --- */
.stat-card-simple {
  background: var(--white);
  border: 1px solid #eef0f3;
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  height: 100%;
}
.stat-card-simple-value {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
}
.stat-card-simple-label {
  font-size: 14px;
  color: var(--gray);
  font-weight: 500;
}

/* --- Route Step Cards (Horizontal) --- */
.route-cards-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  justify-content: center;
}
.route-card {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid #eef0f3;
}
.route-card--light {
  background: var(--white);
}
.route-card--dark {
  background: var(--dark-navy);
  border-color: transparent;
}
.route-card--dark .route-card-icon {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.route-card--dark .route-card-title {
  color: var(--white);
}
.route-card--dark .route-card-text {
  color: rgba(255,255,255,0.75);
}
.route-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E8F0FE;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 16px;
}
.route-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 8px;
}
.route-card-text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}
.route-arrow {
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: var(--gray);
  font-size: 20px;
}
@media (max-width: 768px) {
  .route-cards-row {
    flex-direction: column;
    gap: 12px;
  }
  .route-arrow {
    justify-content: center;
    transform: rotate(90deg);
    padding: 8px 0;
  }
}

/* --- About Info Cards --- */
.about-info-cards-section {
  padding-bottom: 0px !important;
}
.about-info-card {
  background: var(--white);
  border-radius: 10px;
  padding: 24px 28px;
  height: 100%;
  transition: all var(--transition);
  overflow: hidden;
  box-shadow: 1px 1px rgba(0, 0, 0, .1);
}
.about-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.about-info-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.about-info-card-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.about-info-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-navy);
  margin: 0;
}
.about-info-card-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
  padding-left: 54px;
}

/* --- Note Box Dark Variant --- */
.note-box-dark {
  background: linear-gradient(135deg, var(--dark-navy) 0%, #1B3A5C 100%);
  padding: 70px 0;
}
.note-box-dark-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.note-box-dark-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 50%;
  background: rgba(200,150,46,0.2);
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.note-box-dark-content {
  flex: 1;
}
.note-box-dark-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.note-box-dark-text {
  font-size: 15px;
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
}
.note-box-dark-content p {
  color: #FFF;
}
/* Centered variant (FAQ "Still have questions?" style) */
.note-box-dark--centered {
  flex-direction: column;
  text-align: center;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}
.note-box-dark-center-icon {
  font-size: 28px;
  color: var(--white);
  display: inline-block;
  margin-bottom: 8px;
}
.note-box-dark--centered .note-box-dark-title {
  font-size: 28px;
}
.note-box-dark-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .note-box-dark-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* --- Contact Form Section --- */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E8F0FE;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-label {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 2px;
}
.contact-info-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-navy);
}
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.contact-form-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.contact-form-header-icon {
  color: var(--gold);
  font-size: 22px;
}
.contact-form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-navy);
  margin: 0;
}
.contact-form-subtitle {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
}
.contact-form-card .form-control {
  padding: 11px 14px;
  border: 1px solid #e0e3e8;
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font-body);
  width: 100%;
  transition: border-color var(--transition);
}
.contact-form-card .form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(200,150,46,0.1);
}
.contact-form-card .form-control::placeholder {
  color: #adb5bd;
}
.contact-form-card textarea.form-control {
  resize: vertical;
}

/* --- CTA Banner Section --- */
.cta-banner-section {
  padding: 64px 0;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-banner-content {
  max-width: 600px;
}
.cta-banner-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  font-style: italic;
}
.cta-banner-text {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 0;
}
.cta-banner-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--white);
  color: var(--dark-navy);
  border: 2px solid var(--white);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
@media (max-width: 768px) {
  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-banner-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cta-banner-buttons .btn-white,
  .cta-banner-buttons .btn-outline-white {
    width: 100%;
    justify-content: center;
  }
}

/* --- Dual Cards Section --- */
.dual-card {
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.dual-card--dark {
  background: var(--dark-navy);
  color: var(--white);
}
.dual-card--cream {
  background: #FDF6EC;
  color: var(--dark-navy);
}
.dual-card-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.dual-card-eyebrow-icon {
  font-size: 16px;
}
.dual-card-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
}
.dual-card--dark .dual-card-title {
  color: var(--white);
}
.dual-card-highlight {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}
.dual-card-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.dual-card--cream .dual-card-label {
  color: var(--gray);
}
.dual-card-text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 0;
}
.dual-card--dark .dual-card-text {
  color: rgba(255,255,255,0.7);
}
.dual-card--cream .dual-card-text {
  color: var(--gray);
}
.dual-card-image {
  margin-top: 20px;
}
.dual-card-links {
  display: flex;
  gap: 24px;
  margin-top: 20px;
}
.dual-card--cream .link-arrow {
  color: var(--navy);
  font-weight: 600;
}

/* --- Content with Checklist Section --- */
.content-checklist-section {
  position: relative;
  overflow: hidden;
  background: #F8F9FC;
}
.content-checklist-abstract {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 240px;
  height: 240px;
  background: #e8edf226;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.content-checklist-section .container {
  position: relative;
  z-index: 1;
}
.checklist-card {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.checklist-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.checklist-card-icon {
  color: var(--gold);
  font-size: 22px;
}
.checklist-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #f0f2f5;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-navy);
}
.checklist-item:last-child {
  border-bottom: none;
}
.checklist-item i {
  color: var(--teal);
  font-size: 20px;
  flex-shrink: 0;
}

/* --- Content Image Dark Variant --- */
.content-image--dark {
  background: var(--dark-navy);
}
.content-image--dark .section-eyebrow {
  color: var(--gold);
}
.content-image--dark .section-title {
  color: var(--white);
}
.content-image--dark .content-body,
.content-image--dark .content-body p {
  color: rgba(255,255,255,0.75);
}
.content-image--dark .content-body a {
  color: var(--gold);
}
.content-image--dark figure img {
  border-radius: var(--radius-lg);
}

/* --- Content with Cards Section --- */
.content-cards-section {
  position: relative;
  overflow: hidden;
}
.content-cards-abstract {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: #ff9e0d26;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.content-cards-section .container {
  position: relative;
  z-index: 1;
}

/* Mini cards 2x2 grid */
.mini-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
/* Default mini-card — vertical (for content-with-cards) */
.mini-card {
  padding: 24px 20px;
}
.mini-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.mini-card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 8px;
}
.mini-card-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 0;
}
.mini-card-content {
  flex: 1;
}

/* Horizontal mini-card — for image-with-cards section */
.image-cards-section .mini-card {
  display: flex;
  gap: 14px;
  padding: 16px 0;
}
.image-cards-section .mini-card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  font-size: 18px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.image-cards-section .mini-card-title {
  font-size: 16px;
  margin-bottom: 4px;
}
.image-cards-section .mini-card-text {
  font-size: 13px;
}
@media (max-width: 767px) {
  .mini-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Course search bar */
.course-search-bar {
  margin-bottom: 32px;
}
.course-search-bar form {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.course-search-input {
  flex: 1;
  border: none;
  padding: 16px 24px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--dark-navy);
  outline: none;
}
.course-search-input::placeholder {
  color: #adb5bd;
}
.course-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  background: var(--dark-navy);
  color: var(--white);
  border: none;
  font-size: 20px;
  cursor: pointer;
  transition: background var(--transition);
}
.course-search-btn:hover {
  background: var(--navy);
}

/* --- Program Card --- */
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.program-card .program-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.program-card .program-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 10px;
}
.program-card .program-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* --- Sidebar Card --- */
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}
.sidebar-card .sidebar-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

/* --- Check Item --- */
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: var(--text);
}
.check-item i {
  color: var(--teal, #1A8A7D);
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* --- Floating Form Card --- */
.floating-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 100px;
}
.floating-form-card .form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 6px;
}
.floating-form-card .form-subtitle {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
}

/* --- Form Styles --- */
.ncm-form .form-group {
  margin-bottom: 18px;
}
.ncm-form .form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-navy);
  margin-bottom: 6px;
}
.ncm-form .form-label .required,
.form-label .required {
  color: var(--orange);
  font-weight: 400;
}
.ncm-form .form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background-color: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.ncm-form .form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,58,92,0.1);
}
.ncm-form .form-control.is-invalid {
  border-color: #DC3545;
}
.ncm-form .invalid-feedback {
  font-size: 13px;
  color: #DC3545;
  margin-top: 4px;
  display: none;
}
.ncm-form .form-control.is-invalid ~ .invalid-feedback {
  display: block;
}
.ncm-form select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%236C757D'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.ncm-form textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
.ncm-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}
.ncm-form .form-check-input {
  margin-top: 4px;
  accent-color: var(--navy);
}
.ncm-form .form-check-label {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}
.ncm-form .btn-submit,
.btn-submit {
  width: 100%;
  padding: 14px;
  background-color: var(--gold);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ncm-form .btn-submit:hover,
.btn-submit:hover {
  background-color: #B5842A;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.ncm-form .btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.ncm-form .form-success {
  text-align: center;
  padding: 40px 20px;
}
.ncm-form .form-success i {
  font-size: 48px;
  color: #4CAF50;
  margin-bottom: 16px;
}
.ncm-form .form-success h4 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--dark-navy);
  margin-bottom: 8px;
}
.ncm-form .form-success p {
  font-size: 15px;
  color: var(--gray);
}

/* --- Premium Table --- */
.premium-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.premium-table thead th {
  background-color: var(--navy);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 14px 20px;
  text-align: left;
}
.premium-table tbody td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  background-color: var(--white);
}
.premium-table tbody tr:nth-child(even) td {
  background-color: var(--light-gray);
}
.premium-table tbody tr:hover td {
  background-color: #EEF3F8;
}

/* --- FAQ Accordion --- */
.faq-accordion .faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.faq-accordion .faq-item:hover {
  box-shadow: var(--shadow-sm);
}
.faq-accordion .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  background: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-navy);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
}
.faq-accordion .faq-question:hover {
  background-color: var(--light-gray);
}
.faq-accordion .faq-question i {
  font-size: 18px;
  color: var(--navy);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-accordion .faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-accordion .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-accordion .faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-accordion .faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* --- NCM Field Group (form validation) --- */
.ncm-field-group {
  margin-bottom: 18px;
}
.ncm-field-group.has-error input,
.ncm-field-group.has-error select,
.ncm-field-group.has-error textarea,
.cnt-form-group.has-error input,
.cnt-form-group.has-error select,
.cnt-form-group.has-error textarea,
.adm-form-group.has-error input,
.adm-form-group.has-error select,
.adm-form-group.has-error textarea,
.has-error .form-control {
  border-color: #DC3545 !important;
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.15);
}
.has-error .ncm-field-icon {
  color: #DC3545;
}
.ncm-field-group.is-valid input,
.ncm-field-group.is-valid select,
.ncm-field-group.is-valid textarea,
.cnt-form-group.is-valid input,
.cnt-form-group.is-valid select,
.cnt-form-group.is-valid textarea,
.adm-form-group.is-valid input,
.adm-form-group.is-valid select,
.adm-form-group.is-valid textarea,
.is-valid .form-control {
  border-color: #4CAF50 !important;
}
.is-valid .ncm-field-icon {
  color: #4CAF50;
}
.ncm-error-msg {
  font-size: 12px;
  color: #DC3545;
  margin-top: 4px;
  font-weight: 500;
  line-height: 1.3;
}
.ncm-error-msg:empty {
  display: none !important;
}
/* Acknowledgement checkbox error */
.hero-form-ack.has-error,
.adm-form-ack.has-error,
.cnt-form-ack.has-error {
  border: 1px solid #DC3545;
  border-radius: 6px;
  padding: 8px;
  background: rgba(220, 53, 69, 0.04);
}
.ncm-form-message {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 14px;
}
.ncm-form-message--error {
  background-color: #FFF0F0;
  color: #DC3545;
  border: 1px solid #DC3545;
}
.ncm-form-success {
  text-align: center;
  padding: 40px 20px;
}
.ncm-form-success__icon {
  font-size: 48px;
  color: #4CAF50;
  margin-bottom: 16px;
}
.ncm-form-success__title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--dark-navy);
  margin-bottom: 8px;
}
.ncm-form-success__text {
  font-size: 15px;
  color: var(--gray);
}

/* ============================================================
   Bootstrap Accordion Overrides (FAQ)
   ============================================================ */
.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
  background-color: transparent;
}
.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: var(--radius) !important;
}
.accordion-button {
  box-shadow: none !important;
  background-color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--dark-navy);
}
.accordion-button:not(.collapsed) {
  background-color: var(--white);
  color: var(--dark-navy);
  box-shadow: none !important;
}
.accordion-button::after {
  display: none;
}
.accordion-button:focus {
  box-shadow: none !important;
  border-color: transparent;
}
.accordion-body {
  padding-top: 0;
}

/* FAQ gold number badge */
.faq-number-badge {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(200, 150, 46, 0.3);
}
.faq-accordion .accordion-button span[style*="border-radius: 50%"] {
  box-shadow: 0 2px 8px rgba(200, 150, 46, 0.3);
}
.faq-accordion .accordion-item:hover {
  box-shadow: var(--shadow-sm);
}
.faq-accordion .accordion-button .faq-chevron {
  margin-left: auto;
  font-size: 18px;
  color: var(--navy);
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-accordion .accordion-button:not(.collapsed) .faq-chevron {
  transform: rotate(180deg);
}

/* ============================================================
   Bootstrap Nav-Tabs Overrides (Tabbed Content)
   ============================================================ */
.nav-tabs {
  border-bottom: 2px solid var(--border);
}
.nav-tabs .nav-link {
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 20px;
  transition: all var(--transition);
  background: transparent;
}
.nav-tabs .nav-link:hover {
  border-bottom-color: rgba(200, 150, 46, 0.4);
  color: var(--dark-navy);
  background: transparent;
}
.nav-tabs .nav-link.active {
  border-bottom-color: var(--gold);
  color: var(--dark-navy);
  background: transparent;
}

/* ============================================================
   Vision/Note Highlight Box (About page gold variant)
   ============================================================ */
.note-box--gold {
  background: linear-gradient(135deg, #FFF8E8 0%, #FFF3D6 100%);
  border-left: 5px solid var(--gold);
  padding: 28px 32px;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  margin: 32px 0;
}
.note-box--gold .note-box-icon {
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 8px;
}
.note-box--gold .note-box-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 8px;
}
.note-box--gold p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================================
   Gallery Grid Hover
   ============================================================ */
.gallery-grid-section a:hover img {
  transform: scale(1.08);
}
.gallery-grid-section a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
}

/* ============================================================
   Content Image Section
   ============================================================ */
.content-image-section {
  overflow: hidden;
}
.content-image-section figure {
  margin: 0;
}
.content-image-section figure img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  transition: transform 0.5s ease;
}
.content-image-section figure:hover img {
  transform: scale(1.02);
}
.content-image-section figcaption {
  font-size: 13px;
  color: var(--gray);
  margin-top: 10px;
  text-align: center;
}
.content-image-section .section-title {
  margin-bottom: 20px;
}
.content-image-section .content-body {
  margin-bottom: 0;
}

/* ============================================================
   Stats Bar Section (Colored Cards)
   ============================================================ */
.stats-bar-section {
  padding: 40px 0;
}
.stat-colored-card {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-colored-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stat-colored-card .stat-card-icon {
  font-size: 28px;
  margin-bottom: 10px;
}
.stat-colored-card .stat-card-value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}
.stat-colored-card .stat-card-value .stat-suffix {
  font-size: 18px;
  font-weight: 400;
}
.stat-colored-card .stat-card-label {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 6px;
}
.stats-bar-section .row > div > div {
  transition: transform var(--transition), box-shadow var(--transition);
}
.stats-bar-section .row > div > div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   Still Have Questions CTA (FAQ page)
   ============================================================ */
.still-questions-cta {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
  margin-top: 48px;
  border: 1px solid var(--border);
}
.still-questions-cta .still-questions-icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 16px;
}
.still-questions-cta h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 12px;
}
.still-questions-cta p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   CTA Buttons Container
   ============================================================ */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   Explore Further Section
   ============================================================ */
.explore-further {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  margin-top: 40px;
}
.explore-further h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 24px;
}

/* ============================================================
   Social Icon Links (Footer)
   ============================================================ */
.site-footer .text-white-50 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  text-decoration: none;
}
.site-footer .text-white-50:hover {
  background-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   Premium Table – Total Row
   ============================================================ */
.premium-table tbody tr.total-row td,
.premium-table tbody tr[style*="background-color: var(--navy)"] td,
.premium-table tfoot td {
  background-color: var(--navy) !important;
  color: var(--white);
  font-weight: 700;
}
.premium-table tbody tr.total-row td:nth-child(3),
.premium-table tbody tr.total-row td:nth-child(4) {
  color: var(--gold);
  font-size: 16px;
}
/* Overall total row (green accent bottom row) */
.premium-table tbody tr.grand-total-row td {
  background-color: var(--teal) !important;
  color: var(--white);
  font-weight: 700;
}

/* ============================================================
   Fee Highlight Cards
   ============================================================ */
.fee-highlight-card {
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.fee-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.fee-highlight-card--gold {
  background: linear-gradient(135deg, var(--gold) 0%, #E8B84A 100%);
  color: var(--white);
}
.fee-highlight-card--cream {
  background: #FFF8E8;
  color: var(--dark-navy);
}
.fee-highlight-card--white {
  background: var(--white);
  color: var(--dark-navy);
  border: 1px solid var(--border);
}
.fee-highlight-card .fee-card-icon {
  font-size: 28px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.fee-highlight-card--gold .fee-card-icon { color: var(--white); }
.fee-highlight-card--cream .fee-card-icon { color: var(--gold); }
.fee-highlight-card--white .fee-card-icon { color: var(--navy); }
.fee-highlight-card .fee-card-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}
.fee-highlight-card .fee-card-label {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   Teal Check Icons (design system)
   ============================================================ */
.check-item i[class*="checkbox-circle"] {
  color: var(--teal, #1A8A7D);
}

/* ============================================================
   Sidebar Link Hover (navy sidebar card)
   ============================================================ */
.sidebar-card a:hover {
  background-color: rgba(255,255,255,0.08);
  border-radius: var(--radius);
}

/* ============================================================
   Admission/Contact Sidebar (dark navy variant)
   ============================================================ */
.sidebar-card--dark {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark-navy) 100%);
  color: var(--white);
  border: none;
}
.sidebar-card--dark .sidebar-card-title {
  color: var(--white);
  border-bottom-color: var(--gold);
}
.sidebar-card--dark a {
  color: rgba(255,255,255,0.85);
}
.sidebar-card--dark a:hover {
  color: var(--gold);
}
.sidebar-card--dark .check-item {
  color: rgba(255,255,255,0.85);
}
.sidebar-card--dark .check-item i {
  color: var(--gold);
}

/* ============================================================
   Timeline
   ============================================================ */
.timeline {
  position: relative;
  padding-left: 48px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold), var(--navy));
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 8px;
}
.timeline-item .timeline-icon {
  position: absolute;
  left: -48px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.timeline-item .timeline-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  transition: box-shadow var(--transition);
}
.timeline-item:hover .timeline-content {
  box-shadow: var(--shadow-sm);
}
.timeline-item .timeline-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.timeline-item .timeline-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-navy);
  margin: 0;
}
.timeline-item .timeline-badge {
  font-size: 12px;
  font-weight: 600;
  background: var(--light-gray);
  color: var(--navy);
  padding: 3px 12px;
  border-radius: 20px;
}
.timeline-item .timeline-text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 12px;
}
.timeline-item .timeline-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.timeline-item .timeline-tag {
  font-size: 13px;
  color: var(--navy);
  background: #E8F4FD;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* ============================================================
   Route Steps Connector
   ============================================================ */
.route-steps-section {
  position: relative;
}

/* ============================================================
   Admissions Guidance Links (Contact page sidebar)
   ============================================================ */
.guidance-sidebar .guidance-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.guidance-sidebar .guidance-title .guidance-icon {
  color: var(--navy);
  font-size: 22px;
}
.guidance-sidebar .guidance-desc {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.7;
}
.guidance-sidebar .guidance-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  transition: all var(--transition);
}
.guidance-sidebar .guidance-link:hover {
  color: var(--gold);
  padding-left: 4px;
}
.guidance-sidebar .guidance-link i {
  color: var(--teal);
  font-size: 18px;
}
.guidance-sidebar .contact-info {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.guidance-sidebar .contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text);
}
.guidance-sidebar .contact-info-item i {
  color: var(--navy);
  font-size: 20px;
  margin-top: 2px;
}
.guidance-sidebar .contact-info-item a {
  color: var(--text);
}
.guidance-sidebar .contact-info-item a:hover {
  color: var(--gold);
}

/* ============================================================
   Icon List Section
   ============================================================ */
.icon-list-section li.check-item {
  transition: background-color var(--transition);
}
.icon-list-section li.check-item:hover {
  background-color: var(--light-gray);
  border-radius: var(--radius);
  padding-left: 12px;
  padding-right: 12px;
}

/* ============================================================
   Course Detail Section — Full 2-column layout
   ============================================================ */

/* --- Tabs --- */
.course-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.course-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  margin-bottom: -2px;
}
.course-tab:hover {
  color: var(--gold);
}
.course-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}
.course-tab i {
  font-size: 18px;
}

/* --- Intro Block --- */
.course-intro {
  margin-bottom: 48px;
}
.course-intro-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.course-intro-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.course-intro-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  flex-shrink: 0;
}
.course-intro-icon i {
  font-size: 24px;
  color: #fff;
}
.course-intro-header h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--navy);
  margin: 0;
}
.course-intro-content {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
}
.course-intro-content p {
  margin-bottom: 12px;
}
.course-intro-content p:last-child {
  margin-bottom: 0;
}

/* --- Phases Section --- */
.course-phases {
  margin-bottom: 48px;
}
.course-phases-title {
  font-family: var(--font-heading);
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.course-phases-title i {
  font-size: 28px;
  color: var(--gold);
}

/* --- Timeline --- */
.course-timeline {
  position: relative;
  padding-left: 32px;
}
.course-timeline::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e0e3e8;
}
.course-timeline-item {
  position: relative;
  padding-bottom: 32px;
}
.course-timeline-item:last-child {
  padding-bottom: 0;
}
.course-timeline-dot {
  position: absolute;
  left: -32px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.course-timeline-dot i {
  font-size: 20px;
  color: var(--gold);
}
.course-timeline-content {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-left: 32px;
  transition: box-shadow var(--transition);
}
.course-timeline-content:hover {
  box-shadow: var(--shadow-sm);
}
.course-phase-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.course-timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 12px;
}
.course-timeline-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 12px;
}
.course-timeline-content p:last-child {
  margin-bottom: 0;
}

/* --- Phase Tags --- */
.course-phase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.course-tag {
  display: inline-block;
  background: var(--light-gray);
  color: var(--navy);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

/* --- Callout Cards --- */
.course-callout-row {
  margin-bottom: 48px;
}
.course-callout-card {
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.course-callout-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.course-callout-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.course-callout-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  flex-shrink: 0;
}
.course-callout-icon i {
  font-size: 20px;
  color: #fff;
}
.course-callout-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-navy);
  margin: 0;
}
.course-callout-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
}

/* --- Note Box --- */
.course-note {
  background: #fdf8ee;
  border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 24px 28px;
  margin-bottom: 36px;
}
.course-note-eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.course-note-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.course-note-header i {
  font-size: 22px;
  color: var(--gold);
}
.course-note-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--navy);
  margin: 0;
}
.course-note p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

/* --- Action Buttons --- */
.course-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.course-actions .btn i {
  margin-right: 6px;
}

/* --- Sidebar --- */
.course-sidebar {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Quick Facts */
.course-sidebar-facts {
  background: linear-gradient(135deg, var(--gold) 0%, #a87a24 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.course-sidebar-facts h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: #fff;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.course-sidebar-facts h4 i {
  font-size: 20px;
}
.course-fact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.course-fact-item:first-of-type {
  border-top: none;
  padding-top: 0;
}
.course-fact-item > i {
  font-size: 20px;
  color: #fff;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
  opacity: 0.85;
}
.course-fact-item div {
  display: flex;
  flex-direction: column;
}
.course-fact-item small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.75;
}
.course-fact-item strong {
  font-size: 15px;
  font-weight: 700;
}

/* Quick Navigation */
.course-sidebar-nav {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
}
.course-sidebar-nav h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  color: #fff;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.course-sidebar-nav h4 i {
  font-size: 20px;
  color: var(--gold);
}
.course-sidebar-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.course-sidebar-nav li {
  margin-bottom: 4px;
}
.course-sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  padding: 8px 10px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
}
.course-sidebar-nav li a:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.course-sidebar-nav li a i {
  font-size: 14px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Program Highlights */
.course-sidebar-highlights {
  background: var(--dark-navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
}
.course-sidebar-highlights h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  color: #fff;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.course-sidebar-highlights h4 i {
  font-size: 20px;
  color: var(--gold);
}
.course-sidebar-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.course-sidebar-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
  padding: 6px 0;
}
.course-sidebar-highlights li i {
  font-size: 16px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Related Pages */
.course-sidebar-related {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 24px;
}
.course-sidebar-related h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  color: #fff;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.course-sidebar-related h4 i {
  font-size: 20px;
  color: var(--gold);
}
.course-sidebar-related ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.course-sidebar-related li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.course-sidebar-related li:first-child {
  border-top: none;
  padding-top: 0;
}
.course-sidebar-related li i {
  font-size: 18px;
  color: var(--orange);
  flex-shrink: 0;
}
.course-sidebar-related li a {
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}
.course-sidebar-related li a:hover {
  color: #fff;
}

/* Sidebar Image */
.course-sidebar-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.course-sidebar-image img,
.course-sidebar-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

/* --- Tab Panels --- */
.course-tab-panel {
  display: none;
}
.course-tab-panel.active {
  display: block;
}

/* --- Sub-Tabs (Pill Buttons) --- */
.course-sub-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.course-sub-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1.5px solid var(--navy);
  border-radius: 9999px;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.course-sub-tab i {
  font-size: 16px;
}
.course-sub-tab:hover {
  background: var(--navy);
  color: #fff;
}
.course-sub-tab.active {
  background: var(--dark-navy);
  color: #fff;
  border-color: var(--dark-navy);
}

/* --- Sub-Tab Panels --- */
.course-sub-panel {
  display: none;
}
.course-sub-panel.active {
  display: block;
}

/* --- Syllabus Intro --- */
.course-syllabus-intro {
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* --- Syllabus Card --- */
.course-syllabus-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}
.course-syllabus-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.course-syllabus-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--dark-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.course-syllabus-card-icon i {
  font-size: 24px;
  color: #fff;
}
.course-syllabus-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 4px;
}
.course-syllabus-card-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}
.course-syllabus-card-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  margin: 0 0 8px;
}

/* --- Syllabus Checklist (2-column grid) --- */
.course-syllabus-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.course-syllabus-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
}
.course-syllabus-check-item i {
  font-size: 18px;
  color: var(--teal);
  flex-shrink: 0;
}

/* --- Subject Breakdown Phases --- */
.course-subject-phase {
  margin-top: 24px;
}
.course-subject-phase-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px;
}
.course-subject-phase-title i {
  font-size: 18px;
}
.course-subject-list {
  display: flex;
  flex-direction: column;
}
.course-subject-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.course-subject-item:last-child {
  border-bottom: none;
}
.course-subject-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.course-subject-item div {
  display: flex;
  flex-direction: column;
}
.course-subject-item strong {
  font-size: 15px;
  color: var(--navy);
}
.course-subject-item span {
  font-size: 13px;
  color: var(--text-light);
}

/* Subject list 2-column grid */
.course-subject-list--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .course-sidebar {
    position: static;
  }
  .course-tabs {
    gap: 4px;
  }
  .course-tab {
    padding: 12px 16px;
    font-size: 14px;
  }
  .course-sub-tabs {
    gap: 6px;
  }
  .course-sub-tab {
    padding: 8px 14px;
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .course-timeline {
    padding-left: 24px;
  }
  .course-timeline::before {
    left: 15px;
  }
  .course-timeline-dot {
    width: 36px;
    height: 36px;
    left: -24px;
  }
  .course-timeline-dot i {
    font-size: 16px;
  }
  .course-timeline-content {
    margin-left: 20px;
    padding: 18px;
  }
  .course-callout-row .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .course-syllabus-checklist {
    grid-template-columns: 1fr;
  }
  .course-subject-list--grid {
    grid-template-columns: 1fr;
  }
  .course-syllabus-card {
    padding: 20px;
  }
}

/* --- Admissions Detail --- */
.admissions-detail-section {
  background: var(--light-gray);
}
.adm-block {
  margin-bottom: 40px;
}
.adm-block:last-child {
  margin-bottom: 0;
}
.adm-block-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.adm-block-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.adm-block-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #e8eaed;
  flex: 1;
}
.adm-block-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

/* Checklist */
.adm-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.adm-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #E8F5E9;
  padding: 14px 20px;
  border-radius: 8px;
}
.adm-check-item i {
  color: var(--teal);
  font-size: 20px;
  flex-shrink: 0;
}
.adm-check-item span {
  font-size: 15px;
  color: var(--dark-navy);
  font-weight: 500;
}

/* Document List */
.adm-doc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.adm-doc-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #eef0f3;
}
.adm-doc-item:last-child {
  border-bottom: none;
}
.adm-doc-item i {
  font-size: 18px;
  color: var(--navy);
  flex-shrink: 0;
}
.adm-doc-item span {
  font-size: 15px;
  color: var(--dark-navy);
}

/* Buttons */
.adm-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Form Sidebar */
.adm-form-sidebar {
  background: linear-gradient(180deg, #FDF8F0 0%, #FFFFFF 30%);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  border-top: 3px solid var(--gold);
  padding: 32px;
  position: sticky;
  top: 120px;
}
.adm-form-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.adm-form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 4px;
}
.adm-form-subtitle {
  font-size: 14px;
  color: var(--gray);
  margin: 0 0 20px;
}
.adm-form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.adm-form-group {
  flex: 1;
  min-width: 0;
}
.adm-form-group label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  display: block;
}
.adm-form-group input,
.adm-form-group select,
.adm-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e0e3e8;
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  box-sizing: border-box;
}
.adm-form-group input:focus,
.adm-form-group select:focus,
.adm-form-group textarea:focus {
  border-color: var(--gold);
}
.adm-form-group input::placeholder,
.adm-form-group textarea::placeholder {
  color: #adb5bd;
}
.adm-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236C757D' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.adm-form-full {
  flex: 1 1 100%;
}
.adm-form-ack {
  margin: 16px 0;
}
.adm-form-ack label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--gray);
  cursor: pointer;
  line-height: 1.5;
}
.adm-form-ack input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
}
.adm-form-submit {
  width: 100%;
  padding: 12px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-family: var(--font-body);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition);
}
.adm-form-submit:hover {
  background: var(--dark-navy);
}

/* Admissions — validation states */
.adm-form-group input.ncm-invalid,
.adm-form-group select.ncm-invalid,
.adm-form-group textarea.ncm-invalid {
  border-color: #dc3545;
}
.adm-form-ack .ncm-error-msg {
  margin-top: 4px;
}

/* Admissions — responsive */
@media (max-width: 991px) {
  .adm-form-sidebar {
    position: static;
  }
  .adm-form-row {
    flex-direction: column;
    gap: 12px;
  }
  .adm-block-title {
    font-size: 20px;
  }
  .adm-buttons {
    flex-direction: column;
  }
  .adm-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   Fees Detail Section
   ============================================================ */
.fee-detail-section {
  background: var(--white);
}

/* --- Highlight Cards --- */
.fee-highlights {
  margin-bottom: 40px;
}
.fee-highlight-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid #eef0f3;
  height: 100%;
}
.fee-highlight--gold {
  background: linear-gradient(135deg, #0F2440, #1B3A5C);
  color: var(--white);
  border-color: transparent;
}
.fee-highlight--light {
  background: var(--white);
}
.fee-highlight-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fee-highlight--gold .fee-highlight-icon {
  color: var(--gold);
}
.fee-highlight--light .fee-highlight-icon {
  color: var(--navy);
}
.fee-highlight-value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 4px;
}
.fee-highlight-label {
  font-size: 14px;
  opacity: 0.7;
}

/* --- Intro --- */
.fee-intro {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 800px;
}

/* --- Fee Table --- */
.fee-table-wrap {
  overflow-x: auto;
  margin-bottom: 40px;
}
.fee-table {
  width: 100%;
  border-collapse: collapse;
}
.fee-table thead th {
  background: #0F2440;
  color: var(--white);
  padding: 14px 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-body);
  font-weight: 600;
}
.fee-table tbody td {
  padding: 14px 20px;
  border-bottom: 1px solid #eef0f3;
  font-size: 14px;
  color: var(--text);
}
.fee-table .fee-year {
  font-weight: 600;
  color: var(--navy);
}
.fee-table .fee-amount {
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: left;
}
.fee-table thead th:last-child,
.fee-table td:last-child {
  text-align: right;
}
.fee-total-row {
  background: #f8f9fc;
}
.fee-total-row td {
  font-weight: 700;
  color: var(--navy);
  border-top: 2px solid #e0e3e8;
}
.fee-total-row .fee-amount {
  color: var(--navy);
  font-size: 16px;
}
.fee-grand-total td {
  background: linear-gradient(135deg, #A67B1F, #C8962E);
  color: var(--white);
  font-weight: 700;
}
.fee-grand-total .fee-amount {
  color: var(--white);
  font-size: 18px;
}

/* --- Info Cards --- */
.fee-info-cards {
  margin-bottom: 32px;
}
.fee-info-card {
  background: var(--white);
  border: 1px solid #eef0f3;
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid var(--gold);
  height: 100%;
}
.fee-info-card--cream {
  background: #FDF6EC;
}
.fee-info-header {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}
.fee-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 8px;
  background: #E8F0FE;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.fee-info-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--navy);
  margin: 0;
}
.fee-info-card strong {
  font-size: 14px;
  color: var(--navy);
}
.fee-info-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

/* --- Block Header (navy/gold bar) --- */
.fee-block-header {
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.fee-block-header--navy {
  background: #0F2440;
}
.fee-block-header--gold {
  background: linear-gradient(135deg, #A67B1F, #C8962E);
}
.fee-block-dot {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  flex-shrink: 0;
}
.fee-block-header--navy .fee-block-dot {
  background: var(--gold);
}
.fee-block-header--gold .fee-block-dot {
  background: var(--white);
}

/* --- Year-wise Breakup Table --- */
.fee-breakup-block {
  margin-bottom: 40px;
}
.fee-breakup-block .fee-table-wrap {
  margin-bottom: 0;
}
.fee-table--breakup thead th {
  white-space: nowrap;
  text-align: center;
  padding: 14px 12px;
  font-size: 11px;
}
.fee-table--breakup thead th:first-child {
  text-align: left;
}
.fee-table--breakup tbody td {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.fee-table--breakup tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
}
.fee-table--breakup tbody td:nth-last-child(1),
.fee-table--breakup tbody td:nth-last-child(2) {
  font-weight: 700;
}
.fee-table--breakup .fee-grand-total td {
  text-align: center;
  font-size: 14px;
}
.fee-table--breakup .fee-grand-total td:first-child {
  text-align: left;
}
.fee-breakup-note {
  font-size: 13px;
  color: var(--gray);
  margin: 12px 0 0;
  font-style: italic;
}

/* --- Extra Tables (Hostel & Consultancy) --- */
.fee-extra-tables {
  margin-bottom: 40px;
}
.fee-extra-card {
  border: 1px solid #d0d4dc;
  overflow: hidden;
  height: 100%;
  background: var(--white);
}
.fee-extra-card .fee-block-header {
  border-radius: 0;
}
.fee-extra-card .fee-table-wrap {
  margin-bottom: 0;
}
.fee-extra-card .fee-table {
  margin: 0;
}
.fee-extra-card .fee-table thead th {
  background: #e8ecf2;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 16px;
  border-bottom: 2px solid #d0d4dc;
  text-align: center;
}
.fee-extra-card .fee-table thead th:first-child {
  text-align: left;
}
.fee-extra-card .fee-table tbody td {
  font-size: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid #eef0f3;
  text-align: center;
  vertical-align: middle;
}
.fee-extra-card .fee-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
}
/* Consultancy amount highlight (gold color) */
.fee-extra-card .fee-table tbody td strong {
  color: #B8860B;
  font-size: 16px;
  font-weight: 700;
}

/* --- Included in Consultancy --- */
.fee-included-block {
  margin-bottom: 40px;
  border: 1px solid #eef0f3;
  border-radius: 8px;
  overflow: hidden;
}
.fee-included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 20px 24px;
}
.fee-included-item {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text);
}
.fee-included-num {
  font-weight: 700;
  color: var(--navy);
  margin-right: 6px;
}

/* --- Important Notes --- */
.fee-notes-block {
  background: #FFF9E8;
  border: 1px solid #E8D99B;
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.fee-notes-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  text-decoration: underline;
  margin-bottom: 10px;
}
.fee-notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 32px;
}
.fee-notes-list li {
  font-size: 13px;
  color: var(--text);
  font-style: italic;
}
.fee-notes-list li::before {
  content: '• ';
  font-weight: 700;
}

/* --- Buttons --- */
.fee-buttons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

/* --- Fees Detail Responsive --- */
@media (max-width: 768px) {
  .fee-highlight-value {
    font-size: 24px;
  }
  .fee-highlight-card {
    padding: 24px 16px;
  }
  .fee-table thead th {
    font-size: 10px;
    padding: 10px 12px;
  }
  .fee-table tbody td {
    font-size: 12px;
    padding: 10px 12px;
  }
  .fee-table--breakup thead th {
    font-size: 9px;
    padding: 10px 6px;
  }
  .fee-table--breakup tbody td {
    font-size: 11px;
    padding: 10px 6px;
  }
  .fee-total-row .fee-amount {
    font-size: 14px;
  }
  .fee-grand-total .fee-amount {
    font-size: 15px;
  }
  .fee-included-grid {
    grid-template-columns: 1fr;
  }
  .fee-notes-list {
    grid-template-columns: 1fr;
  }
  .fee-buttons {
    flex-direction: column;
  }
  .fee-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ================================================================
   EXPLORE COURSES (Explore Further)
   ================================================================ */
.explore-courses-section {
  background: #f8f9fc;
}
.explore-courses-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  color: #0F2440;
  margin-bottom: 32px;
}
.explore-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #eef0f3;
  border-radius: 12px;
  padding: 20px 24px;
  text-decoration: none;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  height: 100%;
}
.explore-card:hover {
  box-shadow: 0 8px 24px rgba(15,36,64,0.10);
  transform: translateY(-2px);
}
.explore-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.explore-card-content {
  flex: 1;
  min-width: 0;
}
.explore-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: #0F2440;
  font-weight: 700;
  margin-bottom: 4px;
}
.explore-card-text {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}
.explore-card-arrow {
  color: #9ca3af;
  font-size: 18px;
  flex-shrink: 0;
  transition: color 0.25s ease, transform 0.25s ease;
}
.explore-card:hover .explore-card-arrow {
  color: #C4A469;
  transform: translateX(4px);
}
@media (max-width: 767.98px) {
  .explore-courses-title {
    font-size: 26px;
    margin-bottom: 24px;
  }
  .explore-card {
    padding: 16px 18px;
  }
}

/* ============================================================
   FMGL Detail Section
   ============================================================ */

/* --- Block --- */
.fmgl-block {
  margin-bottom: 40px;
}

.fmgl-block-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e8eaed;
}
.fmgl-block-title i {
  color: var(--gold);
  font-size: 22px;
}

.fmgl-block-content p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 12px;
}
.fmgl-block-content p:last-child {
  margin-bottom: 0;
}

.fmgl-block-intro {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* --- Requirement Cards Grid --- */
.fmgl-req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.fmgl-req-card {
  padding: 20px;
  background: #f8f9fc;
  border-radius: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.fmgl-req-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.fmgl-req-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 12px;
}

.fmgl-req-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.fmgl-req-text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Clarification Box --- */
.fmgl-clarification {
  background: #FFF8EE;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 28px 32px;
  margin-bottom: 40px;
}

.fmgl-clarification-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.fmgl-clarification-header i {
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}
.fmgl-clarification-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.fmgl-clarification-content p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 10px;
}
.fmgl-clarification-content p:last-child {
  margin-bottom: 0;
}

/* --- References --- */
.fmgl-references {
  margin-bottom: 40px;
}
.fmgl-references p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 12px;
}

.fmgl-ref-link {
  color: var(--navy);
  font-weight: 600;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}
.fmgl-ref-link:hover {
  color: var(--gold);
}

/* --- Action Buttons --- */
.fmgl-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* --- Sidebar --- */
.fmgl-sidebar {
  position: sticky;
  top: 120px;
}

.fmgl-sidebar-alignment {
  background: var(--white);
  border: 1px solid #eef0f3;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}
.fmgl-sidebar-alignment h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.fmgl-sidebar-alignment h4 i {
  color: var(--gold);
}

.fmgl-sidebar-alignment ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fmgl-sidebar-alignment li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f2f5;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.5;
}
.fmgl-sidebar-alignment li:last-child {
  border-bottom: none;
}
.fmgl-sidebar-alignment li i {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 16px;
}

/* --- Sidebar Image --- */
.fmgl-sidebar-image {
  margin-bottom: 20px;
}
.fmgl-sidebar-image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* --- Sidebar Related Pages --- */
.fmgl-sidebar-related {
  background: var(--white);
  border: 1px solid #eef0f3;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}
.fmgl-sidebar-related h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.fmgl-sidebar-related h4 i {
  color: var(--gold);
}

.fmgl-sidebar-related ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fmgl-sidebar-related li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f2f5;
}
.fmgl-sidebar-related li:last-child {
  border-bottom: none;
}
.fmgl-sidebar-related a {
  color: var(--navy);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}
.fmgl-sidebar-related a:hover {
  color: var(--gold);
}
.fmgl-sidebar-related a i {
  font-size: 16px;
  flex-shrink: 0;
}

/* --- FMGL Responsive --- */
@media (max-width: 991.98px) {
  .fmgl-req-grid {
    grid-template-columns: 1fr;
  }
  .fmgl-sidebar {
    position: static;
  }
  .fmgl-clarification {
    padding: 20px 22px;
  }
  .fmgl-buttons {
    flex-direction: column;
  }
  .fmgl-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* ============================================================
   Contact Detail Section
   ============================================================ */
.cnt-detail-section {
  background: var(--white);
}

/* --- Guidance Column --- */
.cnt-guidance-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cnt-guidance-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #E8F0FE;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.cnt-guidance-title {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.cnt-guidance-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0 0 24px;
}

/* Guidance links */
.cnt-guidance-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}
.cnt-guidance-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid #eef0f3;
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
  transition: color var(--transition);
}
.cnt-guidance-link:last-child {
  border-bottom: none;
}
.cnt-guidance-link i:first-child {
  color: var(--gold);
  font-size: 18px;
}
.cnt-guidance-link i:last-child {
  color: var(--gray);
  margin-left: auto;
}
.cnt-guidance-link:hover {
  color: var(--gold);
}

/* Contact info */
.cnt-contact-info {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cnt-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cnt-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E8F0FE;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.cnt-contact-label {
  font-size: 13px;
  color: var(--gray);
}
.cnt-contact-value {
  font-size: 15px;
  color: var(--navy);
  font-weight: 700;
}

/* --- Form Card --- */
.cnt-form-card {
  background: linear-gradient(180deg, #FDF8F0 0%, #FFFFFF 30%);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 32px;
}
.cnt-form-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.cnt-form-icon {
  color: var(--gold);
  font-size: 22px;
}
.cnt-form-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}
.cnt-form-subtitle {
  font-size: 14px;
  color: var(--gray);
  margin: 0 0 20px;
}
.cnt-form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.cnt-form-row--3 {
  display: flex;
  gap: 12px;
}
.cnt-form-row--3 .cnt-form-group {
  flex: 1 1 0;
}
.cnt-form-group {
  flex: 1;
  min-width: 0;
}
.cnt-form-group label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.cnt-form-group input,
.cnt-form-group select,
.cnt-form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e0e3e8;
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
  box-sizing: border-box;
}
.cnt-form-group input:focus,
.cnt-form-group select:focus,
.cnt-form-group textarea:focus {
  border-color: var(--gold);
}
.cnt-form-group input::placeholder,
.cnt-form-group textarea::placeholder {
  color: #adb5bd;
}
.cnt-form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236C757D' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.cnt-form-full {
  flex: 1 1 100%;
}

/* Acknowledgement */
.cnt-form-ack {
  margin: 16px 0;
}
.cnt-form-ack label {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--gray);
  cursor: pointer;
  line-height: 1.5;
}
.cnt-form-ack input[type="checkbox"] {
  margin-top: 2px;
  flex-shrink: 0;
}
.cnt-form-ack .ncm-error-msg {
  margin-top: 4px;
}

/* Submit button */
.cnt-form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background var(--transition);
}
.cnt-form-submit:hover {
  background: var(--dark-navy);
}

/* Validation states */
.cnt-form-group input.ncm-invalid,
.cnt-form-group select.ncm-invalid,
.cnt-form-group textarea.ncm-invalid {
  border-color: #dc3545;
}

/* Contact Detail — responsive */
@media (max-width: 991px) {
  .cnt-form-row,
  .cnt-form-row--3 {
    flex-direction: column;
    gap: 12px;
  }
  .cnt-guidance-title {
    font-size: 22px;
  }
  .cnt-form-card {
    padding: 24px;
  }
}
