/* =====================================================================
   AL-ZOHRA TRAVEL & TOURS — contact.css
   Page sheet for contact.html only. Linked AFTER style.css.
   Scoped under <body class="p-contact"> so nothing here can leak into
   another page. It defines exactly one thing that the shared design
   system has no business carrying: the spam-trap field.
   ===================================================================== */

/* The honeypot. contact.php expects a field named "website" that a real
   visitor never fills in. It must be invisible to the eye, absent from
   the tab order and absent from the accessibility tree — but still a
   live, submittable input, which is why it is moved off-screen rather
   than given display:none (some bots skip fields that are display:none,
   and some browsers refuse to submit them).
   The markup also carries aria-hidden="true" and tabindex="-1".        */
.p-contact .hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
