/* ============================================================
   Lilly HOME — Header & Navigation Styles
   ============================================================ */

/* ── Header Base ── */
.lh-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, background 0.3s;
  font-family: var(--font-sans);
}
.lh-header-scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.lh-header-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 0 1rem;
  height: 4rem;
  display: flex; align-items: center; gap: 1rem;
}
@media (min-width: 1024px) { .lh-header-inner { padding: 0 1.5rem; } }

/* ── Logo ── */
.lh-logo {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none; flex-shrink: 0; margin-right: 0.5rem;
  transition: opacity 0.2s;
}
.lh-logo:hover { opacity: 0.8; }
.lh-logo-icon {
  width: 2.25rem; height: 2.25rem; border-radius: 0.5rem;
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem;
}
.lh-logo-text {
  font-family: var(--font-serif); font-weight: 700; font-size: 1.125rem;
  color: var(--navy); white-space: nowrap;
}

/* ── Desktop Nav ── */
.lh-nav-desktop {
  display: none;
}
@media (min-width: 1024px) {
  .lh-nav-desktop {
    display: flex; align-items: center; gap: 0.5rem;
    flex: 1; justify-content: center;
  }
}
.lh-nav-list {
  list-style: none; display: flex; align-items: center; gap: 0.5rem; margin: 0; padding: 0;
}
.lh-nav-list li a {
  font-size: 0.6875rem; font-weight: 500; color: var(--gray-600);
  white-space: nowrap; padding: 0.25rem 0.125rem;
  transition: color 0.2s;
  text-decoration: none;
}
.lh-nav-list li a:hover,
.lh-nav-list li.current-menu-item a { color: var(--navy); }
.lh-nav-list li.current-menu-item a { border-bottom: 2px solid var(--gold); padding-bottom: 0.125rem; }

/* ── Dropdown ── */
.lh-dropdown-wrap { position: relative; }
.lh-dropdown-trigger {
  display: flex; align-items: center; gap: 0.375rem;
  font-size: 0.6875rem; font-weight: 700; white-space: nowrap;
  padding: 0.375rem 0.75rem; border-radius: 9999px;
  background: linear-gradient(135deg, #1a2b4c 0%, #2d4a7a 100%);
  color: var(--gold); cursor: pointer; border: none;
  transition: opacity 0.2s;
}
.lh-dropdown-trigger:hover { opacity: 0.9; }
.lh-dropdown-chevron { transition: transform 0.2s; }
.lh-dropdown-panel.open .lh-dropdown-chevron,
.lh-dropdown-trigger[aria-expanded="true"] .lh-dropdown-chevron { transform: rotate(180deg); }
.lh-dropdown-panel {
  display: none; position: absolute; top: calc(100% + 0.5rem);
  left: 50%; transform: translateX(-50%);
  width: 18rem; background: #fff;
  border-radius: 1rem; box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  border: 1px solid rgba(30,58,95,0.12); overflow: hidden; z-index: 200;
}
.lh-dropdown-panel.open { display: block; }
.lh-dropdown-header {
  padding: 0.5rem 1rem; font-size: 0.625rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-400);
  background: var(--off-white); border-bottom: 1px solid rgba(30,58,95,0.08);
}
.lh-dropdown-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem 1rem; text-decoration: none;
  transition: background 0.15s;
  border-left: 3px solid transparent;
}
.lh-dropdown-item:hover { background: var(--off-white); }
.lh-dropdown-icon { margin-top: 0.125rem; flex-shrink: 0; transition: transform 0.15s; }
.lh-dropdown-item:hover .lh-dropdown-icon { transform: scale(1.1); }
.lh-dropdown-text { display: flex; flex-direction: column; }
.lh-dropdown-title { font-size: 0.875rem; font-weight: 600; color: var(--gray-800); line-height: 1.3; }
.lh-dropdown-desc { font-size: 0.6875rem; color: var(--gray-500); margin-top: 0.125rem; }

/* ── Header CTA ── */
.lh-header-cta {
  display: none; align-items: center; gap: 0.375rem; flex-shrink: 0;
}
@media (min-width: 1024px) { .lh-header-cta { display: flex; } }
.lh-header-tel {
  display: flex; align-items: center; gap: 0.25rem;
  font-size: 0.6875rem; font-weight: 500; color: var(--gray-700);
  white-space: nowrap; text-decoration: none; transition: color 0.2s;
}
.lh-header-tel:hover { color: var(--navy); }

/* ── Hamburger ── */
.lh-hamburger {
  display: flex; flex-direction: column; gap: 5px;
  padding: 0.5rem; border-radius: 0.5rem; cursor: pointer;
  background: none; border: none; margin-left: auto;
}
@media (min-width: 1024px) { .lh-hamburger { display: none; } }
.lh-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--gray-700); border-radius: 2px; transition: all 0.3s;
}

/* ── Mobile Menu ── */
.lh-mobile-menu { display: none; }
.lh-mobile-menu.open { display: block; }
.lh-mobile-menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 900;
}
.lh-mobile-menu-panel {
  position: fixed; top: 0; right: 0; width: 18rem; height: 100%;
  background: #fff; z-index: 901; overflow-y: auto;
  display: flex; flex-direction: column;
  padding: 5rem 1.5rem 2rem; box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  font-family: var(--font-sans);
}
.lh-mobile-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.lh-mobile-nav > a {
  padding: 0.75rem 1rem; border-radius: 0.5rem;
  font-size: 1rem; font-weight: 500; color: var(--gray-700);
  text-decoration: none; border-bottom: 1px solid var(--gray-100);
  transition: background 0.2s, color 0.2s;
}
.lh-mobile-nav > a:hover { background: var(--off-white); color: var(--navy); }
.lh-mobile-special-toggle { margin-top: 0.25rem; }
.lh-mobile-special-toggle > button {
  width: 100%; display: flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1rem; border-radius: 0.75rem;
  background: linear-gradient(135deg, #1a2b4c 0%, #2d4a7a 100%);
  color: var(--gold); font-weight: 700; font-size: 1rem;
  border: none; cursor: pointer; font-family: var(--font-sans);
}
.lh-mobile-chevron { margin-left: auto; transition: transform 0.2s; }
.lh-mobile-special-items { display: none; margin-top: 0.25rem; margin-left: 0.5rem; border-left: 2px solid var(--gold); padding-left: 0.75rem; }
.lh-mobile-special-items.open { display: flex; flex-direction: column; gap: 0.25rem; }
.lh-mobile-special-items a {
  padding: 0.625rem 0.75rem; border-radius: 0.5rem;
  font-size: 0.9375rem; font-weight: 500; color: var(--gray-700);
  text-decoration: none; transition: background 0.2s;
}
.lh-mobile-special-items a:hover { background: var(--off-white); }
.lh-mobile-menu-cta { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }

