/* ===== TOP BAR ===== */
.top-bar {
  background: var(--navy);
  padding: 10px 20px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}
.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--background);
  font-size: 12px;
  font-weight: 700;
}
.top-bar-item svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== NAVBAR (sticky) ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid var(--grey);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(1,4,50,0.08); }
.nav-logo img { height: 36px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-link-wrapper { position: relative; }
.nav-link {
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 0;
}
.nav-link svg {
  width: 16px; height: 16px;
  transition: transform 0.3s;
}
.nav-link-wrapper:hover .nav-link svg { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -12px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(1,4,50,0.12);
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.nav-link-wrapper:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  transition: background 0.15s;
}
.nav-dropdown a:hover { background: var(--beige); }
.nav-cta {
  background: var(--orange);
  color: var(--background);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 50px;
  white-space: nowrap;
  transition: opacity .2s, transform 0.2s;
}
.nav-cta:hover { opacity: .9; transform: scale(1.02); }
.nav-phone {
  background: var(--navy);
  color: var(--background);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity .2s;
}
.nav-phone:hover { opacity: .85; }
.nav-phone svg { width: 14px; height: 14px; }
.mobile-menu-btn {
  display: none;
  background: none;
  color: var(--navy);
  padding: 8px;
}
.mobile-menu-btn svg { width: 28px; height: 28px; }

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--background);
  flex-direction: column;
  padding: 20px;
}
.mobile-menu-overlay.open { display: flex; }
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  padding: 8px;
}
.mobile-menu-close svg { width: 28px; height: 28px; }
.mobile-menu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.mobile-menu-links a {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
}
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0;
}
.mobile-menu-actions a {
  text-align: center;
  padding: 16px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
}

/* ===== STICKY MOBILE CTA BAR ===== */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy);
  padding: 12px 20px;
  gap: 8px;
}
.sticky-mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 14px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--background);
}
.sticky-mobile-cta .sticky-call { background: var(--orange); }
.sticky-mobile-cta .sticky-form { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .top-bar { display: none; }
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .mobile-menu-btn { display: block; }
  .sticky-mobile-cta { display: flex; }
}
