/* ==========================================================================
   Lin Lat Phyei — design tokens
   Palette pulled from the company's own licence/certificate documents:
   navy + gold-seal accent, set against a quiet paper background.
   Signature motif: a restrained "official document" texture (hairline
   corner ticks + fine dot grid) used sparingly on trust-critical elements.
   ========================================================================== */
:root {
  --navy: #12245C;
  --navy-deep: #0A1638;
  --navy-deeper: #070F28;
  --blue: #1E4FD8;
  --blue-soft: #EAF0FF;
  --gold: #B98A26;
  --gold-hover: #96701D;
  --gold-soft: #E9D8AE;
  --gold-faint: #F6EFDD;
  --ink: #1B1F2A;
  --ink-soft: #565E73;
  --ink-faint: #8A91A6;
  --paper: #F6F7FB;
  --mist: #E6E9F3;
  --mist-deep: #D8DDEE;
  --white: #FFFFFF;
  --green: #1E7F5C;
  --red: #C0392B;

  --font-display: 'Manrope', 'Noto Sans Myanmar', sans-serif;
  --font-body: 'Inter', 'Noto Sans Myanmar', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(11, 23, 64, 0.06);
  --shadow-md: 0 10px 26px rgba(11, 23, 64, 0.10);
  --shadow-lg: 0 22px 48px rgba(7, 15, 40, 0.16);
  --ease: cubic-bezier(.22, .7, .28, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--navy-deep);
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

h3,
h4 {
  font-weight: 700;
  letter-spacing: -0.005em;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color .15s var(--ease);
}

a:hover {
  color: var(--navy);
}

p {
  max-width: 70ch;
  color: var(--ink);
}

::selection {
  background: var(--gold-soft);
  color: var(--navy-deep);
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 2px;
}

.container {
  max-width: 1180px;
}

/* ---------- section rhythm ---------- */
.section {
  padding: 5.5rem 0;
}

.section-sm {
  padding: 3.4rem 0;
}

.section-title-eyebrow {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.55rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.section-title-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.65rem, 2.8vw, 2.5rem);
  margin-bottom: 0.7rem;
  max-width: 20ch;
}

.section-lead {
  color: var(--ink-soft);
  max-width: 58ch;
  font-size: 1.03rem;
}

.bg-navy {
  background: var(--navy-deep);
  color: #fff;
  position: relative;
}

.bg-navy h1,
.bg-navy h2,
.bg-navy h3,
.bg-navy h4 {
  color: #fff;
}

.bg-mist {
  background: var(--paper);
  position: relative;
}

.bg-mist::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--mist-deep) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .55;
  pointer-events: none;
}

.bg-mist>.container {
  position: relative;
}

/* seal-style document border used sparingly on credential/trust elements */
.doc-frame {
  position: relative;
  border: 1px solid var(--gold-soft);
  padding: 1.85rem;
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow-md);
}

.doc-frame::before,
.doc-frame::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid var(--gold);
}

.doc-frame::before {
  top: -1px;
  left: -1px;
  border-right: none;
  border-bottom: none;
}

.doc-frame::after {
  bottom: -1px;
  right: -1px;
  border-left: none;
  border-top: none;
}

.doc-frame img {
  display: block;
}

/* ==========================================================================
   Header
   ========================================================================== */
.topbar {
  background: var(--navy-deeper);
  color: #a9b2ce;
  font-size: 0.82rem;
  padding: 0.5rem 0;
  letter-spacing: 0.01em;
}

.topbar-item {
  color: #a9b2ce;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: color .15s var(--ease);
}

.topbar-item:hover {
  color: #fff;
}

.licence-badge {
  color: var(--gold-soft);
  font-weight: 600;
}

.main-nav {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(8px);
  /* padding: 0.65rem 0; */
  box-shadow: 0 1px 0 rgba(18, 36, 92, 0.08);
  position: sticky;
  top: 0;
  z-index: 1030;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.navbar-brand img {
  /* height: 42px; */
  width: 80px;
  object-fit: contain;
  /* border-radius: 50%; */
  /* box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--mist); */
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy-deep);
  font-size: 1.20rem;
}

.brand-sub {
  font-size: 0.80rem;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  margin-top: 8px;
  font-weight: 100;
}

.main-nav .nav-link {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.55rem 0.9rem !important;
  position: relative;
  transition: color .15s var(--ease);
}

.main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.28rem;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s var(--ease);
}

.main-nav .nav-link.active::after,
.main-nav .nav-link:hover::after {
  transform: scaleX(1);
}

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

.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 12px;
  padding: 0.5rem;
  margin-top: 0.6rem !important;
}

.dropdown-item {
  border-radius: 7px;
  padding: 0.55rem 0.85rem;
  font-weight: 500;
  transition: background .12s var(--ease);
}

.dropdown-item:hover {
  background: var(--blue-soft);
  color: var(--navy);
}

.btn-cv {
  background: #070F28;
  color: #fff !important;
  font-weight: 700;
  padding: 0.58rem 1.25rem;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(185, 138, 38, 0.28);
  transition: background .15s var(--ease), transform .15s var(--ease), box-shadow .15s var(--ease);
}

.btn-cv:hover {
  background: #070F28;
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(185, 138, 38, 0.36);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  transition: background .15s var(--ease), color .15s var(--ease), border-color .15s var(--ease), transform .15s var(--ease), box-shadow .15s var(--ease);
}

.btn-primary-navy {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  font-weight: 600;
  padding: 0.72rem 1.55rem;
  border-radius: 9px;
  box-shadow: var(--shadow-sm);
}

.btn-primary-navy:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline-navy {
  border: 1.5px solid var(--navy);
  color: var(--navy);
  font-weight: 600;
  padding: 0.66rem 1.5rem;
  border-radius: 9px;
  background: transparent;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  font-weight: 600;
  border-radius: 9px;
  box-shadow: 0 10px 24px rgba(185, 138, 38, 0.25);
}

.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline-light:hover {
  transform: translateY(-1px);
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: var(--navy-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0 6.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 75%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(640px 320px at 88% 6%, rgba(185, 138, 38, 0.28), transparent 60%),
    radial-gradient(520px 420px at 102% 102%, rgba(30, 79, 216, 0.32), transparent 60%);
  pointer-events: none;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-soft);
  border: 1px solid rgba(233, 216, 174, 0.35);
  background: rgba(233, 216, 174, 0.06);
  border-radius: 30px;
  padding: 0.35rem 1rem;
  font-size: 0.81rem;
  font-weight: 600;
  margin-bottom: 1.3rem;
  animation: fadeUp .6s var(--ease) both;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.15rem, 4.1vw, 3.25rem);
  line-height: 1.14;
  margin-bottom: 1.15rem;
  max-width: 16ch;
  animation: fadeUp .6s var(--ease) .08s both;
}

.hero p.lead {
  color: #c3cbe8;
  max-width: 50ch;
  font-size: 1.09rem;
  animation: fadeUp .6s var(--ease) .16s both;
}

.hero .d-flex.flex-wrap.gap-3 {
  animation: fadeUp .6s var(--ease) .24s both;
}

.hero-stats {
  display: flex;
  gap: 2.3rem;
  margin-top: 2.3rem;
  flex-wrap: wrap;
  animation: fadeUp .6s var(--ease) .32s both;
}

.hero-stat {
  border-left: 2px solid rgba(233, 216, 174, 0.3);
  padding-left: 0.9rem;
}

.hero-stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: #fff;
  line-height: 1.1;
}

.hero-stat span {
  color: #95a0c4;
  font-size: 0.83rem;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* destination stack on the hero */
.dest-stack {
  position: relative;
  z-index: 1;
  padding-top: 0.5rem;
}

.dest-card {
  background: #fff;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: var(--shadow-lg);
  margin-bottom: 0.9rem;
  max-width: 330px;
  animation: fadeUp .6s var(--ease) both;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.dest-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 54px rgba(7, 15, 40, 0.4);
}

.dest-card img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 9px;
  background: var(--paper);
  padding: 5px;
}

.dest-card b {
  display: block;
  color: var(--navy-deep);
  font-size: 0.99rem;
}

.dest-card span {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.dest-card:nth-child(1) {
  animation-delay: .28s;
}

.dest-card:nth-child(2) {
  margin-left: 2.4rem;
  animation-delay: .4s;
}

.dest-card:nth-child(3) {
  margin-left: 0.7rem;
  animation-delay: .52s;
}

/* ==========================================================================
   Cards: jobs / activities / trainings
   ========================================================================== */
.card-clean {
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}

.card-clean:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card-clean .card-media {
  aspect-ratio: 16/10;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-clean .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s var(--ease);
}

.card-clean:hover .card-media img {
  transform: scale(1.045);
}

.card-clean .card-body {
  padding: 1.35rem;
}

.card-clean .card-tag {
  display: inline-block;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 0.22rem 0.65rem;
  border-radius: 30px;
  margin-bottom: 0.65rem;
}

.card-clean h3 {
  font-size: 1.06rem;
  margin-bottom: 0.45rem;
}

.card-clean p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* job list rows */
.job-row {
  display: flex;
  gap: 1.05rem;
  align-items: flex-start;
  padding: 1.3rem;
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  margin-bottom: 0.9rem;
  transition: border-color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}

.job-row:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.job-row .job-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 9px;
  background: var(--mist);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.job-row .job-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-row h3 {
  font-size: 1.06rem;
  margin-bottom: 0.28rem;
}

.job-row .job-meta {
  color: var(--ink-soft);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* filter bar */
.filter-bar {
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  margin-bottom: 1.9rem;
  box-shadow: var(--shadow-sm);
}

.filter-bar .form-select,
.filter-bar .form-control {
  border-color: var(--mist);
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
}

.filter-bar .form-select:focus,
.filter-bar .form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 79, 216, 0.12);
}

.country-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--mist);
  border-radius: 30px;
  padding: 0.4rem 0.95rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  transition: border-color .15s var(--ease), color .15s var(--ease), background .15s var(--ease), transform .15s var(--ease);
}

.country-pill.active,
.country-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
  transform: translateY(-1px);
}

.country-pill img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* ==========================================================================
   Process / steps
   ========================================================================== */
.step {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}

.step-mark {
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 2.7rem;
  border-radius: 50%;
  background: var(--navy-deep);
  color: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(10, 22, 56, 0.18);
}

.step h4 {
  font-size: 1.03rem;
  margin-bottom: 0.32rem;
}

.step p {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ==========================================================================
   Team
   ========================================================================== */
.team-card {
  text-align: center;
}

.team-card .avatar {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--mist);
  margin: 0 auto 1rem;
  border: 3px solid #fff;
  box-shadow: var(--shadow-md);
}

.team-card h4 {
  font-size: 1rem;
  margin-bottom: 0.18rem;
}

.team-card span {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-panel {
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: 16px;
  padding: 2.1rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.form-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--blue));
}

.form-panel label {
  font-weight: 600;
  font-size: 0.89rem;
  color: var(--navy-deep);
  margin-bottom: 0.35rem;
}

.form-panel .form-control,
.form-panel .form-select,
.form-panel textarea {
  border-color: var(--mist);
  padding: 0.68rem 0.9rem;
  border-radius: 9px;
}

.form-panel .form-control:focus,
.form-panel .form-select:focus,
.form-panel textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 79, 216, 0.12);
}

.required-mark {
  color: var(--red);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-deeper);
  color: #8f98b8;
  padding: 3.8rem 0 1.6rem;
  margin-top: 4rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--blue) 100%);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.footer-brand img {
  /* height: 38px; */
  width: 38px;
  /* border-radius: 50%; */
}

.footer-about {
  color: #8790af;
  font-size: 0.88rem;
  max-width: 38ch;
}

.footer-heading {
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.83rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.1rem;
}

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

.footer-links a {
  color: #8f98b8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--gold-soft);
  margin-right: 0.5rem;
}

.footer-contact a {
  color: #8f98b8;
}

.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2.6rem;
  padding-top: 1.3rem;
  font-size: 0.81rem;
  color: #6b7392;
}

/* ==========================================================================
   Utility
   ========================================================================== */
.empty-state {
  text-align: center;
  padding: 3.8rem 1rem;
  color: var(--ink-soft);
  background: #fff;
  border: 1px dashed var(--mist-deep);
  border-radius: var(--radius);
}

.empty-state i {
  font-size: 2.5rem;
  color: var(--mist-deep);
  display: block;
  margin-bottom: 1.1rem;
}

.alert {
  border-radius: 10px;
  border: none;
}

.alert-success {
  background: #E4F4EC;
  color: #155F41;
}

.alert-danger {
  background: #FBEAE7;
  color: #8E2E1F;
}

.alert-info {
  background: var(--blue-soft);
  color: var(--navy);
}

@media (max-width:991.98px) {
  .dest-stack {
    display: none;
  }

  .section {
    padding: 3.75rem 0;
  }
}