<!-- ============================================================
  SECTION 1: NAVIGATION BAR
  Paste into a Zoho Sites "HTML/Embed" block at the TOP of your page.
  Replace: Company name, phone number, and nav links as needed.
============================================================ -->
<link href="https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,wght@0,400;0,500;0,600&display=swap" rel="stylesheet">
<style>
  .bs-nav{background:#1a2e1a;padding:0 32px;display:flex;align-items:center;justify-content:space-between;height:64px;font-family:'DM Sans',sans-serif;position:sticky;top:0;z-index:999;box-shadow:0 2px 12px rgba(0,0,0,0.3)}
  .bs-logo{font-family:'Bebas Neue',sans-serif;font-size:24px;color:#a8d97f;letter-spacing:1.5px;display:flex;align-items:center;gap:10px;text-decoration:none}
  .bs-logo svg{width:26px;height:26px}
  .bs-links{display:flex;gap:28px;list-style:none;margin:0;padding:0}
  .bs-links a{font-size:13px;font-weight:500;color:#c8e0b0;text-decoration:none;transition:color 0.2s}
  .bs-links a:hover{color:#a8d97f}
  .bs-phone{font-size:13px;color:#a8d97f;font-weight:600;margin-right:16px;text-decoration:none}
  .bs-btn{background:#a8d97f;color:#1a2e1a;border:none;padding:9px 20px;border-radius:6px;font-size:13px;font-weight:600;cursor:pointer;text-decoration:none;transition:background 0.2s}
  .bs-btn:hover{background:#8fbe6a}
  .bs-right{display:flex;align-items:center}
  @media(max-width:680px){.bs-links{display:none}.bs-phone{display:none}}
</style>
<nav class="bs-nav">
  <a class="bs-logo" href="#">
    <svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
      <ellipse cx="12" cy="13.5" rx="5.5" ry="6.5" fill="#a8d97f"/>
      <circle cx="12" cy="6" r="2.8" fill="#a8d97f"/>
      <line x1="6.5" y1="11" x2="2" y2="9" stroke="#a8d97f" stroke-width="1.5" stroke-linecap="round"/>
      <line x1="6.5" y1="14" x2="1.5" y2="14" stroke="#a8d97f" stroke-width="1.5" stroke-linecap="round"/>
      <line x1="6.5" y1="17" x2="2" y2="19.5" stroke="#a8d97f" stroke-width="1.5" stroke-linecap="round"/>
      <line x1="17.5" y1="11" x2="22" y2="9" stroke="#a8d97f" stroke-width="1.5" stroke-linecap="round"/>
      <line x1="17.5" y1="14" x2="22.5" y2="14" stroke="#a8d97f" stroke-width="1.5" stroke-linecap="round"/>
      <line x1="17.5" y1="17" x2="22" y2="19.5" stroke="#a8d97f" stroke-width="1.5" stroke-linecap="round"/>
    </svg>
    BugShield Pro
  </a>
  <ul class="bs-links">
    <li><a href="#services">Services</a></li>
    <li><a href="#about">About</a></li>
    <li><a href="#pricing">Pricing</a></li>
    <li><a href="#contact">Contact</a></li>
  </ul>
  <div class="bs-right">
    <a class="bs-phone" href="tel:8005557378">(800) 555-PEST</a>
    <a class="bs-btn" href="#contact">Free Inspection</a>
  </div>
</nav>