/* Force hide Zoho's default contact strip (email/phone placeholders) */
@media (min-width: 1025px) {

  /* Directly target the text itself */
  header a[href*="example.com"],
  header a[href*="555-123456"],
  header a[href^="mailto:info@"],
  header a[href^="tel:555"] {
    display: none !important;
    visibility: hidden !important;
  }

  /* If it's inside a top-bar div, nuke the whole div */
  header .top-bar,
  header .header-topbar,
  header .zs-topbar {
    display: none !important;
  }

  /* Kill any first row above the nav */
  header > div:first-child {
    display: none !important;
  }

  /* As a safety, zero out empty bar height */
  header, header > * {
    min-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
  }
}