/* =========================================================
   NAV.CSS
   Premium minimal graphite header and clean responsive menu.
========================================================= */


/* =========================================================
   TOP NOTICE
========================================================= */

.top-notice {
  background: #171d25;
  color: var(--colour-white);
  font-size: 13px;
  line-height: 1.35;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.top-notice-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top-notice p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.top-notice strong {
  color: var(--colour-white);
  font-weight: 800;
  white-space: nowrap;
}

.top-notice .site-icon {
  width: 15px;
  height: 15px;
  color: var(--colour-primary);
  flex: 0 0 auto;
}

/* Tablet / smaller screens */
@media (max-width: 760px) {
  .top-notice {
    font-size: 12.5px;
  }

  .top-notice-inner {
    min-height: auto;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .top-notice p {
    max-width: 520px;
    gap: 7px;
    line-height: 1.35;
  }
}

/* Mobile */
@media (max-width: 520px) {
  .top-notice {
    font-size: 12px;
  }

  .top-notice-inner {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .top-notice p {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 7px;
    row-gap: 2px;
    align-items: start;
    justify-content: center;

    max-width: 360px;
    margin-inline: auto;
    text-align: left;
  }

  .top-notice .site-icon {
    grid-row: 1 / span 2;
    margin-top: 2px;
  }

  .top-notice strong {
    white-space: normal;
    line-height: 1.15;
  }
}

/* Very small mobile */
@media (max-width: 380px) {
  .top-notice {
    font-size: 11.5px;
  }

  .top-notice p {
    max-width: 320px;
  }
}

/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  background: #202832;
}

.site-header-inner {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-logo img {
  display: block;
  width: 365px;
  max-width: 100%;
  height: auto;
}


/* =========================================================
   DESKTOP NAV
========================================================= */

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 30px;

  margin: 0;
  padding: 0;
  list-style: none;
}

.site-menu > li {
  position: relative;
  font-size: 18px;
}

.site-menu a,
.site-dropdown-toggle {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;
  padding: 0;

  border: 0;
  border-radius: 0;
  background: transparent;

  color: rgba(255, 255, 255, 0.72);

  font-weight: 550;
  line-height: 1;
  text-decoration: none;
  text-transform: lowercase;
  white-space: nowrap;

  transition:
    color 0.18s ease,
    opacity 0.18s ease;
}

.site-menu a::before,
.site-dropdown-toggle::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;

  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--colour-primary);

  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: left;

  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.site-menu a:hover,
.site-menu a:focus-visible,
.site-dropdown-toggle:hover,
.site-dropdown-toggle:focus-visible {
  color: var(--colour-white);
}

.site-menu a:hover::before,
.site-menu a:focus-visible::before,
.site-dropdown-toggle:hover::before,
.site-dropdown-toggle:focus-visible::before,
.site-menu a.active::before,
.site-menu a[aria-current="page"]::before,
.site-dropdown-toggle.active::before,
.site-dropdown-toggle[aria-expanded="true"]::before {
  opacity: 1;
  transform: scaleX(1);
}

.site-menu a.active,
.site-menu a[aria-current="page"],
.site-dropdown-toggle.active,
.site-dropdown-toggle[aria-expanded="true"] {
  color: var(--colour-white);
}

.site-dropdown-toggle {
  gap: 9px;
}

.site-dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;

  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;

  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s ease;
}

.site-dropdown-toggle[aria-expanded="true"]::after {
  transform: translateY(2px) rotate(225deg);
}


/* =========================================================
   DESKTOP DROPDOWN
========================================================= */

.site-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;


  padding: 12px;

  background: #fffffff7;
  border: 1px solid rgba(32, 40, 50, 0.08);
  border-radius: 18px;

  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);

  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  pointer-events: none;

  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.site-dropdown[hidden] {
  display: none;
}

.site-dropdown.show {
  display: block;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.site-dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;

  width: 14px;
  height: 14px;

  background: #ffffff;
  border-left: 1px solid rgba(32, 40, 50, 0.08);
  border-top: 1px solid rgba(32, 40, 50, 0.08);

  transform: translateX(-50%) rotate(45deg);
}

.site-dropdown a {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 55px;
  padding: 12px 14px;

  border: 0;
  border-radius: 12px;

  color: #202832;
  background: transparent;
  font-weight: 550;

  transition:
    color 0.18s ease,
    background-color 0.18s ease;
}

.site-dropdown a::before {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 8px;

  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--colour-primary);

  opacity: 0;
  transform: scaleX(0.5);
  transform-origin: left;

  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.site-dropdown a:hover,
.site-dropdown a:focus-visible,
.site-dropdown a.active,
.site-dropdown a[aria-current="page"] {
  color: #121922;
  background: rgba(0, 174, 239, 0.075);
}

.site-dropdown a:hover::before,
.site-dropdown a:focus-visible::before,
.site-dropdown a.active::before,
.site-dropdown a[aria-current="page"]::before {
  opacity: 1;
  transform: scaleX(1);
}

.site-dropdown .all-services {
  margin-top: 6px;
  color: var(--colour-primary);
  background: rgba(0, 174, 239, 0.075);
  
}


/* =========================================================
   MOBILE TOGGLE
========================================================= */

.site-menu-toggle {
  display: none;

  width: 54px;
  height: 54px;

  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.075);
  color: var(--colour-white);

  align-items: center;
  justify-content: center;

  transition: background-color 0.18s ease;
}

.site-menu-toggle:hover,
.site-menu-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.site-menu-toggle span,
.site-menu-toggle span::before,
.site-menu-toggle span::after {
  display: block;
  width: 24px;
  height: 2px;

  background: currentColor;
  border-radius: 999px;

  transition:
    transform 0.18s ease,
    opacity 0.18s ease;
}

.site-menu-toggle span {
  position: relative;
}

.site-menu-toggle span::before,
.site-menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.site-menu-toggle span::before {
  top: -7px;
}

.site-menu-toggle span::after {
  top: 7px;
}

.site-menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.site-menu-toggle[aria-expanded="true"] span::before {
  transform: translateY(7px) rotate(45deg);
}

.site-menu-toggle[aria-expanded="true"] span::after {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MOBILE NAV
========================================================= */

@media (max-width: 1180px) {
  .site-header-inner {
    min-height: 96px;
  }

  .site-logo img {
    width: 315px;
  }

  .site-menu-toggle {
    display: inline-flex;
  }

.site-menu {
  gap: 10px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;

  display: none;
  flex-direction: column;

  margin: 0;
  padding: 10px 0 12px;

  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(248, 251, 253, 0.96) 52%,
      rgba(241, 246, 249, 0.94) 100%
    );

  border-top: 1px solid rgba(32, 40, 50, 0.08);
  border-bottom: 1px solid rgba(32, 40, 50, 0.08);

  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.18);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

  .site-menu.show {
    display: flex;
            margin: 0px 5px;
        border-radius: 0px 0px 10px 10px;
  }

  .site-menu > li {
    width: 100%;
  }

  .site-menu a,
  .site-dropdown-toggle {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;

    padding: 0 var(--container-padding);

    color: #202832;
    background: transparent;
    border: 0;
    border-radius: 0;


    text-align: left;
  }

  .site-menu a::before,
  .site-dropdown-toggle::before {
    left: var(--container-padding);
    bottom: 8px;

    width: 14px;
    height: 2px;

    background: var(--colour-primary);
    opacity: 0;
    transform: scaleX(0.6);
    transform-origin: left;
  }

  .site-menu a:hover,
  .site-menu a:focus-visible,
  .site-dropdown-toggle:hover,
  .site-dropdown-toggle:focus-visible,
  .site-menu a.active,
  .site-menu a[aria-current="page"],
  .site-dropdown-toggle.active,
  .site-dropdown-toggle[aria-expanded="true"] {
    color: var(--colour-primary);
    background: transparent;
  }

  .site-menu a:hover::before,
  .site-menu a:focus-visible::before,
  .site-menu a.active::before,
  .site-menu a[aria-current="page"]::before,
  .site-dropdown-toggle:hover::before,
  .site-dropdown-toggle:focus-visible::before,
  .site-dropdown-toggle.active::before,
  .site-dropdown-toggle[aria-expanded="true"]::before {
    opacity: 1;
    transform: scaleX(1);
  }

  .site-dropdown-toggle::after {
    border-color: currentColor;
  }

  .site-menu-item-has-dropdown {
    display: flex;
    flex-direction: column;
  }

  .site-menu .site-dropdown {
    position: static;

    display: none;
    width: 100%;
    min-width: 0;
    max-width: none;

    margin: 0;
    padding: 2px 0 10px;

    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;

    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .site-menu .site-dropdown[hidden] {
    display: none;
  }

  .site-menu .site-dropdown.show {
    display: block;
  }

  .site-menu .site-dropdown::before {
    display: none;
  }

  .site-menu .site-dropdown a {
    width: 100%;
   

    padding: 0 calc(var(--container-padding) + 22px);

    color: #202832;
    background: transparent;
    border: 0;
    border-radius: 0;

   
    font-weight: 550;
    text-align: left;
  }

  .site-menu .site-dropdown a::before {
    left: calc(var(--container-padding) + 22px);
    bottom: 7px;

    width: 12px;
    height: 2px;
    background: var(--colour-primary);
  }

  .site-menu .site-dropdown a:hover,
  .site-menu .site-dropdown a:focus-visible,
  .site-menu .site-dropdown a.active,
  .site-menu .site-dropdown a[aria-current="page"] {
    color: var(--colour-primary);
    background: transparent;
  }

  .site-menu .site-dropdown .all-services {
    color: var(--colour-primary);
    font-weight: 650;
  }
}

@media (max-width: 640px) {
  .site-header-inner {
    min-height: 86px;
  }

  .site-logo img {
    width: 265px;
  }

  .site-menu-toggle {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 440px) {
  .site-header-inner {
    min-height: 82px;
  }

  .site-logo img {
    width: 205px;
  }
}

@media (max-width: 360px) {
  .site-logo img {
    width: 184px;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .site-menu a,
  .site-dropdown-toggle,
  .site-dropdown,
  .site-dropdown a,
  .site-menu-toggle,
  .site-menu-toggle span,
  .site-menu-toggle span::before,
  .site-menu-toggle span::after {
    transition: none;
  }
}

.breadcrumb {
  padding: 0 0 10px 0;
}