
    .lgic-header {
      --ink: #0B1E3A;
      --blue: #3A6CF3;
      --blue-dark: #183A8A;
      --white: #FFFFFF;
      --muted: #6D7A90;
      font-family: "Montserrat", system-ui, sans-serif;
      position: sticky;
      top: 0;
      z-index: 100000; /* above drawer */
      background: rgba(255,255,255,0.90);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(11,30,58,.06);
      box-shadow: 0 12px 40px rgba(11,30,58,.05);
    }

    .lgic-header .wrap {
      max-width: 1260px;
      margin: 0 auto;
      padding: 10px 24px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 28px;
    }

    .brand img {
      height: 40px;
      display: block;
      transition: transform .25s ease, filter .25s ease;
    }
    .brand:hover img {
      transform: translateY(-1px) scale(1.03);
      filter: drop-shadow(0 4px 10px rgba(11,30,58,.12));
    }

    /* DESKTOP NAV */
    nav[aria-label="Primary"] {
      display: flex;
      justify-content: center;
    }

    .menu {
      display: inline-flex;
      align-items: center;
      gap: 26px;
      list-style: none;
      margin: 0;
      padding: 0 18px;
      border-radius: 999px;
      background: rgba(11,30,58,0.02);
      box-shadow: inset 0 0 0 1px rgba(11,30,58,.04);
    }

    .link {
      position: relative;
      text-decoration: none;
      color: var(--muted);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .09em;
      font-size: 13px;
      padding: 10px 4px;
      transition: color .25s ease;
      white-space: nowrap;
    }

    .link::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 4px;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--blue), var(--blue-dark));
      transform: translateX(-50%);
      transition: width .24s ease;
    }

    .link:hover,
    .link:focus-visible {
      color: var(--blue-dark);
      outline: none;
    }

    .link:hover::after,
    .link:focus-visible::after {
      width: 70%;
    }

    .has-dd {
      position: relative;
      padding-bottom: 8px;
    }

    /* Hover bridge so dropdown does NOT close when crossing the gap */
    .has-dd::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 100%;
      height: 18px; /* invisible hover strip */
    }

    .link.has-caret {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .caret {
      width: 8px;
      height: 8px;
      border-right: 2px solid var(--blue-dark);
      border-bottom: 2px solid var(--blue-dark);
      transform: rotate(45deg);
      transition: transform .2s ease, opacity .2s ease;
      opacity: .85;
    }

    .has-dd:hover .caret,
    .has-dd:focus-within .caret {
      transform: rotate(225deg) translateY(1px);
    }

    /* DESKTOP DROPDOWN */
    .dropdown {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translate(-50%, 16px);
      background: rgba(255,255,255,0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-radius: 18px 18px 22px 22px;
      box-shadow:
        0 18px 40px rgba(11,30,58,.18),
        0 0 0 1px rgba(11,30,58,.06);
      min-width: 260px;
      padding: 10px 6px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .22s ease, transform .22s ease;
    }

    .dropdown-inner {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .dropdown a {
      display: flex;
      flex-direction: column;
      gap: 3px;
      padding: 10px 14px;
      border-radius: 12px;
      font-size: 13px;
      text-decoration: none;
      background: transparent;
      transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
    }

    .dropdown a span.label {
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--ink);
    }

    .dropdown a span.meta {
      font-weight: 500;
      font-size: 11px;
      text-transform: none;
      letter-spacing: .01em;
      color: var(--muted);
    }

    .dropdown a:hover,
    .dropdown a:focus-visible {
      outline: none;
      background: linear-gradient(135deg, rgba(58,108,243,0.12), rgba(24,58,138,0.16));
      box-shadow: 0 10px 28px rgba(11,30,58,.18);
      transform: translateY(-1px);
    }

    /* Keep dropdown open when hovering trigger or dropdown */
    .has-dd:hover .dropdown,
    .has-dd:focus-within .dropdown {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, 10px);
    }

    /* CTAS (desktop) */
    .ctas {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .12em;
      border-radius: 999px;
      padding: 10px 18px;
      font-size: 12px;
      text-decoration: none;
      border: 1px solid rgba(11,30,58,.12);
      color: var(--blue-dark);
      background: #fff;
      box-shadow: 0 8px 22px rgba(11,30,58,.08);
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 32px rgba(11,30,58,.18);
      background: #f7f9ff;
    }

    .btn-primary {
      background: linear-gradient(130deg, var(--blue), var(--blue-dark));
      color: #fff;
      border: none;
      box-shadow: 0 14px 34px rgba(58,108,243,.35);
    }

    .btn-primary:hover {
      background: linear-gradient(130deg, #456ff9, #102f76);
    }

    /* MOBILE HEADER AREA */
    .mob {
      display: none;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
    }

    .icon-btn {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: none;
      background: var(--blue-dark);
      color: #fff;
      cursor: pointer;
      box-shadow: 0 10px 26px rgba(11,30,58,.25);
      transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    .icon-btn:hover {
      background: var(--blue);
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(11,30,58,.3);
    }

    .icon-btn svg {
      width: 22px;
      height: 22px;
      stroke: #fff;
      stroke-width: 2;
    }

    /* Burger / X swap */
    .burger-icon { display: inline-block; }
    .close-icon {
      display: none;
      font-size: 22px;
      line-height: 1;
      font-weight: 700;
    }
    .nav-open .burger-icon { display: none; }
    .nav-open .close-icon { display: inline-block; }

    @media (max-width: 1024px) {
      nav[aria-label="Primary"],
      .btn-primary,
      .ctas .btn[href^="tel"] {
        display: none;
      }
      .mob {
        display: flex;
      }
      .lgic-header .wrap {
        grid-template-columns: auto 1fr auto;
        gap: 10px;
      }
    }

    /* MOBILE DRAWER – BELOW HEADER (APPLE GLASS STYLE) */
    .drawer {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      top: 0;              /* JS adjusts to header height */
      z-index: 90000;      /* below header (100000) */
      display: none;
      flex-direction: column;
      padding: 16px 18px 24px;

      background:
        radial-gradient(circle at top left, rgba(112,157,255,0.35), transparent 55%),
        radial-gradient(circle at bottom right, rgba(13,24,72,0.90), rgba(4,7,25,0.96));
      backdrop-filter: blur(30px) saturate(180%);
      -webkit-backdrop-filter: blur(30px) saturate(180%);
      animation: fadeIn .25s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(4px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .drawer[aria-hidden="false"] {
      display: flex;
    }

    .drawer-inner {
      max-width: 520px;
      margin: 0 auto;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .drawer-card {
      border-radius: 26px;
      background: linear-gradient(145deg, rgba(8,15,48,0.96), rgba(4,9,28,0.98));
      border: 1px solid rgba(255,255,255,0.26);
      box-shadow:
        0 20px 60px rgba(3,8,24,0.95),
        0 0 0 1px rgba(155,178,255,0.15);
      backdrop-filter: blur(22px);
      -webkit-backdrop-filter: blur(22px);
      padding: 18px 18px 16px;
    }

    .drawer-card.meta {
      display: flex;
      flex-direction: column;
      gap: 6px;
      padding-bottom: 14px;
    }

    .drawer-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 10px;
      border-radius: 999px;
      font-size: 10px;
      letter-spacing: .18em;
      text-transform: uppercase;
      background: rgba(255,255,255,0.08);
      color: rgba(222,229,255,0.92);
      border: 1px solid rgba(255,255,255,0.18);
    }

    .drawer-chip-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #4CD964;
      box-shadow: 0 0 8px rgba(76,217,100,0.9);
    }

    .drawer-meta-title {
      font-size: 15px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #F7F8FF;
    }

    .drawer-meta-sub {
      font-size: 11px;
      color: rgba(208,216,255,0.92);
      letter-spacing: .03em;
    }

    .drawer-main-nav {
      display: flex;
      flex-direction: column;
      gap: 4px;
      margin-top: 4px;
    }

    .drawer-main-nav a,
    .drawer-link-toggle {
      position: relative;
      text-decoration: none;
      color: #f5f7ff;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .11em;
      font-size: 13px;
      border-radius: 16px;
      overflow: hidden;
      background: transparent;
      border: none;
    }

    .drawer-main-nav a {
      display: block;
      padding: 9px 4px;
    }

    .drawer-main-nav a::before,
    .drawer-link-toggle::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 16px;
      background: radial-gradient(circle at top left,
                    rgba(148,180,255,0.65),
                    rgba(24,43,110,0.95));
      opacity: 0;
      transform: scale(0.94);
      transition: opacity .18s ease, transform .18s ease;
      z-index: -1;
    }

    .drawer-main-nav a + a {
      border-top: 1px solid rgba(255,255,255,0.06);
      margin-top: 4px;
    }

    .drawer-main-nav a:hover::before {
      opacity: 1;
      transform: scale(1);
    }

    /* Row that holds "Cleaning Services" link + toggle */
    .drawer-main-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 4px;
      padding-top: 6px;
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    .drawer-main-row .drawer-main-link {
      flex: 1;
      padding: 9px 0;
    }

    .drawer-main-row .drawer-link-toggle {
      min-width: 40px;
      height: 40px;
      padding: 0;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      border: 1px solid rgba(189,203,255,0.6);
      background: rgba(10,18,60,0.9);
      cursor: pointer;
    }

    .drawer-main-row .drawer-link-toggle-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 18px;
      height: 18px;
      font-size: 11px;
      transform: rotate(0deg);
      transition: transform .2s ease;
    }

    .drawer-link-toggle.open {
      background: rgba(116,148,255,0.35);
      border-color: rgba(222,230,255,0.95);
    }

    .drawer-link-toggle.open .drawer-link-toggle-icon {
      transform: rotate(180deg);
    }

    /* Animated Cleaning Services submenu */
    .drawer-submenu {
      margin-top: 6px;
      border-radius: 18px;
      background: radial-gradient(circle at top left,
                    rgba(124,156,255,0.3),
                    rgba(10,18,60,0.98));
      border: 1px solid rgba(204,216,255,0.35);
      box-shadow: inset 0 0 0 1px rgba(32,56,140,0.5);

      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transform: translateY(-4px);
      padding: 0 10px 0 14px;

      transition:
        max-height .38s cubic-bezier(0.22, 0.61, 0.36, 1),
        opacity .25s ease-out,
        transform .25s ease-out,
        padding .25s ease-out;
    }

    .drawer-submenu.open {
      max-height: 260px; /* enough for 4 links */
      opacity: 1;
      transform: translateY(0);
      padding: 10px 10px 8px 14px;
    }

    .drawer-submenu-title {
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(223,231,255,0.9);
      margin-bottom: 6px;
      opacity: 0.9;
    }

    .drawer-services {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .drawer-services a {
      text-decoration: none;
      color: #f8f9ff;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .09em;
      font-size: 11px;
      padding: 6px 2px;
      border-radius: 12px;
      position: relative;
      overflow: hidden;
    }

    .drawer-services a::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 12px;
      background: linear-gradient(135deg,
                  rgba(93,132,255,0.75),
                  rgba(40,73,178,0.9));
      opacity: 0;
      transform: scale(0.94);
      transition: opacity .18s ease, transform .18s ease;
      z-index: -1;
    }

    .drawer-services a:hover::before {
      opacity: 1;
      transform: scale(1);
    }

    .drawer .bottom-btns {
      display: grid;
      gap: 10px;
    }

    .drawer .bottom-btns .btn,
    .drawer .bottom-btns .btn-primary {
      width: 100%;
      justify-content: center;
    }