:root {
  /* Blue / White / Grey palette */
  --blue: #1460cc;
  --blue-dark: #0054ad;
  --blue-mid: #1e5db4;
  --blue-light: #e8eef8;
  --blue-pale: #f0f4fb;
  --grey: #f4f6f9;
  --grey-mid: #dde2ea;
  --grey-dark: #8a95a3;
  --ink: #00050c;
  --ink-mid: #3a4557;
  --ink-soft: #6b7891;
  --white: #ffffff;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;

  /* Legacy aliases kept so inner pages don't break */
  --gold: #154994;
  --gold-light: #1e5db4;
  --gold-dark: #0D1B2A;
  --deep-navy: #0D1B2A;
  --navy: #154994;
  --primary: #154994;
  --navy-light: #1e5db4;
  --cream: #f0f4fb;
  --warm-white: #f7f9fc;
  --charcoal: #1a2332;
  --text-mid: #3a4557;
  --text-light: #8a95a3;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

.auth-body {
  font-family: var(--sans);
  background: var(--warm-white);
  color: var(--ink);
  overflow-x: hidden;
}

/* ===== TOPBAR ===== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1400;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: var(--blue-dark);
  color: rgb(255, 255, 255);
  font-size: 14px;
  font-family: var(--sans);

}

.topbar.hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-left a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
  margin-bottom: 10px;
}

.topbar-left a:hover {
  color: white;
}

.topbar-left i {
  font-size: 14px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-right a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 11px;
  transition: color 0.2s;
}

.topbar-right a:hover {
  color: white;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 70px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: top 0.3s ease, background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease;
  isolation: isolate;
}

/* White state — triggered by JS on scroll or on inner pages */
nav.nav-solid {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: var(--grey-mid);
  box-shadow: 0 2px 16px rgba(13, 27, 42, 0.07);
}

/* Plug the 36px topbar gap above the nav with solid white when topbar is gone */
nav.nav-solid.topbar-gone::before {
  content: '';
  position: absolute;
  top: -36px;
  left: 0;
  right: 0;
  height: 36px;
  background: #ffffff;
  pointer-events: none;
}

/* When topbar has scrolled away, nav moves to top */
nav.topbar-gone {
  top: 0;
}

/* Links are white when nav is transparent over hero */
nav:not(.nav-solid) .nav-links>li>a:not(.nav-cta) {
  color: rgba(255, 255, 255, 0.88);
}

nav:not(.nav-solid) .nav-links>li>a:not(.nav-cta):hover {
  color: white;
  background: rgba(255, 255, 255, 0.12);
}

nav:not(.nav-solid) .nav-cta {
  background: white !important;
  color: var(--blue) !important;
}

nav:not(.nav-solid) .hamburger span {
  background: white;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 42px;
  width: auto;
  display: block;
}

/* Logo swap: white logo on transparent/blurred nav, color logo on solid white nav */
nav:not(.nav-solid) .logo-color {
  display: none;
}

nav.nav-solid .logo-white {
  display: none;
}

.footer-brand .nav-logo img {
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.logo-text {
  display: none;
}

.logo-emblem {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--ink-mid);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a:hover {
  color: var(--blue);
  background: var(--blue-pale);
}

.nav-links a.active {
  color: var(--blue);
}

/* Dropdown Styles */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  padding: 8px 0;
  border-radius: 10px;
  border: 1px solid var(--grey-mid);
  box-shadow: 0 12px 32px rgba(13, 27, 42, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2000;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li {
  list-style: none;
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-mid) !important;
  white-space: nowrap;
  text-align: left;
  background: transparent !important;
  border-radius: 0;
}

.dropdown a:hover {
  color: var(--blue) !important;
  background: var(--blue-pale) !important;
  padding-left: 24px;
}

.nav-item.has-dropdown>a::after {
  content: '▾';
  font-size: 10px;
  opacity: 0.5;
}

.nav-cta {
  background: var(--blue) !important;
  color: white !important;
  font-weight: 500 !important;
  padding: 9px 20px !important;
  border-radius: 6px !important;
  margin-left: 8px;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.nav-cta:hover {
  background: var(--blue-mid) !important;
  transform: none;
}

/* Active section indicator on parent dropdown link */
.nav-solid .nav-item.active-section>a,
.nav-item.active-section>a.active {
  color: var(--blue) !important;
  font-weight: 500;
}

nav:not(.nav-solid) .nav-item.active-section>a {
  color: white !important;
  font-weight: 500;
}

/* Bottom underline accent for active section */
.nav-links>li.active-section>a:not(.nav-cta),
.nav-links>li>a.active:not(.nav-cta) {
  position: relative;
}

.nav-solid .nav-links>li.active-section>a:not(.nav-cta)::before,
.nav-solid .nav-links>li>a.active:not(.nav-cta)::before {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

/* ── HERO SLIDER (zi aesthetic) ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--blue-dark);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 7s ease;
}

.slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 27, 42, 0.62) 0%, rgba(13, 27, 42, 0.18) 70%);
  z-index: 1;
}

/* ── SLIDE CONTENT ── */
.text-block {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 5;
  padding: 0 7vw;
  padding-top: 106px;
  /* topbar 36 + nav 70 */
  opacity: 0;
  transition: opacity 0.8s ease 0.2s;
  pointer-events: none;
  max-width: 820px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.text-block.active {
  opacity: 1;
  pointer-events: auto;
}

.slide-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.eyebrow-line {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

.eyebrow-text {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.slide-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(44px, 6vw, 76px);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

.slide-title em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.slide-desc {
  font-family: var(--sans);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 300;
}

.slide-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: white;
  background: var(--blue);
  border: 2px solid var(--blue);
  padding: 13px 28px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-hero-primary:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  transform: translateY(-1px);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 13px 28px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-hero-ghost:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  gap: 10px;
}

.btn-hero-ghost .arrow-line {
  width: 0;
  height: 0;
}

/* ── SLIDER CONTROLS ── */
.nav-dots {
  position: absolute;
  bottom: 96px;
  left: 7vw;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-direction: row;
}

.dot {
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.dot.active {
  width: 48px;
  background: white;
}

.dot.done {
  background: rgba(255, 255, 255, 0.6);
}

.dot::after {
  display: none;
}

/* ── ARROW BUTTONS ── */
.arrow-nav {
  position: absolute;
  bottom: 80px;
  right: 7vw;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  backdrop-filter: blur(4px);
}

.arrow-btn:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.15);
}

.arrow-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* ── SIDE UI (counter) ── */
.side-ui {
  position: absolute;
  right: 7vw;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
  z-index: 10;
}

.counter {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  text-align: right;
}

.counter strong {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 2px;
}

/* ── PROGRESS BAR ── */
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 20;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: rgba(255, 255, 255, 0.6);
  transition: width 0s linear;
}

.progress-fill.running {
  width: 100%;
  transition: width 7.5s linear;
}

/* ── SCROLL HINT ── */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
  opacity: 0.5;
}

.scroll-hint span {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 300;
}

.scroll-line {
  width: 1px;
  height: 35px;
  background: rgba(255, 255, 255, 0.6);
  animation: scrollPulse 2.2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.5);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 900px) {
  .text-block {
    padding: 0 6vw;
    padding-top: 70px;
    max-width: 100%;
  }

  .side-ui {
    display: none;
  }

  .slide-title {
    font-size: 2.4rem;
  }

  .nav-dots {
    bottom: 80px;
  }

  .arrow-nav {
    display: none;
  }
}

/* ── HERO STATS BAR ── */
.hero-stats-strip {
  background: white;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--grey-mid);
}

.hero-stats-strip .stat-block {
  flex: 1;
  max-width: 250px;
  padding: 28px 32px;
  text-align: center;
  border-right: 1px solid var(--grey-mid);
}

.hero-stats-strip .stat-block:last-child {
  border-right: none;
}

.hero-stats-strip .stat-num {
  font-family: var(--serif) !important;
  font-size: 38px !important;
  font-weight: 600 !important;
  color: var(--blue) !important;
  line-height: 1;
  display: block;
}

.hero-stats-strip .stat-label {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-soft) !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

/* ── QUICK LINKS STRIP ── */
.quick-links {
  background: var(--grey);
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid var(--grey-mid);
}

.quick-link {
  flex: 1;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 24px;
  text-decoration: none;
  color: var(--ink-mid);
  border-right: 1px solid var(--grey-mid);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.quick-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.quick-link:hover {
  color: var(--blue);
  background: var(--blue-pale);
}

.quick-link:hover::before {
  transform: scaleX(1);
}

.quick-link:last-child {
  border-right: none;
}

.quick-link-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--blue);
  transition: background 0.2s;
}

.quick-link:hover .quick-link-icon {
  background: rgba(21, 73, 148, 0.15);
}

.quick-link-text strong {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.quick-link-text span {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-soft);
}

/* ── TRUST BAR / PARTNERS ── */
.trust-bar {
  background: white;
  padding: 40px 5vw;
  text-align: center;
  border-bottom: 1px solid var(--grey-mid);
}

.trust-bar p {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.partner-logo {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 600;
  color: rgba(26, 35, 50, 0.3);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.partner-logo:hover {
  color: var(--blue);
}

/* ===== INNER HERO (Sub-pages) ===== */
.inner-hero {
  min-height: 480px;
  height: 52vh;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  padding-top: 106px;
  background: var(--blue);
}

/* Photo layer with parallax via CSS variable set by JS */
.inner-hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--bg-img, linear-gradient(90deg, hwb(0 57% 43% / 0.278) 0%, rgba(9, 0, 43, 0) 100%));
  background-size: cover;
  background-position: center var(--parallax-y, 50%);
  transition: background-position 0.1s linear;
  will-change: background-position;
  transform: scale(1.06);
  animation: heroZoom 30s infinite alternate ease-in-out;
  z-index: 0;
  filter: brightness(0.82) saturate(1.1);
}

/* Inner-hero image slideshow */
.inner-hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ih-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: ihSlide 25s infinite;
  transform: scale(1.06);
  filter: brightness(1.0) saturate(1.1);
}

.ih-slide:nth-child(1) {
  animation-delay: 0s;
}

.ih-slide:nth-child(2) {
  animation-delay: 5s;
}

.ih-slide:nth-child(3) {
  animation-delay: 10s;
}

.ih-slide:nth-child(4) {
  animation-delay: 15s;
}

.ih-slide:nth-child(5) {
  animation-delay: 20s;
}

@keyframes ihSlide {
  0% {
    opacity: 0;
    transform: scale(1.06);
  }

  4% {
    opacity: 1;
  }

  20% {
    opacity: 1;
    transform: scale(1.0);
  }

  24% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

/* Gradient overlay: strong at bottom-left for text legibility */
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 27, 42, 0.65) 0%, rgba(13, 27, 42, 0.25) 50%, rgba(13, 27, 42, 0.05) 100%);
  z-index: 1;
}

/* Bottom accent bar */
.inner-hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--blue), var(--blue-mid), transparent);
}

.inner-hero-content {
  position: relative;
  z-index: 5;
  padding: 0 7vw 48px;
  max-width: 760px;
  text-align: left;
}

/* Breadcrumb */
.inner-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.inner-hero-breadcrumb a,
.inner-hero-breadcrumb span {
  font-size: 11.5px;
  font-family: var(--sans);
  letter-spacing: 0.04em;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}

.inner-hero-breadcrumb a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.inner-hero-breadcrumb .bc-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
}

.inner-hero-breadcrumb .bc-current {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.inner-hero .section-label {
  color: rgba(255, 255, 255, 0.65) !important;
  justify-content: flex-start;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.inner-hero .section-label::before {
  background: rgba(255, 255, 255, 0.45);
}

.inner-hero .section-title {
  font-family: var(--serif) !important;
  color: white !important;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  margin-bottom: 0;
}

.inner-hero .section-title em {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 400;
  font-style: italic;
}

/* Optional subtitle under title */
.inner-hero-desc {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  max-width: 540px;
  font-family: var(--sans);
}

/* Decorative right-side image panel (split layout on wide screens) */
.inner-hero-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 38%;
  z-index: 2;
  overflow: hidden;
  display: none;
}

@media (min-width: 1100px) {
  .inner-hero-panel {
    display: block;
  }

  .inner-hero-content {
    max-width: 58%;
  }
}

.inner-hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  mix-blend-mode: luminosity;
}

/* Vertical divider line */
.inner-hero-panel::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.25), transparent);
  z-index: 2;
}

/* Decorative lines */
.hero-deco {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  overflow: hidden;
  opacity: 0.15;
}

.hero-deco::before {
  content: '';
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  width: 600px;
  height: 600px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.hero-deco::after {
  content: '';
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  width: 400px;
  height: 400px;
  border: 1px solid var(--gold);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 80%;
  max-width: none;
  margin: 0 auto;
  padding: 0 10px;
  padding-top: 60px;
  text-align: center !important;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 100px;
  padding: 8px 18px;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-badge span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

.hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(52px, 7vw, 90px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 8px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-tagline {
  font-family: Arial, sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
  font-style: italic;
  color: #ffffff;
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.55s forwards;
}

.hero-actions {

  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.85s forwards;
}

.btn-auth-primary,
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: white;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(21, 73, 148, 0.2);
}

.btn-auth-primary:hover,
.btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 73, 148, 0.3);
}

.btn-navy {
  background: var(--deep-navy);
  color: white;
  box-shadow: 0 4px 12px rgba(13, 27, 42, 0.15);
}

.btn-navy:hover {
  background: #0d1b2a;
  color: white;
  box-shadow: 0 8px 24px rgba(13, 27, 42, 0.2);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  border: 2px solid var(--blue);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-outline:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(21, 73, 148, 0.2);
}

.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.stat-block {
  flex: 1;
  max-width: 220px;
  padding: 28px 32px;
  background: rgba(0, 0, 0, 0.7);
  border-top: 2px solid rgba(201, 168, 76, 0.3);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  text-align: center;
  transition: background 0.2s;
}

.stat-block:hover {
  background: rgba(0, 0, 0, 0.85);
}

.stat-block:last-child {
  border-right: none;
}

.stat-num {
  font-family: Arial, sans-serif;
  font-size: 40px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
  display: block;
}

/* ===== QUICK LINKS STRIP ===== */
.quick-links {
  background: white;
  display: flex;
  justify-content: center;
  gap: 0;
}

.quick-link {
  flex: 1;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px 28px;
  text-decoration: none;
  color: var(--text-mid);
  border-right: 1px solid rgba(201, 168, 76, 0.1);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}

.quick-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.quick-link:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

.quick-link:hover::before {
  transform: scaleX(1);
}

.quick-link:last-child {
  border-right: none;
}

.quick-link-icon {
  width: 42px;
  height: 42px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  transition: background 0.25s;
}

.quick-link:hover .quick-link-icon {
  background: rgba(201, 168, 76, 0.2);
}

.quick-link-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--navy);
}

.quick-link-text span {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

/* ===== SECTION BASE ===== */
section {
  scroll-margin-top: 70px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--blue);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 300;
  line-height: 1.12;
  color: var(--ink);
}

.section-title em {
  font-style: italic;
  color: var(--blue);
}

/* ===== ABOUT STRIP ===== */
#about {
  padding: 100px 7vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
  background: var(--grey);
}

.about-visual {
  position: relative;
  display: flex;
  flex-direction: column;
}

.about-main-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  overflow: hidden;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: url('../imgs/re.jpg') center/cover;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

/* 3-image mosaic: fills the full height of the adjacent text column */
.about-img-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "main top"
    "bot  bot";
  gap: 10px;
  width: 100%;
  flex: 1;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
}

.about-img-mosaic .aim-main {
  grid-area: main;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.about-img-mosaic .aim-top {
  grid-area: top;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.about-img-mosaic .aim-bot {
  grid-area: bot;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

.about-accent-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: white;
  box-shadow: 0 20px 40px rgba(21, 73, 148, 0.25);
}

.accent-num {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  color: white;
  line-height: 1;
  display: block;
}

.accent-txt {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
  display: block;
}

.about-text .section-title {
  margin-bottom: 20px;
}

.about-text p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--ink-mid);
  margin-bottom: 20px;
  font-weight: 300;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

.pillar {
  padding: 18px 20px;
  background: white;
  border: 1px solid var(--grey-mid);
  border-radius: 10px;
}

.pillar strong {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 5px;
}

.pillar span {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ===== TRAINING SECTION ===== */
#training {
  padding: 100px 7vw;
  background: white;
}

.training-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.training-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 24px;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.training-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s;
  position: relative;
  border: 1px solid var(--grey-mid);
}

.training-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(21, 73, 148, 0.10);
  border-color: rgba(21, 73, 148, 0.2);
}

.training-card-accent {
  height: 4px;
  background: var(--blue);
}

.training-card:nth-child(2) .training-card-accent {
  background: var(--blue-mid);
}

.training-card:nth-child(3) .training-card-accent {
  background: var(--blue-dark);
}

.training-card:nth-child(4) .training-card-accent {
  background: var(--grey-dark);
}

.training-card-.auth-body {
  padding: 32px;
}

.training-icon {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 18px;
}

.training-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
}

.training-card p {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 22px;
  font-weight: 300;
}

.training-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}

.tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  background: var(--blue-pale);
  color: var(--blue);
  border-radius: 20px;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  transition: gap 0.2s;
}

.card-link::after {
  content: '→';
  transition: transform 0.2s;
}

.card-link:hover {
  gap: 8px;
  color: var(--blue-mid);
}

/* ===== CONSULTANCY ===== */
#consultancy {
  padding: 100px 7vw;
  background: var(--grey);
}

#consultancy>* {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 52px;
  max-width: 1200px;
}

.consult-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--grey-mid);
  background: white;
  transition: all 0.25s;
  position: relative;
}

.consult-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.consult-card:hover::before {
  transform: scaleX(1);
}

.consult-card:hover {
  box-shadow: 0 16px 40px rgba(21, 73, 148, 0.09);
  transform: translateY(-3px);
}

.consult-icon {
  display: block;
  overflow: hidden;
}

.consult-icon img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.consult-card h3 {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  color: var(--ink);
  margin: 20px 24px 10px;
}

.consult-card p {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
  margin: 0 24px 24px;
}

/* ===== HOSPITALITY ===== */
#hospitality {
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.684) 0%, rgba(21, 74, 148, 0.223) 100%), url('../assets/IMG-20260603-WA0012.jpg') center/cover no-repeat fixed;
  padding: 100px 7vw;
  position: relative;
  overflow: hidden;
}

#hospitality::before,
#hospitality::after {
  display: none;
}

.hosp-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hosp-header {
  margin-bottom: 52px;
}

.hosp-header .section-label {
  color: rgba(255, 255, 255, 0.7);
}

.hosp-header .section-label::before {
  background: rgba(255, 255, 255, 0.5);
}

.hosp-header .section-title {
  color: white !important;
}

.hosp-subtitle {
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  line-height: 1.7;
  margin-top: 14px;
  font-weight: 300;
}

.hosp-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px;
}

.hosp-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  color: white;
}

.hosp-card:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-4px);
}

.hosp-card.featured {
  grid-row: 1 / 3;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  border-color: rgba(255, 255, 255, 0.15);
}

.hosp-bg-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 25%, rgba(13, 27, 42, 0.92) 75%),
    url('../assets/IMG-20260603-WA0016.jpg') center/cover;
  border-radius: 12px;
}

.hosp-card-content {
  position: relative;
  z-index: 1;
}

.hosp-icon {
  font-size: 28px;
  margin-bottom: 14px;
  display: block;
  color: rgba(255, 255, 255, 0.7);
}

.hosp-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: white !important;
  margin-bottom: 8px;
}

.hosp-card p {
  font-family: var(--sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.6;
  font-weight: 300;
}

.hosp-tag {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 5px 13px;
  border-radius: 20px;
}

.cta-book {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  background: white;
  color: var(--blue-dark);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 6px;
  transition: all 0.25s;
}

.cta-book:hover {
  background: var(--blue-pale);
  transform: translateY(-1px);
}

/* ===== MEDIA SECTION ===== */
#media {
  padding: 100px 7vw;
  background: var(--grey);
}

.media-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  margin-top: 52px;
}

.media-grid {
  align-items: stretch;
}

.news-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--grey-mid);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(21, 73, 148, 0.09);
  border-color: rgba(21, 73, 148, 0.2);
}

.news-thumb {
  height: 180px;
  background: var(--blue) center/cover;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.news-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.news-cat {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 3px 10px;
  background: var(--blue-pale);
  border-radius: 20px;
}

.news-date {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--ink-soft);
}

.news-card h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 10px;
}

.news-card p {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  font-weight: 300;
  flex: 1;
}

.news-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  transition: gap 0.2s;
}

.news-learn-more:hover {
  gap: 10px;
  color: var(--deep-navy);
}

/* ── News Modal ── */
.news-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.news-modal-overlay.open {
  display: flex;
}

.news-modal {
  background: white;
  border-radius: 16px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(13, 27, 42, 0.25);
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.news-modal-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  background: var(--blue) center/cover;
  border-radius: 16px 16px 0 0;
}

.news-modal-body {
  padding: 32px;
}

.news-modal-close {
  position: sticky;
  top: 16px;
  float: right;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(13, 27, 42, 0.08);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -48px -8px 0 0;
  transition: background 0.2s;
}

.news-modal-close:hover {
  background: rgba(13, 27, 42, 0.15);
}

.news-modal-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.news-modal-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 16px;
}

.news-modal-text {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.8;
  font-weight: 300;
  white-space: pre-wrap;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 100px 7vw;
  background: white;
}

.testimonials-section>.reveal {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial {
  padding: 32px;
  border-radius: 12px;
  background: var(--grey);
  border: 1px solid var(--grey-mid);
  position: relative;
  transition: all 0.25s;
}

.testimonial:hover {
  box-shadow: 0 12px 32px rgba(21, 73, 148, 0.08);
  transform: translateY(-2px);
  border-color: rgba(21, 73, 148, 0.15);
}

.quote-mark {
  font-family: var(--serif);
  font-size: 60px;
  color: var(--blue);
  opacity: 0.25;
  line-height: 0.7;
  display: block;
  margin-bottom: 14px;
}

.testimonial p {
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-mid);
  font-style: italic;
  margin-bottom: 22px;
  font-weight: 300;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--blue);
  flex-shrink: 0;
}

.author-info strong {
  display: block;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.author-info span {
  font-family: var(--sans);
  font-size: 11.5px;
  color: var(--ink-soft);
}

.stars {
  color: var(--blue);
  font-size: 12px;
  margin-bottom: 3px;
  display: block;
  opacity: 0.7;
}

/* ===== CONTACT ===== */
#contact {
  background: var(--grey);
  padding: 100px 7vw;
  position: relative;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-label {
  color: var(--blue);
}

.contact-info .section-title {
  color: var(--ink);
  margin-bottom: 20px;
}

.contact-info p {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.detail-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 16px;
  flex-shrink: 0;
}

.detail-text strong {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 3px;
}

.detail-text span {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 14px;
  padding: 40px;
  border: 1px solid var(--grey-mid);
  box-shadow: 0 4px 20px rgba(21, 73, 148, 0.05);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}

.form-group label {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--grey);
  border: 1px solid var(--grey-mid);
  border-radius: 8px;
  padding: 13px 14px;
  font-size: 14px;
  color: var(--ink);
  font-family: var(--sans);
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: white;
}

.form-group select option {
  background: white;
  color: var(--ink);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-submit {
  width: 100%;
  background: var(--blue);
  color: white;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(21, 73, 148, 0.25);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--cream);
  padding: 40px 48px;
  text-align: center;
}

.trust-bar p {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 24px;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.partner-logo {
  font-family: Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(13, 27, 42, 0.35);
  letter-spacing: 2px;
  text-transform: uppercase;
}


/* ===== FOOTER ===== */
footer {
  background: var(--blue-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 64px 7vw 32px;
  font-family: var(--sans);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 52px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 260px;
  font-weight: 300;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.2s;
}

.footer-col ul li a:hover {
  color: white;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.899);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: white;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.2s;
}

.social-link:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
  transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

/* Scroll-triggered fade */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== MOBILE NAV ===== */
.hamburger {
  display: none;
}

@media (max-width: 900px) {
  .topbar {
    display: none;
  }

  nav {
    padding: 0 5vw;
    height: 64px;
    top: 0 !important;
  }

  nav.nav-solid {
    background: rgba(255, 255, 255, 0.97);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 12px 16px;
    gap: 0;
    border-bottom: 1px solid var(--grey-mid);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    box-shadow: 0 8px 24px rgba(13, 27, 42, 0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 13px 10px;
    border-bottom: 1px solid var(--grey-mid);
    color: var(--ink-mid) !important;
  }

  .nav-cta {
    margin: 12px 10px;
    text-align: center;
    border-bottom: none !important;
    color: white !important;
    background: var(--blue) !important;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: var(--grey);
    box-shadow: none;
    display: none;
    border-radius: 0;
    border: none;
  }

  .nav-item:hover .dropdown {
    display: block;
  }

  .dropdown a {
    padding-left: 28px;
    border-bottom: 1px solid var(--grey-mid);
    color: var(--ink-mid) !important;
  }

  .dropdown a:hover {
    background: var(--blue-pale) !important;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
  }

  .hamburger span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    display: block;
    border-radius: 2px;
    transition: 0.3s;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  #about,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-accent-card {
    display: none;
  }

  .training-grid,
  .consult-grid,
  .testimonials-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .hosp-grid {
    grid-template-columns: 1fr;
  }

  .hosp-card.featured {
    min-height: 260px;
    grid-row: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quick-links {
    flex-direction: column;
  }

  .quick-link {
    max-width: 100%;
  }

  .hero-stats-strip {
    flex-wrap: wrap;
  }

  .hero-stats-strip .stat-block {
    max-width: 50%;
    border-bottom: 1px solid var(--grey-mid);
  }

  .inner-hero {
    padding-top: 64px !important;
    min-height: 360px !important;
    height: auto !important;
    align-items: flex-end;
  }

  .inner-hero-content {
    padding: 0 5vw 36px !important;
    text-align: left !important;
  }

  .inner-hero .section-title {
    font-size: clamp(30px, 9vw, 46px) !important;
  }

  .section-title {
    font-size: 32px !important;
  }

  .inner-hero-breadcrumb {
    display: none;
  }

  .inner-hero-desc {
    font-size: 13.5px;
  }

  .content-section,
  .page-section,
  .partner-section,
  .faq-section,
  .research-section,
  .alumni-section,
  .lms-section,
  .package-section,
  .dining-section {
    padding: 60px 5vw !important;
  }

  .news-grid,
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ===== BOOKING SYSTEM ===== */
.booking-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  max-width: 1300px;
  margin: 40px auto;
  padding: 0 48px;
}

@media (max-width: 1100px) {
  .booking-container {
    grid-template-columns: 1fr;
  }
}

.booking-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.booking-sidebar {
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.booking-card {
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(13, 27, 42, 0.08);
  overflow: hidden;
  transition: all 0.3s;
  display: flex;
  gap: 0;
}

.booking-card:hover {
  box-shadow: 0 12px 30px rgba(13, 27, 42, 0.06);
}

.booking-card-img {
  width: 300px;
  height: 200px;
  flex-shrink: 0;
  background: var(--navy);
}

.booking-card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.booking-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.booking-card-title {
  font-family: Arial, sans-serif;
  font-size: 24px;
  color: var(--deep-navy);
}

.booking-card-price {
  font-weight: 700;
  color: var(--navy);
  font-size: 18px;
}

.booking-card-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.booking-card-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Cart Sidebar Styles */
.cart-container {
  background: white;
  border-radius: 8px;
  border: 1px solid var(--gold);
  padding: 32px;
  box-shadow: 0 20px 40px rgba(13, 27, 42, 0.05);
}

.cart-title {
  font-family: Arial, sans-serif;
  font-size: 28px;
  margin-bottom: 24px;
  color: var(--deep-navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 12px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream);
}

.cart-item-info h4 {
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--deep-navy);
}

.cart-item-info span {
  font-size: 12px;
  color: var(--text-light);
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.2s;
}

.qty-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.cart-summary {
  background: var(--cream);
  padding: 20px;
  border-radius: 4px;
  margin-top: 24px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
}

.summary-row.total {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 12px;
  margin-top: 12px;
  font-weight: 700;
  font-size: 18px;
  color: var(--deep-navy);
}

/* Counter styling for multiple guests */
.guest-counter {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--cream);
  padding: 8px 16px;
  border-radius: 100px;
}

.guest-counter span {
  font-weight: 700;
  font-size: 14px;
  min-width: 20px;
  text-align: center;
}

/* ===== GENERAL FORMS ===== */
.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--deep-navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 6px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: var(--charcoal);
  background: white;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(182, 219, 0, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #AAA;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== FOOTER SOCIALS ===== */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.social-link:hover {
  background: var(--gold);
  color: var(--deep-navy);
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Font Awesome Fix */
i.fa-solid,
i.fas {
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900;
}

i.fa-regular,
i.far {
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 400;
}

i.fab,
i.fa-brands {
  font-family: 'Font Awesome 6 Brands' !important;
}

.fa-solid,
.fas {
  font-weight: 900 !important;
}

.fa-regular,
.far {
  font-weight: 400 !important;
}

.fab,
.fa-brands {
  font-weight: 400 !important;
}

/* ===== SHARED PAGE COMPONENTS ===== */
.page-section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.value-card {
  background: white;
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  border: 1px solid rgba(13, 27, 42, 0.05);
  transition: 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.value-card h3 {
  font-family: Arial, sans-serif;
  font-size: 20px;
  color: var(--navy);
}

.history-timeline {
  position: relative;
  margin-top: 60px;
  padding-left: 40px;
  border-left: 2px solid var(--gold);
}

.timeline-item {
  position: relative;
  margin-bottom: 48px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -49px;
  top: 0;
  width: 16px;
  height: 16px;
  background: white;
  border: 3px solid var(--gold);
  border-radius: 50%;
}

.timeline-item .year {
  font-weight: 700;
  color: var(--gold-dark);
  font-size: 14px;
  display: block;
  margin-bottom: 8px;
}

/* ── Org Chart Hierarchy ── */
.org-chart {
  margin-top: 60px;
  overflow-x: auto;
  padding-bottom: 20px;
}

.org-row {
  display: flex;
  justify-content: center;
}

/* Node: card + optional children below */
.org-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Vertical stem downward from parent card to horizontal bar */
.org-node>.org-card-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.org-node>.org-card-wrap::after {
  content: '';
  display: block;
  width: 2px;
  height: 36px;
  background: rgba(201, 168, 76, 0.5);
}

.org-node.leaf>.org-card-wrap::after {
  display: none;
}

/* Children row — horizontal line drawn via first/last child half-borders */
.org-children {
  display: flex;
  justify-content: center;
  gap: 24px;
}

/* Each child node gets a top border (the horizontal crossbar segment) + vertical drop */
.org-children>.org-node {
  padding-top: 36px;
}

.org-children>.org-node::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(201, 168, 76, 0.5);
}

/* vertical drop line from crossbar into the card */
.org-children>.org-node::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 36px;
  background: rgba(201, 168, 76, 0.5);
}

/* first child: horizontal line only to the right of center */
.org-children>.org-node:first-child::before {
  left: 50%;
}

/* last child: horizontal line only to the left of center */
.org-children>.org-node:last-child::before {
  right: 50%;
}

/* single child: no horizontal bar needed, just vertical */
.org-children>.org-node:first-child:last-child::before {
  display: none;
}

/* Cards */
.leader-card {
  text-align: center;
  width: 155px;
  flex-shrink: 0;
}

.leader-card.leader-dg {
  width: 210px;
}

.leader-card.leader-ddg {
  width: 185px;
}

.leader-img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(201, 168, 76, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.leader-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-name {
  font-family: Arial, sans-serif;
  font-size: 13px;
  color: rgb(0, 0, 0);
  margin-bottom: 4px;
  line-height: 1.3;
}

.leader-card.leader-dg .leader-name {
  font-size: 18px;
}

.leader-card.leader-ddg .leader-name {
  font-size: 16px;
}

.leader-title {
  font-size: 10px;
  color: var(--gold-light);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.8px;
  line-height: 1.4;
  display: block;
}

@media (max-width: 1200px) {
  .org-children {
    gap: 14px;
  }

  .leader-card {
    width: 125px;
  }

  .leader-card.leader-dg {
    width: 170px;
  }

  .leader-card.leader-ddg {
    width: 150px;
  }
}

@media (max-width: 700px) {
  .org-children {
    gap: 8px;
  }

  .leader-card {
    width: 90px;
  }

  .leader-card.leader-dg {
    width: 130px;
  }

  .leader-card.leader-ddg {
    width: 115px;
  }

  .leader-name {
    font-size: 10px;
  }

  .leader-title {
    font-size: 8px;
    letter-spacing: 0;
  }

  .leader-img {
    border-radius: 8px;
  }
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.board-card {
  background: white;
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(201, 168, 76, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.board-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(13, 27, 42, 0.08);
  border-color: var(--gold);
}

.member-avatar {
  width: 100px;
  height: 100px;
  background: var(--cream);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--gold-dark);
  border: 2px solid var(--gold);
}

.member-name {
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 8px;
}

.member-role {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-dark);
  font-weight: 700;
}

.chairperson-section {
  max-width: 900px;
  margin: 0 auto 80px;
  background: white;
  padding: 60px;
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 48px;
  border-left: 6px solid var(--gold);
}

.chairperson-img {
  width: 180px;
  height: 180px;
  flex-shrink: 0;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: var(--gold-dark);
  border: 3px solid var(--gold);
}

.chair-info h3 {
  font-family: Arial, sans-serif;
  font-size: 36px;
  color: var(--deep-navy);
  margin-bottom: 8px;
}

.category-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gold);
  color: var(--deep-navy);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
  margin-bottom: 20px;
}

/* ===== PAGE SPECIFIC STYLES ===== */
.gallery-section {
  padding: 100px 48px;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--navy);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(13, 27, 42, 0.8) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.gallery-overlay h3 {
  color: white;
  font-family: Arial, sans-serif;
  font-size: 24px;
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 42, 0.98);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 30px;
  color: white;
  font-size: 32px;
  cursor: pointer;
}

.news-section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 48px;
}

.news-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(13, 27, 42, 0.05);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: var(--gold);
}

.news-img {
  width: 100%;
  height: 220px;
  background: var(--navy);
  object-fit: cover;
}

.news-.auth-body {
  padding: 30px;
}

.news-date {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}

.news-title {
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.news-excerpt {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 24px;
}

.read-more {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.featured-news {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--deep-navy);
  color: white;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 40px;
}

.featured-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-img {
  width: 100%;
  height: 100%;
  background: var(--navy-light);
  object-fit: cover;
}

.faq-section {
  padding: 100px 48px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 24px;
  background: white;
  border-radius: 8px;
  border: 1px solid rgba(13, 27, 42, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-weight: 600;
  color: var(--deep-navy);
}

.faq-answer {
  padding: 0 32px;
  height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
}

.faq-item.active .faq-answer {
  height: auto;
  padding-bottom: 24px;
  padding-top: 8px;
}

.faq-item.active .faq-question {
  color: var(--gold-dark);
  background: var(--warm-white);
}

.partner-section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.partner-card {
  background: white;
  border-radius: 12px;
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(13, 27, 42, 0.04);
  transition: all 0.3s ease;
  border: 1px solid rgba(13, 27, 42, 0.02);
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(13, 27, 42, 0.08);
  border-color: var(--gold);
}

.partner-logo-placeholder {
  width: 120px;
  height: 120px;
  background: var(--cream);
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--navy);
  border: 2px solid white;
}

.intl-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--deep-navy);
  font-size: 10px;
  font-weight: 700;
  border-radius: 100px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.research-section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.research-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 60px;
}

.publication-card {
  background: white;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border-left: 4px solid var(--gold);
  transition: all 0.3s;
}

.pub-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin-bottom: 12px;
  display: block;
}

.pub-title {
  font-family: Arial, sans-serif;
  font-size: 28px;
  color: var(--deep-navy);
  margin-bottom: 16px;
}

.pub-excerpt {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 300;
}

.download-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sidebar-box {
  background: var(--cream);
  padding: 32px;
  border-radius: 8px;
  margin-bottom: 32px;
}

.cat-list {
  list-style: none;
}

.cat-list li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cat-list li a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
}

.alumni-section {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.alumni-card {
  background: white;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  text-align: center;
}

.success-story {
  margin-top: 100px;
  padding: 80px;
  background: var(--navy);
  color: white;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.story-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--gold);
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.1);
}

.quote-txt {
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 24px;
}

.lms-section {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.lms-step {
  background: white;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(13, 27, 42, 0.04);
  position: relative;
}

.step-num {
  position: absolute;
  top: -20px;
  left: 40px;
  width: 40px;
  height: 40px;
  background: var(--gold);
  color: var(--deep-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.lms-cta {
  margin-top: 80px;
  background: var(--warm-white);
  padding: 60px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid var(--gold);
}

.package-section {
  padding: 100px 48px;
  max-width: 1280px;
  margin: 0 auto;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 36px;
  margin-top: 60px;
}

.package-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(21, 73, 148, 0.10);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(21, 73, 148, 0.16);
}

.package-img {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--navy);
}

.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.package-card:hover .package-img img {
  transform: scale(1.06);
}

.package-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(21, 73, 148, 0.55) 100%);
  pointer-events: none;
}

.package-body {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.package-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--deep-navy);
  margin-bottom: 10px;
}

.package-body>p {
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 300;
  margin-bottom: 24px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}

.feature-list li {
  font-size: 13.5px;
  color: var(--text-mid);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-list li .fa-check {
  color: var(--gold, #c9a84c);
  font-size: 11px;
  background: rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dining-section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.dining-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.menu-highlight {
  background: var(--warm-white);
  padding: 40px;
  border-radius: 12px;
  border-left: 4px solid var(--gold);
}

.menu-list {
  list-style: none;
}

.menu-list li {
  font-size: 14px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
}

.gallery-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.preview-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
}

.preview-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.strategy-section {
  padding: 100px 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.strategy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;
}

.strategic-pillar {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  border-top: 4px solid var(--gold);
}

.vision-box {
  background: var(--deep-navy);
  color: white;
  padding: 60px;
  border-radius: 20px;
  text-align: center;
  margin-bottom: 80px;
}

.legal-section {
  padding: 100px 48px;
  max-width: 900px;
  margin: 0 auto;
}


.content-section {
  padding: 100px 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.dg-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
}

@media (max-width: 800px) {
  .dg-layout {
    grid-template-columns: 1fr;
  }
}

.dg-photo {
  width: 100%;
  aspect-ratio: 1;
  background: var(--navy);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 120px;
}

.dg-text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 300;
}

.signature {
  margin-top: 48px;
  border-top: 1px solid var(--cream);
  padding-top: 24px;
}

.signature strong {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 24px;
  color: var(--deep-navy);
}

.calendar-section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.calendar-table th {
  background: var(--navy);
  color: white;
  text-align: left;
  padding: 20px 24px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.calendar-table td {
  padding: 24px;
  border-bottom: 1px solid var(--cream);
  vertical-align: middle;
}

.course-info h4 {
  font-family: Arial, sans-serif;
  font-size: 20px;
  color: var(--deep-navy);
  margin-bottom: 4px;
}

.status-badge {
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-pending {
  background: #fff3cd;
  color: #856404;
}

.status-confirmed {
  background: #d4edda;
  color: #155724;
}

.viability-info {
  font-size: 12px;
  color: var(--text-mid);
}

.viability-bar {
  width: 100px;
  height: 6px;
  background: #eee;
  border-radius: 10px;
  margin-top: 6px;
  position: relative;
  overflow: hidden;
}

.viability-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--gold);
  border-radius: 10px;
}

.custom-request-box {
  margin-top: 60px;
  background: var(--warm-white);
  border: 2px dashed var(--gold);
  padding: 48px;
  border-radius: 16px;
  text-align: center;
}

.reg-section {
  padding: 80px 48px;
  max-width: 900px;
  margin: 0 auto;
}

.reg-card {
  background: white;
  border-radius: 12px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.reg-type-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.type-btn {
  padding: 32px;
  border-radius: 12px;
  border: 2px solid var(--cream);
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  background: var(--warm-white);
}

.type-btn i {
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 16px;
  display: block;
}

.type-btn h4 {
  font-family: Arial, sans-serif;
  font-size: 20px;
  color: var(--deep-navy);
  margin-bottom: 8px;
}

.type-btn.active {
  border-color: var(--gold);
  background: white;
  box-shadow: 0 10px 25px rgba(182, 219, 0, 0.1);
}

.accommodation-box {
  background: var(--cream);
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid var(--gold);
  margin-top: 32px;
}

.course-active-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.card-img {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 80px;
}

.card-content {
  padding: 48px;
}

.step-list {
  margin-top: 40px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(13, 27, 42, 0.04);
  transition: all 0.3s ease;
}

.step-item.locked {
  opacity: 0.5;
  filter: grayscale(1);
}

.step-item.completed {
  border-left: 5px solid #10b981;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
}

.step-item.completed .step-icon {
  background: #d1fae5;
  color: #10b981;
}

.req-section {
  padding: 80px 48px;
  max-width: 900px;
  margin: 0 auto;
}

.req-card {
  background: white;
  border-radius: 12px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.filter-btn {
  padding: 9px 22px;
  border-radius: 20px;
  border: 1px solid var(--grey-mid);
  background: var(--grey);
  color: var(--ink-mid);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(21, 73, 148, 0.2);
}

.course-card {
  background: white;
  border-radius: 12px;
  border: none;
  padding: 40px;
  margin-bottom: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(13, 27, 42, 0.04);
  border-left: 4px solid var(--navy);
}

.course-card:hover {
  box-shadow: 0 15px 45px rgba(13, 27, 42, 0.08);
  transform: translateY(-4px);
}

.course-meta {
  display: flex;
  gap: 24px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 16px;
  align-items: center;
}

.course-meta i {
  color: var(--gold-dark);
  margin-right: 6px;
}

.course-tag {
  padding: 4px 10px;
  background: var(--cream);
  color: var(--gold-dark);
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.download-section {
  padding: 80px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.category-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 32px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  width: fit-content;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.download-card {
  background: white;
  padding: 32px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s;
}

.download-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.file-info {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.file-icon {
  font-size: 32px;
}

.file-name h3 {
  font-family: Arial, sans-serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 4px;
}

.file-meta {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
}

.download-btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
  text-decoration: none;
  border-top: 1px solid #f1f1f1;
  padding-top: 16px;
  transition: gap 0.2s;
}

.vacancies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.vacancy-card {
  background: white;
  padding: 40px;
  border-radius: 8px;
  border: 1px solid rgba(13, 27, 42, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: 0.3s;
}

.vacancy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border-color: var(--gold);
}

.job-type {
  display: inline-block;
  padding: 4px 10px;
  background: var(--cream);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  margin-bottom: 16px;
}

.job-title {
  font-family: Arial, sans-serif;
  font-size: 24px;
  color: var(--deep-navy);
  margin-bottom: 8px;
}

.job-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.secure-section {
  padding: 100px 48px;
  background: var(--warm-white);
}

.secure-box {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.security-notice {
  background: #fef2f2;
  border: 1px solid #fee2e2;
  padding: 24px;
  border-radius: 8px;
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  align-items: center;
}

.security-icon {
  font-size: 32px;
}

.security-text {
  font-size: 13px;
  color: #991b1b;
  line-height: 1.5;
}

.report-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.option-card {
  background: var(--warm-white);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  cursor: pointer;
  transition: 0.3s;
  text-align: center;
}

.option-card:hover {
  background: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-color: var(--gold);
}

.option-card h3 {
  font-family: Arial, sans-serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 10px;
}

.option-card p {
  font-size: 13px;
  color: var(--text-mid);
}

.tender-section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.tender-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.tender-table th {
  background: var(--navy);
  color: white;
  text-align: left;
  padding: 20px 24px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tender-table td {
  padding: 24px;
  border-bottom: 1px solid var(--cream);
  vertical-align: middle;
  font-size: 14px;
}

.tender-link {
  color: var(--gold-dark);
  font-weight: 700;
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-open {
  background: #d1fae5;
  color: #065f46;
}

/* ===== HOSPITALITY & FACILITIES ===== */
.booking-form-container {
  max-width: 1000px;
  margin: 0 auto 80px;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) 180px;
  gap: 24px;
  align-items: flex-end;
}

.room-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.room-card {
  background: var(--navy);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.room-img {
  height: 280px;
  width: 100%;
}

.room-info {
  padding: 40px;
  color: white;
}

.facility-section {
  padding: 100px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.facility-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.facility-row:nth-child(even) {
  direction: rtl;
}

.facility-row:nth-child(even) .facility-text {
  direction: ltr;
}

.facility-visual {
  position: relative;
}

.facility-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.facility-text span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
}

.facility-text h2 {
  font-family: Arial, sans-serif;
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 24px;
}

.facility-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 32px;
  font-weight: 300;
}

.amenity-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.amenity-list li {
  font-size: 13px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
}

.amenity-list li::before {
  content: '?';
  color: var(--gold);
  font-weight: 900;
}

/* ===== CORPORATE BOOKING PORTAL ===== */
.b2b-form-container {
  max-width: 1000px;
  margin: 0 auto 100px;
  background: white;
  padding: 60px;
  border-radius: 16px;
  box-shadow: 0 30px 60px rgba(13, 27, 42, 0.1);
  position: relative;
  z-index: 10;
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  border-bottom: 2px solid var(--cream);
  padding-bottom: 20px;
  position: relative;
  gap: 20px;
}

.step-dot {
  flex: 1;
  text-align: center;
  color: var(--text-light);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.3s;
}

.step-dot.active {
  color: var(--gold-dark);
}

.step-dot.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
}

.step-section {
  display: none;
}

.step-section.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.cycle-card {
  background: var(--warm-white);
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 32px;
  border: 1px solid rgba(13, 27, 42, 0.05);
  position: relative;
}

.remove-cycle-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fee2e2;
  color: #ef4444;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.remove-cycle-btn:hover {
  background: #ef4444;
  color: white;
}

.facility-picker {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

.facility-card {
  padding: 24px;
  background: var(--warm-white);
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s;
}

.facility-card:has(input:checked) {
  border-color: var(--gold);
  background: white;
  box-shadow: 0 10px 25px rgba(182, 219, 0, 0.1);
}

.quote-container {
  padding: 60px;
  background: white;
  border: 1px solid #eee;
  border-radius: 12px;
  font-family: Arial, sans-serif;
}

@media (max-width: 800px) {
  .b2b-form-container {
    padding: 40px 24px;
    margin-top: 0;
    border-radius: 0;
  }

  .step-indicator {
    flex-direction: column;
    gap: 12px;
    border: none;
    margin-bottom: 40px;
  }

  .step-dot {
    text-align: left;
    padding: 12px;
    background: var(--warm-white);
    border-radius: 8px;
  }

  .step-dot.active::after {
    display: none;
  }

  .step-dot.active {
    border-left: 4px solid var(--gold);
    background: white;
  }

  .facility-picker {
    grid-template-columns: 1fr;
  }
}


/* ===== ANIMATION KEYFRAMES ===== */
@keyframes heroZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(0.5);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}


/* ===== LEGACY EXTRACTED STYLES ===== */

/* Styles from apply.php */
.apply-container {
  max-width: 900px;
  margin: 120px auto 80px;
  padding: 0 48px;
}

.form-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  position: relative;
}

.form-progress::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cream);
  z-index: 1;
}

.progress-step {
  width: 32px;
  height: 32px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
}

.progress-step.active {
  background: var(--gold);
  color: var(--deep-navy);
}

.progress-step.done {
  background: var(--navy);
  color: white;
}

.apply-card {
  background: white;
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.form-section {
  display: none;
}

.form-section.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

textarea {
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 6px;
  font-family: inherit;
  min-height: 150px;
}

/* Styles from postgraduate_apply.php */
.apply-container {
  max-width: 1000px;
  margin: 120px auto 80px;
  padding: 0 48px;
}

.form-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  position: relative;
}

.form-progress::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--cream);
  z-index: 1;
}

.progress-step {
  width: 32px;
  height: 32px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
}

.progress-step.active {
  background: var(--gold);
  color: var(--deep-navy);
}

.progress-step.done {
  background: var(--navy);
  color: white;
}

.apply-card {
  background: white;
  padding: 60px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.form-section {
  display: none;
}

.form-section.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 6px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  min-height: 100px;
  transition: all 0.3s ease;
}

textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(182, 219, 0, 0.08);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 24px;
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border-radius: 8px;
  background: #fff;
}

.dynamic-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
  /* Prevent squishing on small screens */
}

.dynamic-table th,
.dynamic-table td {
  border: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  padding: 16px;
  text-align: left;
}

.dynamic-table th {
  background: var(--cream);
  font-weight: 700;
  color: var(--deep-navy);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.dynamic-table input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  font-size: 14px;
  font-family: Arial, sans-serif;
  color: var(--charcoal);
  transition: all 0.2s;
  background: #fafafa;
}

.dynamic-table input:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(182, 219, 0, 0.1);
}

.btn-add {
  background: var(--navy);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.btn-add:hover {
  background: var(--deep-navy);
  transform: translateY(-2px);
}

/* Preview Styles */
#application-preview {
  padding: 40px;
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  color: #333;
  font-family: Arial, sans-serif;
}

.preview-header {
  text-align: center;
  border-bottom: 2px solid var(--gold);
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.preview-section {
  margin-bottom: 24px;
}

.preview-section h4 {
  background: var(--cream);
  padding: 8px 12px;
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 12px;
  border-left: 4px solid var(--gold);
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.preview-item {
  font-size: 13px;
}

.preview-item label {
  font-weight: 700;
  color: #666;
  display: block;
  margin-bottom: 2px;
}

.preview-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}

.preview-table th,
.preview-table td {
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 8px;
  text-align: left;
}

/* Styles from dashboard.php */
/* Custom scrollbar for modern feel */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.nav-active {
  background-color: #f1f5f9;
  color: #0f172a;
  border-right: 3px solid #0f172a;
  font-weight: 600;
}

/* Styles from my_training.php */
.portal-nav {
  background: var(--primary);
  color: white;
  padding: 15px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 24px;
}

.course-active-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.card-img {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 80px;
}

.card-content {
  padding: 48px;
}

.step-list {
  margin-top: 40px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: white;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid rgba(13, 27, 42, 0.04);
  transition: all 0.3s ease;
}

.step-item.locked {
  opacity: 0.5;
  filter: grayscale(1);
}

.step-item.completed {
  border-left: 5px solid #10b981;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--warm-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
}

.step-item.completed .step-icon {
  background: #d1fae5;
  color: #10b981;
}

.btn-portal {
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}

.btn-portal:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-portal:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 850px) {
  .course-active-card {
    grid-template-columns: 1fr;
  }

  .card-img {
    height: 200px;
    font-size: 60px;
  }

  .portal-nav {
    padding: 15px 20px;
  }

  .container {
    margin: 30px auto;
  }

  .card-content {
    padding: 32px;
  }

  .step-item {
    flex-direction: column;
    text-align: center;
  }
}

#loading-state {
  text-align: center;
  padding: 100px;
  font-size: 18px;
  color: var(--text-mid);
}

#empty-state {
  text-align: center;
  padding: 100px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Scoped Auth Styles */
.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--deep-navy);
  background-image: radial-gradient(circle at top right, rgba(182, 219, 0, 0.1), transparent 40%),
    radial-gradient(circle at bottom left, rgba(21, 73, 148, 0.1), transparent 40%);
}

.auth-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  max-width: 450px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  color: white;
}

.auth-form-group {
  margin-bottom: 1.5rem;
}

.auth-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.auth-form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
}

.btn-auth-primary {
  width: 100%;
  padding: 14px;
  background: var(--gold);
  color: var(--deep-navy);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- MODERN TRAINING REDESIGN --- */
.modern-training-section {
  background: url('../imgs/DJI_0028.jpg') center/cover no-repeat fixed;
  padding: 100px 7vw;
  position: relative;
  overflow: hidden;
}

.modern-training-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.modern-training-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 24px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  padding: 36px 40px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 8px 32px rgba(13, 27, 42, 0.08);
}

.modern-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
  background: var(--blue-pale);
  padding: 5px 14px;
  border-radius: 20px;
}

.modern-section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 50px);
  color: var(--ink);
  line-height: 1.1;
  font-weight: 300;
  margin: 0;
}

.text-gradient {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* Glow Button */
.modern-btn-glow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--blue);
  border: none;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 14px;
  transition: all 0.25s ease;
  overflow: hidden;
}

.modern-btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transition: 0.4s;
}

.modern-btn-glow:hover {
  transform: translateY(-2px);
  background: var(--blue-mid);
  box-shadow: 0 8px 24px rgba(21, 73, 148, 0.3);
  color: white;
}

.modern-btn-glow:hover::before {
  left: 100%;
}

.modern-btn-glow i {
  transition: transform 0.25s;
}

.modern-btn-glow:hover i {
  transform: translateX(4px);
}

/* Grid & Cards */
.modern-training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.modern-training-card {
  position: relative;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 36px 28px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(13, 27, 42, 0.08);
}

.mtc-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(21, 73, 148, 0.06) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.modern-training-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 20px 48px rgba(21, 73, 148, 0.15);
}

.modern-training-card:hover .mtc-glow {
  opacity: 1;
}

.mtc-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mtc-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: var(--blue-light);
  border: 1px solid rgba(21, 73, 148, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.modern-training-card:hover .mtc-icon {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
  transform: scale(1.05);
}

.mtc-content h3 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

.mtc-content p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
  flex: 1;
  font-weight: 300;
}

.mtc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
}

.mtc-tag {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 12px;
  background: var(--blue-pale);
  border: 1px solid rgba(21, 73, 148, 0.15);
  color: var(--blue);
  border-radius: 20px;
  transition: 0.25s;
}

.modern-training-card:hover .mtc-tag {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.mtc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  text-decoration: none;
  transition: 0.2s;
}

.mtc-link i {
  transition: transform 0.2s;
}

.mtc-link:hover {
  color: var(--blue-mid);
}

.mtc-link:hover i {
  transform: translateX(4px);
}