:root {
  --ink: #17181C;
  --sub: #6B6E76;
  --line: #E7E4DC;
  --paper: #FFFFFF;
  --cream: #F7F4EC;
  --cream-2: #F1EDE1;
  --gold: #e7a141;
  --gold-deep: #B8850C;
  --gold-tint: #FBF0D0;
  --gold-tint-soft: #FCF6E4;
  --r: 20px;
  --r-sm: 12px;
  --shadow: 0 1px 2px rgba(23, 24, 28, 0.04), 0 12px 28px rgba(23, 24, 28, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: var(--gold-tint);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

ul,
ol {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}

.gold-word {
  color: var(--gold-deep);
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 640px) {
  .wrap {
    padding: 0 20px;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.22s ease;
  white-space: nowrap;
  font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer;
  border: none;
}

.btn.solid {
  background: var(--gold);
  color: #1A1200;
}

.btn.solid:hover {
  background: var(--gold-deep);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(184, 133, 12, 0.25);
}

.btn.dark {
  background: var(--ink);
  color: #FFFFFF;
}

.btn.dark:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn.outline {
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: transparent;
}

.btn.outline:hover {
  border-color: var(--ink);
  background: rgba(0, 0, 0, 0.02);
}

.btn svg {
  width: 15px;
  height: 15px;
}

/* ---------- Header & Nav ---------- */
header.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
  box-shadow: none !important;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

header.nav.scrolled {
  background: #FFFFFF;
  box-shadow: none !important;
  border-bottom: 1px solid var(--line);
}

/* Homepage Transparent Navigation (Light Mode) */
body.home header.nav,
body.front-page header.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  border-bottom: none;
}

body.home header.nav:not(.scrolled) .brand,
body.front-page header.nav:not(.scrolled) .brand {
  background: transparent;
  padding: 0;
  box-shadow: none;
}

body.home header.nav:not(.scrolled) nav.links a,
body.front-page header.nav:not(.scrolled) nav.links a {
  color: #2D2E32;
  text-shadow: none;
}

body.home header.nav:not(.scrolled) nav.links a:hover,
body.front-page header.nav:not(.scrolled) nav.links a:hover {
  color: var(--gold-deep);
}

body.home header.nav:not(.scrolled) .nav-cta .phone,
body.front-page header.nav:not(.scrolled) .nav-cta .phone {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.home header.nav:not(.scrolled) .nav-cta .phone:hover,
body.front-page header.nav:not(.scrolled) .nav-cta .phone:hover {
  color: var(--gold-deep);
  background: #FFFFFF;
  border-color: var(--gold);
}

body.home header.nav:not(.scrolled) .nav-cta .nav-social-btn,
body.front-page header.nav:not(.scrolled) .nav-cta .nav-social-btn {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  color: #1877F2;
}

body.home header.nav:not(.scrolled) .nav-cta .nav-social-btn:hover,
body.front-page header.nav:not(.scrolled) .nav-cta .nav-social-btn:hover {
  background: #1877F2;
  color: #FFFFFF;
  border-color: #1877F2;
}

body.home header.nav:not(.scrolled) .menu-toggle,
body.front-page header.nav:not(.scrolled) .menu-toggle {
  color: var(--ink);
}

/* Scrolled Nav on Homepage */
body.home header.nav.scrolled,
body.front-page header.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.home header.nav.scrolled .brand,
body.front-page header.nav.scrolled .brand {
  background: transparent;
  padding: 0;
  box-shadow: none;
}

body.home header.nav.scrolled nav.links a,
body.front-page header.nav.scrolled nav.links a {
  color: #2D2E32;
  text-shadow: none;
}

body.home header.nav.scrolled nav.links a:hover,
body.front-page header.nav.scrolled nav.links a:hover {
  color: var(--gold-deep);
}

body.home header.nav.scrolled .nav-cta .phone,
body.front-page header.nav.scrolled .nav-cta .phone {
  color: var(--ink);
  background: transparent;
  border: none;
}

body.home header.nav.scrolled .menu-toggle,
body.front-page header.nav.scrolled .menu-toggle {
  color: var(--ink);
}

header.nav .wrap {
  max-width: 100%;
  padding-left: clamp(20px, 3.5vw, 64px);
  padding-right: clamp(20px, 3.5vw, 64px);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: none !important;
  filter: none !important;
}

.brand img.theme-logo {
  height: 44px;
  max-height: 43px;
  width: auto;
  object-fit: contain;
  display: block;
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
}

.brand:hover img.theme-logo {
  opacity: 1 !important;
  filter: none !important;
  box-shadow: none !important;
}

nav.links {
  display: flex;
  align-items: center;
  gap: 42px;
}

nav.links a {
  font-size: 15.5px;
  font-weight: 600;
  color: #2D2E32;
  position: relative;
  padding: 8px 0;
  letter-spacing: -0.01em;
}

nav.links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: width 0.25s ease;
}

nav.links a:hover {
  color: var(--gold-deep);
}

nav.links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

.nav-cta .phone {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
  padding: 8px 12px;
  border-radius: 100px;
  transition: all 0.2s ease;
}

.nav-cta .phone:hover {
  color: var(--gold-deep);
  background: var(--cream);
}

.nav-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--cream);
  color: #1877F2;
  border: 1px solid var(--line);
  transition: all 0.22s ease;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.2s ease;
}

.nav-social-btn:hover {
  background: #1877F2;
  color: #FFFFFF;
  border-color: #1877F2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.25);
}

.nav-social-btn:hover svg {
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .nav-social-btn {
    display: none;
  }
}

.mobile-nav-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 100px;
  background: rgba(24, 119, 242, 0.08);
  color: #1877F2;
  border: 1px solid rgba(24, 119, 242, 0.18);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 4px;
  transition: all 0.2s ease;
}

.mobile-nav-social:hover {
  background: #1877F2;
  color: #FFFFFF;
}

.mobile-nav-social svg {
  fill: currentColor;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 26px;
  color: var(--ink);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  display: none;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
  padding: 24px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.mobile-nav-links a {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 0;
  border-bottom: 1px solid var(--cream-2);
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-cta .phone {
  font-weight: 600;
  color: var(--gold-deep);
  text-align: center;
}

@media (max-width: 1100px) {
  nav.links {
    gap: 26px;
  }

  .brand img.theme-logo {
    height: 42px;
    max-height: 42px;
  }

  .nav-row {
    height: 76px;
  }
}

@media (max-width: 960px) {
  nav.links {
    display: none;
  }

  /* Hide phone + Enquire now button from top bar — they live inside the drawer */
  .nav-cta .phone,
  .nav-cta .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-row {
    height: 72px;
  }

  .brand img.theme-logo {
    height: 38px;
    max-height: 40px;
  }
}

@media (max-width: 640px) {
  .nav-row {
    height: 66px;
  }

  .brand img.theme-logo {
    height: 34px;
    max-height: 36px;
  }
}

/* ---------- Hero Slider (Light Theme - High Quality, No Blur) ---------- */
.hero,
.hero.hero-slider-wrap {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
  color: var(--ink);
  box-sizing: border-box;
}

.hero-slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 0.85s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* Slide 1 specific positioning for industrial workplace safety inspection */
.hero-slide:nth-child(1) {
  background-position: right 32%;
}

/* Slide 2 specific positioning for live fire extinguishing drill */
.hero-slide:nth-child(2) {
  background-position: right center;
}

/* Slide 3 specific positioning for CPR simulation classroom */
.hero-slide:nth-child(3) {
  background-position: 75% center;
}

/* High Quality Clean Overlay - NO BLUR */
.hero-overlay,
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    /* Horizontal soft white blend: crisp white on left, sheer clear view on right */
    linear-gradient(90deg, 
      #FFFFFF 0%, 
      #FFFFFF 28%, 
      rgba(255, 255, 255, 0.90) 36%, 
      rgba(255, 255, 255, 0.58) 50%, 
      rgba(255, 255, 255, 0.16) 66%, 
      rgba(255, 255, 255, 0.04) 82%,
      transparent 100%
    ),
    /* Soft top header protection so nav links remain easy to read */
    linear-gradient(180deg, 
      rgba(255, 255, 255, 0.92) 0%, 
      rgba(255, 255, 255, 0.68) 55px, 
      rgba(255, 255, 255, 0.16) 100px, 
      transparent 145px
    ),
    /* Subtle bottom transition */
    linear-gradient(0deg, 
      rgba(255, 255, 255, 0.7) 0%, 
      rgba(255, 255, 255, 0.15) 20px, 
      transparent 45px
    );
  pointer-events: none;
  z-index: 1;
}

/* Remove any blur pseudo so images stay 100% sharp and high-res */
.hero::after {
  display: none !important;
}

.hero > .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100% !important;
  margin: 0;
  padding: 0 clamp(20px, 3.5vw, 64px);
}

.hero-grid {
  display: flex;
  align-items: center;
  width: 100%;
}

.hero-copy {
  max-width: 550px;
  padding-left: clamp(8px, 1.5vw, 24px);
  padding-right: 20px;
}

/* Hero Copy Slides - Synchronized with Background Slider */
.hero-copy-slides {
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto;
  align-items: start;
  width: 100%;
}

.hero-copy-item {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.45s;
}

.hero-copy-item.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  position: relative;
  z-index: 2;
}

.hero-copy-item:not(.active) {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(16px) !important;
}

/* Hero Slider Controls - Bottom Right Only */
.hero-slider-controls {
  position: absolute;
  bottom: clamp(24px, 4vw, 44px);
  right: clamp(24px, 4vw, 64px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 100px;
  padding: 6px 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  user-select: none;
}

.hero-slider-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #FFFFFF;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.hero-slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #FFFFFF;
  transform: scale(1.06);
}

.hero-slider-counter {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 44px;
  justify-content: center;
}

.hero-slider-counter .sep {
  opacity: 0.4;
  font-weight: 400;
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  border: none;
  background: rgba(0, 0, 0, 0.18);
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dot.active {
  width: 22px;
  background: var(--gold);
}

@media (max-width: 940px) {
  .hero-slider-controls {
    bottom: 20px;
    right: 20px;
    padding: 5px 10px;
    gap: 8px;
  }

  .hero-slider-btn {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 940px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    padding-top: 120px;
    padding-bottom: 60px;
    background-position: 70% bottom;
  }

  .hero::before {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 55%, rgba(255, 255, 255, 0.45) 85%, rgba(255, 255, 255, 0.2) 100%);
  }

  .hero::after {
    width: 100%;
    -webkit-mask-image: none;
    mask-image: none;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .hero-copy {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold-deep);
  background: var(--gold-tint-soft);
  border: 1px solid rgba(231, 161, 65, 0.25);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(38px, 5.2vw, 64px);
  max-width: 14ch;
  color: var(--ink);
  line-height: 1.15;
  font-weight: 800;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.85);
}

.hero h1 .gold-word {
  color: var(--gold);
}

.hero-sub {
  margin-top: 20px;
  font-size: 17.5px;
  color: #2D2E32;
  font-weight: 500;
  max-width: 48ch;
  line-height: 1.65;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.hero-btn-outline {
  color: var(--ink) !important;
  border: 1.5px solid var(--ink) !important;
  background: rgba(255, 255, 255, 0.85) !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-btn-outline:hover {
  background: var(--ink) !important;
  border-color: var(--ink) !important;
  color: #FFFFFF !important;
}

.hero-part {
  margin-top: 32px;
  font-size: 13.5px;
  color: #2D2E32;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.85);
}

/* Hero Feature Card (Right Column - Crisp Light Theme) */
.hero-glass-card {
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(231, 161, 65, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 16px 40px rgba(23, 24, 28, 0.07), 0 2px 6px rgba(23, 24, 28, 0.03);
}

.hgc-badge {
  display: inline-block;
  background: rgba(231, 161, 65, 0.12);
  border: 1px solid rgba(231, 161, 65, 0.28);
  color: var(--gold-deep);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.hgc-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.hgc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hgc-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.hgc-ic {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(231, 161, 65, 0.12);
  border: 1px solid rgba(231, 161, 65, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  flex-shrink: 0;
  margin-top: 2px;
}

.hgc-list strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2px;
}

.hgc-list span {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.4;
}

.hero-badge-glass {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-glass .ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(231, 161, 65, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge-glass p {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}

/* ---------- Feature strip ---------- */
.strip {
  background: var(--cream);
  margin-top: 0;
  padding: 52px 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-radius: var(--r);
  overflow: hidden;
}

@media (max-width: 820px) {
  .strip-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .strip-grid {
    grid-template-columns: 1fr;
  }
}

.strip-cell {
  background: var(--cream);
  padding: 30px 26px;
}

.strip-cell .n {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-deep);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.strip-cell h4 {
  margin-top: 14px;
  font-size: 16.5px;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.strip-cell p {
  margin-top: 6px;
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.5;
}

/* ---------- Sections generic ---------- */
section {
  padding: 100px 0;
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
}

.sec-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.sec-head h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  max-width: 16ch;
}

.sec-head p {
  margin-top: 16px;
  color: var(--sub);
  font-size: 16px;
  max-width: 56ch;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.92fr;
  gap: 52px;
  align-items: center;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-media {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  position: relative;
  box-shadow: 0 4px 6px rgba(23, 24, 28, 0.04), 0 20px 42px rgba(23, 24, 28, 0.1);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy .sec-label {
  margin-bottom: 12px;
}

.about-copy h2 {
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.15;
  margin-bottom: 18px;
}

.about-copy p {
  color: var(--sub);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 16px 0;
}

.about-copy p:last-of-type {
  margin-bottom: 24px;
}

.about-copy .btn {
  align-self: flex-start;
  margin: 0;
}

.comp-list .lab {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sub);
  margin-bottom: 12px;
}

.comp-list ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}

@media (max-width: 540px) {
  .comp-list ul {
    grid-template-columns: 1fr;
  }
}

.comp-list li {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}

.comp-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---------- Accreditations & Approvals Section ---------- */
.accred-sec {
  background: transparent;
  padding: 85px 0;
  border-top: none;
  border-bottom: none;
}

.courses-page .accred-sec,
.about-page .accred-sec {
  background: transparent;
  border-top: none;
  border-bottom: none;
}

.accred-sec .sec-head {
  margin-bottom: 48px;
}

.accred-sec .sec-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  max-width: 24ch;
}

.accred-sec .sec-head p {
  max-width: 68ch;
}

.accred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.accred-grid .accred-card:nth-child(5) {
  grid-column: 2;
}

@media (max-width: 1024px) {
  .accred-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .accred-grid .accred-card:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 540px) {
  .accred-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.accred-card {
  background: #FFFFFF;
  border: 1px solid rgba(23, 24, 28, 0.08);
  border-radius: 20px;
  padding: 26px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 20px rgba(23, 24, 28, 0.05);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
  position: relative;
  cursor: default;
  min-height: 140px;
}

.accred-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 18px 36px rgba(23, 24, 28, 0.08);
}

.accred-logo-wrap {
  width: 100%;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.accred-logo-wrap img {
  max-width: 100%;
  max-height: 85px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.accred-card:hover .accred-logo-wrap img {
  transform: scale(1.05);
}

/* Optical balance for each distinct logo shape */
.card-uae .accred-logo-wrap img {
  height: 92px;
  max-height: 92px;
  width: auto;
}

.card-nebosh .accred-logo-wrap img {
  height: 92px;
  max-height: 92px;
  width: auto;
}

.card-iosh .accred-logo-wrap img {
  height: 96px;
  max-height: 100px;
  width: auto;
  object-fit: contain;
}

.card-highfield .accred-logo-wrap img {
  width: 225px;
  max-height: 80px;
}

.card-rospa .accred-logo-wrap img {
  width: 185px;
  max-height: 84px;
}

.card-medic .accred-logo-wrap img {
  width: 185px;
  max-height: 84px;
}

/* ---------- Training Categories Section (#programmes) Centered ---------- */
#programmes {
  text-align: center;
}

#programmes .sec-label {
  text-align: center;
  display: block;
  margin-bottom: 14px;
}

#programmes .sec-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

#programmes .sec-head h2 {
  font-size: clamp(30px, 3.8vw, 44px);
  max-width: 24ch;
  margin: 0 auto 12px;
  text-align: center;
}

#programmes .sec-head p {
  font-size: 16.5px;
  line-height: 1.6;
  max-width: 66ch;
  margin: 0 auto;
  text-align: center;
}

/* ---------- Category cards ---------- */
.cat-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1020px) {
  .cat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .cat-grid {
    grid-template-columns: 1fr;
  }
}

.cat-card {
  background: var(--cream);
  border-radius: var(--r);
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  min-height: 176px;
  transition: all 0.26s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid transparent;
}

.cat-card:hover {
  background: #FFFFFF;
  border-color: var(--line);
  box-shadow: 0 16px 36px rgba(23, 24, 28, 0.08);
  transform: translateY(-4px);
}

.cat-card > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.cat-card .cn {
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-deep);
  letter-spacing: 0.06em;
  text-align: center;
}

.cat-card h3 {
  font-size: 18.5px;
  font-weight: 700;
  margin-top: 14px;
  line-height: 1.35;
  text-align: center;
  color: var(--ink);
}

.cat-card .arrow {
  align-self: center;
  margin-top: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
}

.cat-card:hover .arrow {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.08);
}

.cat-card:hover .arrow svg {
  stroke: #1A1200;
}

.cat-card .arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--ink);
  transition: stroke 0.2s ease;
}

/* ---------- Featured course cards ---------- */
.course-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

@media (max-width: 980px) {
  .course-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .course-grid {
    grid-template-columns: 1fr;
  }
}

.course-card {
  display: flex;
  flex-direction: column;
}

.c-media {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4/3.1;
  position: relative;
  box-shadow: var(--shadow);
}

.c-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .c-media img {
  transform: scale(1.06);
}

.c-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  color: var(--ink);
}

.course-card h4 {
  margin-top: 18px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.course-card .desc {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.5;
}

.course-card .meta {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.course-card .dur {
  font-size: 12px;
  color: var(--sub);
  font-weight: 600;
}

.course-card .view {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: 5px;
}

.cta-tile {
  border-radius: var(--r);
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 32px;
  aspect-ratio: 4/3.1;
  transition: all 0.22s ease;
  cursor: pointer;
}

.cta-tile:hover {
  background: var(--gold-tint-soft);
}

.cta-tile .arrow-lg {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.cta-tile h4 {
  font-size: 18px;
  font-weight: 700;
}

.cta-tile p {
  font-size: 13.5px;
  color: var(--sub);
  margin-top: 6px;
}

/* ---------- Full Catalogue Tabs & Chips ---------- */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 44px;
}

.tab-btn {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px 20px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: #FFFFFF;
  color: var(--sub);
  cursor: pointer;
  transition: all 0.18s ease;
}

.tab-btn.active,
.tab-btn:hover {
  border-color: var(--gold);
  color: var(--ink);
  background: var(--gold-tint-soft);
}

.panes {
  margin-top: 36px;
}

.pane {
  display: none;
}

.pane.active {
  display: block;
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 860px) {
  .chip-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .chip-grid {
    grid-template-columns: 1fr;
  }
}

.chip {
  background: var(--cream);
  border-radius: 12px;
  padding: 15px 18px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  transition: all 0.18s ease;
  border: 1px solid transparent;
}

.chip:hover {
  background: var(--gold-tint-soft);
  border-color: var(--gold-tint);
  transform: translateY(-1px);
}

/* ---------- Why Train with BSTA ---------- */
.why-sec {
  background: transparent;
  border-top: none;
  border-bottom: none;
  padding: 90px 0;
}

@media (max-width: 768px) {
  .why-sec {
    padding: 60px 0;
  }
}

.why-sec .sec-head {
  margin-bottom: 48px;
}

.why-sec .sec-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  max-width: 24ch;
}

.why-sec .sec-head p {
  max-width: 68ch;
}

.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(23, 24, 28, 0.05);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(23, 24, 28, 0.08);
  border-color: rgba(231, 161, 65, 0.45);
}

.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.why-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gold-tint-soft);
  border: 1px solid var(--gold-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  transition: background 0.25s ease, transform 0.25s ease;
}

.why-card:hover .why-icon-wrap {
  background: var(--gold-tint);
  transform: scale(1.05);
}

.why-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.why-card-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
  background: rgba(231, 161, 65, 0.08);
  padding: 4px 10px;
  border-radius: 100px;
}

.why-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14.5px;
  color: var(--sub);
  line-height: 1.6;
  margin: 0;
}

/* Why Section Footer Banner */
.why-banner {
  margin-top: 48px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 36px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  box-shadow: 0 6px 24px rgba(23, 24, 28, 0.05);
}

.why-banner-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: var(--gold-tint-soft);
  border: 1px solid var(--gold-tint);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.why-banner-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.why-banner-desc {
  font-size: 14.5px;
  color: var(--sub);
  line-height: 1.55;
  max-width: 60ch;
  margin: 0;
}

.why-banner-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .why-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .why-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 30px 28px;
    gap: 24px;
  }

  .why-banner-actions {
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .why-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-banner {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .why-banner-title {
    font-size: 18px;
  }

  .why-banner-actions .btn {
    width: 100%;
  }
}

/* ---------- COSHH Spotlight ---------- */
.coshh-top {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 44px;
  margin-bottom: 8px;
}

.coshh-pill {
  background: var(--cream);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
}

.coshh-pill b {
  color: var(--gold-deep);
  margin-right: 6px;
}

.coshh-modules {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.mod-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.2s ease;
}

.mod-row .mno {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--line);
  transition: color 0.2s ease;
}

.mod-row.open .mno,
.mod-row:hover .mno {
  color: var(--gold-deep);
}

.mod-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 17px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.mod-title .tgl {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.mod-row.open .mod-title .tgl {
  background: var(--gold);
  color: #1A1200;
}

.mod-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.mod-row.open .mod-body {
  max-height: 300px;
}

.mod-body ul {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
}

@media (max-width: 640px) {
  .mod-body ul {
    grid-template-columns: 1fr;
  }
}

.mod-body li {
  font-size: 13.5px;
  color: var(--sub);
  padding-left: 14px;
  position: relative;
}

.mod-body li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--gold-deep);
  font-weight: bold;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  border-radius: 32px;
  background: var(--gold);
  padding: 64px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  box-shadow: var(--shadow);
}

@media (max-width: 640px) {
  .cta-banner {
    padding: 40px 28px;
    border-radius: 24px;
  }
}

.cta-banner h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  max-width: 14ch;
  color: #1A1200;
}

.cta-banner p {
  margin-top: 12px;
  color: #3A2B00;
  max-width: 44ch;
  font-size: 15.5px;
}

/* ---------- Facility Carousel (Inside BSTA Showcase) ---------- */
.fac-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.fac-carousel-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fac-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.fac-nav-btn:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.fac-carousel-wrap {
  margin-top: 36px;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
  padding: 8px 4px 20px;
  cursor: grab;
}

.fac-carousel-wrap::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.fac-carousel-wrap.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.fac-carousel-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.fac-slide {
  flex: 0 0 380px;
  width: 380px;
  scroll-snap-align: start;
}

@media (max-width: 980px) {
  .fac-slide {
    flex: 0 0 320px;
    width: 320px;
  }
}

@media (max-width: 580px) {
  .fac-slide {
    flex: 0 0 85vw;
    width: 85vw;
  }
}

.fac-card {
  height: 100%;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}

.fac-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.09);
  border-color: rgba(231, 161, 65, 0.45);
}

.fac-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: #f0f0f0;
}

.fac-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.fac-card:hover .fac-img-wrap img {
  transform: scale(1.05);
}

.fac-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(231, 161, 65, 0.35);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.fac-card-info {
  padding: 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.fac-card-info h4 {
  font-size: 18.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.fac-card-info p {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.55;
  margin: 0;
}

/* Facility Carousel Pagination Dots */
.fac-carousel-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}

.fac-carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fac-dot {
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.18);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fac-dot.active {
  width: 28px;
  background: var(--gold);
}

.fac-quote-banner {
  margin-top: 32px;
  background: var(--cream);
  border: 1px solid rgba(231, 161, 65, 0.28);
  border-radius: var(--r);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.fac-quote-banner p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--ink);
  margin: 0;
}

.fac-quote-banner span {
  font-size: 14px;
  color: #55575E;
  font-weight: 500;
}

/* Fallback for legacy 2-column facility */
.fac-main {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 16/11;
  box-shadow: var(--shadow);
}

.fac-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fac-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fac-small {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 16/8;
  box-shadow: var(--shadow);
}

.fac-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fac-quote {
  background: var(--cream);
  border-radius: var(--r);
  padding: 26px;
  flex: 1;
  display: flex;
  align-items: center;
}

.fac-quote p {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: var(--ink);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

.contact-info {
  background: var(--ink);
  border-radius: var(--r);
  padding: 44px;
  color: #FFFFFF;
}

@media (max-width: 640px) {
  .contact-info {
    padding: 30px 22px;
  }
}

.contact-info h3 {
  color: #FFFFFF;
  font-size: 26px;
}

.contact-info p {
  margin-top: 14px;
  color: #B9BABF;
  font-size: 14.5px;
  line-height: 1.6;
}

.cinfo-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cinfo-item .lab {
  font-size: 11.5px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: 4px;
}

.cinfo-item .val a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.cinfo-item .val a:hover,
.cinfo-item a.val:hover {
  color: var(--gold);
}

.form-card {
  background: var(--cream);
  border-radius: var(--r);
  padding: 44px;
}

@media (max-width: 640px) {
  .form-card {
    padding: 30px 22px;
  }
}

.form-card h3 {
  font-size: 24px;
}

.form-card>p {
  margin-top: 8px;
  color: var(--sub);
  font-size: 14px;
}

.form-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-grid .full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--sub);
  display: block;
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(231, 161, 65, 0.15);
}

.field textarea {
  resize: vertical;
  min-height: 95px;
}

.form-card .btn {
  margin-top: 22px;
  width: 100%;
  justify-content: center;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
  background: #FFFFFF;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

@media (max-width: 760px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 500px) {
  .foot-grid {
    grid-template-columns: 1fr;
  }
}

.foot-brand a.brand {
  display: inline-flex;
  margin-bottom: 16px;
}

.foot-brand img.theme-logo,
.foot-brand img.footer-logo {
  height: 44px;
  max-height: 46px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: opacity 0.2s ease;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.foot-brand a.brand:hover img {
  opacity: 0.85;
}

@media (max-width: 640px) {
  .foot-brand img.theme-logo,
  .foot-brand img.footer-logo {
    height: 38px;
    max-height: 40px;
  }
}

.foot-brand p {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--sub);
  max-width: 32ch;
  line-height: 1.6;
}

.foot-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.foot-social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.foot-social-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: #1877F2;
  transition: transform 0.22s ease, fill 0.22s ease;
}

.foot-social-icon-btn:hover {
  background: #1877F2;
  border-color: #1877F2;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(24, 119, 242, 0.28);
}

.foot-social-icon-btn:hover svg {
  fill: #FFFFFF;
  transform: scale(1.1);
}

.foot-socials-mobile {
  display: none;
}

@media (max-width: 768px) {
  .foot-socials-desktop {
    display: none !important;
  }
  .foot-bottom {
    margin-top: 36px;
    padding-top: 22px;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 12px;
  }
  .foot-socials-mobile {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin: 4px 0;
    width: 100%;
    order: 1;
  }
  .foot-legal-links {
    order: 2;
  }
  .foot-location {
    order: 3;
    font-size: 12.5px;
  }
  .foot-copy {
    order: 4 !important;
    font-size: 12px;
    margin-top: 2px;
  }
}

.foot-col h5 {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sub);
  margin-bottom: 16px;
}

.foot-col li {
  margin-bottom: 10px;
}

.foot-col a {
  font-size: 14px;
  color: var(--ink);
  transition: color 0.18s ease;
}

.foot-col a:hover {
  color: var(--gold-deep);
}

.foot-bottom {
  margin-top: 52px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
  color: var(--sub);
}

.foot-legal-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.foot-legal-links a {
  color: var(--sub);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.18s ease;
}

.foot-legal-links a:hover {
  color: var(--gold-deep);
  text-decoration: underline;
}

.foot-legal-sep {
  color: var(--line);
  font-size: 9px;
  user-select: none;
}

/* ---------- Reveal initial states ---------- */
.reveal-in {
  will-change: opacity, transform;
}

/* ==========================================================================
   ABOUT US PAGE STYLES (CLEAN & MINIMALIST REDESIGN)
   ========================================================================== */

.about-page {
  padding-top: 20px;
}

/* About Hero */
.about-hero {
  padding: 60px 0 70px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 52px;
  align-items: center;
}

.about-hero-content h1 {
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.14;
  letter-spacing: -0.025em;
  margin: 14px 0 18px;
  color: var(--ink);
}

.about-hero-content .lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--sub);
  max-width: 54ch;
}

.about-stats-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.stat-pill {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 2px 6px rgba(23, 24, 28, 0.03);
}

.stat-pill .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--gold-deep);
}

.stat-pill .lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--sub);
}

.about-hero-media .media-frame {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(23, 24, 28, 0.07);
  border: 1px solid var(--line);
  background: var(--cream);
}

.about-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-hero-media:hover .about-hero-img {
  transform: scale(1.025);
}

.media-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(23, 24, 28, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.media-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
}

/* Chairman Section (Spotlight with Portrait) */
.chairman-sec {
  padding: 80px 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.chairman-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: center;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 44px;
  border: 1px solid rgba(231, 161, 65, 0.25);
  box-shadow: 0 12px 36px rgba(23, 24, 28, 0.05);
}

.chairman-portrait-wrap {
  width: 100%;
}

.portrait-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(23, 24, 28, 0.08);
  border: 1px solid var(--line);
  background: #FFFFFF;
}

.chairman-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.portrait-meta {
  padding: 16px 20px;
  background: #FFFFFF;
  border-top: 1px solid var(--line);
  text-align: center;
}

.portrait-meta h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 2px;
}

.portrait-meta .title {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.portrait-meta .org {
  display: block;
  font-size: 12px;
  color: var(--sub);
  margin-top: 2px;
}

.chairman-content h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  margin: 10px 0 24px;
}

.quote-body p {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 18px;
}

.quote-body p:last-child {
  margin-bottom: 0;
}

.chairman-signature {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.sign-name {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
}

.sign-title {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 3px;
}

.sign-desc {
  display: block;
  font-size: 13px;
  color: var(--sub);
  font-weight: 500;
  margin-top: 3px;
}

/* ==========================================
   Purpose, Vision, Mission & Values Redesign
   (Warm Luxury Cream & Gold Palette - No Black BG)
   ========================================== */
.purpose-sec {
  padding: 96px 0;
  background: #FFFFFF;
}

.purpose-container {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 48px;
}

/* 1. Guiding Principle (Luxury Clean White Showcase) */
.pp-quote-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 48px 44px 44px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(23, 24, 28, 0.05);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.pp-quote-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(23, 24, 28, 0.08);
}

.pp-quote-watermark {
  position: absolute;
  top: -24px;
  right: 36px;
  font-family: Georgia, serif;
  font-size: 160px;
  line-height: 1;
  color: rgba(231, 161, 65, 0.12);
  user-select: none;
  pointer-events: none;
}

.pp-quote-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.pp-tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8C6507;
  background: #FFFFFF;
  border: 1px solid rgba(231, 161, 65, 0.35);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pp-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.pp-quote-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.35;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.pp-quote-sub {
  font-size: 15.5px;
  line-height: 1.65;
  color: #555555;
  max-width: 64ch;
  margin: 0 auto;
}

/* 2. Vision & Mission Duo Grid */
.purpose-duo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pd-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(23, 24, 28, 0.05);
  position: relative;
  cursor: pointer;
}

.pd-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(23, 24, 28, 0.08);
}

.pd-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.pd-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--r-sm);
  background: rgba(231, 161, 65, 0.1);
  border: 1px solid rgba(231, 161, 65, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  flex-shrink: 0;
}

.pd-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
}

.pd-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
}

.pd-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 12px;
}

.pd-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--sub);
  margin: 0;
}

/* 3. Core Values Grid */
.purpose-values-block {
  margin-top: 10px;
}

.pv-intro {
  text-align: center;
  margin-bottom: 28px;
}

.pv-sublabel {
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-deep);
  margin-bottom: 6px;
}

.pv-intro h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin: 0;
}

.purpose-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pv-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 26px 26px;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(23, 24, 28, 0.05);
  box-sizing: border-box;
  position: relative;
  cursor: pointer;
}

.pv-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(23, 24, 28, 0.08);
}

.pv-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.pv-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-deep);
  letter-spacing: 0.05em;
}

.pv-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(231, 161, 65, 0.1);
  border: 1px solid rgba(231, 161, 65, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
}

.pv-icon-wrap svg {
  width: 17px;
  height: 17px;
}

.pv-card h4 {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}

.pv-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--sub);
  margin: 0;
}

/* Advantage Section (The Academy Advantage - Clean Executive Showcase) */
.advantage-sec {
  padding: 100px 0;
  background: transparent;
  border-top: none;
  border-bottom: none;
  position: relative;
}

@media (max-width: 768px) {
  .advantage-sec {
    padding: 60px 0;
  }
}

.advantage-sec .sec-label {
  color: var(--gold-deep);
  letter-spacing: 0.08em;
  font-weight: 700;
}

.advantage-sec .sec-head h2 {
  color: var(--ink);
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 10px;
}

.advantage-sec .sec-head p {
  color: var(--sub);
  font-size: 16px;
  max-width: 60ch;
  margin: 0;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
}

@media (max-width: 1080px) {
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.adv-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(23, 24, 28, 0.03);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.adv-card:hover {
  transform: translateY(-5px);
  border-color: rgba(231, 161, 65, 0.45);
  box-shadow: 0 16px 36px rgba(23, 24, 28, 0.08);
}

.adv-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.adv-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--gold-tint-soft);
  border: 1px solid var(--gold-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  transition: transform 0.25s ease, background 0.25s ease;
}

.adv-card:hover .adv-icon-wrap {
  background: var(--gold-tint);
  transform: scale(1.05);
}

.adv-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.adv-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-deep);
  letter-spacing: 0.06em;
  background: rgba(231, 161, 65, 0.08);
  padding: 4px 10px;
  border-radius: 100px;
}

.adv-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.35;
}

.adv-card p {
  font-size: 14.5px;
  color: var(--sub);
  line-height: 1.6;
  margin: 0;
}

/* About CTA */
.about-cta-sec {
  padding: 50px 0 90px;
}

.about-cta-card {
  background: linear-gradient(135deg, #FAF7F2 0%, #F5EFE4 100%);
  border: 1px solid rgba(231, 161, 65, 0.3);
  border-radius: var(--r);
  padding: 60px 40px;
  text-align: center;
  color: var(--ink);
  box-shadow: 0 12px 36px rgba(23, 24, 28, 0.06);
}

.about-cta-card .cta-badge {
  background: rgba(231, 161, 65, 0.12);
  border: 1px solid rgba(231, 161, 65, 0.3);
  color: var(--gold-deep);
}

.about-cta-card h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--ink);
  margin: 0 0 14px;
}

.about-cta-card p {
  font-size: 16px;
  color: var(--sub);
  max-width: 52ch;
  margin: 0 auto 30px;
  line-height: 1.65;
}

.cta-btn-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn-row .btn.ghost {
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid var(--line);
}

.cta-btn-row .btn.ghost:hover {
  background: var(--cream);
  border-color: rgba(231, 161, 65, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  .chairman-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 28px;
  }

  .chairman-portrait-wrap {
    max-width: 360px;
    margin: 0 auto;
  }

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

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

/* Responsive styles for About page & Purpose section */
@media (max-width: 1200px) {
  .about-page .wrap {
    padding: 0 32px;
  }

  .about-hero-img {
    height: 460px;
  }

  .chairman-layout {
    grid-template-columns: 360px 1fr;
    gap: 48px;
    padding: 44px;
  }
}

@media (max-width: 1024px) {
  .about-hero {
    padding: 65px 0 75px;
  }

  .about-hero-grid {
    gap: 44px;
  }

  .about-hero-img {
    height: 400px;
  }

  .chairman-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 28px;
  }

  .chairman-portrait-wrap {
    max-width: 360px;
    margin: 0 auto;
  }

  .purpose-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

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

@media (max-width: 768px) {
  .about-hero {
    padding: 50px 0 60px;
  }

  .about-hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-hero-img {
    height: 340px;
  }

  .purpose-sec {
    padding: 60px 0;
  }

  .purpose-container {
    gap: 28px;
    margin-top: 36px;
  }

  .pp-quote-card {
    padding: 36px 24px;
  }

  .pp-quote-watermark {
    font-size: 110px;
    right: 18px;
    top: -15px;
  }

  .purpose-duo-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pd-card {
    padding: 28px 24px;
  }
}

@media (max-width: 520px) {
  .about-page .wrap {
    padding: 0 20px;
  }

  .about-hero-img {
    height: 260px;
  }

  .purpose-values-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pv-card {
    padding: 24px 20px;
  }

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

  .about-cta-card {
    padding: 40px 20px;
  }
}

/* ==========================================================================
   PROGRAMMES LIVE SEARCH & AUTOCOMPLETE DROPDOWN
   ========================================================================== */

.programmes-search-wrap {
  max-width: 820px;
  margin: 0 auto 44px;
  position: relative;
  z-index: 40;
}

.programmes-search-bar {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  background: #FFFFFF;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 6px 14px 6px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.programmes-search-bar:focus-within {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(231, 161, 65, 0.16), 0 0 0 3.5px rgba(231, 161, 65, 0.12);
}

.ps-search-ic {
  color: var(--gold-deep);
  flex-shrink: 0;
  margin-right: 4px;
}

.programmes-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15.5px;
  font-weight: 500;
  font-family: inherit;
  color: var(--ink);
  padding: 11px 12px;
}

.programmes-search-bar input::placeholder {
  color: #8E929E;
  font-weight: 400;
}

.ps-clear-btn {
  background: #ECE9E1;
  border: none;
  font-size: 17px;
  line-height: 1;
  color: var(--sub);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  padding: 0;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.ps-clear-btn:hover {
  background: var(--ink);
  color: #FFFFFF;
}

/* Floating Live Autocomplete Dropdown Menu - Simple, Clean & Easy */
.search-live-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
  z-index: 100;
  overflow: hidden;
  max-height: 480px;
  display: flex;
  flex-direction: column;
  animation: sldFadeIn 0.18s ease;
}

@keyframes sldFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sld-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 18px;
  background: #FAF8F5;
  border-bottom: 1px solid #EFEAE3;
  font-size: 12px;
  color: #666666;
  flex-shrink: 0;
}

.sld-header-title {
  font-weight: 700;
  color: #444444;
  font-size: 12px;
  letter-spacing: 0.02em;
}

.sld-count-badge {
  background: #EFEAE3;
  color: #555555;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

.sld-results-list {
  overflow-y: auto;
  max-height: 380px;
  padding: 4px 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(231, 161, 65, 0.3) transparent;
}

.sld-results-list::-webkit-scrollbar {
  width: 5px;
}

.sld-results-list::-webkit-scrollbar-thumb {
  background-color: rgba(231, 161, 65, 0.3);
  border-radius: 6px;
}

/* Individual Search Result Row - Clean, Easy, Minimal */
.sld-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  cursor: pointer;
  transition: background 0.15s ease;
  text-align: left;
  border-bottom: 1px solid #F6F3EE;
}

.sld-item:last-child {
  border-bottom: none;
}

.sld-item:hover {
  background: #FAF7F2;
}

.sld-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  flex-shrink: 0;
  padding: 4px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sld-item:hover .sld-item-icon {
  background: #FFFFFF;
  border-color: rgba(231, 161, 65, 0.5);
  box-shadow: 0 3px 10px rgba(231, 161, 65, 0.18);
  transform: scale(1.06);
}

.sld-item-icon img.course-custom-icon,
.sld-item-icon img.sld-course-icon-img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

.sld-item:hover .sld-item-icon img.course-custom-icon,
.sld-item:hover .sld-item-icon img.sld-course-icon-img {
  transform: scale(1.08);
}

.sld-item-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-deep);
  display: block;
}

.sld-item-main {
  flex: 1;
  min-width: 0;
}

.sld-item-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sld-item-title mark {
  background: rgba(231, 161, 65, 0.25);
  color: #1A1200;
  padding: 0 3px;
  border-radius: 3px;
  font-weight: 700;
}

.sld-item-sub {
  font-size: 12.5px;
  color: #777777;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sld-item-arrow {
  color: #B0AAA0;
  display: flex;
  align-items: center;
  transition: transform 0.18s ease, color 0.18s ease;
  flex-shrink: 0;
}

.sld-item:hover .sld-item-arrow {
  color: var(--gold-deep);
  transform: translateX(3px);
}

/* Footer note */
.sld-footer {
  display: flex;
  justify-content: center;
  padding: 11px 18px;
  background: #FAF8F5;
  border-top: 1px solid #EFEAE3;
  font-size: 12.5px;
  flex-shrink: 0;
}

.sld-footer-link {
  color: var(--gold-deep);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.15s ease;
}

.sld-footer-link:hover {
  color: #1A1200;
  text-decoration: underline;
}

.sld-empty {
  padding: 38px 24px;
  text-align: center;
  color: var(--sub);
  font-size: 14.5px;
  line-height: 1.6;
}

.sld-empty strong {
  color: var(--ink);
}

.sld-empty em {
  color: var(--gold-deep);
  font-style: normal;
  font-weight: 700;
}

/* Popular Search Quick Chips */
.search-quick-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.sqc-label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--sub);
  margin-right: 4px;
}

.sqc-chip {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px 13px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  font-family: inherit;
}

.sqc-chip:hover,
.sqc-chip.active {
  background: var(--gold);
  border-color: var(--gold-deep);
  color: #1A1200;
  transform: translateY(-1.5px);
  box-shadow: 0 4px 14px rgba(231, 161, 65, 0.28);
}

@media (max-width: 768px) {
  .programmes-search-wrap {
    margin-bottom: 32px;
  }

  .programmes-search-bar {
    padding: 4px 10px 4px 14px;
  }

  .programmes-search-bar input {
    font-size: 14px;
    padding: 9px 8px;
  }

  .sld-item {
    padding: 10px 14px;
    gap: 10px;
  }

  .search-quick-chips {
    justify-content: flex-start;
  }
}

/* ==========================================================================
   DEDICATED COURSES PAGE (/courses/)
   ========================================================================== */

a.cat-card {
  text-decoration: none;
  color: inherit;
}

.courses-page {
  background: #FFFFFF;
  color: var(--ink);
}

/* Courses Hero Section */
.courses-hero {
  padding: 80px 0 60px;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.courses-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.courses-hero-content .sec-label {
  display: inline-block;
  margin-bottom: 14px;
}

.courses-hero-content h1 {
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}

.courses-hero-content .lead {
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.6;
  color: var(--sub);
  max-width: 740px;
  margin: 0 auto 36px;
}

.courses-search-wrap {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 40;
}

.courses-stats-strip {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.c-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.c-stat-item .cs-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold-deep);
  line-height: 1;
}

.c-stat-item .cs-lbl {
  font-size: 13px;
  font-weight: 600;
  color: var(--sub);
}

/* Catalogue Main Section */
.courses-catalogue-sec {
  padding: 48px 0 90px;
}

.catalogue-header-row {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.catalogue-header-row h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 800;
  margin: 8px 0 12px;
  letter-spacing: -0.015em;
}

.catalogue-header-row p {
  color: var(--sub);
  font-size: 15.5px;
  line-height: 1.55;
}

/* Category Tabs Bar - Executive Segmented Control */
.courses-tabs-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 36px;
  width: 100%;
}

.courses-tabs-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #F7F5F0;
  border: 1px solid rgba(23, 24, 28, 0.08);
  border-radius: 100px;
  padding: 5px;
  max-width: 100%;
  box-shadow: inset 0 1px 3px rgba(23, 24, 28, 0.04);
}

.courses-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 100px;
  border: 1px solid transparent;
  background: transparent;
  color: #666666;
  font-family: inherit;
  font-weight: 600;
  font-size: 13.5px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.courses-tab-btn .tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  border-radius: 100px;
  background: rgba(23, 24, 28, 0.07);
  color: #666666;
  font-size: 11px;
  font-weight: 700;
  transition: all 0.2s ease;
}

/* Inactive Tab Hover - Smooth, elegant lighting without jarring jumps */
.courses-tab-btn:hover:not(.active) {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(23, 24, 28, 0.05);
  box-shadow: 0 2px 8px rgba(23, 24, 28, 0.04);
}

.courses-tab-btn:hover:not(.active) .tab-count {
  background: rgba(23, 24, 28, 0.12);
  color: var(--ink);
}

/* Active Tab State - Crisp Pure White Surface, Subtle Gold Accent, No Black BG! */
.courses-tab-btn.active {
  background: #FFFFFF;
  border-color: rgba(231, 161, 65, 0.45);
  color: var(--ink);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(23, 24, 28, 0.08), 0 1px 3px rgba(23, 24, 28, 0.04);
}

.courses-tab-btn.active .tab-count {
  background: var(--gold);
  color: #1A1200;
  font-weight: 800;
}

/* Subtle Click / Active Press Effect */
.courses-tab-btn:active {
  transform: scale(0.98);
}

@media (max-width: 860px) {
  .courses-tabs-wrap {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    margin: 0 -32px 24px -32px !important;
    padding: 6px 32px 14px 32px !important;
    width: calc(100% + 64px) !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }
  .courses-tabs-wrap::-webkit-scrollbar {
    display: none !important;
  }
  .courses-tabs-bar {
    display: inline-flex !important;
    flex-wrap: nowrap !important;
    flex-shrink: 0 !important;
    width: max-content !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 2px 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    gap: 8px !important;
  }
  .courses-tab-btn {
    display: inline-flex !important;
    align-items: center !important;
    flex-shrink: 0 !important;
    white-space: nowrap !important;
    padding: 9px 16px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    gap: 7px !important;
    background: #F7F5F0 !important;
    border: 1px solid rgba(23, 24, 28, 0.09) !important;
    border-radius: 100px !important;
    color: #555555 !important;
    box-shadow: 0 1px 3px rgba(23, 24, 28, 0.04) !important;
    -webkit-tap-highlight-color: transparent !important;
  }
  .courses-tab-btn:hover:not(.active) {
    background: #FFFFFF !important;
    border-color: rgba(23, 24, 28, 0.15) !important;
    color: var(--ink) !important;
  }
  .courses-tab-btn.active {
    background: #FFFFFF !important;
    border-color: var(--gold-deep) !important;
    color: var(--ink) !important;
    font-weight: 700 !important;
    box-shadow: 0 3px 12px rgba(231, 161, 65, 0.18), 0 0 0 1.5px var(--gold-deep) !important;
  }
  .courses-tab-btn .tab-count {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 20px !important;
    height: 19px !important;
    padding: 0 6px !important;
    border-radius: 100px !important;
    background: rgba(23, 24, 28, 0.08) !important;
    color: #666666 !important;
    font-size: 11px !important;
    font-weight: 700 !important;
  }
  .courses-tab-btn.active .tab-count {
    background: var(--gold) !important;
    color: #1A1200 !important;
    font-weight: 800 !important;
  }
}

@media (max-width: 640px) {
  .courses-tabs-wrap {
    margin: 0 -20px 20px -20px !important;
    padding: 6px 20px 14px 20px !important;
    width: calc(100% + 40px) !important;
  }
}

/* Filter Status Bar */
.courses-filter-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 18px;
  margin-bottom: 24px;
  font-size: 13.5px;
}

.cfs-text {
  color: var(--sub);
}

.cfs-text strong {
  color: var(--ink);
}

.cfs-reset {
  background: none;
  border: none;
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  font-family: inherit;
}

.cfs-reset:hover {
  background: #FAF3DE;
}

/* Courses Cards Grid */
.courses-catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1080px) {
  .courses-catalogue-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 680px) {
  .courses-catalogue-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.courses-catalogue-grid .course-card,
.courses-catalogue-grid a.course-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(23, 24, 28, 0.03);
  text-decoration: none;
  color: inherit;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  min-height: 250px;
}

.courses-catalogue-grid .course-card:hover,
.courses-catalogue-grid a.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(23, 24, 28, 0.08);
  border-color: rgba(231, 161, 65, 0.45);
}

.courses-catalogue-grid .why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.courses-catalogue-grid .why-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.courses-catalogue-grid .course-card:hover .why-icon-wrap {
  border-color: rgba(231, 161, 65, 0.4);
  box-shadow: 0 4px 14px rgba(231, 161, 65, 0.15);
  transform: scale(1.06);
}

.courses-catalogue-grid .why-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.courses-catalogue-grid .why-icon-wrap img.course-custom-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.courses-catalogue-grid .course-card:hover .why-icon-wrap img.course-custom-icon {
  transform: scale(1.08);
}

.courses-catalogue-grid .why-card-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
  background: rgba(231, 161, 65, 0.08);
  padding: 4px 10px;
  border-radius: 100px;
}

.courses-catalogue-grid .course-card h4 {
  font-size: 18.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 10px;
}

.courses-catalogue-grid .course-card p {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.6;
  margin: 0 0 20px;
  flex: 1;
}

.courses-catalogue-grid .course-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #F0ECE4;
  gap: 10px;
}

.course-timing-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #555555;
  background: #FAF7F2;
  border: 1px solid rgba(231, 161, 65, 0.22);
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.course-timing-tag svg {
  color: var(--gold-deep);
  flex-shrink: 0;
}

.course-timing-tag strong {
  color: var(--ink);
  font-weight: 700;
}

.courses-catalogue-grid .course-card:hover .course-timing-tag {
  background: #FDF5E2;
  border-color: rgba(231, 161, 65, 0.5);
}

.courses-catalogue-grid .course-action-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
  color: var(--ink);
  flex-shrink: 0;
}

.courses-catalogue-grid .course-action-arrow svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.courses-catalogue-grid .course-card:hover .course-action-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: #1A1200;
  transform: scale(1.08);
}

/* Empty State */
.courses-empty-state {
  text-align: center;
  padding: 60px 20px;
  background: #FFFFFF;
  border-radius: 18px;
  border: 1px dashed var(--line);
  max-width: 540px;
  margin: 30px auto 0;
}

.ces-icon {
  font-size: 42px;
  margin-bottom: 12px;
}

.courses-empty-state h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.courses-empty-state p {
  color: var(--sub);
  font-size: 14.5px;
  margin-bottom: 22px;
}

/* Corporate Enquiry Section - Clean Light Theme (No Black Background) */
.courses-enquiry-sec {
  padding: 85px 0 95px;
  background: #FFFFFF;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.courses-enquiry-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
}

@media (max-width: 900px) {
  .courses-enquiry-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.ceq-info .sec-label {
  color: var(--gold-deep);
  font-weight: 700;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.ceq-info h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  margin: 12px 0 16px;
  letter-spacing: -0.015em;
}

.ceq-info p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--sub);
  margin-bottom: 32px;
  max-width: 54ch;
}

.ceq-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 34px;
}

.cp-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.cp-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-tint-soft);
  border: 1px solid var(--gold-tint);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cp-item strong {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.cp-item p {
  font-size: 14px;
  color: var(--sub);
  margin: 0;
  line-height: 1.5;
}

.ceq-direct-call {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--sub);
}

.ceq-direct-call .phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-deep);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.ceq-direct-call .phone-link:hover {
  opacity: 0.85;
  transform: translateX(2px);
}

.ceq-form-wrap .form-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 38px 34px;
  color: var(--ink);
  box-shadow: 0 12px 36px rgba(23, 24, 28, 0.07);
}

.ceq-form-wrap .form-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}

.ceq-form-wrap .form-card p {
  color: var(--sub);
  font-size: 14.5px;
  line-height: 1.5;
  margin-bottom: 22px;
}

/* ============================================
   404 Error Page
   ============================================ */

.error-404-page {
  background: #FFFFFF;
  color: var(--ink);
  min-height: 70vh;
}

/* Hero Section */
.e404-hero {
  padding: 100px 0 80px;
  text-align: center;
  background: #FFFFFF;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.e404-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Giant decorative 404 watermark behind content */
.e404-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -54%);
  font-size: clamp(180px, 22vw, 300px);
  font-weight: 900;
  line-height: 1;
  color: rgba(231, 161, 65, 0.06);
  letter-spacing: -0.04em;
  user-select: none;
  pointer-events: none;
  z-index: 1;
  white-space: nowrap;
}

/* Gold safety icon */
.e404-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: rgba(231, 161, 65, 0.1);
  border: 1px solid rgba(231, 161, 65, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
}

/* Badge */
.e404-badge {
  display: inline-block;
  background: rgba(231, 161, 65, 0.1);
  border: 1px solid rgba(231, 161, 65, 0.3);
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

/* Main heading */
.e404-heading {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 20px;
}

/* Sub text */
.e404-sub {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--sub);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 36px;
}

/* CTA button row */
.e404-btn-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.e404-btn-primary,
.e404-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.e404-btn-secondary {
  color: var(--ink);
  background: #FFFFFF;
  border: 1.5px solid var(--line);
}

.e404-btn-secondary:hover {
  background: var(--cream);
  border-color: rgba(231, 161, 65, 0.5);
}

/* Quick Links Section */
.e404-links-sec {
  padding: 70px 0 90px;
  background: #FFFFFF;
}

.e404-links-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sub);
  margin: 0 0 28px;
}

.e404-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1000px;
  margin: 0 auto;
}

.e404-link-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 20px;
  text-decoration: none;
  color: var(--ink);
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.24s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(23, 24, 28, 0.05);
}

.e404-link-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(23, 24, 28, 0.08);
}

.e404-link-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(231, 161, 65, 0.08);
  border: 1px solid rgba(231, 161, 65, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  flex-shrink: 0;
}

.e404-link-text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.e404-link-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.e404-link-text span {
  font-size: 12.5px;
  color: var(--sub);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.e404-link-arrow {
  color: #C0B8AE;
  flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.e404-link-card:hover .e404-link-arrow {
  color: var(--gold-deep);
  transform: translate(2px, -2px);
}

/* Responsive */
@media (max-width: 900px) {
  .e404-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .e404-hero {
    padding: 70px 0 60px;
  }
  .e404-links-grid {
    grid-template-columns: 1fr;
  }
  .e404-btn-row {
    flex-direction: column;
    align-items: stretch;
  }
  .e404-btn-primary,
  .e404-btn-secondary {
    justify-content: center;
  }
}

/* ============================================
   Contact Page — template-contact.php
   ============================================ */

.contact-page-main {
  background: #FFFFFF;
}

/* Hero */
.contact-page-hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--line);
  background: #FFFFFF;
}

.contact-page-hero-inner {
  max-width: 680px;
}

.contact-page-title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 12px 0 18px;
}

.contact-page-sub {
  font-size: clamp(15px, 1.6vw, 17.5px);
  color: var(--sub);
  line-height: 1.65;
  max-width: 560px;
}

/* Body: Two-column grid */
.contact-page-body {
  padding: 72px 0 80px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: start;
}

/* Info Side */
.contact-page-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cpi-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.cpi-card:first-child {
  padding-top: 0;
}

.cpi-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(231, 161, 65, 0.08);
  border: 1px solid rgba(231, 161, 65, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  flex-shrink: 0;
}

.cpi-body {
  flex: 1;
}

.cpi-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--sub);
  margin-bottom: 5px;
}

.cpi-value {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}

.cpi-value a {
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}

.cpi-value a:hover {
  color: var(--gold-deep);
}

.cpi-divider {
  height: 1px;
  background: var(--line);
  margin: 8px 0 18px;
  display: none;
}

.cpi-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.6;
  margin-top: 20px;
  padding: 16px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--line);
}

.cpi-note svg {
  flex-shrink: 0;
  color: var(--gold-deep);
  margin-top: 2px;
}

/* Form Side */
.contact-page-form-wrap .form-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 32px rgba(23, 24, 28, 0.06);
}

.contact-page-form-wrap .form-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}

.contact-page-form-wrap .form-card p {
  color: var(--sub);
  font-size: 14.5px;
  line-height: 1.5;
  margin-bottom: 28px;
}

/* Map Section */
.contact-page-map-sec {
  background: var(--cream);
  border-top: 1px solid var(--line);
  padding-bottom: 0;
}

.contact-map-header {
  padding: 64px 0 40px;
  max-width: 600px;
}

.contact-map-header h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 10px 0 14px;
}

.contact-map-header p {
  font-size: 15.5px;
  color: var(--sub);
  line-height: 1.65;
}

.contact-map-frame {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0;
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 480px;
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-deep);
  text-decoration: none;
  padding: 20px 0 28px;
  transition: color 0.2s ease;
}

.contact-map-link:hover {
  color: var(--ink);
}

/* Responsive */
@media (max-width: 960px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-page-hero {
    padding: 60px 0 48px;
  }
}

@media (max-width: 640px) {
  .contact-page-body {
    padding: 48px 0 56px;
  }

  .contact-page-form-wrap .form-card {
    padding: 24px;
  }

  .contact-map-frame iframe {
    height: 320px;
  }
}

/* ==========================================================================
   INDIVIDUAL COURSE PAGE (.single-course-page)
   ========================================================================== */
.single-course-page {
  background: #FFFFFF;
  color: var(--ink);
}

/* Breadcrumbs */
.sc-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--sub);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.sc-breadcrumbs a {
  color: var(--sub);
  text-decoration: none;
  transition: color 0.2s ease;
}

.sc-breadcrumbs a:hover {
  color: var(--gold-deep);
}

.sc-breadcrumbs .bc-sep {
  color: #C0BDAD;
  font-size: 11px;
}

.sc-breadcrumbs .bc-current {
  color: var(--ink);
  font-weight: 600;
}

/* Course Hero */
.sc-hero-sec {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 44px 0 52px;
}

.sc-hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.sc-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.sc-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  padding: 4px;
}

.sc-icon-badge img.course-custom-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.sc-cat-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 100px;
  background: #FAF2DE;
  color: var(--gold-deep);
  border: 1px solid rgba(231, 161, 65, 0.3);
}

.sc-accred-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #333333;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px 14px;
}

.sc-accred-badge svg {
  color: var(--gold-deep);
}

.sc-title {
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}

.sc-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--sub);
  margin-bottom: 28px;
  max-width: 660px;
}

/* Spec Pills Strip */
.sc-pills-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.sc-spec-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 1px 4px rgba(23, 24, 28, 0.03);
}

.sc-sp-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(231, 161, 65, 0.12);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sc-sp-text {
  display: flex;
  flex-direction: column;
}

.sc-sp-text small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--sub);
  font-weight: 600;
}

.sc-sp-text strong {
  font-size: 13.5px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.3;
}

/* Right Quick Card */
.sc-quick-cta-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 28px;
  box-shadow: 0 8px 30px rgba(23, 24, 28, 0.05);
}

.sc-quick-cta-card .sqc-label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: block;
  margin-bottom: 8px;
}

.sc-quick-cta-card h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 10px;
}

.sc-quick-cta-card p {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.55;
  margin-bottom: 22px;
}

.sc-quick-cta-card .phone-direct-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 10px;
  padding: 10px;
  border-radius: 100px;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: all 0.2s ease;
}

.sc-quick-cta-card .phone-direct-btn:hover {
  background: #FAF8F3;
  border-color: var(--ink);
}

/* Course Main Layout */
.sc-body-sec {
  padding: 64px 0 90px;
}

.sc-content-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 52px;
  align-items: start;
}

/* Section Blocks */
.sc-section-block {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid #ECE8DE;
}

.sc-sec-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.sc-sec-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(231, 161, 65, 0.1);
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sc-sec-heading h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.sc-prose {
  font-size: 16px;
  line-height: 1.75;
  color: #3C3E44;
  margin-bottom: 24px;
}

.sc-target-box {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
}

.sc-target-box strong {
  display: block;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-deep);
  margin-bottom: 4px;
}

.sc-target-box p {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.55;
  margin: 0;
}

/* Learning Outcomes */
.sc-sec-sub {
  font-size: 15px;
  color: var(--sub);
  margin-bottom: 18px;
}

.sc-outcomes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sc-outcomes-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: #2D2E33;
}

.sc-check-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #EBF8EE;
  color: #1D6F42;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Modules Accordion Cards */
.sc-modules-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sc-module-card {
  background: #FAFAFA;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
  transition: all 0.2s ease;
}

.sc-module-card:hover {
  background: #FFFFFF;
  border-color: rgba(231, 161, 65, 0.4);
  box-shadow: 0 4px 16px rgba(23, 24, 28, 0.04);
}

.sc-mod-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.sc-mod-num {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
  background: rgba(231, 161, 65, 0.12);
  padding: 3px 10px;
  border-radius: 100px;
}

.sc-mod-head h4 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.sc-mod-desc {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.6;
  margin: 0;
  padding-left: 2px;
}

/* Certification Card */
.sc-cert-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #FDF9EE;
  border: 1px solid rgba(231, 161, 65, 0.35);
  border-radius: 16px;
  padding: 24px;
}

.sc-cert-badge {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--gold);
  color: #1A1200;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sc-cert-info h4 {
  font-size: 17px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}

.sc-cert-info p {
  font-size: 14.5px;
  color: #4A4A4A;
  line-height: 1.55;
  margin: 0;
}

/* Nav Foot */
.sc-nav-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 20px;
}

/* Sticky Right Sidebar */
.sc-sidebar-column {
  position: sticky;
  top: 105px;
}

.sc-sticky-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 36px 30px;
  box-shadow: 0 10px 36px rgba(23, 24, 28, 0.07);
}

.sc-form-header {
  margin-bottom: 22px;
}

.sc-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
  margin-bottom: 6px;
}

.sc-form-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 8px;
}

.sc-form-header p {
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.5;
}

.sc-course-enquiry-form .field {
  margin-bottom: 14px;
}

.sc-course-enquiry-form label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
}

.sc-course-enquiry-form input,
.sc-course-enquiry-form select,
.sc-course-enquiry-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: #FAF8F5;
  transition: all 0.2s ease;
}

.sc-course-enquiry-form input:focus,
.sc-course-enquiry-form select:focus,
.sc-course-enquiry-form textarea:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(231, 161, 65, 0.18);
}

.sc-sidebar-trust {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sc-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--sub);
  font-weight: 600;
}

.sc-trust-item .st-icon {
  color: #1D6F42;
  font-weight: 800;
}

/* Responsive */
@media (max-width: 960px) {
  .sc-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .sc-content-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sc-sidebar-column {
    position: static;
  }
}

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

  .sc-sticky-card {
    padding: 24px 20px;
  }

  .sc-hero-sec {
    padding: 32px 0 40px;
  }
}

/* ==========================================================================
   BSTA Quick Enquiry Popup Modal
   ========================================================================== */
body.modal-open {
  overflow: hidden !important;
}

.bsta-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.bsta-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bsta-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 21, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.bsta-modal-dialog {
  position: relative;
  z-index: 2;
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px 24px 22px;
  box-shadow: 0 20px 50px rgba(15, 17, 21, 0.22),
              0 4px 14px rgba(0, 0, 0, 0.06);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.bsta-modal-overlay.is-open .bsta-modal-dialog {
  transform: translateY(0) scale(1);
}

.bsta-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #F4F5F7;
  border: 1px solid var(--line);
  color: var(--sub);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  z-index: 3;
}

.bsta-modal-close:hover {
  background: #17181C;
  color: #FFFFFF;
  border-color: #17181C;
  transform: rotate(90deg);
}

.bsta-modal-header {
  margin-bottom: 18px;
  padding-right: 28px;
}

.bsta-modal-header h3 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.25;
}

.bsta-modal-header p {
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.45;
  margin: 0;
}

.bsta-modal-form .modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
}

.bsta-modal-form .field {
  display: flex;
  flex-direction: column;
}

.bsta-modal-form .field.full {
  grid-column: 1 / -1;
}

.bsta-modal-form label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
}

.bsta-modal-form label .req {
  color: #e7a141;
}

.bsta-modal-form input[type="text"],
.bsta-modal-form input[type="tel"],
.bsta-modal-form input[type="email"],
.bsta-modal-form input[type="number"],
.bsta-modal-form select,
.bsta-modal-form textarea {
  width: 100%;
  padding: 10px 13px;
  background: #FAFAFB;
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--text);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.bsta-modal-form input:focus,
.bsta-modal-form select:focus,
.bsta-modal-form textarea:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(231, 161, 65, 0.16);
}

.bsta-modal-form textarea {
  resize: vertical;
  min-height: 80px;
}

.bsta-modal-form .modal-actions {
  margin-top: 16px;
}

.bsta-modal-form .modal-submit-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 9px;
}

@media (max-width: 600px) {
  .bsta-modal-dialog {
    padding: 24px 18px 20px;
    border-radius: 16px;
    max-width: 92%;
  }

  .bsta-modal-form .modal-form-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .bsta-modal-form .field.full {
    grid-column: auto;
  }

  .bsta-modal-header h3 {
    font-size: 20px;
  }
}

/* ==========================================================================
   LEGAL PAGES STYLING (PRIVACY POLICY & TERMS AND CONDITIONS)
   ========================================================================== */
.legal-page-main {
  background: var(--bg);
  min-height: 80vh;
  padding-bottom: 90px;
}

.legal-hero {
  padding: 130px 0 54px;
  background: linear-gradient(180deg, rgba(231, 161, 65, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
  border-bottom: 1px solid var(--line);
}

.legal-hero-inner {
  max-width: 860px;
}

.legal-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--sub);
  margin-bottom: 18px;
  line-height: 1.5;
}

.legal-breadcrumb a,
.legal-breadcrumb span {
  white-space: nowrap;
}

.legal-breadcrumb a {
  color: var(--sub);
  transition: color 0.2s;
}

.legal-breadcrumb a:hover {
  color: var(--gold-deep);
}

.legal-breadcrumb .sep {
  color: var(--line);
  user-select: none;
}

.legal-breadcrumb .current {
  color: var(--ink);
  font-weight: 600;
}

.legal-title {
  font-size: clamp(34px, 4.5vw, 52px);
  color: var(--ink);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.legal-sub {
  font-size: 17px;
  color: var(--sub);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 68ch;
}

.legal-meta-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--sub);
}

.legal-meta-bar .meta-dot {
  color: var(--line);
}

.legal-meta-badge {
  background: var(--gold-tint-soft);
  color: var(--gold-deep);
  border: 1px solid rgba(231, 161, 65, 0.35);
  font-weight: 700;
  font-size: 11.5px;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* Legal Body Layout */
.legal-body {
  padding-top: 48px;
}

.legal-layout-grid {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 48px;
  align-items: start;
}

/* Sidebar & Cards (Sticky on Desktop, Static on Mobile) */
.legal-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legal-toc-card,
.legal-contact-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (max-width: 980px) {
  .legal-layout-grid {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .legal-sidebar {
    display: contents !important;
    position: static !important;
    top: auto !important;
  }
  .legal-toc-card {
    order: 1 !important;
    width: 100% !important;
    position: static !important;
    padding: 16px 18px;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  }
  .legal-article {
    order: 2 !important;
    width: 100% !important;
    border-radius: 14px;
    padding: clamp(22px, 5vw, 36px) clamp(16px, 4vw, 28px);
  }
  .legal-contact-card {
    order: 3 !important;
    width: 100% !important;
    position: static !important;
    border-radius: 14px;
    padding: 24px 20px;
  }
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 88px 0 32px;
  }
  .legal-crumb-parent {
    display: none !important;
  }
  .legal-title {
    font-size: clamp(28px, 7vw, 38px);
  }
  .legal-sub {
    font-size: 15px;
    line-height: 1.6;
  }
  .legal-meta-bar {
    gap: 8px;
    font-size: 12px;
  }
  .policy-section {
    padding-top: 18px;
    margin-top: 18px;
  }
}

.legal-toc-card button.toc-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  border: none;
  background: transparent;
  padding: 0 0 12px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  cursor: default;
  text-align: left;
}

.toc-head-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.toc-head svg {
  color: var(--gold-deep);
  flex-shrink: 0;
}

.toc-toggle-indicator {
  display: none;
}

.toc-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.toc-link {
  font-size: 13.5px;
  color: var(--sub);
  line-height: 1.45;
  padding: 7px 10px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.toc-link:hover {
  background: rgba(231, 161, 65, 0.08);
  color: var(--gold-deep);
  transform: translateX(3px);
}

/* Mobile Table of Contents Accordion Behavior */
@media (max-width: 980px) {
  .legal-toc-card button.toc-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 0;
    margin: 0;
    border-bottom: none;
    -webkit-tap-highlight-color: transparent;
  }

  .toc-toggle-indicator {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--ink);
    transition: transform 0.25s ease, background 0.2s ease;
    flex-shrink: 0;
  }

  .legal-toc-card.is-open button.toc-head {
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }

  .legal-toc-card.is-open .toc-toggle-indicator {
    transform: rotate(180deg);
    background: var(--gold-tint);
    color: var(--gold-deep);
  }

  .legal-toc-card .toc-list {
    display: none;
  }

  .legal-toc-card.is-open .toc-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 55vh;
    overflow-y: auto;
    padding-right: 4px;
  }

  .toc-link {
    font-size: 13.5px;
    padding: 8px 10px;
    background: rgba(23, 24, 28, 0.02);
    border-radius: 6px;
  }

  .toc-link:active {
    background: var(--gold-tint);
    color: var(--gold-deep);
  }
}

.policy-section,
section[id] {
  scroll-margin-top: 90px;
}

.legal-contact-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.legal-contact-card p {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.5;
  margin-bottom: 14px;
}

.dpo-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
}

.dpo-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dpo-row .lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--sub);
}

.dpo-row a,
.dpo-row span {
  color: var(--ink);
  font-weight: 500;
}

.dpo-row a:hover {
  color: var(--gold-deep);
}

/* Main Article Content */
.legal-article {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: clamp(28px, 4.5vw, 54px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.legal-highlight-box {
  background: var(--cream);
  border: 1.5px solid rgba(231, 161, 65, 0.35);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.legal-highlight-box .lh-icon {
  flex-shrink: 0;
  color: var(--gold-deep);
  margin-top: 2px;
}

.legal-highlight-box .lh-text strong {
  display: block;
  font-size: 15.5px;
  color: var(--ink);
  margin-bottom: 6px;
}

.legal-highlight-box .lh-text p {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.6;
  margin: 0;
}

.policy-section {
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
}

.policy-section:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

.policy-section > *:last-child {
  margin-bottom: 0 !important;
}

.policy-section h2 {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
  position: relative;
  scroll-margin-top: 110px;
}

.policy-section p {
  font-size: 15px;
  color: #3B3D44;
  line-height: 1.75;
  margin-bottom: 16px;
}

.policy-section ul {
  margin: 16px 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-section li {
  font-size: 14.5px;
  color: #3B3D44;
  line-height: 1.65;
}

.policy-section li strong {
  color: var(--ink);
}

/* Legal Tables */
.legal-table-wrap {
  margin: 22px 0 24px;
  overflow-x: auto;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  text-align: left;
}

.legal-table th {
  background: var(--cream);
  color: var(--ink);
  font-weight: 700;
  padding: 12px 18px;
  border-bottom: 1.5px solid var(--line);
}

.legal-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: #3B3D44;
  line-height: 1.55;
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.legal-table tr:hover td {
  background: rgba(231, 161, 65, 0.04);
}

.legal-address-box {
  background: var(--cream);
  border: 1px solid rgba(231, 161, 65, 0.28);
  border-radius: 10px;
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.7;
  color: #3B3D44;
  margin-top: 14px;
}

.legal-address-box strong {
  color: var(--ink);
}

.legal-address-box a {
  color: var(--gold-deep);
  font-weight: 600;
}