:root {
  --breeze-navy-950: #031d3d;
  --breeze-navy-900: #052b5b;
  --breeze-navy-800: #08437f;
  --breeze-blue-700: #0664cf;
  --breeze-blue-600: #0879e8;
  --breeze-blue-500: #1890ef;
  --breeze-blue-200: #9dd8f6;
  --breeze-blue-100: #dff3fc;
  --breeze-page: #edf5fa;
  --breeze-white: #ffffff;
  --breeze-text: #0b315f;
  --breeze-muted: #617c98;
  --breeze-line: #d7e4ed;
  --breeze-success: #1aa66f;

  --page-width: 1420px;
  --header-height: 92px;

  --shadow-small: 0 8px 24px rgba(4, 43, 88, 0.08);
  --shadow-large: 0 18px 52px rgba(4, 43, 88, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--breeze-page);
  color: var(--breeze-text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

body.navigation-open {
  overflow: hidden;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

#main-content {
  min-height: calc(100vh - var(--header-height));
  outline: none;
}

.page-container {
  width: min(calc(100% - 64px), var(--page-width));
  margin-inline: auto;
}

/* Header */

.site-header {
    height:74px;
    display:flex;
    align-items:center;
    background:#082e63;
}

.site-header__inner {
  width: min(calc(100% - 44px), 1500px);
  min-height: var(--header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 245px 1fr auto;
  gap: 28px;
  align-items: center;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--breeze-white);
  text-decoration: none;
}








.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 31px;
}

.site-nav__link {
  position: relative;
  padding: 35px 0 31px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav__link::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: #76c7ff;
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.crew-login-button {
  min-width: 145px;
  padding: 12px 20px;
  border: 1px solid rgba(106, 194, 255, 0.85);
  border-radius: 9px;
  color: var(--breeze-white);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.crew-login-button span {
  margin-right: 8px;
  color: #a9dcff;
  font-size: 9px;
}

.navigation-toggle {
  display: none;
}

/* Homepage hero */

.home-hero {
  position: relative;
  min-height: 435px;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(247, 252, 255, 0.99) 0%,
      rgba(237, 248, 254, 0.95) 29%,
      rgba(218, 241, 252, 0.5) 55%,
      rgba(12, 99, 177, 0.05) 100%
    ),
    radial-gradient(
      ellipse at 76% 45%,
      rgba(21, 141, 228, 0.34),
      transparent 42%
    ),
    linear-gradient(135deg, #d9f2ff, #8dc9e9);
}

.home-hero::after {
  position: absolute;
  right: 8%;
  bottom: 28px;
  width: min(62vw, 940px);
  height: 270px;
  display: grid;
  place-items: center;
  color: rgba(4, 61, 124, 0.78);
  content: "✈";
  font-size: min(32vw, 480px);
  line-height: 1;
  transform: rotate(-4deg);
  text-shadow: 0 25px 40px rgba(4, 61, 124, 0.18);
}

.home-hero__overlay {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 92px;
  background:
    linear-gradient(
      to bottom,
      rgba(237, 245, 250, 0),
      var(--breeze-page)
    );
}

.home-hero__inner {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 64px), var(--page-width));
  min-height: 435px;
  margin-inline: auto;
  padding-top: 52px;
}

.home-hero__content {
  width: min(460px, 100%);
}

.section-eyebrow {
  margin: 0 0 4px;
  color: var(--breeze-blue-700);
  font-size: 19px;
  font-weight: 850;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.home-hero h1 {
  margin: 0;
  color: var(--breeze-navy-900);
  font-size: clamp(58px, 6vw, 91px);
  font-weight: 900;
  letter-spacing: -3px;
  line-height: 0.88;
  text-transform: uppercase;
}

.home-hero h1 span {
  display: block;
}

.home-hero__description {
  max-width: 410px;
  margin: 25px 0 0;
  color: #425e79;
  font-size: 18px;
  line-height: 1.55;
}

/* Flight search */

.flight-search-section {
  position: relative;
  z-index: 10;
  margin-top: -119px;
}

.flight-search {
  min-height: 118px;
  display: grid;
  grid-template-columns: 1fr 1fr 0.9fr 1fr 1.25fr;
  overflow: hidden;
  border: 1px solid rgba(179, 208, 226, 0.8);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-large);
}

.flight-search__field {
  position: relative;
  min-width: 0;
  padding: 25px 31px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: center;
}

.flight-search__field::after {
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 24px;
  width: 1px;
  background: var(--breeze-line);
  content: "";
}

.flight-search__icon {
  color: var(--breeze-blue-600);
  font-size: 23px;
  text-align: center;
}

.flight-search__field label {
  display: block;
  margin-bottom: 5px;
  color: var(--breeze-blue-700);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.flight-search__field input,
.flight-search__field select {
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--breeze-navy-900);
  font-size: 20px;
  font-weight: 800;
}

.flight-search__field small {
  display: block;
  margin-top: 3px;
  color: #4e6b87;
  font-size: 12px;
}

.flight-search__action {
  padding: 25px 34px;
  display: flex;
  align-items: center;
}

.primary-button,
.secondary-button {
  min-height: 58px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 19px;
  padding: 12px 28px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-button {
  width: 100%;
  background:
    linear-gradient(
      110deg,
      var(--breeze-blue-700),
      var(--breeze-blue-500)
    );
  box-shadow: 0 8px 20px rgba(7, 95, 200, 0.23);
  color: var(--breeze-white);
}

/* Homepage dashboard */

.home-dashboard {
  padding: 22px 0 0;
}

.home-dashboard__grid {
  display: grid;
  grid-template-columns: 1.5fr 0.72fr 1fr 1.1fr;
  gap: 16px;
}

.content-panel {
  overflow: hidden;
  border: 1px solid rgba(208, 224, 234, 0.9);
  border-radius: 12px;
  background: var(--breeze-white);
  box-shadow: var(--shadow-small);
}

.content-panel__header {
  min-height: 51px;
  padding: 16px 18px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content-panel__header h2 {
  margin: 0;
  color: var(--breeze-navy-900);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.content-panel__body {
  padding: 0 18px 18px;
}

.count-badge {
  min-width: 28px;
  margin-left: 6px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--breeze-blue-700);
  color: var(--breeze-white);
  font-size: 10px;
}

.network-map {
  position: relative;
  height: 218px;
  overflow: hidden;
  border-radius: 9px;
  background:
    radial-gradient(
      circle at 70% 35%,
      rgba(31, 143, 241, 0.25),
      transparent 27%
    ),
    linear-gradient(135deg, #082b58, #063f7f);
}

.network-map::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      28deg,
      transparent 0,
      transparent 58px,
      rgba(255, 255, 255, 0.025) 59px,
      transparent 60px
    );
  content: "";
}

.network-map__route {
  position: absolute;
  height: 1px;
  border-top: 1px dashed rgba(255, 255, 255, 0.72);
  transform-origin: left center;
}

.route-one {
  top: 63%;
  left: 20%;
  width: 62%;
  transform: rotate(-18deg);
}

.route-two {
  top: 38%;
  left: 18%;
  width: 65%;
  transform: rotate(8deg);
}

.route-three {
  top: 76%;
  left: 43%;
  width: 40%;
  transform: rotate(-38deg);
}

.network-map__plane {
  position: absolute;
  color: var(--breeze-white);
  font-size: 19px;
}

.plane-one {
  top: 27%;
  left: 49%;
}

.plane-two {
  top: 53%;
  left: 67%;
}

.plane-three {
  top: 68%;
  left: 31%;
}

.network-map__city {
  position: absolute;
  color: #c9eaff;
  font-size: 10px;
  font-weight: 850;
}

.city-lax {
  top: 72%;
  left: 12%;
}

.city-den {
  top: 50%;
  left: 37%;
}

.city-tpa {
  top: 77%;
  left: 81%;
}

.city-bdl {
  top: 28%;
  left: 84%;
}

.map-link {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 9px 14px;
  border: 1px solid rgba(136, 206, 255, 0.65);
  border-radius: 7px;
  background: rgba(3, 35, 74, 0.48);
  color: var(--breeze-white);
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

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

.statistics-list li {
  min-height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e7eef3;
}

.statistics-list li:last-child {
  border-bottom: 0;
}

.statistics-list span {
  color: var(--breeze-muted);
  font-size: 12px;
}

.statistics-list strong {
  color: var(--breeze-navy-900);
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--breeze-blue-700);
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

.featured-destination {
  position: relative;
  height: 218px;
  overflow: hidden;
  border-radius: 9px;
  background:
    linear-gradient(
      to top,
      rgba(2, 26, 59, 0.94),
      rgba(2, 26, 59, 0.04) 62%
    ),
    linear-gradient(
      135deg,
      #f3a05e,
      #617fb4 45%,
      #174675
    );
}

.featured-destination__content {
  position: absolute;
  right: 17px;
  bottom: 15px;
  left: 17px;
  color: var(--breeze-white);
}

.featured-destination h3 {
  margin: 0;
  font-size: 22px;
}

.featured-destination p {
  margin: 4px 0 13px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
}

.featured-destination a {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 7px;
  background: var(--breeze-white);
  color: var(--breeze-blue-700);
  font-size: 10px;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;
}

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

.news-list li {
  min-height: 68px;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 13px;
  align-items: center;
  border-bottom: 1px solid #e6eef4;
}

.news-list li:last-child {
  border-bottom: 0;
}

.news-thumbnail {
  width: 76px;
  height: 51px;
  border-radius: 8px;
  background:
    linear-gradient(
      135deg,
      #76c7f3,
      #145daa
    );
}

.news-list strong {
  display: block;
  color: var(--breeze-navy-900);
  font-size: 11px;
  line-height: 1.4;
}

.news-list time {
  color: var(--breeze-muted);
  font-size: 9px;
}

.home-dashboard__lower {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 18px;
}

.event-panel__content {
  min-height: 105px;
  padding: 5px 20px 18px;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
}

.event-date {
  width: 58px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--breeze-blue-700);
  color: var(--breeze-white);
  text-align: center;
}

.event-date small {
  display: block;
  padding-top: 7px;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.event-date strong {
  display: block;
  padding-bottom: 7px;
  font-size: 24px;
}

.event-details strong,
.event-details span,
.event-details small {
  display: block;
}

.event-details strong {
  font-size: 11px;
}

.event-details span,
.event-details small {
  color: var(--breeze-muted);
  font-size: 10px;
}

.join-banner {
  position: relative;
  min-height: 156px;
  overflow: hidden;
  padding: 24px;
  border-radius: 12px;
  background:
    linear-gradient(
      108deg,
      #0763ca,
      #1687e9
    );
  box-shadow: var(--shadow-small);
  color: var(--breeze-white);
}

.join-banner__content {
  position: relative;
  z-index: 2;
  width: min(58%, 490px);
}

.join-banner h2 {
  margin: 0 0 5px;
  font-size: 21px;
  text-transform: uppercase;
}

.join-banner p {
  margin: 0 0 14px;
  font-size: 11px;
  line-height: 1.5;
}

.secondary-button {
  min-height: 36px;
  padding: 8px 18px;
  background: var(--breeze-white);
  color: var(--breeze-blue-700);
  font-size: 10px;
}

.join-banner__aircraft {
  position: absolute;
  right: -12px;
  bottom: -75px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 235px;
  line-height: 1;
  transform: rotate(-8deg);
}

.status-strip {
  margin-top: 18px;
  padding: 13px 18px;
  display: flex;
  justify-content: center;
  gap: 42px;
  border-radius: 10px 10px 0 0;
  background: var(--breeze-navy-900);
  color: rgba(255, 255, 255, 0.77);
  font-size: 10px;
  text-transform: uppercase;
}

.status-strip strong {
  color: var(--breeze-white);
}

.status-strip .status-online {
  color: #57db9e;
}

/* Footer */

.site-footer {
  background:
    linear-gradient(
      110deg,
      var(--breeze-navy-950),
      var(--breeze-navy-800)
    );
  color: rgba(255, 255, 255, 0.75);
}

.site-footer__inner {
  width: min(calc(100% - 64px), var(--page-width));
  min-height: 85px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 245px 1fr auto auto;
  gap: 28px;
  align-items: center;
}

.footer-brand {
  color: var(--breeze-white);
  text-decoration: none;
}



.site-footer__disclaimer {
  max-width: 460px;
  margin: 0;
  font-size: 9px;
  line-height: 1.5;
}

.footer-links,
.footer-social {
  display: flex;
  gap: 21px;
}

.footer-links a,
.footer-social a {
  font-size: 9px;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-social a {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
}

/* Route states */

.route-loading,
.route-error {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.route-loading__spinner {
  width: 48px;
  height: 48px;
  margin-inline: auto;
  border: 4px solid var(--breeze-blue-100);
  border-top-color: var(--breeze-blue-600);
  border-radius: 50%;
  animation: rotate-spinner 700ms linear infinite;
}

.route-loading p {
  color: var(--breeze-muted);
  font-size: 13px;
}

.route-error__card {
  width: min(520px, calc(100% - 36px));
  padding: 42px;
  border-radius: 20px;
  background: var(--breeze-white);
  box-shadow: var(--shadow-large);
}

@keyframes rotate-spinner {
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */

@media (max-width: 1280px) {
  .site-header__inner {
    grid-template-columns: 210px 1fr auto;
    gap: 18px;
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav__link {
    font-size: 11px;
  }

  .home-dashboard__grid {
    grid-template-columns: 1.3fr 0.8fr 1fr;
  }

  .news-panel {
    grid-column: 1 / -1;
  }

  .news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .news-list li {
    border-bottom: 0;
  }
}

@media (max-width: 1020px) {
  :root {
    --header-height: 76px;
  }

  .site-header__inner {
    grid-template-columns: 1fr auto auto;
  }

  
  
  .navigation-toggle {
    width: 44px;
    height: 48px;
    padding: 9px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 9px;
    background: transparent;
    cursor: pointer;
  }

  .navigation-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    border-radius: 999px;
    background: var(--breeze-white);
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: min(380px, 88vw);
    padding: 20px 28px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    background: var(--breeze-navy-950);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.22);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav__link {
    padding: 17px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav__link::after {
    display: none;
  }

  .flight-search {
    grid-template-columns: repeat(2, 1fr);
  }

  .flight-search__action {
    grid-column: 1 / -1;
  }

  .home-dashboard__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-panel {
    grid-column: auto;
  }

  .news-list {
    display: block;
  }

  .home-dashboard__lower {
    grid-template-columns: 1fr;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    padding: 25px 0;
  }
}

@media (max-width: 720px) {
  .page-container,
  .home-hero__inner,
  .site-footer__inner {
    width: min(calc(100% - 30px), var(--page-width));
  }

  .site-header__inner {
    width: calc(100% - 26px);
  }

  .crew-login-button {
    display: none;
  }

  .home-hero {
    min-height: 520px;
  }

  .home-hero::after {
    right: -25%;
    bottom: 35px;
    opacity: 0.45;
  }

  .home-hero__inner {
    min-height: 520px;
    padding-top: 42px;
  }

  .home-hero__content {
    padding: 22px;
    border-radius: 18px;
    background: rgba(246, 252, 255, 0.86);
    backdrop-filter: blur(9px);
  }

  .section-eyebrow {
    font-size: 13px;
  }

  .home-hero h1 {
    font-size: 54px;
  }

  .home-hero__description {
    font-size: 15px;
  }

  .flight-search-section {
    margin-top: -95px;
  }

  .flight-search {
    grid-template-columns: 1fr;
  }

  .flight-search__field::after {
    top: auto;
    right: 22px;
    bottom: 0;
    left: 22px;
    width: auto;
    height: 1px;
  }

  .flight-search__action {
    grid-column: auto;
  }

  .home-dashboard__grid {
    grid-template-columns: 1fr;
  }

  .event-panel__content {
    grid-template-columns: auto 1fr;
  }

  .join-banner__content {
    width: 75%;
  }

  .status-strip {
    flex-direction: column;
    align-items: center;
    gap: 7px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .footer-links,
  .footer-social {
    flex-wrap: wrap;
  }
}

/* Real Breeze Virtual logo */

.site-brand {
  width: 220px;
  height: 72px;
  display: flex;
  align-items: center;
}

.site-brand__logo {
    display:block;
    width:220px;
    height:auto;
    object-fit:contain;
}

.footer-brand {
  width: 160px;
  display: flex;
  align-items: center;
}

.footer-brand__logo {
    display:block;
    width:200px;
    height:auto;
    object-fit:contain;
}

@media (max-width: 1020px) {
  .site-brand {
    width: 175px;
  }

.site-brand__logo {
    display:block;
    width:220px;
    height:auto;
    object-fit:contain;
}
}

@media (max-width: 520px) {
  .site-brand {
    width: 145px;
  }

.site-brand__logo {
    display:block;
    width:220px;
    height:auto;
    object-fit:contain;
}
}

/* Breeze Virtual image logos */

.site-brand {
  width: 220px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.site-brand__logo {
    display:block;
    width:220px;
    height:auto;
    object-fit:contain;
}

.footer-brand {
  width: 170px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer-brand__logo {
    display:block;
    width:200px;
    height:auto;
    object-fit:contain;
}

/* Allow the footer to follow the page content immediately */

#main-content {
  min-height: 0;
}

.site-footer {
  margin-top: 0;
}

@media (max-width: 1020px) {
  .site-brand {
    width: 180px;
  }

.site-brand__logo {
    display:block;
    width:220px;
    height:auto;
    object-fit:contain;
}
}

@media (max-width: 520px) {
  .site-brand {
    width: 145px;
  }

.site-brand__logo {
    display:block;
    width:220px;
    height:auto;
    object-fit:contain;
}

.footer-brand__logo {
    display:block;
    width:200px;
    height:auto;
    object-fit:contain;
}
}

/* Header and footer logo correction */

.site-brand {
  width: 250px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.site-brand__logo {
    display:block;
    width:220px;
    height:auto;
    object-fit:contain;
}

.footer-brand {
  width: 175px;
  height: 64px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.footer-brand__logo {
    display:block;
    width:200px;
    height:auto;
    object-fit:contain;
}

@media (max-width: 1020px) {
  .site-brand {
    width: 185px;
  }

.site-brand__logo {
    display:block;
    width:220px;
    height:auto;
    object-fit:contain;
}
}

@media (max-width: 520px) {
  .site-brand {
    width: 145px;
  }

.site-brand__logo {
    display:block;
    width:220px;
    height:auto;
    object-fit:contain;
}
}

/* Compact public flight search */

.flight-search--compact {
  min-height: auto;
  padding: 18px 22px;
  display: grid;
  grid-template-columns:
    minmax(170px, 1fr)
    44px
    minmax(170px, 1fr)
    minmax(180px, 0.9fr)
    minmax(190px, 1fr)
    minmax(180px, 0.9fr);
  gap: 14px;
  align-items: end;
  overflow: visible;
}

.search-control {
  min-width: 0;
}

.search-control label {
  display: block;
  margin: 0 0 7px;
  color: var(--breeze-blue-700);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.search-control__input {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 14px;
  border: 1px solid #d5e4ee;
  border-radius: 9px;
  background: #f8fbfd;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

.search-control__input:focus-within {
  border-color: var(--breeze-blue-500);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(24, 144, 239, 0.12);
}

.search-control__input span {
  flex: 0 0 auto;
  color: var(--breeze-blue-600);
  font-size: 18px;
}

.search-control__input input,
.search-control__input select {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--breeze-navy-900);
  font-size: 15px;
  font-weight: 750;
}

.airport-swap-button {
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
  border: 1px solid #d5e4ee;
  border-radius: 50%;
  background: #ffffff;
  color: var(--breeze-blue-700);
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 6px 16px rgba(4, 43, 88, 0.08);
  transition:
    transform 150ms ease,
    background 150ms ease;
}

.airport-swap-button:hover {
  background: var(--breeze-blue-50);
  transform: rotate(180deg);
}

.search-submit {
  min-height: 52px;
  margin: 0;
}

@media (max-width: 1120px) {
  .flight-search--compact {
    grid-template-columns: 1fr 44px 1fr;
  }

  .search-submit {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .flight-search--compact {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .airport-swap-button {
    justify-self: center;
    margin: -3px 0;
    transform: rotate(90deg);
  }

  .airport-swap-button:hover {
    transform: rotate(270deg);
  }

  .search-submit {
    grid-column: auto;
  }
}

/* Compact flight search bar */

.flight-search--compact {
  min-height: auto;
  padding: 18px 22px;
  display: grid;
  grid-template-columns:
    minmax(160px, 1fr)
    42px
    minmax(160px, 1fr)
    minmax(175px, 0.9fr)
    minmax(185px, 1fr)
    minmax(175px, 0.9fr);
  gap: 13px;
  align-items: end;
  overflow: visible;
}

.search-control {
  min-width: 0;
}

.search-control label {
  display: block;
  margin-bottom: 7px;
  color: var(--breeze-blue-700);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.search-control__input {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  border: 1px solid #d5e4ee;
  border-radius: 9px;
  background: #f8fbfd;
}

.search-control__input:focus-within {
  border-color: var(--breeze-blue-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(24, 144, 239, 0.12);
}

.search-control__input span {
  flex: 0 0 auto;
  color: var(--breeze-blue-600);
  font-size: 17px;
}

.search-control__input input,
.search-control__input select {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--breeze-navy-900);
  font-size: 15px;
  font-weight: 750;
}

.airport-swap-button {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
  border: 1px solid #d5e4ee;
  border-radius: 50%;
  background: #fff;
  color: var(--breeze-blue-700);
  cursor: pointer;
  font-size: 17px;
  box-shadow: 0 5px 14px rgba(4, 43, 88, 0.08);
}

.search-submit {
  min-height: 50px;
}

@media (max-width: 1120px) {
  .flight-search--compact {
    grid-template-columns: 1fr 42px 1fr;
  }

  .search-submit {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .flight-search--compact {
    grid-template-columns: 1fr;
  }

  .airport-swap-button {
    justify-self: center;
    margin: -2px 0;
    transform: rotate(90deg);
  }

  .search-submit {
    grid-column: auto;
  }
}

/* Real homepage hero image */

.home-hero {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(243, 250, 255, 0.98) 0%,
      rgba(243, 250, 255, 0.92) 24%,
      rgba(243, 250, 255, 0.42) 43%,
      rgba(3, 28, 61, 0.04) 68%
    ),
    url("/assets/images/hero_images/Home_hero_logo.png?v=1785608587")
      center center / cover no-repeat;
}

.home-hero::after {
  display: none;
}

.home-hero__overlay {
  height: 105px;
  background:
    linear-gradient(
      to bottom,
      rgba(237, 245, 250, 0),
      var(--breeze-page)
    );
}

.home-hero__inner {
  min-height: 510px;
  padding-top: 52px;
}

.home-hero__content {
  position: relative;
  z-index: 3;
  width: min(430px, 100%);
  padding: 24px 26px;
  border-radius: 18px;
  background: rgba(244, 250, 255, 0.78);
  box-shadow: 0 16px 38px rgba(3, 29, 61, 0.08);
  backdrop-filter: blur(4px);
}

.flight-search-section {
  margin-top: -112px;
}

@media (max-width: 1020px) {
  .home-hero {
    min-height: 500px;
    background-position: 58% center;
  }

  .home-hero__inner {
    min-height: 500px;
  }
}

@media (max-width: 720px) {
  .home-hero {
    min-height: 560px;
    background-position: 63% center;
  }

  .home-hero__inner {
    min-height: 560px;
    padding-top: 34px;
  }

  .home-hero__content {
    width: min(100%, 390px);
    padding: 20px;
    background: rgba(244, 250, 255, 0.86);
  }

  .flight-search-section {
    margin-top: -90px;
  }
}

/* Match reference spacing between hero copy and flight search */

.home-hero {
  min-height: 560px;
}

.home-hero__inner {
  min-height: 560px;
  padding-top: 58px;
}

.home-hero__content {
  margin-bottom: 0;
}

.flight-search-section {
  margin-top: -88px;
}

/* Keep the search bar below the hero text instead of overlapping it */

@media (min-width: 1021px) {
  .home-hero__content {
    width: min(430px, 100%);
  }

  .flight-search-section {
    margin-top: -74px;
  }
}

@media (max-width: 1020px) {
  .home-hero {
    min-height: 540px;
  }

  .home-hero__inner {
    min-height: 540px;
  }

  .flight-search-section {
    margin-top: -68px;
  }
}

@media (max-width: 720px) {
  .home-hero {
    min-height: 610px;
  }

  .home-hero__inner {
    min-height: 610px;
  }

  .flight-search-section {
    margin-top: -54px;
  }
}

/* Final homepage hero layout matching the approved reference */

.home-hero {
  min-height: 560px;
  background:
    linear-gradient(
      90deg,
      rgba(239, 248, 254, 0.78) 0%,
      rgba(239, 248, 254, 0.52) 21%,
      rgba(239, 248, 254, 0.14) 40%,
      rgba(239, 248, 254, 0.02) 58%,
      rgba(3, 28, 61, 0.00) 100%
    ),
    url("/assets/images/hero_images/Home_hero_logo.png?v=1785608587")
      64% center / cover no-repeat;
}

.home-hero__inner {
  min-height: 560px;
  padding-top: 56px;
}

.home-hero__content {
  width: min(430px, 100%);
  padding: 28px 30px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 20px;
  background: rgba(239, 248, 254, 0.50);
  box-shadow:
    0 18px 44px rgba(3, 29, 61, 0.08);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.home-hero__content .section-eyebrow {
  margin-bottom: 8px;
}

.home-hero__description {
  margin-top: 20px;
  color: #294d72;
}

.home-hero__overlay {
  height: 94px;
  background:
    linear-gradient(
      to bottom,
      rgba(237, 245, 250, 0),
      rgba(237, 245, 250, 0.65) 58%,
      var(--breeze-page) 100%
    );
}

.flight-search-section {
  margin-top: -76px;
}

.flight-search--compact {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 18px 44px rgba(3, 29, 61, 0.16);
}

/* Keep the aircraft visible and farther right on wide screens */

@media (min-width: 1400px) {
  .home-hero {
    background-position: 68% center;
  }
}

@media (max-width: 1100px) {
  .home-hero {
    min-height: 540px;
    background-position: 62% center;
  }

  .home-hero__inner {
    min-height: 540px;
  }

  .home-hero__content {
    width: min(390px, 100%);
    padding: 24px;
  }

  .flight-search-section {
    margin-top: -64px;
  }
}

@media (max-width: 720px) {
  .home-hero {
    min-height: 610px;
    background-position: 67% center;
  }

  .home-hero__inner {
    min-height: 610px;
    padding-top: 34px;
  }

  .home-hero__content {
    width: min(100%, 390px);
    background: rgba(239, 248, 254, 0.72);
  }

  .flight-search-section {
    margin-top: -48px;
  }
}

/* =========================================================
   FINAL HOME HERO POSITIONING
   ========================================================= */

.home-hero {
  position: relative;
  min-height: 560px;
  overflow: hidden;

  /* Remove the previous background image and heavy fade */
  background:
    linear-gradient(
      90deg,
      rgba(233, 246, 253, 0.50) 0%,
      rgba(233, 246, 253, 0.22) 24%,
      rgba(233, 246, 253, 0.04) 42%,
      rgba(233, 246, 253, 0) 58%
    ),
    url("/assets/images/hero_images/Home_hero_logo.png?v=1785608587")
      calc(50% + 230px) center / cover no-repeat;
}

/* Keep the hero copy aligned to the left side of the site content */
.home-hero__inner {
  min-height: 560px;
  padding-top: 55px;
  display: flex;
  align-items: flex-start;
}

/* Much lighter translucent panel */
.home-hero__content {
  width: 400px;
  padding: 27px 29px;

  border: 1px solid rgba(255, 255, 255, 0.30);
  border-radius: 20px;

  background: rgba(239, 248, 254, 0.28);

  box-shadow:
    0 16px 38px rgba(3, 29, 61, 0.05);

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* Keep the lettering strong despite the lighter panel */
.home-hero__content .section-eyebrow {
  color: #0767ce;
}

.home-hero__content h1 {
  color: #052b5b;
}

.home-hero__description {
  color: #244c72;
}

/* Softer fade only at the bottom */
.home-hero__overlay {
  height: 76px;
  background:
    linear-gradient(
      to bottom,
      rgba(237, 245, 250, 0),
      rgba(237, 245, 250, 0.34) 58%,
      var(--breeze-page) 100%
    );
}

/* Maintain space between text panel and search bar */
.flight-search-section {
  margin-top: -66px;
}

/* Extra-wide displays: push aircraft farther right */
@media (min-width: 1500px) {
  .home-hero {
    background-position: calc(50% + 280px) center;
  }
}

/* Medium desktop */
@media (max-width: 1200px) {
  .home-hero {
    background-position: calc(50% + 170px) center;
  }

  .home-hero__content {
    width: 380px;
  }
}

/* Tablet */
@media (max-width: 900px) {
  .home-hero {
    min-height: 540px;
    background-position: calc(50% + 120px) center;
  }

  .home-hero__inner {
    min-height: 540px;
  }

  .home-hero__content {
    width: 370px;
    background: rgba(239, 248, 254, 0.48);
  }
}

/* Mobile */
@media (max-width: 720px) {
  .home-hero {
    min-height: 610px;
    background-position: 62% center;
  }

  .home-hero__inner {
    min-height: 610px;
    padding-top: 30px;
  }

  .home-hero__content {
    width: min(100%, 370px);
    padding: 22px;
    background: rgba(239, 248, 254, 0.68);
  }

  .flight-search-section {
    margin-top: -45px;
  }
}

/* Live infrastructure status */

.status-strip .status-online {
  color: #57db9e;
}

.status-strip .status-offline {
  color: #ff7474;
}

.status-strip .status-checking {
  color: #f1c75b;
}

/* Final logo sizing */

.site-brand {
  width: 210px;
  height: var(--header-height);
  display: flex;
  align-items: center;
  overflow: visible;
}

.site-brand__logo {
    display:block;
    width:220px;
    height:auto;
    object-fit:contain;
}

.footer-brand {
  width: 150px;
  height: 58px;
  display: flex;
  align-items: center;
  overflow: visible;
}

.footer-brand__logo {
    display:block;
    width:200px;
    height:auto;
    object-fit:contain;
}

@media (max-width: 1020px) {
  .site-brand {
    width: 170px;
  }

.site-brand__logo {
    display:block;
    width:220px;
    height:auto;
    object-fit:contain;
}
}

@media (max-width: 520px) {
  .site-brand {
    width: 135px;
  }

.site-brand__logo {
    display:block;
    width:220px;
    height:auto;
    object-fit:contain;
}

.footer-brand__logo {
    display:block;
    width:200px;
    height:auto;
    object-fit:contain;
}
}

.site-header .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:100%;
}

.site-brand{
    display:flex;
    align-items:center;
}

/* Crew Login icon */

.crew-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.crew-login-button__icon {
  width: 19px;
  height: 19px;
  display: block;
  object-fit: contain;
}

.crew-login-button span {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

/* Correct Crew Login icon sizing */

.crew-login-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.crew-login-button__icon {
  display: block;
  width: 30px;
  height: 22px;
  object-fit: contain;
  object-position: center;
  flex: 0 0 auto;
}

.crew-login-button > span {
  margin: 0;
  color: inherit;
}

.crew-login-button__icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.crew-login-button__icon {
  display: block !important;
  width: 24px !important;
  height: 24px !important;
  flex: 0 0 24px !important;
  margin: 0 !important;
  object-fit: contain !important;
  transform: none !important;
  opacity: 1 !important;
}

/* Join Fly Breeze Virtual banner image */

.join-banner {
  position: relative;
  min-height: 156px;
  overflow: hidden;
  padding: 24px;
  border-radius: 12px;

  background-image:
    linear-gradient(
      90deg,
      rgba(7, 99, 202, 0.96) 0%,
      rgba(15, 116, 218, 0.88) 38%,
      rgba(15, 116, 218, 0.42) 66%,
      rgba(15, 116, 218, 0.08) 100%
    ),
    url("/assets/images/hero_images/join_us_hero.png?v=1785028199");

  background-size:
    100% 100%,
    cover;

  background-position:
    center,
    center center;

  background-repeat:
    no-repeat,
    no-repeat;

  box-shadow: var(--shadow-small);
  color: var(--breeze-white);
}

.join-banner__content {
  position: relative;
  z-index: 2;
  width: min(58%, 490px);
}

/* Remove the old text airplane silhouette */

.join-banner__aircraft {
  display: none !important;
}

/* Featured Destination — Tampa */

.featured-destination {
  position: relative;
  height: 218px;
  overflow: hidden;
  border-radius: 9px;

  background-image:
    linear-gradient(
      to top,
      rgba(2, 26, 59, 0.94) 0%,
      rgba(2, 26, 59, 0.58) 38%,
      rgba(2, 26, 59, 0.08) 72%
    ),
    url("/assets/images/destination_hero/Destination_TPA_FL.png?v=1785029006");

  background-size:
    100% 100%,
    cover;

  background-position:
    center,
    center center;

  background-repeat:
    no-repeat,
    no-repeat;
}

/* =========================================================
   Homepage Route Preview Map
   ========================================================= */

.network-map {
  position: relative;
  height: 218px;
  overflow: hidden;
  border-radius: 9px;
  background: #073a75;
}

.homepage-route-map {
  width: 100%;
  height: 100%;
  background: #073a75;
}

/*
 * Turn standard OSM tiles into a dark Breeze-blue map.
 */
.homepage-route-map .leaflet-tile-pane {
  filter:
    grayscale(1)
    invert(1)
    sepia(0.8)
    saturate(4)
    hue-rotate(165deg)
    brightness(0.58)
    contrast(1.22);
}

.homepage-route-map .leaflet-control-attribution {
  padding: 2px 5px;
  border-radius: 5px 0 0 0;
  background: rgba(2, 28, 61, 0.68);
  color: rgba(255, 255, 255, 0.55);
  font-size: 7px;
}

.homepage-route-map .leaflet-control-attribution a {
  color: rgba(178, 224, 255, 0.82);
}

.route-airport-label {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-shadow:
    0 1px 3px rgba(0, 20, 48, 0.95);
}

.route-airport-label::before {
  display: none;
}

.network-map .map-link {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 500;

  padding: 9px 14px;

  border: 1px solid rgba(136, 206, 255, 0.72);
  border-radius: 7px;

  background: rgba(3, 35, 74, 0.80);
  color: #ffffff;

  font-size: 10px;
  font-weight: 850;
  text-decoration: none;
  text-transform: uppercase;

  backdrop-filter: blur(5px);
}

.network-map .map-link:hover {
  background: rgba(7, 104, 205, 0.94);
}

.map-unavailable {
  width: 100%;
  height: 100%;

  display: grid;
  place-items: center;

  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

/* Full Live Flights page */

.live-map-page {
  min-height: 75vh;
  padding: 48px 0;
}

.live-map-page__header {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
}

.live-map-page__header h1 {
  margin: 0;
  color: var(--breeze-navy-900);
  font-size: clamp(38px, 5vw, 64px);
}

.live-map-page__header p {
  max-width: 650px;
  color: var(--breeze-muted);
}

.live-map-summary {
  min-width: 170px;
  padding: 18px 22px;
  border-radius: 12px;
  background: var(--breeze-white);
  box-shadow: var(--shadow-small);
}

.live-map-summary span,
.live-map-summary strong {
  display: block;
}

.live-map-summary span {
  color: var(--breeze-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.live-map-summary strong {
  color: var(--breeze-blue-700);
  font-size: 34px;
}

.live-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 20px;
}

.live-map-card,
.live-flight-sidebar {
  overflow: hidden;
  border-radius: 14px;
  background: var(--breeze-white);
  box-shadow: var(--shadow-small);
}

.full-live-map {
  width: 100%;
  height: 620px;
}

.live-flight-sidebar header {
  padding: 20px;
  border-bottom: 1px solid var(--breeze-line);
}

.live-flight-sidebar h2 {
  margin: 0;
  font-size: 16px;
  text-transform: uppercase;
}

.no-live-flights {
  padding: 42px 22px;
  color: var(--breeze-muted);
  text-align: center;
}

@media (max-width: 900px) {
  .live-map-layout {
    grid-template-columns: 1fr;
  }

  .full-live-map {
    height: 500px;
  }
}

/* =========================================================
   Remove legacy fake route-map artwork
   ========================================================= */

.network-map {
  position: relative;
  height: 218px;
  overflow: hidden;
  border-radius: 9px;
  background: #073a75 !important;
  background-image: none !important;
}

/* Remove old CSS-generated routes, grid lines and aircraft. */

.network-map::before,
.network-map::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.network-map .map-aircraft,
.network-map .map-route,
.network-map .map-airport,
.network-map .route-line,
.network-map .airport-label {
  display: none !important;
}

/* Actual Leaflet map container */

.homepage-route-map {
  position: absolute;
  inset: 0;
  z-index: 1;

  display: block;
  width: 100%;
  height: 100%;

  background: #073a75;
}

/* Keep the Live Map button above Leaflet */

.network-map .map-link {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1000;
}

/* Ensure Leaflet panes render inside the card */

.homepage-route-map .leaflet-pane,
.homepage-route-map .leaflet-map-pane,
.homepage-route-map .leaflet-tile-pane,
.homepage-route-map .leaflet-overlay-pane,
.homepage-route-map .leaflet-marker-pane,
.homepage-route-map .leaflet-tooltip-pane {
  display: block;
}

.homepage-route-map .leaflet-container {
  width: 100%;
  height: 100%;
}

/* Final real Leaflet homepage map */

.network-map {
  position: relative !important;
  height: 218px !important;
  overflow: hidden !important;
  border-radius: 9px !important;
  background: #073a75 !important;
  background-image: none !important;
}

.network-map::before,
.network-map::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.network-map__route,
.network-map__plane,
.network-map__city,
.route-one,
.route-two,
.route-three,
.plane-one,
.plane-two,
.plane-three,
.city-lax,
.city-den,
.city-tpa,
.city-bdl {
  display: none !important;
}

.homepage-route-map {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  background: #073a75 !important;
}

.network-map .map-link {
  position: absolute !important;
  left: 14px !important;
  bottom: 14px !important;
  z-index: 1000 !important;
}

/* Homepage map responsive fitting */

.network-map {
  height: clamp(190px, 16vw, 218px) !important;
}

.homepage-route-map {
  width: 100% !important;
  height: 100% !important;
}

.homepage-route-map .leaflet-map-pane {
  width: 100%;
  height: 100%;
}

.route-airport-label {
  white-space: nowrap;
  pointer-events: none;
}

@media (max-width: 1180px) {
  .network-map {
    height: 205px !important;
  }

  .route-airport-label {
    font-size: 8px;
  }
}

@media (max-width: 720px) {
  .network-map {
    height: 230px !important;
  }
}

/* Live phpVMS homepage content states */

.content-loading,
.content-empty,
.content-error {
  width: 100%;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  color: var(--breeze-muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.content-error {
  color: #a64242;
}

.news-list > .content-loading,
.news-list > .content-empty,
.news-list > .content-error {
  border-bottom: 0;
}

.event-panel__content > .content-loading,
.event-panel__content > .content-empty,
.event-panel__content > .content-error {
  grid-column: 1 / -1;
  min-height: 90px;
}

/* Final header and footer logo alignment */

.site-brand {
  width: 185px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.site-brand__logo {
  display: block;
  width: 220px;
  height: auto;
  object-fit: contain;
  transform: translateY(4px);
}

.footer-brand {
  width: 150px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.footer-brand__logo {
  display: block;
  width: 200px;
  height: auto;
  object-fit: contain;
  transform: translateY(3px);
}

@media (max-width: 1020px) {
  .site-brand {
    width: 170px;
  }

  .site-brand__logo {
    width: 195px;
  }
}

@media (max-width: 520px) {
  .site-brand {
    width: 135px;
  }

  .site-brand__logo {
    width: 155px;
  }

  .footer-brand__logo {
    width: 165px;
  }
}

/* Final footer social icons */

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social__link {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;

  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.footer-social__link:hover {
  border-color: rgba(116, 196, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.footer-social__icon {
  display: block;
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Final footer social icon override */

.footer-social__link{
    width:50px !important;
    height:50px !important;
}

.footer-social__icon{
    width:36px !important;
    height:36px !important;
    display:block;
}


/* Final footer icon sizing */

.footer-social__link {
  width: 42px !important;
  height: 42px !important;
  padding: 0 !important;
}

.footer-social__link img,
.footer-social__icon {
  width: 34px !important;
  height: 34px !important;
  max-width: none !important;
  max-height: none !important;
  min-width: 34px !important;
  min-height: 34px !important;
  display: block !important;
  object-fit: contain !important;
  transform: none !important;
}

/* Enlarge visible social symbols inside fixed footer circles */

.footer-social__link {
  width: 42px !important;
  height: 42px !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.footer-social__link img,
.footer-social__icon {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  max-width: none !important;
  max-height: none !important;

  display: block !important;
  object-fit: contain !important;

  transform: scale(2.25) !important;
  transform-origin: center !important;
}

/* Footer social icons - no circles */

.footer-social{
    display:flex;
    align-items:center;
    gap:18px;
}

.footer-social__link{
    display:flex;
    align-items:center;
    justify-content:center;

    width:auto !important;
    height:auto !important;

    padding:0 !important;
    margin:0 !important;

    border:none !important;
    border-radius:0 !important;
    background:none !important;
    box-shadow:none !important;
}

.footer-social__link:hover{
    border:none !important;
    background:none !important;
    transform:translateY(-2px);
}

.footer-social__icon{
    display:block;
    width:34px !important;
    height:34px !important;
    object-fit:contain;
    transform:none !important;
}


/* =========================================================
   Join Breeze Virtual page
   ========================================================= */

.join-page {
  background:
    linear-gradient(180deg, #f7fbff, #edf6fb);
  color: var(--breeze-navy-900);
}

.join-page-hero {
  min-height: 430px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,.98) 0%,
      rgba(255,255,255,.91) 27%,
      rgba(255,255,255,.10) 58%,
      rgba(255,255,255,0) 100%
    ),
    url("/assets/images/hero_images/Home_hero_logo.png?v=1785608587")
      center right / cover no-repeat;
}

.join-page-hero__inner {
  min-height: 430px;
  display: flex;
  align-items: center;
}

.join-page-hero__content {
  width: min(430px, 100%);
}

.join-page-hero h1 {
  margin: 8px 0 14px;
  font-size: clamp(46px, 5.5vw, 78px);
  line-height: .88;
  text-transform: uppercase;
}

.join-page-hero h1 span {
  display: block;
  color: var(--breeze-blue-700);
}

.join-page-hero__content > p:last-of-type {
  max-width: 390px;
  font-size: 16px;
  line-height: 1.55;
}

.join-page-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.join-primary-button,
.join-secondary-button {
  min-height: 46px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.join-primary-button {
  background: linear-gradient(135deg, #0966d2, #1593ec);
  color: #fff;
}

.join-secondary-button {
  border: 1px solid #1484dc;
  background: rgba(255,255,255,.91);
  color: #0758b9;
}

.join-page-body {
  padding-top: 28px;
  padding-bottom: 56px;
}

.join-section-heading {
  margin: 0 0 18px;
  text-align: center;
}

.join-section-heading h2 {
  margin: 0;
  font-size: 21px;
  text-transform: uppercase;
}

.join-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 30px;
}

.join-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.join-benefit-card {
  min-height: 245px;
  padding: 22px 18px;
  border: 1px solid #dbe7f0;
  border-radius: 9px;
  background: #fff;
  box-shadow: 0 7px 24px rgba(10,55,91,.06);
}

.join-benefit-card__icon {
  height: 52px;
  display: grid;
  place-items: center;
  color: #126fd0;
  font-size: 41px;
}

.join-benefit-card h3 {
  margin: 8px 0 13px;
  text-align: center;
  text-transform: uppercase;
}

.join-benefit-card ul,
.requirements-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.join-benefit-card li {
  margin: 8px 0;
  color: var(--breeze-muted);
  font-size: 12px;
}

.join-benefit-card li::before {
  content: "• ";
  color: #1688e7;
}

.journey-panel {
  padding-left: 24px;
  border-left: 1px solid #dbe7f0;
}

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

.journey-list li {
  position: relative;
  min-height: 67px;
  display: flex;
  gap: 14px;
}

.journey-list li:not(:last-child)::after {
  position: absolute;
  top: 37px;
  bottom: -4px;
  left: 17px;
  width: 2px;
  background: #bfe0f8;
  content: "";
}

.journey-list__number {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0c70d9;
  color: #fff;
  font-weight: 900;
}

.journey-list strong,
.journey-list span {
  display: block;
}

.journey-list li div span {
  margin-top: 3px;
  color: var(--breeze-muted);
  font-size: 11px;
}

.join-fleet-grid {
  margin: 28px 0 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.join-fleet-card {
  min-height: 225px;
  overflow: hidden;
  border-radius: 10px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.04),
      rgba(1,35,79,.88)
    ),
    var(--fleet-image) center / cover no-repeat;
}

.join-fleet-card__overlay {
  min-height: 225px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.join-fleet-card small {
  font-weight: 850;
  text-transform: uppercase;
}

.join-fleet-card h3 {
  margin: 2px 0 auto;
  color: #082e61;
  font-size: 34px;
  text-transform: uppercase;
}

.join-fleet-card__overlay > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  text-transform: uppercase;
}

.join-fleet-card a {
  padding: 10px 14px;
  border-radius: 6px;
  background: #fff;
  color: #0863c5;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}

.join-network-section {
  padding: 26px 0;
  display: grid;
  grid-template-columns: 1.15fr 1fr .65fr;
  gap: 24px;
  border-top: 1px solid #dce8f1;
  border-bottom: 1px solid #dce8f1;
}

.join-network-map {
  position: relative;
  height: 190px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background:
    radial-gradient(circle at 62% 45%, rgba(56,165,255,.45), transparent 32%),
    linear-gradient(135deg, #062d63, #075096);
  color: rgba(255,255,255,.78);
  font-weight: 800;
}

.join-network-map::before,
.join-network-map::after {
  position: absolute;
  inset: 0;
  content: "";
}

.join-network-map::before {
  background:
    repeating-linear-gradient(
      18deg,
      transparent 0 29px,
      rgba(255,255,255,.05) 30px
    );
}

.join-network-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #dce8f1;
  border-top: 0;
  background: #fff;
}

.join-network-stats div {
  padding: 14px 8px;
  text-align: center;
}

.join-network-stats div:not(:last-child) {
  border-right: 1px solid #dce8f1;
}

.join-network-stats strong,
.join-network-stats span {
  display: block;
}

.join-network-stats strong {
  color: #0865c9;
  font-size: 25px;
}

.join-network-stats span {
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.pilot-benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 17px 22px;
}

.pilot-benefits-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pilot-benefits-grid span {
  color: #0c78dc;
  font-size: 18px;
}

.pilot-benefits-grid strong {
  font-size: 12px;
}

.requirements-panel {
  padding: 20px;
  border-radius: 9px;
  background:
    linear-gradient(
      180deg,
      rgba(237,246,252,.96),
      rgba(220,235,245,.93)
    );
}

.requirements-panel h2 {
  margin: 0 0 18px;
  font-size: 15px;
  text-transform: uppercase;
}

.requirements-panel li {
  margin: 13px 0;
  display: flex;
  gap: 9px;
  font-size: 11px;
}

.requirements-panel li span {
  color: #0871d5;
}

.application-process {
  padding: 26px 0;
}

.application-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid #dce8f1;
  border-radius: 9px;
  background: #fff;
}

.application-process__steps article {
  min-height: 95px;
  padding: 18px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.application-process__steps article > span {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0d70d4;
  color: #fff;
  font-weight: 900;
}

.application-process__steps p {
  margin: 5px 0 0;
  color: var(--breeze-muted);
  font-size: 11px;
}

.join-testimonial-row {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: stretch;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.testimonial-grid blockquote {
  margin: 0;
  padding: 19px;
  border: 1px solid #dce8f1;
  border-radius: 9px;
  background: #fff;
  font-size: 11px;
}

.testimonial-stars {
  color: #ffb400;
  letter-spacing: 2px;
}

.testimonial-grid footer {
  margin-top: 14px;
  font-weight: 800;
}

.ready-banner {
  padding: 30px;
  overflow: hidden;
  border-radius: 10px;
  background:
    linear-gradient(
      100deg,
      rgba(5,96,205,.96),
      rgba(18,137,233,.79)
    ),
    url("/assets/images/hero_images/join_us_hero.png")
      center / cover no-repeat;
  color: #fff;
}

.ready-banner h2 {
  margin: 0;
  font-size: 34px;
  text-transform: uppercase;
}

.faq-section {
  margin-top: 30px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.faq-item {
  border: 1px solid #dce8f1;
  border-radius: 8px;
  background: #fff;
}

.faq-item button {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--breeze-navy-900);
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  padding: 0 15px 17px;
  color: var(--breeze-muted);
  font-size: 11px;
  line-height: 1.5;
}

@media (max-width: 1050px) {
  .join-benefit-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .join-network-section {
    grid-template-columns: 1fr 1fr;
  }

  .requirements-panel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .join-page-hero {
    background-position: 63% center;
  }

  .join-intro-grid,
  .join-testimonial-row,
  .join-network-section {
    grid-template-columns: 1fr;
  }

  .journey-panel {
    padding-left: 0;
    border-left: 0;
  }

  .join-fleet-grid,
  .testimonial-grid,
  .application-process__steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .join-benefit-grid,
  .pilot-benefits-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .join-network-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Join page hero text correction */

.join-page-hero__content {
  width: 360px !important;
  max-width: 360px !important;
}

.join-page-hero__content .section-eyebrow {
  display: none !important;
}

.join-page-hero__title {
  margin: 0 0 14px !important;
  font-size: 52px !important;
  line-height: 0.92 !important;
  letter-spacing: -1.5px !important;
  text-transform: uppercase !important;
}

.join-page-hero__line {
  display: block !important;
  color: var(--breeze-navy-900) !important;
  white-space: nowrap !important;
}

.join-page-hero__line--blue {
  color: var(--breeze-blue-700) !important;
}

.join-page-hero__content > p:last-of-type {
  width: 330px !important;
  max-width: 330px !important;
  margin: 0 !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.join-page-actions {
  margin-top: 16px !important;
}

@media (max-width: 780px) {
  .join-page-hero__content {
    width: min(330px, 100%) !important;
    max-width: 330px !important;
  }

  .join-page-hero__title {
    font-size: clamp(40px, 12vw, 52px) !important;
  }

  .join-page-hero__line {
    white-space: normal !important;
  }

  .join-page-hero__content > p:last-of-type {
    width: 100% !important;
  }
}

/* =========================================================
   Join page journey icons
   ========================================================= */

.journey-list li {
  position: relative;
  min-height: 92px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.journey-list li:not(:last-child)::after {
  position: absolute;
  top: 58px;
  bottom: -20px;
  left: 27px;
  width: 3px;
  background: #a9d8ff;
  content: "";
}

.journey-list__icon-wrap {
  position: relative;
  z-index: 2;

  width: 56px;
  height: 56px;
  flex: 0 0 56px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #1178df;
  overflow: hidden;
}

.journey-list__icon {
  display: block;
  width: 38px;
  height: 38px;

  max-width: none;
  max-height: none;

  object-fit: contain;
}

.journey-list__content {
  padding-top: 5px;
}

.journey-list__content strong {
  display: block;
  color: var(--breeze-navy-900);
  font-size: 19px;
  line-height: 1.2;
}

.journey-list__content span {
  display: block;
  margin-top: 6px;
  color: var(--breeze-muted);
  font-size: 14px;
  line-height: 1.35;
}

@media (max-width: 780px) {
  .journey-list li {
    min-height: 84px;
  }

  .journey-list__icon-wrap {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }

  .journey-list__icon {
    width: 34px;
    height: 34px;
  }

  .journey-list li:not(:last-child)::after {
    top: 52px;
    left: 24px;
  }
}

/* Your Journey - larger standalone icons */

.journey-list li {
  position: relative;
  min-height: 110px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
}

.journey-list__icon-wrap {
  position: relative;
  z-index: 2;

  width: 72px;
  height: 72px;
  flex: 0 0 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.journey-list__icon {
  display: block !important;

  width: 62px !important;
  height: 62px !important;
  min-width: 62px !important;
  min-height: 62px !important;
  max-width: none !important;
  max-height: none !important;

  object-fit: contain !important;
  transform: none !important;
}

.journey-list li:not(:last-child)::after {
  position: absolute;
  top: 74px;
  bottom: -34px;
  left: 35px;

  width: 3px;

  background: #a9d8ff;
  content: "";
}

.journey-list__content {
  padding-top: 8px;
}

.journey-list__content strong {
  font-size: 22px;
}

.journey-list__content span {
  margin-top: 6px;
  font-size: 15px;
}

@media (max-width: 780px) {
  .journey-list li {
    min-height: 96px;
    gap: 18px;
  }

  .journey-list__icon-wrap {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .journey-list__icon {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    min-height: 52px !important;
  }

  .journey-list li:not(:last-child)::after {
    top: 64px;
    left: 30px;
  }
}

/* =========================================================
   Final Your Journey layout
   ========================================================= */

.journey-panel {
  padding-left: 28px !important;
}

.journey-list {
  position: relative !important;
  margin: 0 !important;
  padding: 8px 0 4px !important;
}

/* One continuous timeline instead of separate broken lines */

.journey-list::before {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 27px;
  width: 3px;
  background: #a9d8ff;
  content: "";
}

/* Remove all earlier per-row timeline segments */

.journey-list li::after {
  display: none !important;
  content: none !important;
}

.journey-list li {
  position: relative !important;
  z-index: 1;

  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 0 28px !important;

  display: grid !important;
  grid-template-columns: 56px minmax(0, 1fr) !important;
  align-items: center !important;
  column-gap: 18px !important;
}

.journey-list li:last-child {
  padding-bottom: 0 !important;
}

/* Mask the line behind each icon without adding a circle */

.journey-list__icon-wrap {
  position: relative !important;
  z-index: 2 !important;

  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  padding: 6px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #eef7fc !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.journey-list__icon {
  display: block !important;

  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;

  object-fit: contain !important;
  transform: none !important;
}

.journey-list__content {
  padding: 0 !important;
}

.journey-list__content strong {
  display: block !important;
  margin: 0 !important;

  color: var(--breeze-navy-900) !important;
  font-size: 19px !important;
  line-height: 1.15 !important;
  white-space: nowrap;
}

.journey-list__content span {
  display: block !important;
  margin-top: 4px !important;

  color: var(--breeze-muted) !important;
  font-size: 13px !important;
  line-height: 1.3 !important;
}

@media (max-width: 780px) {
  .journey-panel {
    padding-left: 0 !important;
  }

  .journey-list li {
    grid-template-columns: 50px minmax(0, 1fr) !important;
    column-gap: 15px !important;
    padding-bottom: 24px !important;
  }

  .journey-list::before {
    left: 24px;
  }

  .journey-list__icon-wrap {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
  }

  .journey-list__icon {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    max-width: 36px !important;
    max-height: 36px !important;
  }

  .journey-list__content strong {
    font-size: 18px !important;
    white-space: normal;
  }
}

/* Final cropped journey-icon sizing */

.journey-list__icon-wrap {
  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
  padding: 3px !important;
  background: #eef7fc !important;
}

.journey-list__icon {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  min-height: 52px !important;
  max-width: 52px !important;
  max-height: 52px !important;
  object-fit: contain !important;
}

/* =========================================================
   Final Join page fleet cards
   Aircraft names and blue footer are part of the images
   ========================================================= */

.join-fleet-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.join-fleet-card {
  position: relative !important;

  min-height: 0 !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;

  overflow: hidden !important;

  border: 0 !important;
  border-radius: 12px !important;

  background-image: var(--fleet-image) !important;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;

  box-shadow:
    0 8px 22px rgba(8, 47, 89, 0.12) !important;
}

/* Remove the previous generated overlay if it remains anywhere. */

.join-fleet-card__overlay {
  display: none !important;
}

/* Position content over the blue strip already inside the image. */

.join-fleet-card__footer {
  position: absolute !important;

  right: 4.2% !important;
  bottom: 3.7% !important;
  left: 4.2% !important;

  min-height: 16.5% !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;

  padding: 0 !important;

  background: transparent !important;
}

.join-fleet-card__footer strong {
  color: #ffffff !important;
  font-size: clamp(15px, 1.6vw, 24px) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  text-shadow: 0 2px 5px rgba(0, 28, 70, 0.35) !important;
}

.join-fleet-card__footer a {
  min-height: 46px !important;

  padding: 0 20px !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  border: 0 !important;
  border-radius: 8px !important;

  background: #ffffff !important;
  color: #0764c7 !important;

  box-shadow: 0 5px 14px rgba(0, 35, 85, 0.16) !important;

  font-size: 11px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease !important;
}

.join-fleet-card__footer a:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 7px 18px rgba(0, 35, 85, 0.23) !important;
}

@media (max-width: 780px) {
  .join-fleet-grid {
    grid-template-columns: 1fr !important;
  }

  .join-fleet-card__footer strong {
    font-size: 18px !important;
  }

  .join-fleet-card__footer a {
    min-height: 40px !important;
    padding: 0 15px !important;
    font-size: 10px !important;
  }
}

/* Minimum Requirements background image */

.requirements-panel {
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      rgba(238, 247, 253, 0.88),
      rgba(224, 239, 248, 0.80)
    ),
    url("/assets/images/hero_images/min_requiremnts_bg.png?v=1785078578")
      bottom center / cover no-repeat !important;
}

.requirements-panel > * {
  position: relative;
  z-index: 2;
}

/* Final Minimum Requirements background alignment */

.requirements-panel {
  position: relative !important;
  overflow: hidden !important;

  background-color: #eaf5fb !important;
  background-image:
    url("/assets/images/hero_images/min_requiremnts_bg.png?v=1785078578") !important;

  background-size: 100% 100% !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;

  border-radius: 12px !important;
}

.requirements-panel > * {
  position: relative !important;
  z-index: 2 !important;
}


/* Final fleet card edge cleanup */

.join-fleet-card {
  background-color: transparent !important;
  background-size: 100% 100% !important;
  background-position: center !important;
  background-repeat: no-repeat !important;

  border: 0 !important;
  outline: 0 !important;
  padding: 0 !important;

  border-radius: 18px !important;
  overflow: hidden !important;

  box-shadow: none !important;
}

.join-fleet-grid {
  padding: 0 !important;
}

.join-fleet-card__footer {
  right: 3.5% !important;
  bottom: 2.8% !important;
  left: 3.5% !important;
}

.join-fleet-card__footer strong {
  margin: 0 !important;
}


/* Final fleet image fit */

.join-fleet-card{
    padding:0 !important;
    overflow:hidden !important;
    border-radius:18px !important;
}

.join-fleet-card::before{
    content:"";
    position:absolute;
    inset:-5px;
    background-image:var(--fleet-image);
    background-size:100% 100%;
    background-position:center;
    background-repeat:no-repeat;
    z-index:0;
}

.join-fleet-card__footer{
    position:absolute;
    z-index:2;
}

.join-fleet-card > *:not(.join-fleet-card__footer){
    position:relative;
    z-index:2;
}


/* Final Minimum Requirements image fit */

.requirements-panel{
    position:relative !important;
    overflow:hidden !important;
    border-radius:18px !important;

    background:none !important;
}

.requirements-panel::before{
    content:"";
    position:absolute;

    /* Expand slightly to eliminate the white border */
    inset:-6px;

    background-image:
        url("/assets/images/hero_images/min_requiremnts_bg.png");

    background-size:100% 100%;
    background-position:center;
    background-repeat:no-repeat;

    z-index:0;
}

.requirements-panel > *{
    position:relative;
    z-index:2;
}


/* Minimum Requirements final edge alignment */

.requirements-panel::before {
  top: -6px !important;
  right: -14px !important;
  bottom: -14px !important;
  left: -14px !important;
}

/* Final bottom adjustment */

.requirements-panel::before{
    bottom:-20px !important;
}


/* =========================================================
   Breeze Virtual registration page
   ========================================================= */

.register-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #f7fbfe, #edf6fb);
}

.register-hero {
  min-height: 330px;
  background:
    linear-gradient(
      90deg,
      rgba(4, 38, 81, 0.96),
      rgba(5, 73, 143, 0.84) 44%,
      rgba(5, 73, 143, 0.20)
    ),
    url("/assets/images/hero_images/join_us_hero.png")
      center / cover no-repeat;
  color: #ffffff;
}

.register-hero__inner {
  min-height: 330px;
  display: flex;
  align-items: center;
}

.register-hero__content {
  width: min(600px, 100%);
}

.register-hero h1 {
  margin: 5px 0 14px;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.94;
  text-transform: uppercase;
}

.register-hero h1 span {
  display: block;
  color: #72c8ff;
}

.register-hero__content > p:last-child {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.6;
}

.register-page__body {
  padding-top: 36px;
  padding-bottom: 70px;
}

.register-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: start;
}

.register-card,
.register-sidebar article {
  border: 1px solid #dce8f1;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 35px rgba(7, 50, 91, 0.08);
}

.register-card {
  overflow: hidden;
}

.register-card__header {
  padding: 27px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  border-bottom: 1px solid #e2ecf3;
}

.register-card__header h2 {
  margin: 3px 0 0;
  color: var(--breeze-navy-900);
  font-size: 28px;
  text-transform: uppercase;
}

.register-security-badge {
  padding: 8px 12px;
  border-radius: 999px;
  background: #e7f5ff;
  color: #0767c8;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.register-message {
  margin: 22px 30px 0;
  padding: 15px 17px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 750;
}

.register-message--error {
  border: 1px solid #efb5b5;
  background: #fff0f0;
  color: #a72020;
}

.register-message--success {
  border: 1px solid #a9dfbf;
  background: #ecfff4;
  color: #176b39;
}

.register-form {
  padding: 0 30px 32px;
}

.register-form__section {
  padding: 30px 0;
  border-bottom: 1px solid #e2ecf3;
}

.register-form__section > header {
  margin-bottom: 21px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.register-form__section > header > span {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0b70d3;
  color: #ffffff;
  font-weight: 900;
}

.register-form__section h3 {
  margin: 0;
  color: var(--breeze-navy-900);
  font-size: 18px;
  text-transform: uppercase;
}

.register-form__section header p {
  margin: 3px 0 0;
  color: var(--breeze-muted);
  font-size: 12px;
}

.register-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px;
}

.register-field {
  display: block;
}

.register-field--wide {
  grid-column: 1 / -1;
}

.register-field > span {
  display: block;
  margin-bottom: 7px;
  color: var(--breeze-navy-900);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.register-field input,
.register-field select,
.register-field textarea {
  width: 100%;
  border: 1px solid #cbdbe6;
  border-radius: 8px;
  background: #ffffff;
  color: var(--breeze-navy-900);
  font: inherit;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.register-field input,
.register-field select {
  min-height: 48px;
  padding: 0 13px;
}

.register-field textarea {
  min-height: 110px;
  padding: 13px;
  resize: vertical;
  line-height: 1.5;
}

.register-field input:focus,
.register-field select:focus,
.register-field textarea:focus {
  border-color: #178be4;
  box-shadow: 0 0 0 3px rgba(23, 139, 228, 0.13);
}

.register-field small {
  display: block;
  margin-top: 6px;
  color: var(--breeze-muted);
  font-size: 10px;
  line-height: 1.4;
}

.register-password {
  position: relative;
}

.register-password input {
  padding-right: 70px;
}

.register-password__toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  min-width: 54px;
  min-height: 32px;
  padding: 0 8px;
  border: 0;
  border-radius: 6px;
  background: #e9f5fd;
  color: #086acb;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateY(-50%);
  cursor: pointer;
}

.register-consent {
  padding: 26px 0 5px;
}

.register-consent label {
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: #40566b;
  font-size: 12px;
  line-height: 1.5;
}

.register-consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin-top: 1px;
}

.register-form__actions {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.register-submit {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #0767ce, #1595ec);
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.register-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.register-form__actions p {
  margin: 0;
  color: var(--breeze-muted);
  font-size: 11px;
}

.register-form__actions a {
  color: #0767ce;
  font-weight: 850;
  text-decoration: none;
}

.register-sidebar {
  display: grid;
  gap: 20px;
}

.register-sidebar article {
  padding: 24px;
}

.register-sidebar h2 {
  margin: 0 0 21px;
  color: var(--breeze-navy-900);
  font-size: 17px;
  text-transform: uppercase;
}

.register-next-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.register-next-steps li {
  position: relative;
  min-height: 82px;
  display: flex;
  gap: 14px;
}

.register-next-steps li:not(:last-child)::after {
  position: absolute;
  top: 37px;
  bottom: 8px;
  left: 16px;
  width: 2px;
  background: #b9dcf6;
  content: "";
}

.register-next-steps li > span {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0b70d3;
  color: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.register-next-steps strong {
  color: var(--breeze-navy-900);
  font-size: 13px;
}

.register-next-steps p {
  margin: 4px 0 0;
  color: var(--breeze-muted);
  font-size: 11px;
  line-height: 1.45;
}

.register-sidebar__notice {
  background:
    linear-gradient(
      180deg,
      rgba(238, 248, 254, 0.97),
      rgba(221, 239, 249, 0.97)
    ) !important;
}

.register-sidebar__notice ul {
  margin: 0;
  padding-left: 18px;
  color: #40566b;
  font-size: 11px;
  line-height: 1.7;
}

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

  .register-sidebar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .register-hero {
    min-height: 300px;
  }

  .register-hero__inner {
    min-height: 300px;
  }

  .register-page__body {
    padding-top: 20px;
  }

  .register-card__header,
  .register-form {
    padding-right: 19px;
    padding-left: 19px;
  }

  .register-card__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .register-form__grid,
  .register-sidebar {
    grid-template-columns: 1fr;
  }

  .register-field--wide {
    grid-column: auto;
  }

  .register-form__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .register-submit {
    justify-content: center;
  }
}

/* =========================================================
   Sticky Footer
   ========================================================= */

html,
body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main,
#app,
.site-main,
.page-content {
    flex: 1 0 auto;
}

footer,
.site-footer {
    margin-top: auto;
    flex-shrink: 0;
}


/* Keep the mobile navigation above all page content */
.site-header,
.main-header,
header.site-header {
  position: relative;
  z-index: 50000;
}

.mobile-nav-toggle,
.nav-toggle,
.menu-toggle,
.site-header__menu-button {
  position: relative;
  z-index: 50030;
}

.mobile-navigation,
.mobile-nav,
.site-navigation--mobile,
.site-header__mobile-nav,
.site-nav.is-open,
.navigation-drawer {
  position: fixed;
  z-index: 50020;
  top: 0;
  right: 0;
  bottom: 0;
}

.mobile-navigation-backdrop,
.mobile-nav-backdrop,
.site-navigation-backdrop,
.navigation-backdrop {
  position: fixed;
  z-index: 50010;
  inset: 0;
}

body.mobile-navigation-open,
body.nav-open,
body.menu-open {
  overflow: hidden;
}

/* Prevent page sections from creating a higher stacking layer */
main,
#main-content,
.home-hero,
.flight-search-section,
.home-dashboard,
.site-footer {
  position: relative;
  z-index: 1;
}
