:root{

    --primary: #1b4d7a;
    --primary-2: #163d60;
    --accent: #2ea6c9;
    --accent-2: #66d0c3;
    --bg: #f3f6fa;
    --bg-alt: #ffffff;
    --surface: #ffffff;
    --text: #0f172a;
    --muted: #5b6474;
    --border: #e3e8f1;
    --shadow: 0 12px 34px rgba(15, 23, 42, .10);
    --radius: 18px;
    --radius-sm: 12px;


    --max: 1180px;
    --section-pad: 80px;
    --pad: 26px;


    --btn: var(--primary);
    --btnText: #ffffff;
    --btn2: rgba(27, 77, 122, .08);
    --btn2Text: var(--primary);
    --focus: 2px solid rgba(46,166,201,.85);
}

*{ box-sizing: border-box; }

html {
    overflow-y: auto;
}

body{
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-2); }
a:focus, button:focus, input:focus, select:focus{ outline: var(--focus); outline-offset: 2px; }


.hero-copy a:not(.btn),
.directory-hero a:not(.btn) {
    color: rgba(255,255,255,.92);
}

.hero-copy a:not(.btn):hover,
.directory-hero a:not(.btn):hover {
    color: #ffffff;
}


.directory-hero .filter-card a,
.directory-hero .filter-card a:hover {
    color: var(--primary);
}

.bg-soft { background: var(--bg); }
.bg-white { background: var(--bg-alt); }

section.section.bg-soft + section.section.bg-soft { padding-top: 0; }
section.section.bg-white + section.section.bg-white { padding-top: 0; }

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.pad { padding: var(--pad); }

.eyebrow {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.85);
    margin: 0 0 12px;
    white-space: nowrap;
}

h1 {
    font-size: clamp(30px, 4.2vw, 52px);
    line-height: 1.05;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}
h2 {
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.15;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
}
h3 { font-size: 18px; margin: 0 0 8px; }

p { margin: 0 0 12px; color: #1f2937; }

.muted { color: var(--muted); }
.lead { font-size: 16px; color: rgba(255,255,255,.88); max-width: 64ch; }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 12px 16px;
    font-weight: 750;
    cursor: pointer;
    transition: transform .12s ease, opacity .12s ease, background-color .12s ease;
    user-select: none;
    white-space: nowrap;
}
    .btn:active { transform: translateY(1px); }

.btn-primary { background: var(--btn); color: var(--btnText); }
    .btn-primary:hover { background: var(--primary-2); }

.btn-secondary {
    background: var(--btn2);
    color: var(--btn2Text);
    border-color: rgba(27,77,122,.18);
}
    .btn-secondary:hover { background: rgba(27,77,122,.12); }

.btn-link{
    background: transparent;
    border: none;
    padding: 0;
    color: var(--muted);
    font-weight: 750;
    cursor: pointer;
}

section {
    padding: 80px 0;
    width: 100%;
    position: relative;
}

p:last-of-type {
    margin-bottom: 0;
}


.logo {
    margin: 20px 0;
    height: 32px;
}

.nav-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.nav-menu ul li {
    margin: 0;
    padding: 0;
    line-height: normal;
    display: block;
}
.hero {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(0,0,0,.06);
    background-image: url("../img/home-hero-background.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-inner {
    position: relative;
    padding: clamp(0px, 7vw, 0px) 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(18px, 3vw, 34px);
    align-items: start;
}

.hero-copy { color: #fff; }
.hero-copy p { color: rgba(255,255,255,.90); }


@media (max-width: 576px) {


}


.hero-card {
    border-radius: var(--radius);
    background: rgba(255,255,255, .5);
    backdrop-filter: blur(3px);
    border: 1px solid rgba(255,255,255,.45);
    box-shadow: 0 24px 60px rgba(0,0,0,.22);
    overflow: hidden;
}

.quick-head { padding: 14px 16px 0; }
.quick-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 850;
    color: #0f172a;
    letter-spacing: -0.01em;
}
.quick-title i { color: var(--primary); }
.quick-sub { margin: 6px 0 0; font-size: 13px; color: var(--muted); }

.tabs {
    display: flex;
    gap: 8px;
    padding: 10px 16px 12px;
    border-bottom: 1px solid rgba(15,23,42,.08);
    margin-top: 10px;
    background: rgba(255,255,255, .3);
}
.tab {
    flex: 1;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,.10);
    padding: 10px 12px;
    font-weight: 850;
    background: rgba(255,255,255,.90);
    cursor: pointer;
}
.tab[aria-selected="true"] {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.tabpanes{ padding: 18px 16px 18px; }
.pane{ display: none; }
.pane.is-active{ display: block; }

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

.field { display: grid; gap: 6px; }
label { font-size: 12px; color: #334155; font-weight: 850; }
input, select {
    width: 100%;
    border-radius: 12px;
    padding: 12px 12px;
    border: 1px solid var(--border);
    background: #fff;
    font-size: 14px;
}
.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.fineprint { font-size: 12px; color: var(--muted); margin: 12px 0 0; }

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

.tiles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 26px;
}
.tile {
    padding: 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: #fff;
    transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(15,23,42,.10);
    border-color: rgba(46,166,201,.35);
}
.tile-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(46,166,201,.25);
    background: rgba(46,166,201,.10);
    margin-bottom: 12px;
}
.tile-icon i { font-size: 18px; color: var(--primary); }

.trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 26px;
}
.trust-item {
    padding: 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: #fff;
}
.trust-item strong { display: block; font-size: 16px; margin-bottom: 6px; }


.trust-title--logo { display: block; margin: 0 0 10px; }
.cred-logo { display: block; width: auto; height: 28px; max-width: 100%; }
.cred-logo--ban { height: 24px; }
.cred-logo--ace { height: 28px; border-radius: 4px; }
.cred-logo--aca { height: 26px; }


.updates-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}
.small-link {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .01em;
    color: var(--primary);
}
.small-link:hover { color: var(--primary-2); text-decoration: underline; }

.headline-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.headline {
    display: block;
    padding: 0;
    border-radius: 0;
    border: none;
    background: transparent;
    font-family: Merriweather, serif;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    margin-top: 12px;
}

.headline:hover {
    background: transparent;
    border-color: transparent;
}

.headline a {
    color: var(--text);
    text-decoration: none;
}

.headline a:hover {
    color: var(--primary);
}

.headline-title { flex: 1 1 auto; font-weight: 800; color: var(--text); }
.headline-arrow { opacity: .55; }
.headline:hover .headline-arrow { opacity: .9; }

.headline-thumb {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background:
        radial-gradient(circle at 30% 30%, rgba(46,166,201,.22), transparent 55%),
        linear-gradient(145deg, rgba(27,77,122,.10), rgba(27,77,122,.02));
    flex: 0 0 auto;
}
.headline.has-thumb .headline-thumb { display: block; }

.headline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(46,166,201,.28);
    border: 2px solid rgba(46,166,201,.78);
    flex: 0 0 auto;
}

.news-holder .headline {
    margin-top: 12px;
}
.newsletter {
    background: linear-gradient(180deg, var(--primary), var(--primary-2));
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.newsletter p { color: rgba(255,255,255,.88); }
.newsletter .cardish {
    border-radius: var(--radius);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.14);
    padding: var(--pad);
    box-shadow: 0 18px 44px rgba(0,0,0,.18);
}
.newsletter input, .newsletter select {
    background: #fff;
    border-color: rgba(255,255,255,.22);
}
.checkrow {
    display:flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 12px;
    color: rgba(255,255,255,.88);
    font-size: 13px;
}
.checkrow label {
    display:flex;
    align-items:center;
    gap: 8px;
    font-weight: 750;
    color: rgba(255,255,255,.92);
}
.checkrow input { width: 16px; height: 16px; }


.section-broker-explainer .card {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.section-broker-explainer .card .card-body {
  padding: 22px;
}


@media (max-width: 767.98px) {

  .section-broker-explainer .card .card-body {
    padding: 18px;
  }
}


.section-accuracy .accuracy-card .card-body {
  padding: 22px;
}


@media (max-width: 767.98px) {
  .section-accuracy .accuracy-card .card-body {
    padding: 18px;
  }
}

.icon-list{
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.icon-list{
  --icon-size: 18px;
  --icon-offset: 0.22em;
}

.icon-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 10px 0;
}

.icon-list span{
  display: block;
  flex: 1;
  min-width: 0;
  line-height: 1.45;
}

.icon-list li > i,
.icon-list li > svg,
.icon-list li > .svg-inline--fa{
  width: var(--icon-size);
  min-width: var(--icon-size);
  height: var(--icon-size);
  flex: 0 0 var(--icon-size);
  display: inline-flex;
  align-items: center;
  justify-content: center;


  transform: translateY(var(--icon-offset));
}

.icon-list .fa-check,
.icon-list .fa-circle-check{
  color: #0f766e;
}

.icon-list .fa-circle-question,
.icon-list .fa-question-circle{
  color: var(--primary);
}

.icon-list--tight li{
  margin: 8px 0;
}

@media (max-width: 991.98px) {

}

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

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


}
@media (max-width: 520px) {
    .form-grid{ grid-template-columns: 1fr; }
    .tiles{ grid-template-columns: 1fr; }
    .btn{ width: 100%; }
    .form-actions{ align-items: stretch; }
    .eyebrow{ white-space: normal; }
    .ui-card .directory-cards{ padding: 14px; }
    .directory-card-item > .d-flex{ flex-direction: column; align-items: flex-start; gap: 10px; }
    .directory-card-item .btn{ width: auto; }
}


@media (max-width: 992px) {

}

.charter-guidance .eyebrow,
.directory-listings .eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.75;
  margin: 0 0 10px;
}


.charter-guidance .lead,
.directory-listings .lead {
  margin: 0 0 12px;
  opacity: 0.92;
}

.charter-guidance .muted,
.directory-listings .muted {
  margin: 0;
  opacity: 0.75;
}


.charter-guidance .icon-list,
.directory-listings .icon-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.charter-guidance .icon-list li,
.directory-listings .icon-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 10px 0;
}

.charter-guidance .icon-list i,
.directory-listings .icon-list i {
  transform: translateY(2px);
  opacity: 0.9;
}

.charter-guidance .icon-list--tight li {
  margin: 8px 0;
}


.charter-guidance .btn-primary,
.directory-listings .btn-primary,
.charter-guidance .btn-secondary,
.directory-listings .btn-secondary,
.charter-guidance .btn-link,
.directory-listings .btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 999px;
  padding: 10px 14px;
  line-height: 1;
}

.charter-guidance .btn-primary,
.directory-listings .btn-primary {
  background: #0b3a66;
  color: #fff;
}

.charter-guidance .btn-secondary,
.directory-listings .btn-secondary {
  background: rgba(11,58,102,0.10);
  color: #0b3a66;
}

.charter-guidance .btn-link,
.directory-listings .btn-link {
  background: transparent;
  color: #0b3a66;
  padding: 8px 0;
  border-radius: 0;
}


@media (max-width: 992px) {

}

.directory-hero {
  padding: 80px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 15% 20%, rgba(255,255,255,0.12), rgba(255,255,255,0) 60%),
    linear-gradient(135deg, #0b3a63 0%, #0a6aa6 55%, #0d7fb8 100%);
}

.directory-hero--brokers::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.28), rgba(0,0,0,0.05));
  pointer-events: none;
}


.directory-hero--aca::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.22), rgba(0,0,0,0.05));
  pointer-events: none;
}
.directory-hero .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  opacity: 0.85;
}

.directory-body {
  padding: 80px 0;
  background: #f6f8fb;
}

.ui-card {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  padding: 28px;
}

.aca-card {
  padding: 26px;
}

.aca-logo {
  max-width: 260px;
  width: 100%;
  height: auto;
  display: block;
}

.aca-list {
  margin: 0;
  padding-left: 18px;
}

.aca-list li {
  margin: 10px 0;
  color: rgba(15,23,42,0.85);
}

.aca-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.aca-links li + li {
  margin-top: 10px;
}

.aca-links a {
  font-weight: 700;
  text-decoration: none;
}

.aca-links a:hover {
  text-decoration: underline;
}

.filter-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.filter-card__head {
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.results-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}


@media (max-width: 767px) {


}

.icon-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.icon-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  column-gap: 12px;
  align-items: start;
  margin: 10px 0;
}

.icon-list--ticks li::before,
.icon-list--questions li::before {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  margin-top: 2px;
  font-size: 0.75rem;
  font-weight: 800;
}

.icon-list--ticks li::before {
  content: "✓";
  background: rgba(13, 127, 184, 0.14);
  color: #0b3a63;
}

.icon-list--questions li::before {
  content: "?";
  background: rgba(15, 23, 42, 0.12);
  color: rgba(15, 23, 42, 0.9);
}

.profile-hero {
  padding: 60px 0 30px;
  background: #fff;
}

.profile-body {
  padding: 40px 0 80px;
  background: #f6f8fb;
}

.back-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: rgba(15, 23, 42, 0.75);
  font-weight: 600;
}

.back-link:hover {
  color: rgba(15, 23, 42, 0.95);
}

.kv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}

.kv__label {
  font-size: 0.8rem;
  color: rgba(15, 23, 42, 0.65);
  font-weight: 700;
  margin-bottom: 2px;
}

.kv__value a {
  text-decoration: none;
}

.kv__value a:hover {
  text-decoration: underline;
}

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

.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.tag--on {
  background: rgba(13, 127, 184, 0.10);
  color: #0b3a63;
}

.tag--off {
  background: rgba(15, 23, 42, 0.05);
  color: rgba(15, 23, 42, 0.65);
}

.people-lineup {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.person-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #fff;
}

.person-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #0b3a63;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex: 0 0 44px;
}

.person-avatar img {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.person-name {
  font-weight: 800;
  line-height: 1.2;
}

.person-title {
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.65);
}

.directory-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0,0,0,.22), rgba(0,0,0,.05));
}

.stat-pill {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 14px 16px;
  height: 100%;
  backdrop-filter: blur(6px);
}

.stat-value {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
}

.stat-label {
  font-size: 12px;
  letter-spacing: .2px;
  opacity: .9;
}


.directory-form .form-label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  color: rgba(33,37,41,.75);
}

.applied-filters .badge {
  margin: 0 6px 6px 0;
}

.content-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}


.directory-table thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(33,37,41,.6);
  background: rgba(0,0,0,.02);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.directory-table tbody td {
  vertical-align: middle;
  border-top: 1px solid rgba(0,0,0,.06);
}

.directory-table tbody tr:hover {
  background: rgba(0,0,0,.015);
}

.result-title {
  font-weight: 700;
  margin-bottom: 2px;
}

.result-sub {
  font-size: 13px;
  color: rgba(33,37,41,.7);
}

.badge-outline {
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  padding: 6px 10px;
}

.badge-soft {
  background: rgba(0,0,0,.04);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  color: rgba(33,37,41,.85);
}

.sidebar-card {
  background: rgba(0,0,0,.02);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 18px;
  padding: 16px;
}

.sidebar-title {
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(33,37,41,.65);
}

.operator-aircraft-row {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid rgba(0,0,0,.06);
}
.operator-aircraft-row:first-child { border-top: 0; padding-top: 0; }

.operator-aircraft-base {
  min-width: 160px;
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .operator-aircraft-row { flex-direction: column; gap: 6px; }
  .operator-aircraft-base { min-width: 0; }
}


.tp-form .form-label{
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}

.tp-form .form-control,
.tp-form .form-select{
  border-radius: 14px;
  border: 1px solid rgba(33,37,41,.12);
}

.tp-inline-link{
  font-weight: 600;
  font-size: 14px;
  color: rgba(33,37,41,.7);
  text-decoration: none;
}
.tp-inline-link:hover{
  text-decoration: underline;
}


.tp-section{
  background: #fff;
}

.tp-card{
  background: #fff;
  border: 1px solid rgba(33,37,41,.08);
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(0,0,0,.07);
}

.tp-card-soft{
  box-shadow: none;
}

.tp-card-body{
  padding: 22px;
}

.tp-h2{
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.tp-muted{
  color: rgba(33,37,41,.72);
}

.tp-divider{
  height: 1px;
  background: rgba(33,37,41,.08);
  margin: 18px 0;
}

.tp-mini{
  border: 1px solid rgba(33,37,41,.08);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,.7);
}

.tp-mini-title{
  font-weight: 700;
  margin-bottom: 6px;
}

.tp-mini-text{
  color: rgba(33,37,41,.72);
  font-size: 14px;
  line-height: 1.7;
}


.tp-icon-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.tp-icon-list li{
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 8px 0;
  color: rgba(33,37,41,.78);
  line-height: 1.6;
}

.tp-icon-list-compact li{
  padding: 7px 0;
  font-size: 14px;
}

.tp-icon{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(84,127,170,.12);
  color: rgba(33,37,41,.85);
  flex: 0 0 auto;
}

.tp-plain-list{
  padding-left: 18px;
  margin: 0;
  color: rgba(33,37,41,.78);
}

.tp-results-head{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: stretch;
  justify-content: space-between;
  margin-bottom: 10px;
}

.tp-results-route{
  flex: 1 1 520px;
  border: 1px solid rgba(33,37,41,.08);
  border-radius: 20px;
  padding: 14px 16px;
  background: rgba(84,127,170,.06);
}

.tp-route-label{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(33,37,41,.65);
  margin-bottom: 4px;
}

.tp-route-value{
  font-weight: 700;
  line-height: 1.35;
}

.tp-route-arrow{
  padding: 0 10px;
  color: rgba(33,37,41,.6);
}

.tp-stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  flex: 0 0 420px;
  max-width: 520px;
}

.tp-stat{
  border: 1px solid rgba(33,37,41,.08);
  border-radius: 20px;
  padding: 12px 14px;
  background: #fff;
}

.tp-stat-label{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(33,37,41,.60);
  margin-bottom: 2px;
}

.tp-stat-value{
  font-weight: 800;
}

.tp-alert{
  border-radius: 20px;
  border: 1px solid rgba(33,37,41,.08);
  background: rgba(255, 193, 7, .12);
  padding: 14px 16px;
  margin-bottom: 8px;
}

.tp-alert-title{
  font-weight: 800;
  margin-bottom: 4px;
}

.tp-alert-text{
  color: rgba(33,37,41,.75);
}

.tp-group{
  border: 1px solid rgba(33,37,41,.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(0,0,0,.07);
  margin-bottom: 18px;
  overflow: hidden;
}

.tp-group-head{
  padding: 16px 18px 12px 18px;
  background: rgba(84,127,170,.06);
  border-bottom: 1px solid rgba(33,37,41,.06);
}

.tp-group-title{
  font-weight: 800;
}

.tp-group-meta{
  color: rgba(33,37,41,.7);
  font-size: 14px;
  line-height: 1.6;
}

.tp-operator-list{
  padding: 14px 18px 18px 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.tp-operator{
  display: block;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(33,37,41,.10);
  background: #fff;
  text-decoration: none;
}

.tp-operator:hover{
  text-decoration: none;
  border-color: rgba(84,127,170,.45);
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
}

.tp-operator-name{
  font-weight: 800;
  color: rgba(33,37,41,.92);
  line-height: 1.35;
}

.tp-operator-sub{
  color: rgba(33,37,41,.70);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 2px;
}

.tp-side-title{
  font-weight: 800;
  margin-bottom: 10px;
}

.tp-airport-list .tp-airport{
  border: 1px solid rgba(33,37,41,.08);
  border-radius: 14px;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(33,37,41,.78);
  background: rgba(255,255,255,.7);
}

.tp-airport span{
  color: rgba(33,37,41,.55);
  font-size: 14px;
}


@media (max-width: 991.98px){
  .tp-stats{
    flex: 1 1 100%;
    max-width: none;
  }
}

.contact-hero {
  background: radial-gradient(1200px 600px at 70% 10%, rgba(255,255,255,0.55), rgba(255,255,255,0.0) 60%),
              linear-gradient(180deg, rgba(15, 60, 95, 0.10), rgba(15, 60, 95, 0.04));
  padding: clamp(48px, 7vh, 84px) 0;
}

.contact-left {
  max-width: 620px;
}

.contact-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 10px;
}

.contact-title {
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  margin: 0 0 14px;
}

.contact-subtitle {
  margin: 0 0 18px;
  opacity: 0.85;
  max-width: 56ch;
}

.contact-hero-cards {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

@media (min-width: 576px) {
  .contact-hero-cards {
    grid-template-columns: 1fr 1fr;
  }
  .contact-mini-card--full {
    grid-column: 1 / -1;
  }
}

.contact-mini-card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15, 60, 95, 0.08);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.contact-mini-label {
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 8px;
}

.contact-mini-value {
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-mini-note {
  font-size: 13px;
  opacity: 0.75;
}

.contact-mini-link {
  font-weight: 700;
  text-decoration: none;
}

.contact-mini-link:hover {
  text-decoration: underline;
}


.contact-panel {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(15, 60, 95, 0.10);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 18px 55px rgba(0,0,0,0.10);
}

@media (min-width: 992px) {
  .contact-panel {
    padding: 26px;
  }
}

.contact-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.contact-panel-title {
  font-size: 18px;
  margin: 0 0 4px;
}

.contact-panel-subtitle {
  margin: 0;
  opacity: 0.75;
  font-size: 13.5px;
}

.contact-panel-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(15, 60, 95, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.contact-divider {
  border: 0;
  border-top: 1px solid rgba(15, 60, 95, 0.12);
  margin: 18px 0;
}

.contact-direct-title {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.75;
  margin: 0 0 12px;
}

.contact-person {
  display: flex;
  gap: 12px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15, 60, 95, 0.08);
  border-radius: 16px;
  padding: 14px;
}

.contact-person-badge {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(15, 60, 95, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  flex: 0 0 auto;
}

.contact-person-name {
  font-weight: 800;
  line-height: 1.2;
}

.contact-person-role {
  font-size: 13px;
  opacity: 0.75;
  margin-top: 2px;
}

.contact-person-meta {
  font-size: 13px;
  opacity: 0.75;
  margin-top: 6px;
}

.contact-person-link {
  display: inline-block;
  margin-top: 6px;
  font-weight: 700;
  text-decoration: none;
}

.contact-person-link:hover {
  text-decoration: underline;
}


.contact-visit {
  padding: 80px 0;
}

.contact-visit-title {
  margin: 0 0 10px;
}

.contact-visit-subtitle {
  margin: 0 0 18px;
  opacity: 0.80;
  max-width: 52ch;
}

.contact-address-card {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(15, 60, 95, 0.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.contact-address-line {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(15, 60, 95, 0.08);
}

.contact-address-line:last-child {
  border-bottom: 0;
}

.contact-address-ico {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(15, 60, 95, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-address-strong {
  font-weight: 800;
}

.contact-map {
  height: 100%;
  min-height: 320px;
  border-radius: 18px;
  background: rgba(15, 60, 95, 0.04);
  border: 1px dashed rgba(15, 60, 95, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.contact-map-title {
  font-weight: 800;
  margin-bottom: 4px;
}

.contact-map-subtitle {
  opacity: 0.75;
  font-size: 13.5px;
}

.contact-help-panel {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(15, 60, 95, 0.10);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.06);
}

.contact-help-head {
  margin-bottom: 14px;
}

.contact-help-title {
  font-size: 18px;
  margin: 0 0 4px;
}

.contact-help-subtitle {
  margin: 0;
  font-size: 13.5px;
  opacity: 0.75;
}

.contact-help-items {
  display: grid;
  gap: 12px;
}

.contact-help-item {
  padding: 12px;
  border-radius: 14px;
  background: rgba(15, 60, 95, 0.04);
  border: 1px solid rgba(15, 60, 95, 0.06);
}

.contact-help-q {
  font-weight: 800;
  margin-bottom: 6px;
}

.contact-help-a {
  font-size: 13.5px;
  opacity: 0.85;
  line-height: 1.5;
}

.contact-help-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.directory-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: radial-gradient(800px 500px at 15% 20%, rgba(255,255,255,0.12), rgba(255,255,255,0) 60%),
              linear-gradient(135deg, #1f4f7d 0%, #193d64 55%, #0f2f52 100%);
}

.directory-hero .eyebrow {
  letter-spacing: .12em;
  opacity: .85;
}

.directory-hero .lead {
  max-width: 46ch;
  opacity: .95;
}

.directory-hero--brokers::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 420px at 78% 30%, rgba(130,194,230,0.22), rgba(130,194,230,0) 60%);
  pointer-events: none;
}

.stat-pill {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 12px 14px;
  backdrop-filter: blur(6px);
}

.stat-value {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
}

.stat-label {
  font-size: 12px;
  opacity: .85;
  margin-top: 2px;
}

.ui-card {
  background: #fff;
  border: 1px solid rgba(15,47,82,0.10);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(15,47,82,0.08);
}

.filter-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15,47,82,0.10);
}


.directory-hero .filter-card {
  color: var(--primary-2);
}

.directory-hero .filter-card__head,
.directory-hero .filter-card__head strong,
.directory-hero .filter-card__head i {
  color: var(--primary);
}

.directory-hero .filter-card__head .text-muted {
  color: rgba(15,47,82,0.60) !important;
}

.directory-body {
  background: #f6f8fb;
  padding: 80px 0;
}

.results-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.results-toolbar__left h2 {
  margin: 0;
}

.results-toolbar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.directory-table thead th {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #5b6b7a;
  border-bottom: 1px solid rgba(15,47,82,0.10);
  padding: 14px 18px;
  background: #fbfcfe;
}

.directory-table tbody td {
  padding: 14px 18px;
  border-top: 1px solid rgba(15,47,82,0.08);
  vertical-align: middle;
}

.directory-table tbody tr:hover {
  background: rgba(130,194,230,0.08);
}

.applied-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.applied-filters .filter-chip {
  background: rgba(130,194,230,0.16);
  color: #0f2f52;
  border: 1px solid rgba(15,47,82,0.12);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
}

.directory-hero--planner::after{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(900px 520px at 78% 30%, rgba(255,255,255,0.16), rgba(255,255,255,0) 60%);
  pointer-events:none;
}

.tp-section{
  background: var(--bg);
}

.tp-results-route{
  background: rgba(27,77,122,.06);
  border-color: rgba(27,77,122,.12);
}

.tp-group-head{
  background: rgba(27,77,122,.06);
}

.tp-operator:hover{
  border-color: rgba(27,77,122,.35);
}

.tp-icon{
  background: rgba(27,77,122,.10);
}

a {
  text-decoration-thickness: from-font;
  text-underline-offset: 2px;
}

.btn,
.btn-primary,
.btn-secondary,
.btn-outline-primary {
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.btn:active {
  transform: translateY(1px);
}

.pagination .page-link {
  color: var(--blue-2);
  border-color: rgba(15, 47, 82, 0.16);
}

.pagination .page-link:hover,
.pagination .page-link:focus {
  color: var(--blue-2);
  background: rgba(130, 194, 230, 0.12);
  border-color: rgba(15, 47, 82, 0.22);

.pagination .page-item.active .page-link {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,47,82,0.08);
}

.header .d-flex {
  position: relative;
}

.nav-menu .nav-cta {
  display: inline-flex;
  align-items: center;
  line-height: normal;
}

.nav-menu .nav-login {
  border-radius: 999px;
  font-weight: 850;
  padding: 10px 14px;
}

.nav-menu .nav-login i {
  margin-right: 8px;
}

.nav-menu .nav-login.is-active {
  box-shadow: 0 0 0 3px rgba(46,166,201,.22);
}

@media (max-width: 991.98px) {
  .nav-menu .nav-cta {
    display: block;
  }
  .nav-menu .nav-cta .nav-login {
    width: 100%;
    justify-content: center;
  }
}
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(15,47,82,0.18);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle-bars {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-2);
  position: relative;
  display: block;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--blue-2);
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

@media (max-width: 991.98px) {
  .nav-menu {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);
    background: #fff;
    border: 1px solid rgba(15,47,82,0.12);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15,47,82,0.12);
    padding: 12px;
    display: none;
  }

  .nav-menu.is-open {
    display: block;
  }

  .nav-menu ul {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }

  .nav-menu ul li {
    margin: 0;
    line-height: normal;
    display: block;
  }

  .nav-menu ul li a {
    display: block;
    padding: 12px 14px;
    border-radius: 14px;
  }

  .nav-menu ul li a:hover {
    background: rgba(130,194,230,0.14);
  }
}

.directory-cards {
  display: grid;
  gap: 12px;
}

@media (max-width: 767.98px) {
  .ui-card .directory-cards {
    padding: 14px;
    margin-top: 0;
  }
}

.directory-card-item {
  background: #fff;
  border: 1px solid rgba(15,47,82,0.10);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: 0 18px 50px rgba(15,47,82,0.06);
}

.directory-card-item .badge-soft {
  margin-bottom: 6px;
  display: inline-flex;
}

@media (max-width: 575.98px) {
  .section {
    padding: 48px 0;
  }

  .hero {
    padding: 64px 0;
  }

  .hero .container {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.site-footer {
  background: #0f2f52;
  color: rgba(255,255,255,255);
  padding: 44px 0 28px;
}

.footer-logo {
  max-width: 170px;
  height: auto;

  filter: brightness(0) invert(1);
}

.footer-title {
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  margin: 0 0 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,255);
  text-decoration: none;
}

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

.footer-text {
  margin: 12px 0 0;
  max-width: 52ch;
  color: rgba(255,255,255,255);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 26px;
  padding-top: 18px;
  font-size: 13px;
  opacity: .9;
}


:root{
  --blue: var(--primary);
  --blue-2: var(--primary-2);
}

.eyebrow{ color: rgba(15,23,42,.70); }
.hero .eyebrow,
.directory-hero .eyebrow,
.newsletter .eyebrow{ color: rgba(255,255,255,.85); }

.lead{ color: #1f2937; }
.hero .lead,
.directory-hero .lead,
.newsletter .lead{ color: rgba(255,255,255,.88); }

.hero .btn-secondary,
.directory-hero .btn-secondary,
.newsletter .btn-secondary{
  background: rgba(255,255,255,.16);
  color: #fff;
  border-color: rgba(255,255,255,.28);
}
.hero .btn-secondary:hover,
.directory-hero .btn-secondary:hover,
.newsletter .btn-secondary:hover{
  background: rgba(255,255,255,.24);
  border-color: rgba(255,255,255,.40);
  color: #fff;
}


.newsletter .btn.btn-primary{
  background: #fff;
  color: var(--primary);
  border-color: rgba(255,255,255,0.85);
}

.newsletter .btn.btn-primary:hover{
  background: rgba(255,255,255,0.92);
  color: var(--primary);
  border-color: rgba(255,255,255,0.92);
}


.news-hero{
  position: relative;
  padding: 90px 0;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(9, 35, 66, .86), rgba(17, 92, 148, .70)),
    url("/img/home-hero-background.webp");
  background-size: cover;
  background-position: center;
}


.news-hero .eyebrow,
.news-hero .lead{ color: rgba(255,255,255,.88); }
.news-hero .lead{ max-width: 68ch; }

.news-hero-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items: start;
}

.news-hero-copy{ max-width: 62ch; }

.news-hero-stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 22px;
}

.news-stat{
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 16px;
  padding: 14px 16px;
}

.news-stat-value{ font-weight: 850; font-size: 18px; line-height: 1.1; }
.news-stat-label{ font-size: 12px; opacity: .92; margin-top: 4px; }

.news-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.news-search{
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(255,255,255,.70);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  color: var(--text);
}

.news-search__head{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.news-search__head .muted{ font-size: 13px; }

.news-search__form{
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.news-search__row label{
  display: block;
  font-size: 12px;
  font-weight: 750;
  color: var(--muted);
  margin-bottom: 6px;
}

.news-search__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}


.auth-hero-note{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
}

.auth-hero-note i{ opacity: .9; }

.auth-login .news-search__actions{ justify-content: flex-start; }


.auth-hero .news-hero-actions .btn-secondary{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.30);
  color: rgba(255,255,255,.96);
}

.auth-hero .news-hero-actions .btn-secondary:hover{
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.40);
  color: #ffffff;
}

.auth-hero .news-hero-actions .btn-secondary i{ color: rgba(255,255,255,.96); }


.news-archive-head{
  display: flex;
  gap: 18px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
}

.news-archive-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.news-masonry{
  column-count: 3;
  column-gap: 18px;
}

.news-card{
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin: 0 0 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.news-card__link{
  display: block;
  color: inherit;
}

.news-card__link:hover{ color: inherit; }

.news-thumb{
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(27,77,122,.08);
}

.news-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card__body{ padding: 16px 16px 18px; }

.news-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 8px;
}

.news-tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(27,77,122,.18);
  background: rgba(27,77,122,.06);
  color: var(--primary);
  font-weight: 800;
  letter-spacing: .02em;
}

.news-title{
  font-size: 18px;
  line-height: 1.25;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.news-excerpt{
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.news-card__link:hover .news-title{ color: var(--primary); }

.news-pagination{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
}

.news-page{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(27,77,122,.18);
  background: rgba(27,77,122,.06);
  color: var(--primary);
  font-weight: 800;
  transition: background-color .12s ease, transform .12s ease;
}

.news-page:hover{ background: rgba(27,77,122,.12); }

.news-page[aria-current="page"]{
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.news-page--dots{
  border: none;
  background: transparent;
  min-width: auto;
  padding: 0;
  color: var(--muted);
}

.news-fleet{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.news-fleet__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}


.article-hero{
  position: relative;
  padding: 80px 0 70px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(9, 35, 66, .88), rgba(17, 92, 148, .72)),
    url("/img/home-hero-background.webp");
  background-size: cover;
  background-position: center;
}

.article-hero-grid{
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items: start;
  margin-top: 12px;
}

.article-hero-copy{ max-width: 70ch; }

.article-hero .eyebrow,
.article-hero .lead{ color: rgba(255,255,255,.88); }

.article-hero .back-link{
  color: rgba(255,255,255,.86);
}

.article-hero .back-link:hover{
  color: rgba(255,255,255,.98);
  text-decoration: underline;
}

.article-hero .btn-secondary{
  background: rgba(255,255,255,.16);
  color: #fff;
  border-color: rgba(255,255,255,.28);
}

.article-hero .btn-secondary:hover{
  background: rgba(255,255,255,.24);
  border-color: rgba(255,255,255,.40);
  color: #fff;
}

.section-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.section-head > :last-child{
  margin-top: 8px;
}

.article-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
  color: rgba(255,255,255,.86);
  font-size: 13px;
}

.article-meta__item{ display: inline-flex; gap: 8px; align-items: center; }
.article-meta__item i{ opacity: .95; }
.article-meta__dot{ opacity: .75; }

.article-hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.article-hero-media img{
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.28);
  display: block;
}

.article-content{ padding: 22px 22px 18px; }
.article-intro p{ font-size: 16px; color: rgba(15,23,42,.82); margin: 0; }

.article-points{
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.article-point{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(15,23,42,.88);
}

.article-point i{ margin-top: 3px; color: var(--primary); }

.article-quote{
  margin: 16px 0 0;
  padding: 14px 16px;
  border-left: 4px solid rgba(27,77,122,.70);
  background: rgba(27,77,122,.06);
  border-radius: 12px;
}

.article-quote p{ margin: 0; font-weight: 750; color: rgba(15,23,42,.86); }

.article-divider{
  height: 1px;
  background: rgba(15,23,42,.12);
  margin: 18px 0;
}

.article-footer{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.article-share{ display: flex; gap: 10px; flex-wrap: wrap; }

.article-side .article-list{
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.article-side .article-list a{ font-weight: 750; }

.article-side-cta{
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.link-card{
  display: block;
  text-decoration: none;
  padding: 16px;
}

.link-card__tag{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(27,77,122,.18);
  background: rgba(27,77,122,.06);
  color: var(--primary);
  font-weight: 800;
  font-size: 12px;
}

.link-card__title{
  margin-top: 10px;
  font-weight: 850;
  line-height: 1.25;
}

.link-card__meta{
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.link-card:hover .link-card__title{ color: var(--primary); }

@media (max-width: 991.98px){
  .news-hero-grid{ grid-template-columns: 1fr; }
  .news-hero{ padding: 70px 0; }
  .news-masonry{ column-count: 2; }
  .article-hero-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 575.98px){
  .news-hero{ padding: 56px 0; }
  .news-hero-stats{ grid-template-columns: 1fr; }
  .news-masonry{ column-count: 1; }
}


.ad-banner-strip {
    padding: 22px 0 0;
    background: var(--bg-alt);
}

.ad-banner-strip + section.section.bg-white {
    padding-top: 36px;
}

.ad-banner-wrap {
    background: linear-gradient(180deg, #f7f9fc 0%, #eef3fa 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px;
}

.ad-banner-label {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
}

.ad-banner {
    width: 100%;
    border-radius: 14px;
    border: 1px dashed rgba(27,77,122,.24);
    background: linear-gradient(135deg, rgba(27,77,122,.05), rgba(46,166,201,.10));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: .02em;
}

.ad-banner span {
    padding: 10px 14px;
}

.ad-banner-desktop {
    max-width: 970px;
    height: 250px;
    margin: 0 auto;
}

.ad-banner-tablet,
.ad-banner-mobile {
    display: none;
    margin: 0 auto;
}

.ad-banner-tablet {
    max-width: 728px;
    height: 90px;
}

.ad-banner-mobile {
    max-width: 300px;
    height: 250px;
}

@media (max-width: 1024px) {
    .ad-banner-desktop { display: none; }
    .ad-banner-tablet { display: flex; }
}

@media (max-width: 767.98px) {
    .ad-banner-strip { padding-top: 14px; }
    .ad-banner-wrap { padding: 12px; }
    .ad-banner-tablet { display: none; }
    .ad-banner-mobile { display: flex; }
}

.news-holder {
    margin-top: 24px;
    margin-left: 12px;
    margin-right: 12px;
}
    .news-holder .title { font-family: Merriweather, serif; }
    .news-holder .date { margin: 24px 0; font-size: 16px; color: #A7A7A7; }
    .news-holder .date.smaller { margin: 8px 0; }
    .news-holder .body { margin: 0; }
    .news-holder .fullbody { font-family: Merriweather; font-size: 15px; line-height: 28px;}
    .news-holder .headline { margin-top: 12px; font-family: Merriweather; font-size: 18px; line-height: 28px; font-weight: 600; }
    .news-holder .summary { margin: 20px 0; font-size: 18px; font-weight: 600; line-height: 28px; }

/* Lock fleet airport column width for consistent alignment */
.operator-aircraft-base {
  flex: 0 0 300px;
  min-width: 300px;
}

@media (max-width: 991.98px) {
  .operator-aircraft-base {
    flex: 1 1 auto;
    min-width: 0;
  }
}

/* Nav menu: narrow dropdown under burger on all sizes */
.nav-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 60px;
  width: 220px;
  background: var(--card, #fff);
  border-radius: 0 0 12px 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  z-index: 1000;
  padding: 8px 0;
}

.nav-menu.is-open {
  display: block;
}

.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu ul li a {
  display: block;
  padding: 10px 20px;
  color: var(--text, #212529);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: background .15s;
}

.nav-menu ul li a:hover {
  background: rgba(0,0,0,.04);
}

.nav-toggle { display: inline-flex !important; cursor: pointer; }

/* Site search in nav */
.nav-search-inline { display: flex; align-items: center; position: relative; }
.nav-search-inline input {
  border-radius: 999px; padding: 8px 14px 8px 32px;
  border: 1px solid rgba(15,47,82,.14); background: rgba(15,47,82,.04);
  font-size: 13px; width: 160px; transition: width .2s ease, border-color .2s ease;
}
.nav-search-inline input:focus { width: 240px; border-color: rgba(46,166,201,.5); outline: none; background: #fff; }
.nav-search-inline i { position: absolute; left: 11px; font-size: 12px; color: var(--muted); pointer-events: none; }

@media (max-width: 520px) {
  .nav-search-inline input { width: 110px; }
  .nav-search-inline input:focus { width: 150px; }
}

@media (max-width: 575.98px) {
  .logo {
    height: 24px;
  }
}

@media (max-width: 575.98px) {
  .nav-search-inline {
    display: none;
  }
}

.nav-menu-search {
  padding: 8px 14px 12px;
  border-top: 1px solid rgba(0,0,0,.06);
  margin-top: 4px;
}

@media (max-width: 575.98px) {
  .nav-menu-search {
    display: block !important;
  }
}

/* ===== Login page additions — append to stylesheet.css ===== */

.auth-error {
  color: #dc2626;
  font-size: 0.875rem;
  padding: 0.5rem 0;
}

.auth-account-body {
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-sub-status p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.auth-pub-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.auth-pub-list li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  text-decoration: none;
}

.auth-pub-list li a:hover {
  text-decoration: underline;
}

.person-chip a:hover i.fa-linkedin {
  color: #0a66c2;
}

.featured-ad-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(15,47,82,.12);
  border-color: rgba(27,77,122,.25);
}

a[href^="http"]::after {
  content: "\f08e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7em;
  margin-left: 0.3em;
  vertical-align: super;
}

a[href^="http"]:not(.btn)::after {
  content: "\f08e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7em;
  margin-left: 0.3em;
  vertical-align: super;
}

a.gallery-link::after {
  display: none !important;
}

.footer-legal {
  color: white;
  display: flex;
  gap: 2.25rem;
}

.footer-legal a {
  font-size: 0.85rem;
  opacity: 1;
}

.footer-legal a:hover {
  opacity: 0.9;
}

#tpQuotePanel input::placeholder,
#tpQuotePanel textarea::placeholder {
  color: rgba(33,37,41,.3);
}

.featured-ad-card.promo-card::after {
  display: none !important;
}