/* One More — scrollbar, selection, scroll-to-top */

/* Header logo size helpers (mobile-first) */
.max-w-140-px {
  max-width: 140px;
}

@media (min-width: 576px) {
  .max-w-sm-160-px {
    max-width: 160px;
  }
}

/* Mobil hamburger — markalı toggle */
.omi-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px !important;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.omi-menu-toggle:hover,
.omi-menu-toggle:focus-visible {
  background: rgba(20, 101, 162, 0.55);
  border-color: rgba(253, 163, 18, 0.65);
  outline: none;
}

.omi-menu-toggle:active {
  transform: scale(0.96);
}

.omi-menu-toggle__bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
}

.omi-menu-toggle__bar {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition:
    width 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.omi-menu-toggle__bar:nth-child(1) {
  width: 100%;
}

.omi-menu-toggle__bar:nth-child(2) {
  width: 70%;
  margin-inline-start: auto;
  background: #fda312;
}

.omi-menu-toggle__bar:nth-child(3) {
  width: 100%;
}

.omi-menu-toggle:hover .omi-menu-toggle__bar:nth-child(2),
.omi-menu-toggle:focus-visible .omi-menu-toggle__bar:nth-child(2) {
  width: 100%;
}

@media (max-width: 575.98px) {
  .omi-menu-toggle {
    width: 42px !important;
    height: 42px;
    border-radius: 11px;
  }
}

/* Aktif menü — marka turuncusu */
.header-one .nav-menu__item.activePage > .nav-menu__link {
  color: #fda312 !important;
}

.header-one .nav-submenu__item.activePage > .nav-submenu__link {
  background: rgba(20, 101, 162, 0.1);
  color: #1465a2;
}

.nav-menu--mobile .nav-menu__item.activePage > .nav-menu__link {
  color: #fda312 !important;
}

/* Preloader — varsayılan gizli; yalnızca yavaş yüklemede .is-visible */
.preloader {
  background: #0c0b1c;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.preloader svg {
  fill: #0c0b1c;
}

.omi-preloader-brand {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.omi-preloader-brand__logo {
  display: block;
  width: min(280px, 62vw);
  height: auto;
}

/* 404 sayfası */
.omi-404__code {
  font-size: clamp(4.5rem, 14vw, 8rem);
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.omi-404__title {
  letter-spacing: -0.02em;
}

.omi-404__text {
  max-width: 34rem;
  margin-inline: auto;
}

.omi-404__actions {
  align-items: center;
}

.omi-404__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  padding: 0.5rem 0.25rem;
  transition: color 0.2s ease;
}

/* Home banner hashtag — tighter on small screens */
@media (max-width: 767.98px) {
  .banner-area .banner-sub-title {
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    letter-spacing: 0.04em;
    line-height: 1.2;
  }
}

@media (max-width: 479.98px) {
  .banner-area .banner-sub-title {
    font-size: 1.3rem;
    letter-spacing: 0.03em;
  }
}


::selection {
  background-color: #1465a2;
  color: #fff;
}

::-moz-selection {
  background-color: #1465a2;
  color: #fff;
}

html {
  scrollbar-width: thin;
  scrollbar-color: #1465a2 #e8eef5;
}

html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html::-webkit-scrollbar-track {
  background: #e8eef5;
}

html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #1465a2 0%, #062265 100%);
  border-radius: 50px;
  border: 2px solid #e8eef5;
}

html::-webkit-scrollbar-thumb:hover {
  background: #062265;
}

.progress-wrap {
  background-color: #fff;
  box-shadow:
    inset 0 0 0 2px rgba(20, 101, 162, 0.18),
    0 8px 24px rgba(6, 34, 101, 0.16);
  mix-blend-mode: normal;
}

.progress-wrap::after {
  color: #1465a2 !important;
}

.progress-wrap svg.progress-circle path {
  stroke: #1465a2;
}

/* Hero / breadcrumb overlays — readable text over OMI photos */
.breadcrumb-area {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.breadcrumb-omi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 34, 101, 0.72) 0%,
    rgba(20, 101, 162, 0.55) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.banner-area.bg-img {
  background-position: center center;
  background-size: cover;
}

/* Kurumsal kimlik — logo showcase */
.omi-brand-logo-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.omi-brand-logo-card__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 2.5rem 2rem;
}

.omi-brand-logo-card__stage--light {
  background:
    linear-gradient(180deg, #ffffff 0%, #eef3f8 100%);
}

.omi-brand-logo-card__stage--dark {
  background:
    radial-gradient(ellipse at center, rgba(20, 101, 162, 0.28) 0%, transparent 62%),
    linear-gradient(180deg, #0a1a45 0%, #062265 55%, #041433 100%);
}

.omi-brand-logo-card__image {
  width: min(100%, 420px);
  height: auto;
  max-height: 120px;
  object-fit: contain;
  display: block;
}

.omi-brand-logo-card__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem 1.65rem;
  flex: 1;
}

.omi-brand-logo-card__title {
  margin: 0 0 0.45rem;
  color: #fff;
  font-size: 1.35rem;
  font-weight: 700;
}

.omi-brand-logo-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.65;
  font-weight: 500;
}

.omi-brand-logo-card__download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  align-self: flex-start;
  min-height: 44px;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: #1465a2;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.omi-brand-logo-card__download:hover,
.omi-brand-logo-card__download:focus-visible {
  background: #fda312;
  color: #062265;
  transform: translateY(-1px);
}

.omi-brand-swatch {
  min-height: 150px;
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  background: var(--swatch);
  color: var(--swatch-text);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.omi-brand-swatch__title {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: inherit;
}

.omi-brand-swatch__code {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: inherit;
  opacity: 0.92;
}

@media screen and (max-width: 767px) {
  .omi-brand-logo-card__stage {
    min-height: 220px;
    padding: 2rem 1.25rem;
  }

  .omi-brand-logo-card__image {
    max-height: 96px;
  }
}

/* Ürün kartı — tıklayınca büyüt */
.product-card-thumb__zoom {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.product-card-thumb__zoom img {
  transition: transform 0.35s ease;
}

.product-card-thumb__hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 34, 101, 0.42);
  color: #fff;
  font-size: 1.75rem;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.product-card:hover .product-card-thumb__zoom img {
  transform: scale(1.04);
}

.product-card:hover .product-card-thumb__hint {
  opacity: 1;
}

/* Ürün kartı — satırda eşit yükseklik, sıkı içerik */
.product-card-col {
  display: flex;
}

.product-card {
  width: 100%;
  height: 100%;
}

.product-card-content {
  flex-grow: 1;
  padding: 0.95rem 0.75rem 0.85rem;
}

.product-card-title {
  margin-bottom: 0.4rem;
}

.product-card-price {
  margin-bottom: 0;
  line-height: 1.4;
}

@media screen and (max-width: 991px) {
  .product-card-content {
    padding: 0.85rem 0.55rem 0.75rem;
  }
}

@media screen and (max-width: 575px) {
  .product-card-content {
    padding: 0.75rem 0.4rem 0.65rem;
  }
}

/* Hero: başlık ile yuvarlak CTA çakışmasın */
.banner-area .banner-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
  margin-top: 0;
}

.banner-area .banner-meta-row .banner-event-info {
  margin-top: 40px;
  flex: 1 1 240px;
}

.banner-area .banner-meta-row .banner-sticker {
  position: static;
  top: auto;
  right: auto;
  display: block;
  flex: 0 0 auto;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .banner-area .banner-meta-row .banner-event-info,
  .banner-area .banner-meta-row .banner-sticker {
    margin-top: 28px;
  }

  .banner-area .banner-meta-row .banner-sticker .ticket-button {
    width: 126px;
    height: 126px;
  }
}

.cta-area.bg-img {
  background-position: center center;
  background-size: cover;
}

/* Inline certificates & forms viewers */
.omi-document-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.omi-document-card__title {
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.omi-document-card__text {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 0;
  font-weight: 500;
}

.omi-document-card__viewer {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(6, 34, 101, 0.08);
}

.omi-document-card__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 640px;
  object-fit: contain;
  background: #f5f7fa;
}

.omi-document-card__viewer--pdf {
  min-height: 720px;
}

.omi-pdf-frame {
  display: block;
  width: 100%;
  height: 720px;
  border: 0;
  background: #f5f7fa;
}

@media screen and (max-width: 767px) {
  .omi-document-card__viewer--pdf {
    min-height: 480px;
  }

  .omi-pdf-frame {
    height: 480px;
  }

  .omi-document-card__image {
    max-height: 420px;
  }
}

/* Certificate gallery — stylish preview cards */
.certificate-gallery .omi-cert-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.certificate-gallery .omi-cert-card:hover {
  transform: translateY(-6px);
  border-color: rgba(20, 101, 162, 0.55);
  box-shadow: 0 20px 40px rgba(6, 34, 101, 0.35);
}

.certificate-gallery .omi-cert-card__preview {
  display: block;
  text-decoration: none;
  color: inherit;
}

.certificate-gallery .omi-cert-card__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background:
    linear-gradient(145deg, #e8eef5 0%, #f7f9fc 45%, #dde6f0 100%);
}

.certificate-gallery .omi-cert-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transform: scale(1.02);
  transition: transform 0.5s ease, filter 0.35s ease;
  filter: saturate(0.95) contrast(1.02);
}

.certificate-gallery .omi-cert-card:hover .omi-cert-card__image {
  transform: scale(1.08);
  filter: saturate(1.05) contrast(1.05);
}

.certificate-gallery .omi-cert-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(6, 34, 101, 0.92);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.certificate-gallery .omi-cert-card__pages {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(253, 163, 18, 0.95);
  color: #062265;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.certificate-gallery .omi-cert-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(6, 34, 101, 0.15) 0%,
    rgba(6, 34, 101, 0.78) 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.certificate-gallery .omi-cert-card:hover .omi-cert-card__overlay,
.certificate-gallery .omi-cert-card__preview:focus-visible .omi-cert-card__overlay {
  opacity: 1;
}

.certificate-gallery .omi-cert-card__action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  border-radius: 999px;
  background: #1465a2;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(8px);
  transition: transform 0.35s ease;
}

.certificate-gallery .omi-cert-card:hover .omi-cert-card__action,
.certificate-gallery .omi-cert-card__preview:focus-visible .omi-cert-card__action {
  transform: translateY(0);
}

.certificate-gallery .omi-cert-card__body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 1.1rem 1.2rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 34, 101, 0.35);
}

.certificate-gallery .omi-cert-card__copy {
  min-width: 0;
  flex: 1;
}

.certificate-gallery .omi-cert-card__title {
  margin: 0 0 0.35rem;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
}

.certificate-gallery .omi-cert-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
}

.certificate-gallery .omi-cert-card__download {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: #fda312;
  color: #062265;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.certificate-gallery .omi-cert-card__download:hover,
.certificate-gallery .omi-cert-card__download:focus-visible {
  background: #fff;
  color: #062265;
  transform: translateY(-1px);
  outline: none;
}

.mfp-img-mobile .mfp-figure {
  max-width: min(96vw, 1100px);
}

.mfp-img-mobile .mfp-img {
  max-height: 88vh !important;
  padding: 0;
}

/* Küresel ağ haritası — about-two ile aynı tema zemini */
.omi-network-map-area {
  background: transparent;
}

.omi-network-map-shell {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 1.15rem 1.15rem 1.25rem;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  max-width: none;
  margin-inline: 0;
  height: 100%;
}

.omi-network-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.omi-network-map-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.85rem;
  font-weight: 600;
}

.omi-network-map-legend__swatch {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  display: inline-block;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.omi-network-map-legend__swatch--active {
  background: #1465a2;
}

.omi-network-map-legend__swatch--hover {
  background: #d82222;
}

.omi-network-map {
  position: relative;
  width: 100%;
  height: min(58vh, 560px);
  min-height: 420px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(12, 11, 28, 0.35);
  cursor: url("/assets/images/cursors/flashlight.png?v=2") 3 3, crosshair;
  --spot-x: 50%;
  --spot-y: 50%;
}

.omi-network-story {
  background: transparent;
  border-radius: 0;
  padding: 0.35rem 0.25rem 0.35rem 0.5rem;
  box-shadow: none;
  border: 0;
  backdrop-filter: none;
  display: flex;
  flex-direction: column;
}

.omi-network-story .section-title {
  margin-bottom: 0;
}

.omi-network-story__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.omi-network-story__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.7;
  font-weight: 500;
}

.omi-network-map__spotlight {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
  background: radial-gradient(
    circle 160px at var(--spot-x) var(--spot-y),
    rgba(255, 255, 255, 0.42) 0%,
    rgba(255, 255, 255, 0.18) 32%,
    rgba(255, 255, 255, 0.05) 55%,
    transparent 72%
  );
}

.omi-network-map.is-lit .omi-network-map__spotlight {
  opacity: 1;
}

.omi-network-map .jvm-container {
  position: relative;
  z-index: 1;
}

.omi-network-map .jvm-container,
.omi-network-map svg,
.omi-network-map .jvm-regions-group,
.omi-network-map path.jvm-region,
.omi-network-map path.jvm-element {
  cursor: url("/assets/images/cursors/flashlight.png?v=2") 3 3, crosshair !important;
}

.omi-network-map .jvm-container,
.omi-network-map svg {
  width: 100% !important;
  height: 100% !important;
}

.omi-network-map .jvm-zoom-btn {
  z-index: 3;
  left: 14px;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 101, 162, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(6px);
  cursor: pointer !important;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
  user-select: none;
}

.omi-network-map .jvm-zoom-btn.jvm-zoomin {
  top: 14px;
}

.omi-network-map .jvm-zoom-btn.jvm-zoomout {
  top: 56px;
}

.omi-network-map .jvm-zoom-btn:hover {
  background: #fda312;
  border-color: rgba(255, 255, 255, 0.35);
  color: #062265;
  transform: translateY(-1px);
}

.omi-network-map .jvm-zoom-btn:active {
  transform: translateY(0);
}

/* Ülke adı tooltip — body + position:fixed (scroll/transform güvenli) */
.omi-network-tooltip {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2147483000;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.12s ease, visibility 0.12s ease, transform 0.12s ease;
  background: #fff;
  color: #062265;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
  padding: 0.55rem 0.8rem;
  white-space: nowrap;
}

.omi-network-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media screen and (max-width: 991px) {
  .omi-network-map {
    height: min(48vh, 440px);
    min-height: 360px;
  }

  .omi-network-story {
    padding: 0.25rem 0;
  }
}

@media screen and (max-width: 767px) {
  .omi-network-map {
    height: 320px;
    min-height: 320px;
  }

  .omi-network-map-shell {
    padding: 0.85rem;
  }
}

/* Mobil menü — iletişim + sosyal */
.mobile-menu {
  top: 0;
  left: 0;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.mobile-menu__scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 1.5rem;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
}

.mobile-menu__inner {
  min-height: min-content;
  padding-bottom: 1.25rem;
}

.mobile-menu__footer {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.mobile-menu__footer-block + .mobile-menu__footer-block {
  margin-top: 1.5rem;
}

.mobile-menu__footer-label {
  display: block;
  position: relative;
  z-index: 1;
  margin: 0 0 0.85rem;
  color: #fda312;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-menu__contact {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0 0 1rem;
  position: relative;
  z-index: 0;
}

.mobile-menu__contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 68px;
  padding: 0.65rem 0.35rem;
  border-radius: 12px;
  background: rgba(20, 101, 162, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.mobile-menu__contact-btn i {
  font-size: 1.25rem;
  color: #fda312;
}

.mobile-menu__contact-btn span {
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.2;
}

.mobile-menu__contact-btn:hover,
.mobile-menu__contact-btn:focus-visible {
  background: rgba(20, 101, 162, 0.55);
  border-color: rgba(253, 163, 18, 0.45);
  color: #fff;
  transform: translateY(-1px);
}

.mobile-menu__contact-btn--wa {
  background: rgba(37, 211, 102, 0.16);
}

.mobile-menu__contact-btn--wa i {
  color: #25d366;
}

.mobile-menu__meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.35rem;
}

.mobile-menu__meta a,
.mobile-menu__meta span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
}

.mobile-menu__meta a:hover {
  color: #fda312;
}

.mobile-menu__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.mobile-menu__social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.15rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mobile-menu__social a:hover,
.mobile-menu__social a:focus-visible {
  background: #1465a2;
  border-color: #1465a2;
  color: #fff;
}

/* History page: neutralize theme quote negative offset */
.omi-history-quote {
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 2rem;
}

.omi-history-quote .about-two-area-quote {
  width: auto;
  flex: 1 1 280px;
  max-width: 100%;
  margin-left: 0;
}

.omi-history-quote .about-two-area-quote-content {
  width: auto;
  flex: 1;
  min-width: 0;
}

/* Board members list + detail modal */
.omi-board-card {
  cursor: pointer;
}

.omi-board-card:focus-visible {
  outline: 2px solid #fda312;
  outline-offset: 6px;
  border-radius: 12px;
}

.omi-board-card .team-social-button {
  pointer-events: none;
}

.omi-board-modal .modal-dialog {
  --bs-modal-width: min(1100px, calc(100vw - 1.5rem));
}

.omi-board-modal__content {
  background: #062265;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.omi-board-modal__close {
  position: absolute;
  top: 1rem;
  inset-inline-end: 1rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.25rem;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.omi-board-modal__close:hover,
.omi-board-modal__close:focus-visible {
  background: #1465a2;
  border-color: #1465a2;
  color: #fff;
}

.omi-board-modal__body {
  padding: 2rem;
}

.omi-board-modal .team-details-title {
  color: #fff;
}

@media (max-width: 991.98px) {
  .omi-board-modal__body {
    padding: 1.5rem 1.25rem 1.25rem;
  }

  .omi-board-modal__close {
    top: 0.75rem;
    inset-inline-end: 0.75rem;
  }
}

/* Departments: compact list + map + selected detail */
.omi-departments-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.25fr);
  gap: 1.25rem;
  align-items: stretch;
}

.omi-departments-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-height: 520px;
  overflow: auto;
  padding-right: 0.2rem;
}

.omi-department-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.omi-department-item:hover,
.omi-department-item:focus-visible {
  border-color: rgba(20, 101, 162, 0.7);
  background: rgba(20, 101, 162, 0.12);
  outline: none;
}

.omi-department-item.is-active {
  border-color: #1465a2;
  background: rgba(20, 101, 162, 0.18);
}

.omi-department-item__media {
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.omi-department-item__image {
  width: 72px;
  height: 72px;
  object-fit: cover;
  display: block;
}

.omi-department-item__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.omi-department-item__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  color: #fda312;
  font-size: 0.75rem;
  font-weight: 700;
}

.omi-department-item__meta span {
  display: inline-flex;
  padding: 0.12rem 0.45rem;
  border-radius: 999px;
  background: rgba(253, 163, 18, 0.18);
  color: #fda312;
  font-size: 0.68rem;
}

.omi-department-item__title {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.omi-department-item__arrow {
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.1rem;
}

.omi-department-item.is-active .omi-department-item__arrow {
  color: #fda312;
}

.omi-departments-map-panel {
  min-height: 520px;
}

.omi-departments-map-shell {
  height: 100%;
  min-height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.omi-departments-map {
  width: 100%;
  height: 100%;
  min-height: 520px;
  background: #0b1d4a;
}

.omi-departments-map .leaflet-popup-content {
  margin: 0.75rem 0.9rem;
  line-height: 1.45;
  font-size: 0.9rem;
}

.omi-departments-details {
  position: relative;
}

.omi-departments-hint {
  margin: 0 0 1.5rem;
}

.omi-department-detail {
  display: none;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 1.15rem;
  background: rgba(255, 255, 255, 0.03);
}

.omi-department-detail.is-active {
  display: grid;
}

.omi-department-detail__media {
  width: 320px;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.omi-department-detail__image {
  width: 320px;
  height: 240px;
  object-fit: cover;
  display: block;
}

.omi-department-detail__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.omi-department-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  color: #fda312;
  font-size: 0.82rem;
  font-weight: 700;
}

.omi-department-detail__meta span {
  display: inline-flex;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  background: rgba(253, 163, 18, 0.18);
  color: #fda312;
  font-size: 0.7rem;
}

.omi-department-detail__title {
  margin: 0;
  color: #fff;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.25;
}

.omi-department-detail__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
}

.omi-department-detail__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.omi-department-detail__features li {
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 600;
}

.omi-department-detail__contacts p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.45;
}

.omi-department-detail__contacts a {
  color: #fff;
  text-decoration: none;
}

.omi-department-detail__contacts a:hover {
  color: #fda312;
}

.omi-department-detail__maps {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
  color: #fda312;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.omi-department-detail__maps:hover {
  color: #fff;
}

@media (max-width: 575.98px) {
  .footer .footer-quick-links .footer-widget-title {
    font-size: 1rem;
    line-height: 1.3;
  }

  .footer .footer-quick-links-item {
    align-items: flex-start;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .footer .footer-quick-links-item .icon {
    margin-top: 0.15rem;
    flex-shrink: 0;
  }
}

.footer .footer-address-icon {
  width: 2.25rem;
  height: 2.25rem;
  font-size: 0.95rem;
}

.footer .footer-address-value {
  font-size: 0.95rem;
  line-height: 1.4;
  word-break: break-word;
}

.footer .omi-footer-main {
  padding-block-end: 40px;
}

@media (min-width: 576px) {
  .footer .omi-footer-main {
    padding-block-end: 48px;
  }
}

@media (min-width: 992px) {
  .footer .omi-footer-main {
    padding-block-end: 56px;
  }
}

/* Contact page */
.omi-contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  height: 100%;
  padding: 1.25rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.omi-contact-card:hover {
  border-color: rgba(20, 101, 162, 0.65);
  background: rgba(20, 101, 162, 0.14);
  transform: translateY(-2px);
}

.omi-contact-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fda312;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.omi-contact-card__label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.85rem;
  font-weight: 600;
}

.omi-contact-card__value {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  word-break: break-word;
}

.omi-contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.5rem;
}

.omi-contact-panel__title {
  margin: 0 0 0.55rem;
  color: #fff;
  font-size: 1.45rem;
  font-weight: 700;
}

.omi-contact-panel__text {
  margin: 0 0 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
  line-height: 1.55;
}

.omi-contact-alert {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

.omi-contact-alert--success {
  background: rgba(37, 211, 102, 0.14);
  border: 1px solid rgba(37, 211, 102, 0.35);
  color: #9be7b5;
}

.omi-contact-alert--error {
  background: rgba(220, 53, 69, 0.14);
  border: 1px solid rgba(220, 53, 69, 0.35);
  color: #f5a8b0;
}

.omi-contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.omi-contact-form__label {
  display: block;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 600;
}

.omi-contact-form__label span {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}

.omi-contact-form__input {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.omi-contact-form__input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.omi-contact-form__input:focus {
  border-color: rgba(20, 101, 162, 0.85);
  background: rgba(20, 101, 162, 0.12);
}

.omi-contact-form__input.is-invalid {
  border-color: rgba(220, 53, 69, 0.75);
}

.omi-contact-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.omi-contact-form__error {
  margin: 0.35rem 0 0;
  color: #f5a8b0;
  font-size: 0.8rem;
  font-weight: 600;
}

.omi-contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: #1465a2;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.omi-contact-form__submit:hover {
  background: #0f4f80;
}

.omi-contact-form__captcha {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
}

.omi-contact-form__captcha-question {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7.5rem;
  padding: 0 0.9rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.omi-contact-form__captcha-input {
  flex: 1;
}

.omi-contact-faq .faq-wrapper {
  margin-top: 0.25rem;
}

.omi-contact-faq .faq-accordion-item {
  margin-bottom: 0.65rem;
}

.omi-contact-faq .faq-accordion-item:last-child {
  margin-bottom: 0;
}

.omi-contact-map-shell {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.omi-contact-map {
  display: block;
  width: 100%;
  min-height: 420px;
  height: 420px;
  border: 0;
}

@media (max-width: 575.98px) {
  .omi-contact-map {
    min-height: 320px;
    height: 320px;
  }
}

@media (max-width: 767.98px) {
  .footer .footer-address .footer-widget-title {
    font-size: 1rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.65rem;
  }

  .footer .footer-address-list {
    gap: 0.85rem !important;
  }

  .footer .footer-address-icon {
    width: 2rem;
    height: 2rem;
    font-size: 0.85rem;
  }

  .footer .footer-address-value {
    font-size: 0.88rem;
  }
}

@media (max-width: 991.98px) {
  .omi-departments-layout {
    grid-template-columns: 1fr;
  }

  .omi-departments-list {
    max-height: none;
    overflow: visible;
  }

  .omi-departments-map-panel,
  .omi-departments-map-shell,
  .omi-departments-map {
    min-height: 360px;
  }

  .omi-department-detail {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .omi-department-detail__media {
    width: 320px;
    max-width: 100%;
    height: 240px;
    margin-inline: auto;
  }

  .omi-department-detail__image {
    width: 100%;
    height: 240px;
  }

  .omi-department-detail__body {
    width: 100%;
  }

  .omi-departments-hint {
    margin-bottom: 1.75rem;
  }
}
