/* Shared layout. Home page also loads home.css */
:root {
  --bs-primary: #0d9488;
  --bs-primary-rgb: 13, 148, 136;
  --header-h: 70px;
}
@media (min-width: 1200px) {
  :root { --header-h: 90px; }
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
}
body.lang-mm { font-family: 'Outfit', system-ui, sans-serif; }

.site-header {
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header[data-over-hero="true"]:not(.site-header--solid) {
  background: #7d889bcc;
  backdrop-filter: blur(8px);
  box-shadow: none;
}
.site-header[data-over-hero="true"]:not(.site-header--solid) .site-header__link {
  color: rgba(255, 255, 255, 0.9);
}
.site-header[data-over-hero="true"]:not(.site-header--solid) .site-header__link:hover,
.site-header[data-over-hero="true"]:not(.site-header--solid) .site-header__link.active {
  color: #fff;
}
.site-header[data-over-hero="true"]:not(.site-header--solid) .site-header__link.active {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.9);
}
.site-header[data-over-hero="true"]:not(.site-header--solid) .site-header__cta {
  background: #fff;
  color: #0f766e;
  border: none;
}
.site-header[data-over-hero="true"]:not(.site-header--solid) .site-header__cta:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #0f766e;
}
.site-header[data-over-hero="true"]:not(.site-header--solid) .site-header__cta.active {
  background: rgba(255, 255, 255, 0.92);
  color: #0f766e;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}
.site-header[data-over-hero="true"]:not(.site-header--solid) .site-header__lang {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}
.site-header[data-over-hero="true"]:not(.site-header--solid) .site-header__lang-btn {
  opacity: 0.9;
}
.site-header[data-over-hero="true"]:not(.site-header--solid) .site-header__toggle-bar {
  background: #fff;
}

.site-header--solid,
.site-header[data-over-hero="false"] {
  background-color: #f4f4f4;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.site-header--solid .site-header__link,
.site-header[data-over-hero="false"] .site-header__link {
  color: #1e293b;
}
.site-header--solid .site-header__link:hover,
.site-header--solid .site-header__link.active,
.site-header[data-over-hero="false"] .site-header__link:hover,
.site-header[data-over-hero="false"] .site-header__link.active {
  color: var(--bs-primary);
}
.site-header--solid .site-header__link.active,
.site-header[data-over-hero="false"] .site-header__link.active {
  background: rgba(var(--bs-primary-rgb), 0.1);
  box-shadow: inset 0 -2px 0 var(--bs-primary);
}
.site-header--solid .site-header__sub-link,
.site-header[data-over-hero="false"] .site-header__sub-link {
  color: #64748b;
}
.site-header--solid .site-header__sub-link:hover,
.site-header--solid .site-header__sub-link.active,
.site-header[data-over-hero="false"] .site-header__sub-link:hover,
.site-header[data-over-hero="false"] .site-header__sub-link.active {
  color: var(--bs-primary);
}
.site-header--solid .site-header__sub-link.active,
.site-header[data-over-hero="false"] .site-header__sub-link.active {
  font-weight: 600;
}
.site-header__drawer-link.active {
  color: var(--bs-primary);
  font-weight: 600;
  background: rgba(var(--bs-primary-rgb), 0.1);
  border-radius: 10px;
  padding: 0.45rem 0.75rem;
}
.site-header__drawer-link.site-header__drawer-link--secondary.active {
  color: var(--bs-primary);
}
.site-header[data-over-hero="true"]:not(.site-header--solid) .site-header__sub-link {
  color: rgba(255, 255, 255, 0.75);
}
.site-header[data-over-hero="true"]:not(.site-header--solid) .site-header__sub-link:hover {
  color: #fff;
}
.site-header[data-over-hero="true"]:not(.site-header--solid) .site-header__sub-link.active {
  color: #fff;
  font-weight: 600;
}
.site-header[data-over-hero="true"]:not(.site-header--solid) .site-header__row--sub {
  border-top-color: rgba(255, 255, 255, 0.2);
}
.site-header--solid .site-header__cta,
.site-header[data-over-hero="false"] .site-header__cta {
  background: var(--bs-primary);
  color: #fff;
  border: none;
}
.site-header--solid .site-header__cta:hover,
.site-header[data-over-hero="false"] .site-header__cta:hover {
  background: #0f766e;
  color: #fff;
}
.site-header--solid .site-header__cta.active,
.site-header[data-over-hero="false"] .site-header__cta.active {
  background: #0f766e;
  color: #fff;
}

.site-header__row--main { border-bottom: none; }
.site-header__row--sub {
  border-top: 1px solid #e2e8f0;
  padding: 0.4rem 0;
}
.site-header__row--sub .container { padding-top: 0; padding-bottom: 0; }

.site-header__inner {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
}
.site-header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-header__logo-img { transition: filter 0.2s; }

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 0 1rem;
  flex-wrap: nowrap;
}
.site-header__link {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.35rem 0.5rem;
  border-radius: 6px;
  transition: color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__sub-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.site-header__sub-link {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}
.site-header__sub-link:hover { color: var(--bs-primary); }

.site-header__actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-header__cta {
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.site-header__lang {
  display: flex;
  align-items: stretch;
  border: 1px solid #e2e8f0;
  border-radius: 9999px;
  overflow: hidden;
  flex-shrink: 0;
}
.site-header__lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  opacity: 0.9;
  transition: opacity 0.2s, background 0.2s;
  background: transparent;
}
.site-header__lang-btn:hover { opacity: 1; background: rgba(0, 0, 0, 0.04); }
.site-header[data-over-hero="true"]:not(.site-header--solid) .site-header__lang {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}
.site-header[data-over-hero="true"]:not(.site-header--solid) .site-header__lang-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}
.site-header__lang-btn img { display: block; width: 20px; height: 14px; object-fit: contain; }

.site-header__toggle {
  width: 44px;
  height: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.site-header__toggle-bar {
  width: 22px;
  height: 2px;
  background: #1e293b;
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}
.site-header.is-open .site-header__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-header.is-open .site-header__toggle-bar:nth-child(2) {
  opacity: 0;
}
.site-header.is-open .site-header__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header__drawer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: max-height 0.35s ease;
}
.site-header__drawer[aria-hidden="false"] {
  max-height: 80vh;
  overflow-y: auto;
}
.site-header__drawer-link {
  display: block;
  padding: 0.6rem 0;
  font-weight: 500;
  color: #1e293b;
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.site-header__drawer-link:hover { color: var(--bs-primary); }
.site-header__drawer-link--secondary { font-size: 0.9375rem; color: #64748b; }
.site-header__drawer-link--secondary:hover { color: var(--bs-primary); }

main { padding-top: var(--header-h); }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll.animate-delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.animate-delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.animate-delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.animate-delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.animate-delay-5 { transition-delay: 0.5s; }
.animate-on-scroll.animate-delay-6 { transition-delay: 0.6s; }

.wrap {
  width: 100%;
  max-width: min(90vw, 1100px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.site-footer {
  background: #3a4049;
  color: #e2e8f0;
  font-size: 0.9375rem;
  position: relative;
}
.site-footer__accent {
  height: 4px;
  background: linear-gradient(90deg, var(--bs-primary) 0%, #14b8a6 100%);
  width: 100%;
}
.site-footer__main { padding: 3rem 0 2.5rem; }
.site-footer__grid {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1fr 0.8fr; gap: 0.5rem; }
}
.site-footer__brand { padding-right: 1rem; }
.site-footer__logo-link {
  display: inline-block;
  margin-bottom: 0.75rem;
}
.site-footer__logo {
  height: 48px;
  width: auto;
  display: block;
  filter: brightness(1.15) contrast(3.05);
}
.site-footer__tagline {
  font-size: 1rem;
  font-weight: 600;
  color: #f8fafc;
  margin: 0 0 0.5rem;
}
.site-footer__slogan {
  font-size: 0.875rem;
  color: #94a3b8;
  margin: 0;
  line-height: 1.5;
}
.site-footer__heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin: 0 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #334155;
  display: inline-block;
}
.site-footer__address {
  font-size: 0.875rem;
  color: #94a3b8;
  margin: 0 0 1rem;
  line-height: 1.6;
}
.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__links li { margin-bottom: 0.5rem; }
.site-footer__links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.site-footer__links a:hover { color: #fff; }
.site-footer__icon {
  width: 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  opacity: 0.9;
}
.site-footer__contact-link {
  font-weight: 600;
  color: var(--bs-primary) !important;
}
.site-footer__contact-link:hover { color: #5eead4 !important; }
.site-footer__bottom {
  padding: 1.25rem 0;
  background: #0f172a;
  border-top: 1px solid #334155;
}
.site-footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: #64748b;
  text-align: center;
}

.back-top {
  z-index: 1020;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.back-top.show {
  opacity: 1;
  pointer-events: auto;
}
.back-top:hover { color: #fff; }

.z-index-sticky { z-index: 1030; }

.cta-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.9) 0%, rgba(13, 148, 136, 0.86) 55%, rgba(20, 184, 166, 0.82) 100%),
    url('/img/home/3.jpg') center/cover no-repeat;
  color: #fff;
}
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.14), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(255, 255, 255, 0.12), transparent 24%);
}
.cta-section > .container {
  position: relative;
  z-index: 1;
}
.cta-section--home {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.9) 0%, rgba(13, 148, 136, 0.86) 55%, rgba(20, 184, 166, 0.82) 100%),
    url('/img/home/page_about_capital_myanmar_back.png') center/cover no-repeat;
}
.cta-section--ec {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.9) 0%, rgba(13, 148, 136, 0.84) 100%),
    url('/img/ec/page_about_capital_myanmar_back.png') center/cover no-repeat;
}
.cta-section--achievement {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.88) 0%, rgba(13, 148, 136, 0.82) 100%),
    url('/img/achievement/page_about_capital_myanmar_back.png') center/cover no-repeat;
}
.cta-section .btn-light {
  border: none;
}
.cta-section .btn-light:hover { background: #fff; color: var(--bs-primary); }

.ec-bullets li { padding-left: 1.25rem; position: relative; }
.ec-bullets li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 0.35rem; height: 0.35rem; background: var(--bs-primary); border-radius: 50%; }
.ec-card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.ec-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important; }

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