/* ── Hide "Submit a Ticket" button in the header/nav ── */
a[href*="newticket"],
a[href*="new-ticket"],
a[href*="submitTicket"],
.submit-ticket-btn,
.new-ticket-btn,
[class*="submitTicket"],
[class*="newTicket"],
[data-action="new-ticket"] {
  display: none !important;
}

/* ── Hide the ticket submission form page content ── */
.ticket-form-container,
.ticket-submission-form,
#ticket-form,
form[action*="ticket"],
.hc-ticket-form {
  display: none !important;
}

/* ── Hide "Contact Us" / "Submit a Request" links ── */
a[href*="contact"],
.contact-support-btn,
.hc-contact-btn,
[class*="contactSupport"] {
  display: none !important;
}

/* ── Optional: Show a message instead ── */
/* Uncomment below to show custom text where the button was */
/*
a[href*="newticket"]::before {
  content: "Ticket submission is currently unavailable.";
  display: block;
  color: #666;
  font-style: italic;
  pointer-events: none;
}
*/
/* ── Hide the entire social share bar/section ── */
.social-share,
.share-section,
.article-share,
.hc-share,
.share-bar,
[class*="socialShare"],
[class*="shareArticle"],
[class*="articleShare"],
[class*="shareSection"] {
  display: none !important;
}

/* ── Hide individual social media platform buttons ── */

/* Facebook */
a[href*="facebook.com/sharer"],
a[href*="facebook.com/share"],
.share-facebook,
[class*="shareFacebook"],
[class*="facebookShare"] {
  display: none !important;
}

/* Twitter / X */
a[href*="twitter.com/intent/tweet"],
a[href*="x.com/intent/tweet"],
.share-twitter,
[class*="shareTwitter"],
[class*="twitterShare"] {
  display: none !important;
}

/* LinkedIn */
a[href*="linkedin.com/shareArticle"],
a[href*="linkedin.com/sharing"],
.share-linkedin,
[class*="shareLinkedin"],
[class*="linkedinShare"] {
  display: none !important;
}

/* WhatsApp */
a[href*="wa.me"],
a[href*="whatsapp.com/send"],
a[href*="api.whatsapp.com"],
.share-whatsapp,
[class*="shareWhatsapp"] {
  display: none !important;
}

/* Email share */
a[href^="mailto:"][class*="share"],
.share-email,
[class*="shareEmail"],
[class*="emailShare"] {
  display: none !important;
}

/* Copy link / permalink button */
.copy-link-btn,
.share-link,
.permalink-btn,
[class*="copyLink"],
[class*="shareLink"],
[data-action="copy-link"],
[data-action="share"] {
  display: none !important;
}

/* ── Hide share icons (generic icon-based buttons) ── */
.share-icon,
[class*="shareIcon"],
button[class*="share"],
a[class*="share"] {
  display: none !important;
}
/* ── Hide "Still can't find an answer?" section ── */
.still-cant-find,
.cant-find-answer,
.no-answer-section,
.hc-no-answer,
[class*="stillCantFind"],
[class*="cantFind"],
[class*="noAnswer"],
[class*="stillNotFound"],
.contact-support-section,
.hc-contact-section,
[class*="contactSection"],
[class*="needHelp"],
.need-more-help,
.more-help-section,
[class*="moreHelp"],
[class*="needMoreHelp"] {
  display: none !important;
}

/* ── Hide the "Contact Us" / "Submit a Ticket" button inside it ── */
.cant-find-answer a,
.still-cant-find a,
.no-answer-section a,
.hc-no-answer a,
[class*="cantFind"] a,
[class*="stillCantFind"] a {
  display: none !important;
}

/* ── Hide the heading text block ── */
.still-cant-find h2,
.still-cant-find h3,
.still-cant-find p,
.cant-find-answer h2,
.cant-find-answer h3,
[class*="cantFind"] h2,
[class*="cantFind"] p {
  display: none !important;
}
