/* ===============================
   HEADER (PARTIAL)
================================ */

.ws-nowrap { white-space: nowrap; }

.header-wrapper {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1100;
}

/* container transparent */
.header-wrapper .container {
  background: transparent;
}

/* MAIN HEADER */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LEFT: LOGO */
.header-left {
  flex: 0 0 auto;
}

.site-logo img {
  display: block;
  height: 150px;
  width: auto;
}

/* RIGHT COLUMN: top row top, nav bottom */
.header-right {
  display: flex;
  flex-direction: column;
  height: 150px;
  padding: 30px 0;        /* top + bottom padding inside logo height */
  justify-content: space-between;
  align-items: flex-end;
  box-sizing: border-box;
}

/* TOP ROW */
.header-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 13px;
}

.header-top a,
.header-top span {
  color: #2baab1;
  font-weight: 600;
  text-decoration: none;
}

.header-top i { margin-right: 6px; }

/* ===============================
   HAMBURGER
================================ */
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.nav-toggle:focus { outline: none; }

.nav-toggle .fa {
  transition: transform 180ms ease;
}

/* When open: slight pop */
.nav-toggle.is-open .fa {
  transform: rotate(90deg);
}

/* NAV (desktop) */
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 20px;
}

.site-nav a,
.site-nav .nav-label {
  text-decoration: none;
  font-weight: 600;
  color: #2d9391;
  padding: 6px 8px 0;
  display: inline-block;
  cursor: pointer;
  line-height: 1.1;
}

.site-nav a:hover,
.site-nav .nav-label:hover {
  color: #2baab1;
}

/* DROPDOWNS */
.site-nav .dropdown {
  position: relative;
}

.site-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 6px 0;
  min-width: 200px;
  box-shadow: 0 10px 25px rgba(0,0,0,.10);
  z-index: 2000;
}

.site-nav .dropdown:hover .dropdown-menu {
  display: block;
}

.site-nav .dropdown-menu a {
  display: block;
  padding: 8px 14px;
  font-weight: 400;
  color: #777;
  line-height: 1.2;
}

.site-nav .dropdown-menu a:hover {
  background: rgba(45,147,145,0.08);
  color: #2d9391;
}

/* ===============================
   BODY SCROLL LOCK (menu open)
================================ */
body.nav-open {
  overflow: hidden;
}

/* ===============================
   MOBILE
================================ */
@media (max-width: 991px) {

  .site-header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .site-logo img {
    height: 140px; /* smaller on mobile */
  }

  .header-right {
    height: auto;
    width: 100%;
    padding: 10px 0;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  /* show hamburger */
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* hide nav by default */
  .site-nav {
    display: none;
    width: 100%;
  }

  /* show nav when open */
  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 10px;
  }

  /* Mobile dropdowns (tap accordion) */
  .site-nav .dropdown-menu {
    position: static;
    border: 0;
    box-shadow: none;
    padding: 0 0 10px 12px;
    min-width: 0;
  }

  .site-nav .dropdown.open > .dropdown-menu {
    display: block;
  }

  /* keep top bar hidden on small screens */
  .header-top {
    display: none;
  }
}