/* ============================================================
   Notice Corp — migration custom overrides
   Loaded on index.html + contact.html (after theme CSS)
   ============================================================ */

/* ---- Contact form: readable panel over the static background ---- */
.page-id-84 .wpforms-container {
  background: rgba(255, 255, 255, 0.88) !important;
  padding: 2rem 1.75rem !important;
  border-radius: 14px !important;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

/* ---- Rotate the video/static background to vertical on
        tablet & phone instead of scaling/cropping it ---- */
@media (max-width: 1024px) {
  .thb-row-bg-video-div {
    top: 50% !important;
    left: 50% !important;
    width: 100vh !important;   /* becomes visual HEIGHT after rotate */
    height: 100vw !important;  /* becomes visual WIDTH after rotate */
    transform: translate(-50%, -50%) rotate(-90deg) !important;
    transform-origin: center center !important;
  }
  .thb-row-bg-video-div video,
  .thb-row-bg-video-div img {
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    left: 0 !important;
    top: 0 !important;
    margin: 0 !important;
    object-fit: cover !important;
    transform: none !important;
  }
}
