.elementor-3216 .elementor-element.elementor-element-734e9a5{--display:flex;--padding-top:-1px;--padding-bottom:-1px;--padding-left:-1px;--padding-right:-1px;}/* Start custom CSS for html, class: .elementor-element-8cae1a5 */:root {
  --gl-green: #0F6833;
}

/* =========================
   ICONOK
========================= */
.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.nav-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
  filter: grayscale(100%);
  transition: transform .2s ease, filter .2s ease;
}

/* CSAK ZÖLD IKONOK */
.nav-green .nav-icon img {
  filter: none;
}

/* Hover */
.gl-nav a:hover .nav-icon img,
.gl-dropdown-toggle:hover .nav-icon img {
  transform: scale(1.1);
}

/* =========================
   HEADER – BASE
========================= */
.gl-header {
  position: relative;
  background: #ffffff;
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  z-index: 100;
}

.gl-header-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.gl-logo img {
  height: 68px;
}

/* =========================
   NAV – DESKTOP
========================= */
.gl-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.gl-nav a,
.gl-dropdown-toggle {
  text-decoration: none;
  color: #1c1c1c;
  font-weight: 500;
  position: relative;
  cursor: pointer;
}

/* Hover underline */
.gl-nav a::after,
.gl-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gl-green);
  transition: width .3s ease;
}

.gl-nav a:hover::after,
.gl-dropdown-toggle:hover::after {
  width: 100%;
}

/* =========================
   DROPDOWN
========================= */
.gl-dropdown {
  position: relative;
}

.gl-dropdown-menu {
  position: absolute;
  top: 140%;
  left: 0;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
  z-index: 999;
  /* FIX: pointer-events hozzáadása, hogy a linkekre rá lehessen kattintani */
  pointer-events: auto;
}

.gl-dropdown.open .gl-dropdown-menu {
  display: flex;
}

/* FIX: Dropdown menu linkek stílusa */
.gl-dropdown-menu a {
  text-decoration: none;
  color: #1c1c1c;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background .2s ease, color .2s ease;
}

.gl-dropdown-menu a:hover {
  background: #f3f6e8;
  color: var(--gl-green);
}

/* Dropdown arrow */
.dropdown-arrow {
  margin-left: 6px;
  font-size: 12px;
  color: var(--gl-green);
  transition: transform .25s ease;
}

.gl-dropdown.open .dropdown-arrow {
  transform: rotate(180deg);
}

/* =========================
   CTA BUTTON
========================= */
.gl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #0C5A2A, #178c4b);
  color: #ffffff !important;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(12,90,42,0.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.gl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(12,90,42,0.45);
}

/* =========================
   HAMBURGER
========================= */
.gl-burger {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  transition: color .25s ease;
  outline: none;
}

.gl-burger:active,
.gl-burger:focus {
  background: none;
  outline: none;
}

/* =========================
   MOBILE CTA (elrejtve desktop-on)
========================= */
.gl-nav-mobile-cta {
  display: none;
}

.gl-burger:hover {
  color: var(--gl-green);
}

/* =========================
   ANIMATED BAR
========================= */
.gl-header-bar {
  height: 6px;
  background: linear-gradient(
    90deg,
    #0C5A2A,
    #2fbf71,
    #0C5A2A
  );
  background-size: 200% 100%;
  animation: glBarMove 6s linear infinite;
}

@keyframes glBarMove {
  from { background-position: 0% 50%; }
  to { background-position: 200% 50%; }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 1000px) {

  .gl-burger {
    display: block;
  }

  .gl-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 20px;
    padding: 28px 24px;
    display: none;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
  }

  .gl-nav.open {
    display: flex;
  }

  .gl-nav a,
  .gl-dropdown-toggle {
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
  }

  .gl-nav a .nav-icon,
  .gl-dropdown-toggle .nav-icon {
    margin-right: 12px;
    flex-shrink: 0;
  }

  .gl-nav a:hover,
  .gl-dropdown-toggle:hover {
   
  }

  .gl-dropdown-menu {
    position: static;
    box-shadow: none;
    padding: 12px 0 0;
    display: none;
  }

  .gl-dropdown.open .gl-dropdown-menu {
    display: flex;
  }

  /* FIX: Desktop CTA elrejtése mobilon */
  .gl-cta {
    display: none;
  }

  /* ÚJ: Mobil menü CTA gomb */
  .gl-nav-mobile-cta {
    display: block;
    width: 100%;
    margin-top: 12px;
    padding-top: 20px;
    border-top: 2px solid #e8efe0;
  }

  .gl-nav-mobile-cta .gl-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 22px;
    font-size: 16px;
  }
}/* End custom CSS */