/* ═══════════════════════════════════════════
       NAVBAR
    ═══════════════════════════════════════════ */
    :root {
      --g2:#2e7d32; --g4:#43a047; --g5:#66bb6a; --g6:#a5d6a7;
      --nav-h:72px;
    }

    * { box-sizing: border-box; }

    /* Base nav */
    .lh-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
      z-index: 1050;
      height: var(--nav-h);
      background: linear-gradient(135deg, #071409 0%, #0d2710 60%, #122d15 100%);
      border-bottom: 1px solid rgba(105,240,174,.1);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      transition: box-shadow .3s;
    }
    .lh-nav.scrolled {
      box-shadow: 0 4px 30px rgba(0,0,0,.45);
    }

    .lh-nav-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 1.5rem;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    /* Logo */
    .lh-logo {
      display: flex;
      align-items: center;
      gap: .5rem;
      text-decoration: none;
      flex-shrink: 0;
    }
    .lh-logo-icon {
      width: 36px; height: 36px;
      background: linear-gradient(135deg, #2e7d32, #66bb6a);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
      box-shadow: 0 4px 12px rgba(46,125,50,.4);
      flex-shrink: 0;
    }
    .lh-logo-text {
      font-family: 'Syne', sans-serif;
      font-size: 1.3rem;
      font-weight: 800;
      letter-spacing: -.3px;
      color: #fff;
      line-height: 1;
    }
    .lh-logo-text span {
      color: #69f0ae;
    }
    .lh-logo-tag {
      font-family: 'DM Sans', sans-serif;
      font-size: .52rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: white;
      display: block;
      margin-top: .1rem;
    }

    /* Desktop links */
    .lh-links {
      display: flex;
      align-items: center;
      gap: .15rem;
      list-style: none;
      margin: 0; padding: 0;
    }
    .lh-links > li {
      position: relative;
    }
    .lh-links > li > a,
    .lh-links > li > .lh-drop-toggle {
      display: flex;
      align-items: center;
      gap: .3rem;
      padding: .5rem .85rem;
      border-radius: 10px;
      font-family: 'Syne', sans-serif;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
      color: white;
      text-decoration: none;
      background: transparent;
      border: none;
      cursor: pointer;
      transition: color .25s, background .25s;
      white-space: nowrap;
    }
    .lh-links > li > a:hover,
    .lh-links > li > .lh-drop-toggle:hover {
      color: #fff;
      background: rgba(255,255,255,.06);
    }
    .lh-links > li > a.active,
    .lh-links > li > a.active:hover {
      color: #69f0ae;
      background: rgba(105,240,174,.09);
    }
    .lh-links > li > a.active::after {
      content: '';
      position: absolute;
      bottom: 4px; left: 50%;
      transform: translateX(-50%);
      width: 20px; height: 2px;
      background: #69f0ae;
      border-radius: 2px;
    }

    /* Dropdown */
    .lh-dropdown {
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%) translateY(6px);
      min-width: 200px;
      background: #0f1f11;
      border: 1px solid rgba(105,240,174,.12);
      border-radius: 16px;
      padding: .5rem;
      box-shadow: 0 16px 48px rgba(0,0,0,.5);
      opacity: 0;
      visibility: hidden;
      transition: opacity .25s, transform .25s, visibility .25s;
      z-index: 200;
    }
    .lh-links > li:hover .lh-dropdown,
    .lh-links > li:focus-within .lh-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
    }
    .lh-dropdown a {
      display: flex;
      align-items: center;
      gap: .6rem;
      padding: .6rem .85rem;
      border-radius: 10px;
      font-family: 'DM Sans', sans-serif;
      font-size: .82rem;
      font-weight: 500;
      color:white;
      text-decoration: none;
      transition: background .2s, color .2s;
    }
    .lh-dropdown a:hover {
      background: rgba(105,240,174,.1);
      color: #69f0ae;
    }
    .lh-dropdown a .di { font-size: 1rem; }
    .drop-caret {
      font-size: .6rem;
      transition: transform .25s;
      opacity: .5;
    }
    .lh-links > li:hover .drop-caret { transform: rotate(180deg); }

    /* Nav search */
    .lh-search-wrap {
      display: flex;
      align-items: center;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 50px;
      padding: .35rem .35rem .35rem .9rem;
      transition: border-color .3s, background .3s;
      gap: .4rem;
    }
    .lh-search-wrap:focus-within {
      border-color: rgba(105,240,174,.5);
      background: rgba(255,255,255,.1);
    }
    .lh-search-wrap input {
      background: transparent;
      border: none;
      outline: none;
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: .8rem;
      width: 140px;
      transition: width .3s;
    }
    .lh-search-wrap input::placeholder { color: rgba(255,255,255,.35); }
    .lh-search-wrap input:focus { width: 180px; }
    .lh-search-btn {
      background: linear-gradient(135deg, #2e7d32, #43a047);
      border: none;
      border-radius: 50px;
      color: #fff;
      font-size: .72rem;
      font-weight: 700;
      font-family: 'Syne', sans-serif;
      padding: .4rem .9rem;
      cursor: pointer;
      transition: transform .25s, box-shadow .25s;
      white-space: nowrap;
      letter-spacing: .3px;
      flex-shrink: 0;
    }
    .lh-search-btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(46,125,50,.45);
    }

    /* Hamburger */
    .lh-burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px; height: 36px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 10px;
      cursor: pointer;
      padding: 0 8px;
      flex-shrink: 0;
    }
    .lh-burger span {
      display: block;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: transform .35s, opacity .25s, width .25s;
    }
    .lh-burger span:nth-child(2) { width: 65%; }
    .lh-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .lh-burger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
    .lh-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile drawer */
    .lh-drawer {
      display: none;
      position: fixed;
      top: var(--nav-h);
      left: 0; right: 0;
      bottom: 0;
      background: #071409;
      z-index: 1049;
      overflow-y: auto;
      padding: 1.2rem 1.2rem 2rem;
      transform: translateX(100%);
      transition: transform .35s cubic-bezier(.4,0,.2,1);
    }
    .lh-drawer.open {
      transform: translateX(0);
    }

    /* Mobile search */
    .mob-search {
      display: flex;
      align-items: center;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 14px;
      padding: .5rem .5rem .5rem 1rem;
      margin-bottom: 1.2rem;
      gap: .4rem;
    }
    .mob-search input {
      flex: 1;
      background: transparent;
      border: none;
      outline: none;
      color: #fff;
      font-family: 'DM Sans', sans-serif;
      font-size: .9rem;
    }
    .mob-search input::placeholder { color: rgba(255,255,255,.35); }
    .mob-search button {
      background: linear-gradient(135deg, #2e7d32, #43a047);
      border: none;
      border-radius: 10px;
      color: #fff;
      font-family: 'Syne', sans-serif;
      font-size: .75rem;
      font-weight: 700;
      padding: .45rem .9rem;
      cursor: pointer;
    }

    /* Mobile nav links */
    .mob-nav { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .25rem; }
    .mob-nav-lnk {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: .85rem 1rem;
      border-radius: 14px;
      font-family: 'Syne', sans-serif;
      font-size: .88rem;
      font-weight: 700;
      letter-spacing: .5px;
      color: rgba(255,255,255,.72);
      text-decoration: none;
      border: 1px solid transparent;
      transition: background .25s, color .25s;
      cursor: pointer;
      background: transparent;
      width: 100%;
      text-align: left;
    }
    .mob-nav-lnk:hover,
    .mob-nav-lnk.active {
      background: rgba(105,240,174,.09);
      color: #69f0ae;
      border-color: rgba(105,240,174,.14);
    }
    .mob-nav-lnk .mn-left { display: flex; align-items: center; gap: .7rem; }
    .mob-nav-lnk .mn-ico { font-size: 1.1rem; }
    .mob-caret { font-size: .72rem; transition: transform .3s; opacity: .5; }
    .mob-nav-lnk.expanded .mob-caret { transform: rotate(90deg); }

    /* Mobile sub-links */
    .mob-sub {
      display: none;
      flex-direction: column;
      gap: .15rem;
      padding: .4rem 0 .4rem 1rem;
    }
    .mob-sub.open { display: flex; }
    .mob-sub a {
      display: flex;
      align-items: center;
      gap: .6rem;
      padding: .65rem .9rem;
      border-radius: 12px;
      font-family: 'DM Sans', sans-serif;
      font-size: .83rem;
      font-weight: 500;
      color:white;
      text-decoration: none;
      transition: background .2s, color .2s;
    }
    .mob-sub a:hover {
      background: rgba(105,240,174,.08);
      color: #a5d6a7;
    }

    /* Mobile divider */
    .mob-divider {
      height: 1px;
      background: rgba(255,255,255,.06);
      margin: .6rem 0;
    }

    /* ═══════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════ */
    .lh-footer {
      background: linear-gradient(160deg, #071409 0%, #0c1f0e 50%, #071409 100%);
      position: relative;
      overflow: hidden;
    }
    .lh-footer::before {
      content: '';
      position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 50% 60% at 5% 80%, rgba(46,125,50,.18) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 95% 20%, rgba(105,240,174,.05) 0%, transparent 60%),
        linear-gradient(rgba(255,255,255,.014) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.014) 1px, transparent 1px);
      background-size: auto, auto, 36px 36px, 36px 36px;
    }

    .lh-footer-top {
      max-width: 1280px;
      margin: 0 auto;
      padding: 4rem 1.5rem 3rem;
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr 1fr;
      gap: 3rem;
      position: relative;
      z-index: 1;
    }

    /* Brand column */
    .ft-brand { display: flex; flex-direction: column; gap: 1rem; }
    .ft-logo {
      display: flex;
      align-items: center;
      gap: .6rem;
      text-decoration: none;
    }
    .ft-logo-icon {
      width: 42px; height: 42px;
      background: linear-gradient(135deg, #2e7d32, #66bb6a);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem;
      box-shadow: 0 4px 16px rgba(46,125,50,.4);
    }
    .ft-logo-text {
      font-family: 'Syne', sans-serif;
      font-size: 1.4rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: -.3px;
    }
    .ft-logo-text span { color: #69f0ae; }
    .ft-tagline {
      font-family: 'DM Sans', sans-serif;
      font-size: .84rem;
      color: white;
      line-height: 1.7;
      max-width: 240px;
    }

    /* Contact pills */
    .ft-contacts { display: flex; flex-direction: column; gap: .5rem; }
    .ft-contact-item {
      display: flex;
      align-items: center;
      gap: .65rem;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 12px;
      padding: .6rem .9rem;
      font-family: 'DM Sans', sans-serif;
      font-size: .78rem;
      color:white;
      text-decoration: none;
      transition: background .25s, color .25s, border-color .25s;
    }
    .ft-contact-item:hover {
      background: rgba(105,240,174,.08);
      color: #a5d6a7;
      border-color: rgba(105,240,174,.18);
    }
    .ft-contact-item i {
      color: #69f0ae;
      font-size: .9rem;
      flex-shrink: 0;
    }

    /* Footer link columns */
    .ft-col-title {
      font-family: 'Syne', sans-serif;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: white;
      margin-bottom: 1.1rem;
      display: flex;
      align-items: center;
      gap: .5rem;
    }
    .ft-col-title::before {
      content: '';
      display: block;
      width: 16px; height: 2px;
      background: #43a047;
      border-radius: 2px;
    }
    .ft-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .3rem; }
    .ft-links a {
      display: flex;
      align-items: center;
      gap: .55rem;
      font-family: 'DM Sans', sans-serif;
      font-size: .83rem;
      font-weight: 500;
      color: white;
      text-decoration: none;
      padding: .32rem .5rem;
      border-radius: 8px;
      transition: background .2s, color .2s, transform .25s;
    }
    .ft-links a:hover {
      color: #a5d6a7;
      background: rgba(105,240,174,.07);
      transform: translateX(4px);
    }
    .ft-links a .fl-ico { font-size: .9rem; }

    /* Footer divider */
    .lh-footer-div {
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(105,240,174,.12), transparent);
      max-width: 1280px;
      margin: 0 auto;
      position: relative; z-index: 1;
    }

    /* Footer bottom */
    .lh-footer-bottom {
      max-width: 1280px;
      margin: 0 auto;
      padding: 1.4rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      position: relative;
      z-index: 1;
    }
    .ft-copy {
      font-family: 'DM Sans', sans-serif;
      font-size: .76rem;
      color: white;
    }
    .ft-copy strong { color: #69f0ae; }
    .ft-copy a { color: white; text-decoration: none; }
    .ft-copy a:hover { color: #69f0ae; }

    /* Footer social icons */
    .ft-socials { display: flex; align-items: center; gap: .5rem; }
    .ft-social {
      width: 34px; height: 34px;
      display: flex; align-items: center; justify-content: center;
      border-radius: 10px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.09);
      color: white;
      font-size: .85rem;
      text-decoration: none;
      transition: all .25s;
    }
    .ft-social:hover {
      background: rgba(105,240,174,.12);
      border-color: rgba(105,240,174,.25);
      color: #69f0ae;
      transform: translateY(-2px);
    }

    /* Back to top */
    .back-to-top {
      position: fixed;
      right: 18px;
      bottom: 18px;
      width: 42px; height: 42px;
      background: linear-gradient(135deg, #2e7d32, #43a047);
      color: #fff;
      border-radius: 12px;
      z-index: 1050;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(46,125,50,.45);
      font-size: .9rem;
      transition: transform .3s, box-shadow .3s, opacity .3s;
      opacity: 0;
      pointer-events: none;
    }
    .back-to-top.visible {
      opacity: 1;
      pointer-events: auto;
    }
    .back-to-top:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(46,125,50,.55);
      color: #fff;
    }

    /* ═══════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════ */
    @media (max-width: 1100px) {
      .lh-search-wrap input { width: 110px; }
      .lh-search-wrap input:focus { width: 140px; }
      .lh-links > li > a,
      .lh-links > li > .lh-drop-toggle { padding: .5rem .65rem; font-size: .7rem; }
    }

    @media (max-width: 900px) {
      .lh-links, .lh-search-wrap { display: none; }
      .lh-burger { display: flex; }
      .lh-drawer { display: block; }
      .lh-footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }

    @media (max-width: 580px) {
      .lh-nav { height: 62px; --nav-h: 62px; }
      .lh-logo-text { font-size: 1.15rem; }
      .lh-footer-top { grid-template-columns: 1fr; gap: 1.8rem; padding: 2.8rem 1.2rem 2rem; }
      .lh-footer-bottom { flex-direction: column; align-items: flex-start; gap: .7rem; }
      .back-to-top { width: 38px; height: 38px; right: 12px; bottom: 12px; }
    }