


/* HEADER BASE */
.site-header {
  background: #fff;
}

.header-container {
  max-width: 1200px;
  height: 72px;
  padding: 16px 20px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo-wrapper {
  margin-left: 35px;
}

.logo-wrapper a {
  display: inline-block;
  line-height: 0;
}

.logo {
  width: 180px;
  height: 40px;
  object-fit: contain;
  display: block;
}

/* ======================
   DESKTOP MENU
====================== */
.desktop-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-menu a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  padding-right: 20px;
  padding-left: 20px;
  list-style: none;
  font-family: "Open Sans", sans-serif;
}

/* DESKTOP DIVIDER (vertical line between menu and language) */
.desktop-menu .divider {
  display: inline-block;
  width: 0;
  height: 22px;
  border-left: 1px solid #c8c8c8;
}

.lang-switch li{
  list-style: none;
  font-size: 18px;
  font-family: "Open Sans", sans-serif;
}

.lang-switch li a{
      color: #009fa6 !important;
      font-size: 18px;
}


/* ======================
   MOBILE ELEMENTS
====================== */
.menu-toggle {
  display: none;
  font-size: 18px;
  background: none;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  color: #000;
  line-height: 1;
}

.menu-toggle .fl-menu-mobile-toggle-label {
  font-size: 18px;
  font-weight: 400;
  color: #000;
}

.mobile-lang {
  display: none;
}

/* ======================
   MOBILE MENU
====================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 260px;
  height: 100%;
  background: #fff;
  z-index: 999;
  transition: 0.3s;
  padding: 20px;
}

.mobile-menu.active {
  left: 0;
}

.mobile-nav {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  text-decoration: none;
  font-size: 18px;
  color: #222;
}

/* OVERLAY */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  top: 0;
  left: 0;
  display: none;
}

.overlay.active {
  display: block;
}

/* ======================
   RESPONSIVE
====================== */
@media (max-width: 768px) {

  .header-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    height: 72px;
    padding: 25px 16px;
  }

  .menu-toggle {
    display: block;
  }

  .logo-wrapper {
    text-align: center;
    margin-left: 0;
  }

  .logo {
    width: 104px;
    height: 22px;
    margin: 0 auto;
  }

  .desktop-menu {
    display: none;
  }

  .mobile-lang {
    display: block;
    text-align: right;
  }
}

footer{
  background: #4a4e69 !important;
}

.fl-icon-text *:last-child{
  color: white;
}

h2{
  font-weight: 400 !important;
}

.gform_legacy_markup_wrapper .gsection .gfield_label, .gform_legacy_markup_wrapper h2.gsection_title, .gform_legacy_markup_wrapper h3.gform_title{
  font-weight: 500 !important;
}

/* ======================
   SCROLL-TO-TOP BUTTON
====================== */
#fl-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #009fa6;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0.35s;
}

#fl-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s linear 0s;
}

#fl-to-top:hover,
#fl-to-top:focus {
  background: #007e84;
  color: #fff;
  outline: none;
}

#fl-to-top:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 159, 166, 0.4);
}

#fl-to-top .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  #fl-to-top {
    transition: opacity 0.15s linear, visibility 0s linear 0.15s;
    transform: none;
  }
  #fl-to-top.is-visible {
    transition: opacity 0.15s linear, visibility 0s linear 0s;
    transform: none;
  }
}